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

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;
/0 -
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.0