Configuring Panaya Impact Analysis to Correlate Certify Processes to Oracle EBS Forms
You need to modify the CUSTOM.pll file on the Oracle EBS server to enable Panaya Impact Analysis to correlate Worksoft Certify processes to Oracle E-Business Suite (EBS) forms.
To modify the CUSTOM.pll file in the Oracle EBS server:
-
Sign in to a terminal on an Oracle EBS server and switch to the appropriate RUN environment for the EBS to be updated.
Example: <APPS BASE DIR>/EBSapps.env run
-
Make a backup copy of the existing CUSTOM.pll and CUSTOM.plx files.
Example: mkdir -p ~/backups/ && cp -vp $AU_TOP/resource/CUSTOM.pl[lx] ~/backups/
-
Convert $AU_TOP/resource/CUSTOM.pll to a text file for editing with the following command:
frmcmp_batch MODULE=$AU_TOP/resource/CUSTOM.pll output_file=/tmp/CUSTOM.pld module_type=LIBRARY batch=yes Script=YES Logon=NO
-
Open the new file /tmp/CUSTOM.pld with a text editor and insert the following code at the end of the event procedure before the line containing “end event;”.
--Start Worksoft Form Name Event Message
--XXWS_FORM_NAME: 0.1.7 2021/01/29 ADJ-JDC
if (event_name = 'WHEN-NEW-FORM-INSTANCE') then
message('<WSInfo form="' || name_in('system.current_form') || '"/>');
end if;
--End Worksoft Form Name Event Message
-
Save the file.
-
Exit the text editor and convert the .PLD file back to a .PLL file with the following command:
frmcmp_batch MODULE=/tmp/CUSTOM.pld output_file=/tmp/CUSTOM.pll module_type=LIBRARY parse=YES batch=yes Script=NO Logon=NO
-
Compile the .PLL file to a .PLX file with the following command:
frmcmp_batch MODULE=/tmp/CUSTOM.pll output_file=/tmp/CUSTOM.plx module_type=LIBRARY compile_all=yes batch=yes Script=NO Logon=NO
-
Copy both the new CUSTOM.pll and CUSTOM.plx files and paste them to the $AU_TOP/resource directory with the following command:
cp -vp /tmp/CUSTOM.pl[lx] $AU_TOP/resource