SAP AIS_SVA_CASHMANAGEMENT Function Module for Select Cash Management Data and Prepare for Display
AIS_SVA_CASHMANAGEMENT is a standard ais sva cashmanagement SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Select Cash Management Data and Prepare for Display 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 ais sva cashmanagement FM, simply by entering the name AIS_SVA_CASHMANAGEMENT into the relevant SAP transaction such as SE37 or SE38.
Function Group: AIS_SVA1
Program Name: SAPLAIS_SVA1
Main Program: SAPLAIS_SVA1
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function AIS_SVA_CASHMANAGEMENT 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 'AIS_SVA_CASHMANAGEMENT'"Select Cash Management Data and Prepare for Display.
EXPORTING
I_SPARA = "Parameters for Evaluations (Include)
I_CM_DATA = "Selection Criteria for Cash Management
* I_METHOD = "
I_TAB_PHTREE = "Table Type
I_TAB_PHBPA = "RM: Portfolio Hierarchy: Assignment Table
TABLES
E_TAB_NPV_LZB_SS = "RM Result object - single value analysis NPV/simulation
* I_TAB_DATE = "Structure of Date
I_TAB_PHTEXT = "Generation of JBRNAME-NAME
IMPORTING Parameters details for AIS_SVA_CASHMANAGEMENT
I_SPARA - Parameters for Evaluations (Include)
Data type: JBRHSSPARIOptional: No
Call by Reference: Yes
I_CM_DATA - Selection Criteria for Cash Management
Data type: AIS_CM_DATAOptional: No
Call by Reference: Yes
I_METHOD -
Data type: AISSV_VTVFIMA_TOptional: Yes
Call by Reference: Yes
I_TAB_PHTREE - Table Type
Data type: TTYP_JBRPHBAUMOptional: No
Call by Reference: Yes
I_TAB_PHBPA - RM: Portfolio Hierarchy: Assignment Table
Data type: RMPHBPMAP_TOptional: No
Call by Reference: Yes
TABLES Parameters details for AIS_SVA_CASHMANAGEMENT
E_TAB_NPV_LZB_SS - RM Result object - single value analysis NPV/simulation
Data type: VTVEODDOptional: No
Call by Reference: Yes
I_TAB_DATE - Structure of Date
Data type: JBRDATEOptional: Yes
Call by Reference: Yes
I_TAB_PHTEXT - Generation of JBRNAME-NAME
Data type: JBRNAMEDATOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for AIS_SVA_CASHMANAGEMENT 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_spara | TYPE JBRHSSPARI, " | |||
| lt_e_tab_npv_lzb_ss | TYPE STANDARD TABLE OF VTVEODD, " | |||
| lv_i_cm_data | TYPE AIS_CM_DATA, " | |||
| lt_i_tab_date | TYPE STANDARD TABLE OF JBRDATE, " | |||
| lv_i_method | TYPE AISSV_VTVFIMA_T, " | |||
| lt_i_tab_phtext | TYPE STANDARD TABLE OF JBRNAMEDAT, " | |||
| lv_i_tab_phtree | TYPE TTYP_JBRPHBAUM, " | |||
| lv_i_tab_phbpa | TYPE RMPHBPMAP_T. " |
|   CALL FUNCTION 'AIS_SVA_CASHMANAGEMENT' "Select Cash Management Data and Prepare for Display |
| EXPORTING | ||
| I_SPARA | = lv_i_spara | |
| I_CM_DATA | = lv_i_cm_data | |
| I_METHOD | = lv_i_method | |
| I_TAB_PHTREE | = lv_i_tab_phtree | |
| I_TAB_PHBPA | = lv_i_tab_phbpa | |
| TABLES | ||
| E_TAB_NPV_LZB_SS | = lt_e_tab_npv_lzb_ss | |
| I_TAB_DATE | = lt_i_tab_date | |
| I_TAB_PHTEXT | = lt_i_tab_phtext | |
| . " AIS_SVA_CASHMANAGEMENT | ||
ABAP code using 7.40 inline data declarations to call FM AIS_SVA_CASHMANAGEMENT
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