oracleappspractices.blogspot.com
Oracle EBS Practical Approaches
Oracle EBS Practical Approaches. A Repository of Practical approaches that i have gone through or have gathered from Reliable Sources for Oracle EBS both Technically and Functionally,. Wednesday, January 11, 2017. FTP a file from one directory to a server location. Recently I got a requirement TO FTP one file from 1 directory to another DIRECTORY on user specified Server location. To suffice this requirement i created one ftp package and used that FTP code in my custom Code. P from file = lv file name,.
oracleappspro.com
Computer Creations Inc.
Oracle Applications DBA and Developer. Managing an Oracle Applications instance is no small task. The consultants at Computer Creations can help you with. Aspects of your Oracle Applications installation:. Install and Upgrade Oracle Applications. Install and Upgrade Oracle Database software. Oracle Application and database tuning. Hyperion installation and support. Custom reports and software development. Mill Valley, CA 94942. Phone / (415) 310 2410. Email / Jeff@OracleAppsPro.Com.
oracleappsquery.com
About | www.OracleAppsQuery.com
By Babu Chalamalasetti,To help Oracle community bridge the knowledge gaps.). All Responsibilities by Module. Mobile Supply Chain Applications (MSCA). Work in Process (WIP). Bill of Materials ( BOM). Landed Cost Mgmt (LCM). Advanced Supply Chain Planning (ASCP). Global Order Promising (GOP). Asset Management ( eAM). Period End Closing Process. Period End Closing Processing - FIN. Difference between 11i and R12. Daily Business Intelligence for Projects. ALL Tables and Views. Key Flexfields ( KFF). Is an Or...
oracleappsquery.wordpress.com
Oracle Apps Query | Developers in 11i/R12 EBS are in a race with the Universe to create better idiot-proof programs, while the Universe is trying to create better idiots. So far the Universe is winning.
Developers in 11i/R12 EBS are in a race with the Universe to create better idiot-proof programs, while the Universe is trying to create better idiots. So far the Universe is winning. August 14, 2010. Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging! Query : R12 Link ap invoice distributions all to a GL Header via SLA. August 13, 2010. Ssegment1 as supplier no,. Levent class code as event class, i.invoice id, ad.invoice distribution id,. Jlaccounted dr as debit,.
oracleappsr12erp.blogspot.com
oracle apps R12(ERP)
Thursday, July 1, 2010. CREATION OF FLEX FIELD IN ORACLE APPS R12(ERP). CREATION OF FLEX FIELD. Help Diagnostics Exams. Block = $DESCRIPTIVE FLEXFIELD$. Field = where u want to create a flex field (Headers, Lines, or another form box). Value = Value automatically return. Then copy the value and past below form. Responsibility System administrator. ApplicationFlexfieldDescriptiveSegments. F11 then Past the value in title ctrl F11. Now unfreeze Flexfield Definition. Now click on segments. Enterpr...
oracleappss.blogspot.com
Oracle Apps Technical
Objective of this blog is to share my oracle apps knowledge with the people who are working in oracle apps or freshers who are interested in apps. Tuesday, October 20, 2009. CREATE OR REPLACE PROCEDURE XXX Hrmig Proc Contact Rel AS. LN ROWS PROCESSED NUMBER := 0;. LN COMMIT POINT NUMBER := 50;. LS FIRST NAME VARCHAR2(20);. LS MIDDLE NAME VARCHAR2(60);. LS LAST NAME VARCHAR2(40);. LN PERSON ID NUMBER;. LN ASSIGNMENT ID NUMBER;. LN PER OBJECT VERSION NUMBER NUMBER;. LN ASG OBJECT VERSION NUMBER NUMBER;.
oracleappsscripts.blogspot.com
Oracle Applications Scripts
Wednesday, July 22, 2009. Job Creation Sample Script. Op object version number. X job definition id. Lv job group id. Lv job group id. P business group id. P job group id. Lv job group id. P object version number. Op object version number. P job definition id. X job definition id. OUTPUT JOB NAME CREATED : '. Error Message Is: '. Create Employee API Sample Script. Ip p person id NUMBER;. Ip p assignment id NUMBER;. Ip p per object version number NUMBER;. Ip p asg object version number NUMBER;. P sex = 'M'.
oracleappsscriptsandtips.blogspot.com
Oracle Apps Scripts & Tips
Oracle Apps Scripts and Tips. Thursday, June 30, 2016. Query to find out online users. The following query is mainly intended to identify online users as batch jobs can be monitored via the Concurrent Manager. SELECT c.SID, c.serial# ser, c.module, SUBSTR (c.program, 1, 10) program,. Clast call et last call, c.sql hash value, d.spid, c.process. FROM v$session c, v$process d. WHERE c.status = 'ACTIVE' - the session is running in the database. AND clast call et 300 - has been running for over 300 seconds.