Hello IFS,
After I create my custom package named Z_PURCHASE_ORDER_API We are currently using IFS9.
why doesn’t my custom Z_PURCHASE_ORDER_API appear in the Logical Units but it appears in the PL/SQL Package Code? See screenshot 1.
Screenshot 1

My custom code is:
create or replace package PURCHASE_ORDER_API is
                module_                       CONSTANT VARCHAR2(25) := 'zPurchaseOrder';
                lu_name_                      CONSTANT VARCHAR2(25) := 'ZPurchaseOrderAPI';
                lu_prompt_                    CONSTANT VARCHAR2(25) := 'ZPurchaseOrderAPI';
  
               PROCEDURE Init;
               PROCEDURE UPDATE_PROBABILITY(ATTR_ IN VARCHAR2);
end Z_PURCHASE_ORDER_API;
For example the custom package ESI_LEAD_INTEGRATOIN_API was created and the variables in the package for lu_name_ , lu_prompt_ , module_ appear in the Logical Units.
++This is only the beginning of the code++
create or replace package ESI_LEAD_INTEGRATION_API as
       module_                       CONSTANT VARCHAR2(25) := 'eNSYNC';
       lu_name_                      CONSTANT VARCHAR2(25) := 'ESILeadIntegrationAPI';
       lu_prompt_                    CONSTANT VARCHAR2(25) := 'ESILeadIntegrationAPI';

Why doesn’t my lu_name_ , lu_prompt_ , module_ appear in the Logical Units as the example described above?


