FVD_GDPDU_OP_FLOW_ITEMS 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 FVD_GDPDU_OP_FLOW_ITEMS into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
FVD_GDPDU_GENERAL
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'FVD_GDPDU_OP_FLOW_ITEMS' "Provides Items for Relevant Flows (Oper. Flow Area)
EXPORTING
i_package_size = " txw_pcksiz Package Size for Data Selection (Number of Data Records)
i_max_docs = " txw_maxdoc Max. No. of Docs
i_tab_flow_hd = " trty_fvd_gdpdu_flow_hd Table of Relevant Flows
i_rng_struct_name = " ftr_gdpdu_rng_struct_name Range Table for DART Segment Name
CHANGING
c_tab_business_partner = " fti_ldb_partner_t Business Partner
. " FVD_GDPDU_OP_FLOW_ITEMS
The ABAP code below is a full code listing to execute function module FVD_GDPDU_OP_FLOW_ITEMS 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).
DATA(ld_c_tab_business_partner) = 'Check type of data required'.
DATA(ld_i_package_size) = 'Check type of data required'.
DATA(ld_i_max_docs) = 'Check type of data required'.
DATA(ld_i_tab_flow_hd) = 'Check type of data required'.
DATA(ld_i_rng_struct_name) = 'Check type of data required'. . CALL FUNCTION 'FVD_GDPDU_OP_FLOW_ITEMS' EXPORTING i_package_size = ld_i_package_size i_max_docs = ld_i_max_docs i_tab_flow_hd = ld_i_tab_flow_hd i_rng_struct_name = ld_i_rng_struct_name CHANGING c_tab_business_partner = ld_c_tab_business_partner . " FVD_GDPDU_OP_FLOW_ITEMS
IF SY-SUBRC EQ 0. "All OK ENDIF.
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_c_tab_business_partner | TYPE FTI_LDB_PARTNER_T , |
| ld_i_package_size | TYPE TXW_PCKSIZ , |
| ld_i_max_docs | TYPE TXW_MAXDOC , |
| ld_i_tab_flow_hd | TYPE TRTY_FVD_GDPDU_FLOW_HD , |
| ld_i_rng_struct_name | TYPE FTR_GDPDU_RNG_STRUCT_NAME . |
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 FVD_GDPDU_OP_FLOW_ITEMS or its description.
FVD_GDPDU_OP_FLOW_ITEMS - Provides Items for Relevant Flows (Oper. Flow Area) FVD_GDPDU_OP_FLOW_HEADS - Provides Relevant Flows from Operational Flow Area FVD_GDPDU_MASTERDATA - Provides Master Data for Relevant Loans FVD_GDPDU_GET_RELEVANT_LOANS - Determine Relevant Loans FVD_GDPDU_GET_LOAN_TERM - Determine Contract Term FVD_GDPDU_EXTRACT_MASTERDATA - Extraction of CML Master Data for DART