Wednesday, 19 March 2014

Registering the Oracle Concurrent Program from Back-end

SRY IT Solutions is specialized in Online training, End-to-End Project Support and Placement Assistance services. We are having ample of experience in SAP , Oracle , Other Online Training's.

For more Details on Oracle please contact or visit us at:

IND: +91- 9948030675, 
USA: +1- 563-823-8515
Email: info@sryitsolutions.com, 
                                            Web: http://www.sryitsolutions.com/

Here is an Oracle Concurrent Program Script :  

BEGIN

   FND_PROGRAM.register (
        'Test Concurrent Program Registration from Back-End'  -- program
                        ,'XXDO Custom'                                 -- application
       ,'Y'             -- enabled
       ,'XXINV_TEST_REG'                                        -- short_name
       ,'Test Concurrent Program Registration from Back-End'-- description
       ,'XXINV_TEST_REG'                          -- executable_short_name
       ,'XXDO Custom'                                   -- executable_application
       ,''             -- execution_options
       ,''             -- priority
       ,'Y'          -- save_output
       ,'Y'                                                                        -        -- print
       ,''                                                             -                      -- cols
       ,''                                                             -                      -- rows
       ,''                                                                    -               -- style
       ,'N'             -- style_required
       ,''               -- printer
       ,''                -- request_type
       ,''                -- request_type_application
       ,'Y'             -- use_in_srs
       ,'N'             -- allow_disabled_values
       ,'N'             -- run_alone
       ,'TEXT'                                                                        -- output_type
       ,'N'              -- enable_trace
       ,'Y'              -- restart
       ,'Y'              -- nls_compliant
       ,''                -- icon_name
       ,'US'
   );

   COMMIT;

END;

0 comments:

Post a Comment