SAP ROMI_RESOLVE_PERIODS_CST Function Module for









ROMI_RESOLVE_PERIODS_CST is a standard romi resolve periods cst 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 romi resolve periods cst FM, simply by entering the name ROMI_RESOLVE_PERIODS_CST into the relevant SAP transaction such as SE37 or SE38.

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



Function ROMI_RESOLVE_PERIODS_CST 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 'ROMI_RESOLVE_PERIODS_CST'"
EXPORTING
IS_DATA = "
ID_KWAER = "
ID_OWAER = "
ID_APPORTIONED = "
ID_APPENDED = "
* ID_EXT_ZERO = "

TABLES
CT_DATA = "
IT_FISCPER = "
IT_CURTYPE = "
IT_FIELDLIST = "
.



IMPORTING Parameters details for ROMI_RESOLVE_PERIODS_CST

IS_DATA -

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

ID_KWAER -

Data type: TKA01-WAERS
Optional: No
Call by Reference: No ( called with pass by value option)

ID_OWAER -

Data type: COEP-OWAER
Optional: No
Call by Reference: No ( called with pass by value option)

ID_APPORTIONED -

Data type: C
Optional: No
Call by Reference: No ( called with pass by value option)

ID_APPENDED -

Data type: C
Optional: No
Call by Reference: No ( called with pass by value option)

ID_EXT_ZERO -

Data type: C
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for ROMI_RESOLVE_PERIODS_CST

CT_DATA -

Data type: KBWOM_T_IFCST
Optional: No
Call by Reference: No ( called with pass by value option)

IT_FISCPER -

Data type: KBWOM_T_FISCPER
Optional: No
Call by Reference: No ( called with pass by value option)

IT_CURTYPE -

Data type: KBWOM_T_CURTYPE
Optional: No
Call by Reference: No ( called with pass by value option)

IT_FIELDLIST -

Data type: KBWOM_T_FIELDLIST
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for ROMI_RESOLVE_PERIODS_CST 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_ct_data  TYPE STANDARD TABLE OF KBWOM_T_IFCST, "   
lv_is_data  TYPE KBWOM_DATA_CST, "   
lv_id_kwaer  TYPE TKA01-WAERS, "   
lt_it_fiscper  TYPE STANDARD TABLE OF KBWOM_T_FISCPER, "   
lv_id_owaer  TYPE COEP-OWAER, "   
lt_it_curtype  TYPE STANDARD TABLE OF KBWOM_T_CURTYPE, "   
lt_it_fieldlist  TYPE STANDARD TABLE OF KBWOM_T_FIELDLIST, "   
lv_id_apportioned  TYPE C, "   
lv_id_appended  TYPE C, "   
lv_id_ext_zero  TYPE C. "   

  CALL FUNCTION 'ROMI_RESOLVE_PERIODS_CST'  "
    EXPORTING
         IS_DATA = lv_is_data
         ID_KWAER = lv_id_kwaer
         ID_OWAER = lv_id_owaer
         ID_APPORTIONED = lv_id_apportioned
         ID_APPENDED = lv_id_appended
         ID_EXT_ZERO = lv_id_ext_zero
    TABLES
         CT_DATA = lt_ct_data
         IT_FISCPER = lt_it_fiscper
         IT_CURTYPE = lt_it_curtype
         IT_FIELDLIST = lt_it_fieldlist
. " ROMI_RESOLVE_PERIODS_CST




ABAP code using 7.40 inline data declarations to call FM ROMI_RESOLVE_PERIODS_CST

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 WAERS FROM TKA01 INTO @DATA(ld_id_kwaer).
 
 
"SELECT single OWAER FROM COEP INTO @DATA(ld_id_owaer).
 
 
 
 
 
 


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!