oracleappstechworld.blogspot.com
Oracle Apps technical: November 2009
http://oracleappstechworld.blogspot.com/2009_11_01_archive.html
Wednesday, November 18, 2009. Data Conversion / Migration / Interface. Today, as part of the ERP implementation, Data Conversion/Data Migration/Interface. Plays an important role. As you all know, data can be entered in different ways:. 1 Data can be entered using Oracle Applications screen. 2 Data can also be entered using an Oracle Open System Interface. 3 Also, data can be loaded using 3rd party tools such as Data Loader, etc. First let me tell me you about,. 2 What point of time they are used? Say su...
oracleappstechworld.blogspot.com
Oracle Apps technical: API to change the FND USER password in Oracle from backend
http://oracleappstechworld.blogspot.com/2011/03/api-to-change-fnd-user-password-in.html
Tuesday, March 15, 2011. API to change the FND USER password in Oracle from backend. C:=fnd user pkg.ChangePassword('MSHUNMUGAM','welcome1');. Subscribe to: Post Comments (Atom). Changing the profile value dynamically using scrip. API to change the FND USER password in Oracle from. DATE parameter dependent on previous parameter val. View my complete profile. Sponsored by the business degree. Other Oracle Technical Blogs.
oracleappstechworld.blogspot.com
Oracle Apps technical: February 2009
http://oracleappstechworld.blogspot.com/2009_02_01_archive.html
Wednesday, February 4, 2009. How to Use the SYS REFCURSOR and REF CURSOR in Oracle Packages and Procedures. SYS REFCURSOR is a built-in REF CURSOR type that allows any result set to be associated with it and can be used in 9i or higher. SYS REFCURSOR can be used to:. Delcare a cursor variable in an Oracle stored procedure/function;. Pass cursors from and to an Oracle stored procedure/function. Exampel 1: Getting a cursor out from an Oracle Package/Procedure. CREATE OR REPLACE PACKAGE XX BI PKG AS. How to...
oracleappstechworld.blogspot.com
Oracle Apps technical: April 2011
http://oracleappstechworld.blogspot.com/2011_04_01_archive.html
Thursday, April 7, 2011. Getting actual sales order line number from oe order lines all table. SELECT CASE WHEN (t1.service number IS NOT NULL AND t1.option number IS NOT NULL. AND t1.component number IS NOT NULL). THEN t1.line number. WHEN (t1.service number IS NOT NULL AND t1.option number IS NOT NULL AND. T1component number IS NULL). THEN t1.line number '.' t1.shipment number '.' t1.option number '.' t1.service number. THEN t1.line number '.' t1.shipment number '.' t1.service number. Sponsored by the ...
oracleappstechworld.blogspot.com
Oracle Apps technical: May 2011
http://oracleappstechworld.blogspot.com/2011_05_01_archive.html
Tuesday, May 10, 2011. How to use data loader? Download and install Data loader tool free version from internet. After download install it in your desktop and then click on the data loader icon and start it. After the data loader is started, either import the data into the data loader sheet or copy paste it manually as below:. Data loader command and action as below:. TAB – Press the tab key. DN – Press the down key. SAVE – Save the record. Select the command group as applicable:. How to use data loader?
oracleappstechworld.blogspot.com
Oracle Apps technical: Data Conversion / Migration / Interface
http://oracleappstechworld.blogspot.com/2009/11/data-conversion-migration-interface.html
Wednesday, November 18, 2009. Data Conversion / Migration / Interface. Today, as part of the ERP implementation, Data Conversion/Data Migration/Interface. Plays an important role. As you all know, data can be entered in different ways:. 1 Data can be entered using Oracle Applications screen. 2 Data can also be entered using an Oracle Open System Interface. 3 Also, data can be loaded using 3rd party tools such as Data Loader, etc. First let me tell me you about,. 2 What point of time they are used? Say su...
oracleappstechworld.blogspot.com
Oracle Apps technical: DATE parameter dependent on previous parameter value
http://oracleappstechworld.blogspot.com/2011/03/date-parameter-dependent-on-previous.html
Monday, March 7, 2011. DATE parameter dependent on previous parameter value. Requirement is to have a date parameter in the report which should be enabled if the previous parameter value is YES and should be disabled if the previous parameter value is NO:. Follow below steps to meet the above requirement. Create a value set with validation type as NONE:. Create a value set with validation type as SPECIAL:. In Edit Information, event type as Validate, give the below code. Subscribe to: Post Comments (Atom).
oracleappstechworld.blogspot.com
Oracle Apps technical: Changing the profile value dynamically using script.
http://oracleappstechworld.blogspot.com/2011/03/changing-profile-value-dynamically.html
Tuesday, March 15, 2011. Changing the profile value dynamically using script. V stat boolean;. V date varchar2(20);. Dbms output.disable;. Dbms output.enable(100000);. Select to char(sysdate,'DD') into v date. V stat := FND PROFILE.SAVE('ASO QUOTE DURATION', v date, 'SITE');. IF v stat THEN. Dbms output.put line( 'Profile Value Updated' );. Dbms output.put line( 'Profile value Not updated' );. Subscribe to: Post Comments (Atom). Changing the profile value dynamically using scrip. View my complete profile.
oracleappstechworld.blogspot.com
Oracle Apps technical: How to use data loader?
http://oracleappstechworld.blogspot.com/2011/05/how-to-use-data-loader.html
Tuesday, May 10, 2011. How to use data loader? Download and install Data loader tool free version from internet. After download install it in your desktop and then click on the data loader icon and start it. After the data loader is started, either import the data into the data loader sheet or copy paste it manually as below:. Data loader command and action as below:. TAB – Press the tab key. DN – Press the down key. SAVE – Save the record. Select the command group as applicable:. How to use data loader?
oracleappstechworld.blogspot.com
Oracle Apps technical: TCA..Useful Scripts !!!!
http://oracleappstechworld.blogspot.com/2011/03/tcauseful-scripts.html
Monday, March 14, 2011. To get the list of customers created in a financial year:. SELECT DISTINCT hl.address1 "Customer Name",. DECODE(hcsa.status,'A','Active','Inactive') status,HCSA.creation date. FROM apps.hz parties hp,. Appshz party sites hps,. Appshz locations hl,. Appshz cust accounts all hca,. Appshz cust acct sites all hcsa,. Appshz cust site uses all hcsu. WHERE hp.party id = hps.party id. AND hps.location id = hl.location id. AND hp.party id = hca.party id. FROM apps.hz parties hp,. AND hcpa&...