Answered Questions

  • How can we delete a Concurrent Program which is already registered?

    Deepak

    • Jul 3rd, 2017

    Hi,
    We can delete concurrent program name from back end with below command.
    begin
    FND_PROGRAM.DELETE_PROGRAM(XXA_PO_BRANDING_COST,Purchasing );
    end;

    Govind Palariya

    • Nov 24th, 2016

    Concurrent program can deleted from back end.

    Begin
    fnd_program.delete_program(program short name,schema);
    fnd_program.delete_executable(program short name,schema);
    commit;
    End;