Skip to main content

Posts

Showing posts from 2014

Query : Find Request Group name for Concurrent program name

Very useful query to retreive the Request Group and other information for Concurrent program from its name :   SELECT cpt.user_concurrent_program_name     "Concurrent Program Name",        DECODE(rgu.request_unit_type,               'P', 'Program',               'S', 'Set',               rgu.request_unit_type)        "Unit Type",        cp.concurrent_program_name           "Concurrent Program Short Name",        rg.application_id                    "Application ID",        ...

गारपीट

                                                ।। गारपीट ।।                              आल्या पावसाच्या धारा, सरा  मांडला पसारा, उभं पिक रानामधी, गेल्या  नासवून गारा.  झाला   फुलाले अघात, समधि गळाली रे पानं पाणी पाणी चोहीकडे  तरी जळाली रे मनं                                                          काही माणूस भी गेले                                                           काही तुटले छप्पर                  ...
मनाचे मनाशी पटेना कुणाशी कुणाला कळेना हि चूक! कुणाची मुकी भावना हि डोळ्यात पाणी मुक्या आसवांची मुकी हि कहाणी मुक्यानेच बोलू मुक्या साजानाशी मनाचे मनाशी …. जुनी भेट आपली नव्याने आठवते पुन्हा भेटीसाठी नवी सांज झुरते का ऐकू येत नाही साद तुझ्या कांकनाची मनाचे मनाशी ….                                          -- अविनाश

Oracle APPS Create Responsibility and User in Oracle EBS

How to create Responsibility and User in Oracle EBS How to Create a Responsibility? Step 1: Connect to Oracle Application with APPSADMIN/APPSADMIN User. Step 2: Go to Application Administrator. Step 3: Go to Security then Responsibility then Define Step 4: Enter the Data in the opened Window. Note: Above Information of Responsibility is stored in FND_RESPONSIBILITY Table. How to Create a User? Step 1: Connect to Oracle Application with APPSADMIN/APPSADMIN User. Step 2: Go to Application Administrator. Step 3: Go to Security then User then Define Step 4: Enter the Data in the opened Window. Note: Above Information of User is stored in FND_USER Table. User Responsibilities stored in FND_USER_RESP_GROUPS Table.

Use of Who Columns in Oracle APPS table

Oracle APPS : WHO COLUMNS WHO columns are used to track the information updated or inserted by the users against the tables. FND_STANDARD package is used for this purpose. FND_STANDARD.SET_WHO Procedure is used to update the WHO columns in a Table when a DML operation s (i.e. INSERT, UPDATE) performed. Steps required to Track WHO Information in our form   1. ALTER the table by adding WHO columns in the table.   2. Open TEMPLATE.fmb in form Builder.   3. Perform all the pre‐requisites to develop a form.   4. Include all the WHO columns in the Data Block with NULL Canvas.   5. Call FND_STAND.SET_WHO procedure in Pre‐Insert and Pre‐Update triggers       at Block Level.   6. Save and Compile the Form.   7. Perform all the pre‐requisites to register the form Note: 1. WHO Columns need not register with the table registration option.           2. Table registration will be done only for KFF and DFF col...