Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleIT information

Run the following PL/SQL:

Code Block
languagesql
DECLARE
    v_application   GENERAL.GLBSLCT.GLBSLCT_APPLICATION%TYPE := 'GENERAL'; 
    v_selection     GENERAL.GLBSLCT.GLBSLCT_SELECTION%TYPE := '<username>'; --use oracle username
    v_creator       GENERAL.GLBSLCT.GLBSLCT_CREATOR_ID%TYPE := v_selection;
    v_desc          GENERAL.GLBSLCT.GLBSLCT_DESC%TYPE
                        := 'Popsel for ' || v_creator;
BEGIN
    cos_popsel.p_create_popsel (v_application,
                                v_selection,
                                v_creator,
                                v_desc);
END;

The user will also need permissions for the following forms in BAM:

  • GLAEXTR

  • GJAJFLU

  • GJRJFLU

  • GJRPSIM

  1. Create File

The file should be a .csv file, with a header row and only Banner IDs.

...