SAP FVD_TRLE_SET_GLOBAL_FLAGS Function Module for Set Global Indicators









FVD_TRLE_SET_GLOBAL_FLAGS is a standard fvd trle set global flags SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Set Global Indicators 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 fvd trle set global flags FM, simply by entering the name FVD_TRLE_SET_GLOBAL_FLAGS into the relevant SAP transaction such as SE37 or SE38.

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



Function FVD_TRLE_SET_GLOBAL_FLAGS 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 'FVD_TRLE_SET_GLOBAL_FLAGS'"Set Global Indicators
EXPORTING
* I_FLG_IP_TA = ' ' "Agio/Disagio-Einbehalte übergeben
* I_FLG_CHECK_CAT = ' ' "
* I_FLG_NEW_CAP = ' ' "
* I_FLG_NO_BUFFER = ' ' "
* I_FLG_341 = ' ' "
* I_TAB_VZZKOPO = "
* I_TAB_VZZKOKO = "
* I_FLG_INIT_VZZKOPO = ' ' "
* I_FLG_INIT_VZZKOKO = ' ' "
* I_FLG_PRO = ' ' "
* I_FLG_NO_LOG = ' ' "'X' -> No Log Displayed
* I_STR_RREPAYMENT = "
* I_FLG_REV = ' ' "
* I_FLG_DISB = ' ' "
* I_FLG_NO_AMORT_FLOW = ' ' "
* I_FLG_PAYSPLIT = "'X' -> Paysplit
* I_FLG_BST = ' ' "

TABLES
* T_VDBEPP = "Flow Data - Planned Item
.



IMPORTING Parameters details for FVD_TRLE_SET_GLOBAL_FLAGS

I_FLG_IP_TA - Agio/Disagio-Einbehalte übergeben

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_FLG_CHECK_CAT -

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_FLG_NEW_CAP -

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_FLG_NO_BUFFER -

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_FLG_341 -

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_TAB_VZZKOPO -

Data type: TRTY_VZZKOPO
Optional: Yes
Call by Reference: Yes

I_TAB_VZZKOKO -

Data type: TRTY_VZZKOKO
Optional: Yes
Call by Reference: Yes

I_FLG_INIT_VZZKOPO -

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_FLG_INIT_VZZKOKO -

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_FLG_PRO -

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_FLG_NO_LOG - 'X' -> No Log Displayed

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_STR_RREPAYMENT -

Data type: RREPAYMENT
Optional: Yes
Call by Reference: Yes

I_FLG_REV -

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_FLG_DISB -

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_FLG_NO_AMORT_FLOW -

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_FLG_PAYSPLIT - 'X' -> Paysplit

Data type: XFELD
Optional: Yes
Call by Reference: Yes

I_FLG_BST -

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

TABLES Parameters details for FVD_TRLE_SET_GLOBAL_FLAGS

T_VDBEPP - Flow Data - Planned Item

Data type: VDBEPP
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for FVD_TRLE_SET_GLOBAL_FLAGS 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:
lt_t_vdbepp  TYPE STANDARD TABLE OF VDBEPP, "   
lv_i_flg_ip_ta  TYPE XFELD, "   SPACE
lv_i_flg_check_cat  TYPE XFELD, "   SPACE
lv_i_flg_new_cap  TYPE XFELD, "   SPACE
lv_i_flg_no_buffer  TYPE XFELD, "   SPACE
lv_i_flg_341  TYPE XFELD, "   SPACE
lv_i_tab_vzzkopo  TYPE TRTY_VZZKOPO, "   
lv_i_tab_vzzkoko  TYPE TRTY_VZZKOKO, "   
lv_i_flg_init_vzzkopo  TYPE XFELD, "   SPACE
lv_i_flg_init_vzzkoko  TYPE XFELD, "   SPACE
lv_i_flg_pro  TYPE XFELD, "   SPACE
lv_i_flg_no_log  TYPE XFELD, "   SPACE
lv_i_str_rrepayment  TYPE RREPAYMENT, "   
lv_i_flg_rev  TYPE XFELD, "   SPACE
lv_i_flg_disb  TYPE XFELD, "   SPACE
lv_i_flg_no_amort_flow  TYPE XFELD, "   SPACE
lv_i_flg_paysplit  TYPE XFELD, "   
lv_i_flg_bst  TYPE XFELD. "   SPACE

  CALL FUNCTION 'FVD_TRLE_SET_GLOBAL_FLAGS'  "Set Global Indicators
    EXPORTING
         I_FLG_IP_TA = lv_i_flg_ip_ta
         I_FLG_CHECK_CAT = lv_i_flg_check_cat
         I_FLG_NEW_CAP = lv_i_flg_new_cap
         I_FLG_NO_BUFFER = lv_i_flg_no_buffer
         I_FLG_341 = lv_i_flg_341
         I_TAB_VZZKOPO = lv_i_tab_vzzkopo
         I_TAB_VZZKOKO = lv_i_tab_vzzkoko
         I_FLG_INIT_VZZKOPO = lv_i_flg_init_vzzkopo
         I_FLG_INIT_VZZKOKO = lv_i_flg_init_vzzkoko
         I_FLG_PRO = lv_i_flg_pro
         I_FLG_NO_LOG = lv_i_flg_no_log
         I_STR_RREPAYMENT = lv_i_str_rrepayment
         I_FLG_REV = lv_i_flg_rev
         I_FLG_DISB = lv_i_flg_disb
         I_FLG_NO_AMORT_FLOW = lv_i_flg_no_amort_flow
         I_FLG_PAYSPLIT = lv_i_flg_paysplit
         I_FLG_BST = lv_i_flg_bst
    TABLES
         T_VDBEPP = lt_t_vdbepp
. " FVD_TRLE_SET_GLOBAL_FLAGS




ABAP code using 7.40 inline data declarations to call FM FVD_TRLE_SET_GLOBAL_FLAGS

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.

 
DATA(ld_i_flg_ip_ta) = ' '.
 
DATA(ld_i_flg_check_cat) = ' '.
 
DATA(ld_i_flg_new_cap) = ' '.
 
DATA(ld_i_flg_no_buffer) = ' '.
 
DATA(ld_i_flg_341) = ' '.
 
 
 
DATA(ld_i_flg_init_vzzkopo) = ' '.
 
DATA(ld_i_flg_init_vzzkoko) = ' '.
 
DATA(ld_i_flg_pro) = ' '.
 
DATA(ld_i_flg_no_log) = ' '.
 
 
DATA(ld_i_flg_rev) = ' '.
 
DATA(ld_i_flg_disb) = ' '.
 
DATA(ld_i_flg_no_amort_flow) = ' '.
 
 
DATA(ld_i_flg_bst) = ' '.
 


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!