Monday 2 December 2019

Delete Parameters In The Concurrent Program From Backend Or How to delete a Parameter from a Concurrent Program From Backend in oracle apps EBS System

/*==============================================================
DELETE PARAMETERS IN THE CONCURRENT PROGRAM FROM BACKEND
=============================================================*/

-- Delete Parameters In The Concurrent Program From Backend Or How to delete a Parameter from a Concurrent Program From Backend in oracle apps EBS System

DECLARE
   v_short_name   VARCHAR2 (50) := 'XXAA_AR_AGING'; --> Conc Program Short Name
BEGIN
   fnd_program.DELETE_PARAMETER (program_short_name      => v_short_name,
                                 application             => 'XXCUST Custom Application',
                                 parameter               => 'P_DATE'
                                );
   COMMIT;
   DBMS_OUTPUT.put_line (   'Parameter succeefully Deleted For The Concurrent Program ' || v_short_name );
END;

No comments:

Post a Comment

How to change Employee Number Generation from Manual to Automatic in Oracle HRMS (When attempting to apply for a job in iRecruitment)

When attempting to apply for a job in iRecruitment, the following error occurs: ERROR: You must enter an Application Number. Solution: How t...