EBS Customizations (MOSC)

MOSC Banner

Whre is Application Object Library component? (fnd_program.delete_parameter)

user12021633
user12021633 Posts: 67 Green Ribbon
edited Nov 13, 2009 4:20AM in EBS Customizations (MOSC) 2 comments

Comments

  •  As per the AOL documentation, the API FND_PROGRAM.DELETE_PARAMETER takes the following parameters

    procedure FND_PROGRAM.DELETE_PARAMETER

    (program_short_name IN  varchar2,
        application  IN   varchar2
      parameter  IN  varchar2);

    program_short_ name -> The short name used as the developer name of the concurrent program. 
    application -> The application that owns the concurrent program. 
    parameter  ->  The parameter to delete. 

    Pass the parameters and test it using the following code snippet.


    begin
    fnd_program.delete_parameter('SHORTNAME' 'APPLICATION','PARAMETER');
    end;
    /

  • The parameter list is implemented internally as a specialized form of the DFF.  The API call you have made only removes the parameter (segment) from the definition.  But as you may know already, DFFs must be compiled after changes are made.  The App Developer (or Sys Admin) "Define Concurrent Program" form auto-magically recompiles the parameter list (DFF) for you.  There is likely another API call that does the same, so check FND_PROGRAM for another procedure or function that recompiles your parameter list. 

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center