OIURV_READ_DOI_PROD_ENTRY_CNTL is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name OIURV_READ_DOI_PROD_ENTRY_CNTL into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
OIURV_READ_TAX_FLAGS
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'OIURV_READ_DOI_PROD_ENTRY_CNTL' "Read Product Entry Control From OIU_DO_DPIC
EXPORTING
i_bukrs = " oiurv_doc_dtl_bk-bukrs Company code
i_vname = " oiurv_doc_dtl_bk-vname Joint Venture
i_doi_no = " oiurv_doc_dtl_bk-doi_no Division of Interest
i_sale_dt = " oiurv_doc_dtl_bk-sale_dt Sales Date / Month
TABLES
e_do_dpic_tb = " oiu_do_dpic DOI Product Interest Control
EXCEPTIONS
IO_ERROR = 1 " RECORD NOT FOUND
. " OIURV_READ_DOI_PROD_ENTRY_CNTL
The ABAP code below is a full code listing to execute function module OIURV_READ_DOI_PROD_ENTRY_CNTL including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| it_e_do_dpic_tb | TYPE STANDARD TABLE OF OIU_DO_DPIC,"TABLES PARAM |
| wa_e_do_dpic_tb | LIKE LINE OF it_e_do_dpic_tb . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_i_bukrs | TYPE OIURV_DOC_DTL_BK-BUKRS , |
| it_e_do_dpic_tb | TYPE STANDARD TABLE OF OIU_DO_DPIC , |
| wa_e_do_dpic_tb | LIKE LINE OF it_e_do_dpic_tb, |
| ld_i_vname | TYPE OIURV_DOC_DTL_BK-VNAME , |
| ld_i_doi_no | TYPE OIURV_DOC_DTL_BK-DOI_NO , |
| ld_i_sale_dt | TYPE OIURV_DOC_DTL_BK-SALE_DT . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name OIURV_READ_DOI_PROD_ENTRY_CNTL or its description.
OIURV_READ_DOI_PROD_ENTRY_CNTL - Read Product Entry Control From OIU_DO_DPIC OIURV_READ_CT_MARKET_DATA - Read Contract Marketing Data OIURV_READ_CONT_TAX_REIMB - Read Plant Tax Reimbursment Percent OIURV_READ_CMCC_DATA - Read Contract Marketing Cost Control Header for selection criteria OIURV_PROD_GROUP_CD_EXTRACT - Extracts and allocates actual volumes OIURV_PROCESS_TOTAL_LEASE_FUEL - Process total lease fuel volumes