SAP ISM_REV_ACC_BY_VAACC_FREE Function Module for
ISM_REV_ACC_BY_VAACC_FREE is a standard ism rev acc by vaacc free 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 ism rev acc by vaacc free FM, simply by entering the name ISM_REV_ACC_BY_VAACC_FREE into the relevant SAP transaction such as SE37 or SE38.
Function Group: JFREVENUE
Program Name: SAPLJFREVENUE
Main Program: SAPLJFREVENUE
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISM_REV_ACC_BY_VAACC_FREE 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 'ISM_REV_ACC_BY_VAACC_FREE'".
EXPORTING
I_REV_ACC_INPUT = "
TABLES
XKOMV_AMO = "
XJFREVVAACC = "
XJFREVACC = "
EXCEPTIONS
PARAMETER_MISSING = 1 NO_REVENUE_ACCOUNT = 2 UNSPECIFIED_ACC_METHOD = 3
IMPORTING Parameters details for ISM_REV_ACC_BY_VAACC_FREE
I_REV_ACC_INPUT -
Data type: JFRA_REV_ACC_VAACC_WAOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISM_REV_ACC_BY_VAACC_FREE
XKOMV_AMO -
Data type: KOMVOptional: No
Call by Reference: No ( called with pass by value option)
XJFREVVAACC -
Data type: JFREVVAACCOptional: No
Call by Reference: No ( called with pass by value option)
XJFREVACC -
Data type: JFREVACCOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
PARAMETER_MISSING -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_REVENUE_ACCOUNT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
UNSPECIFIED_ACC_METHOD -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISM_REV_ACC_BY_VAACC_FREE 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_xkomv_amo | TYPE STANDARD TABLE OF KOMV, " | |||
| lv_i_rev_acc_input | TYPE JFRA_REV_ACC_VAACC_WA, " | |||
| lv_parameter_missing | TYPE JFRA_REV_ACC_VAACC_WA, " | |||
| lt_xjfrevvaacc | TYPE STANDARD TABLE OF JFREVVAACC, " | |||
| lv_no_revenue_account | TYPE JFREVVAACC, " | |||
| lt_xjfrevacc | TYPE STANDARD TABLE OF JFREVACC, " | |||
| lv_unspecified_acc_method | TYPE JFREVACC. " |
|   CALL FUNCTION 'ISM_REV_ACC_BY_VAACC_FREE' " |
| EXPORTING | ||
| I_REV_ACC_INPUT | = lv_i_rev_acc_input | |
| TABLES | ||
| XKOMV_AMO | = lt_xkomv_amo | |
| XJFREVVAACC | = lt_xjfrevvaacc | |
| XJFREVACC | = lt_xjfrevacc | |
| EXCEPTIONS | ||
| PARAMETER_MISSING = 1 | ||
| NO_REVENUE_ACCOUNT = 2 | ||
| UNSPECIFIED_ACC_METHOD = 3 | ||
| . " ISM_REV_ACC_BY_VAACC_FREE | ||
ABAP code using 7.40 inline data declarations to call FM ISM_REV_ACC_BY_VAACC_FREE
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.Search for further information about these or an SAP related objects