SAP ISCD_SAMPLE_V497 Function Module for
ISCD_SAMPLE_V497 is a standard iscd sample v497 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 iscd sample v497 FM, simply by entering the name ISCD_SAMPLE_V497 into the relevant SAP transaction such as SE37 or SE38.
Function Group: IBR04
Program Name: SAPLIBR04
Main Program: SAPLIBR04
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISCD_SAMPLE_V497 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 'ISCD_SAMPLE_V497'".
EXPORTING
I_FKKCOINFO = "Mass Activities: Global Values for All Mass Activities
I_AUSDT = "Period Selection
I_BROKER = "Broker
I_BRO_CONTRACT = "Broker account
I_BRO_ACCOUNT = "Contract Account Number
* I_PROBCLASS = "
* I_VPVB_DATA = "
IMPORTING
E_COMREQ = "Commit Control
CHANGING
C_SUCCESS_NUM = "
TABLES
* T_FIMSG = "Message Table
EXCEPTIONS
ERROR = 1
IMPORTING Parameters details for ISCD_SAMPLE_V497
I_FKKCOINFO - Mass Activities: Global Values for All Mass Activities
Data type: FKKCOINFOOptional: No
Call by Reference: No ( called with pass by value option)
I_AUSDT - Period Selection
Data type: AUSDT_KKOptional: No
Call by Reference: No ( called with pass by value option)
I_BROKER - Broker
Data type: BROKERPA_BROOptional: No
Call by Reference: No ( called with pass by value option)
I_BRO_CONTRACT - Broker account
Data type: BROOBJ_BROOptional: No
Call by Reference: No ( called with pass by value option)
I_BRO_ACCOUNT - Contract Account Number
Data type: VKONT_KKOptional: No
Call by Reference: No ( called with pass by value option)
I_PROBCLASS -
Data type: BALPROBCLOptional: Yes
Call by Reference: No ( called with pass by value option)
I_VPVB_DATA -
Data type: FKKRUNIDOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISCD_SAMPLE_V497
E_COMREQ - Commit Control
Data type: BOOLE-BOOLEOptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for ISCD_SAMPLE_V497
C_SUCCESS_NUM -
Data type: IOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISCD_SAMPLE_V497
T_FIMSG - Message Table
Data type: FIMSGOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
ERROR - Error
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISCD_SAMPLE_V497 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_error | TYPE STRING, " | |||
| lt_t_fimsg | TYPE STANDARD TABLE OF FIMSG, " | |||
| lv_e_comreq | TYPE BOOLE-BOOLE, " | |||
| lv_i_fkkcoinfo | TYPE FKKCOINFO, " | |||
| lv_c_success_num | TYPE I, " | |||
| lv_i_ausdt | TYPE AUSDT_KK, " | |||
| lv_i_broker | TYPE BROKERPA_BRO, " | |||
| lv_i_bro_contract | TYPE BROOBJ_BRO, " | |||
| lv_i_bro_account | TYPE VKONT_KK, " | |||
| lv_i_probclass | TYPE BALPROBCL, " | |||
| lv_i_vpvb_data | TYPE FKKRUNID. " |
|   CALL FUNCTION 'ISCD_SAMPLE_V497' " |
| EXPORTING | ||
| I_FKKCOINFO | = lv_i_fkkcoinfo | |
| I_AUSDT | = lv_i_ausdt | |
| I_BROKER | = lv_i_broker | |
| I_BRO_CONTRACT | = lv_i_bro_contract | |
| I_BRO_ACCOUNT | = lv_i_bro_account | |
| I_PROBCLASS | = lv_i_probclass | |
| I_VPVB_DATA | = lv_i_vpvb_data | |
| IMPORTING | ||
| E_COMREQ | = lv_e_comreq | |
| CHANGING | ||
| C_SUCCESS_NUM | = lv_c_success_num | |
| TABLES | ||
| T_FIMSG | = lt_t_fimsg | |
| EXCEPTIONS | ||
| ERROR = 1 | ||
| . " ISCD_SAMPLE_V497 | ||
ABAP code using 7.40 inline data declarations to call FM ISCD_SAMPLE_V497
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 BOOLE FROM BOOLE INTO @DATA(ld_e_comreq). | ||||
Search for further information about these or an SAP related objects