SAP PPF_TST_API_CUSTOMIZING_SET Function Module for









PPF_TST_API_CUSTOMIZING_SET is a standard ppf tst api customizing set SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 ppf tst api customizing set FM, simply by entering the name PPF_TST_API_CUSTOMIZING_SET into the relevant SAP transaction such as SE37 or SE38.

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



Function PPF_TST_API_CUSTOMIZING_SET 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 'PPF_TST_API_CUSTOMIZING_SET'"
EXPORTING
I_FLG_EVENT_0110 = "
I_CNT_MAX_REP_SEQ = "
I_FLG_EVENT_0140 = "
I_FLG_EVENT_0160 = "
I_FLG_EVENT_0206 = "
I_FLG_USE_PACKATTR = "
I_FLG_USE_DEEP_PACKATTR = "
I_FLG_ALL_PERSISTENT = "
I_MAX_PERC_RETRY = "
I_CNT_MAX_REP_PAR = "
.



IMPORTING Parameters details for PPF_TST_API_CUSTOMIZING_SET

I_FLG_EVENT_0110 -

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

I_CNT_MAX_REP_SEQ -

Data type: PPF_TST_STR_CUSTOMIZING-CNT_MAX_REP_SEQ
Optional: No
Call by Reference: Yes

I_FLG_EVENT_0140 -

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

I_FLG_EVENT_0160 -

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

I_FLG_EVENT_0206 -

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

I_FLG_USE_PACKATTR -

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

I_FLG_USE_DEEP_PACKATTR -

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

I_FLG_ALL_PERSISTENT -

Data type: PPF_TST_STR_CUSTOMIZING-FLG_ALL_PERSISTENT
Optional: No
Call by Reference: Yes

I_MAX_PERC_RETRY -

Data type: PPF_TST_STR_CUSTOMIZING-MAX_PERC_RETRY
Optional: No
Call by Reference: Yes

I_CNT_MAX_REP_PAR -

Data type: PPF_TST_STR_CUSTOMIZING-CNT_MAX_REP
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for PPF_TST_API_CUSTOMIZING_SET 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_i_flg_event_0110  TYPE XFELD, "   
lv_i_cnt_max_rep_seq  TYPE PPF_TST_STR_CUSTOMIZING-CNT_MAX_REP_SEQ, "   
lv_i_flg_event_0140  TYPE XFELD, "   
lv_i_flg_event_0160  TYPE XFELD, "   
lv_i_flg_event_0206  TYPE XFELD, "   
lv_i_flg_use_packattr  TYPE XFELD, "   
lv_i_flg_use_deep_packattr  TYPE XFELD, "   
lv_i_flg_all_persistent  TYPE PPF_TST_STR_CUSTOMIZING-FLG_ALL_PERSISTENT, "   
lv_i_max_perc_retry  TYPE PPF_TST_STR_CUSTOMIZING-MAX_PERC_RETRY, "   
lv_i_cnt_max_rep_par  TYPE PPF_TST_STR_CUSTOMIZING-CNT_MAX_REP. "   

  CALL FUNCTION 'PPF_TST_API_CUSTOMIZING_SET'  "
    EXPORTING
         I_FLG_EVENT_0110 = lv_i_flg_event_0110
         I_CNT_MAX_REP_SEQ = lv_i_cnt_max_rep_seq
         I_FLG_EVENT_0140 = lv_i_flg_event_0140
         I_FLG_EVENT_0160 = lv_i_flg_event_0160
         I_FLG_EVENT_0206 = lv_i_flg_event_0206
         I_FLG_USE_PACKATTR = lv_i_flg_use_packattr
         I_FLG_USE_DEEP_PACKATTR = lv_i_flg_use_deep_packattr
         I_FLG_ALL_PERSISTENT = lv_i_flg_all_persistent
         I_MAX_PERC_RETRY = lv_i_max_perc_retry
         I_CNT_MAX_REP_PAR = lv_i_cnt_max_rep_par
. " PPF_TST_API_CUSTOMIZING_SET




ABAP code using 7.40 inline data declarations to call FM PPF_TST_API_CUSTOMIZING_SET

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.

 
"SELECT single CNT_MAX_REP_SEQ FROM PPF_TST_STR_CUSTOMIZING INTO @DATA(ld_i_cnt_max_rep_seq).
 
 
 
 
 
 
"SELECT single FLG_ALL_PERSISTENT FROM PPF_TST_STR_CUSTOMIZING INTO @DATA(ld_i_flg_all_persistent).
 
"SELECT single MAX_PERC_RETRY FROM PPF_TST_STR_CUSTOMIZING INTO @DATA(ld_i_max_perc_retry).
 
"SELECT single CNT_MAX_REP FROM PPF_TST_STR_CUSTOMIZING INTO @DATA(ld_i_cnt_max_rep_par).
 


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!