SAP OIUH_JELJ140 Function Module for Business Logic Je02









OIUH_JELJ140 is a standard oiuh jelj140 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Business Logic Je02 processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for oiuh jelj140 FM, simply by entering the name OIUH_JELJ140 into the relevant SAP transaction such as SE37 or SE38.

Function Group: OIUH_JELJ140
Program Name: SAPLOIUH_JELJ140
Main Program: SAPLOIUH_JELJ140
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function OIUH_JELJ140 pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'OIUH_JELJ140'"Business Logic Je02
EXPORTING
P_resp_id = "
P_entry_seq = "
P_interest_type = "
P_market_cost = "
P_product_cd = "
P_property_interest = "
P_sev_tax_type = "
P_state_cd = "
P_user_id = "
P_version_num = "
P_volume_type = "
P_ac_lvl_cd = "
P_warning_ind = "
P_account_cat = "
P_account_no = "
P_activity_ind = "
P_affiliated_co = "
P_company_no = "
P_contract_type = "
P_entity_cd = "

IMPORTING
P_newseq = "

EXCEPTIONS
GOBACK = 1 WARNING = 2 FAILED = 3
.



IMPORTING Parameters details for OIUH_JELJ140

P_resp_id -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_entry_seq -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_interest_type -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_market_cost -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_product_cd -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_property_interest -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_sev_tax_type -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_state_cd -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_user_id -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_version_num -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_volume_type -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_ac_lvl_cd -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_warning_ind -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_account_cat -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_account_no -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_activity_ind -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_affiliated_co -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_company_no -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_contract_type -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_entity_cd -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for OIUH_JELJ140

P_newseq -

Data type:
Optional: No
Call by Reference: Yes

EXCEPTIONS details

GOBACK -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

WARNING -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

FAILED -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for OIUH_JELJ140 Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lv_goback  TYPE STRING, "   
lv_p_newseq  TYPE STRING, "   
lv_p_resp_id  TYPE STRING, "   
lv_p_entry_seq  TYPE STRING, "   
lv_p_interest_type  TYPE STRING, "   
lv_p_market_cost  TYPE STRING, "   
lv_p_product_cd  TYPE STRING, "   
lv_p_property_interest  TYPE STRING, "   
lv_p_sev_tax_type  TYPE STRING, "   
lv_p_state_cd  TYPE STRING, "   
lv_p_user_id  TYPE STRING, "   
lv_p_version_num  TYPE STRING, "   
lv_p_volume_type  TYPE STRING, "   
lv_warning  TYPE STRING, "   
lv_p_ac_lvl_cd  TYPE STRING, "   
lv_p_warning_ind  TYPE STRING, "   
lv_failed  TYPE STRING, "   
lv_p_account_cat  TYPE STRING, "   
lv_p_account_no  TYPE STRING, "   
lv_p_activity_ind  TYPE STRING, "   
lv_p_affiliated_co  TYPE STRING, "   
lv_p_company_no  TYPE STRING, "   
lv_p_contract_type  TYPE STRING, "   
lv_p_entity_cd  TYPE STRING. "   

  CALL FUNCTION 'OIUH_JELJ140'  "Business Logic Je02
    EXPORTING
         P_resp_id = lv_p_resp_id
         P_entry_seq = lv_p_entry_seq
         P_interest_type = lv_p_interest_type
         P_market_cost = lv_p_market_cost
         P_product_cd = lv_p_product_cd
         P_property_interest = lv_p_property_interest
         P_sev_tax_type = lv_p_sev_tax_type
         P_state_cd = lv_p_state_cd
         P_user_id = lv_p_user_id
         P_version_num = lv_p_version_num
         P_volume_type = lv_p_volume_type
         P_ac_lvl_cd = lv_p_ac_lvl_cd
         P_warning_ind = lv_p_warning_ind
         P_account_cat = lv_p_account_cat
         P_account_no = lv_p_account_no
         P_activity_ind = lv_p_activity_ind
         P_affiliated_co = lv_p_affiliated_co
         P_company_no = lv_p_company_no
         P_contract_type = lv_p_contract_type
         P_entity_cd = lv_p_entity_cd
    IMPORTING
         P_newseq = lv_p_newseq
    EXCEPTIONS
        GOBACK = 1
        WARNING = 2
        FAILED = 3
. " OIUH_JELJ140




ABAP code using 7.40 inline data declarations to call FM OIUH_JELJ140

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!