SAP C1F2_VALUATIONS_CHECK_STATUS Function Module for NOTRANSL: EHS: ... nur zur internen Verwendung ... (ESTVA, ESTRI bzgl. Sta









C1F2_VALUATIONS_CHECK_STATUS is a standard c1f2 valuations check status SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: EHS: ... nur zur internen Verwendung ... (ESTVA, ESTRI bzgl. Sta 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 c1f2 valuations check status FM, simply by entering the name C1F2_VALUATIONS_CHECK_STATUS into the relevant SAP transaction such as SE37 or SE38.

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



Function C1F2_VALUATIONS_CHECK_STATUS 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 'C1F2_VALUATIONS_CHECK_STATUS'"NOTRANSL: EHS: ... nur zur internen Verwendung ... (ESTVA, ESTRI bzgl. Sta
EXPORTING
I_ADDINF = "EHS: Additional Information for Function Module Calls
I_FLG_USAGES_READ = "Boolean Variable (X=True, -=False, Space=Unknown)
I_FLG_ONLY_PROTECTED = "Boolean Variable (X=True, -=False, Space=Unknown)
I_FLG_KEEP_ORG_ORDER = "Boolean Variable (X=True, -=False, Space=Unknown)
* I_FLG_SEND_ERROR_AT_STATUS = ' ' "
* I_FLG_KEEP_DUPLICATES = ESP1_FALSE "

CHANGING
X_FLG_WARNING = "Boolean Variable (X=True, -=False, Space=Unknown)
X_FLG_ERROR = "Truth Value
X_FLG_INTERNAL_ERROR = "Boolean Variable (X=True, -=False, Space=Unknown)
* X_FURTHER_PARAMS = "

TABLES
* X_API_PROP_TAB = "Value Assignment Instances
* X_API_IDENT_TAB = "Identifiers
* X_DUIOTAB = "EHS: IOTAB for additional information - usage
* X_ERROR_TAB = "EHS: General Error Structure
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLC1F2_001 EHS: Saving Additional Data in the Database

IMPORTING Parameters details for C1F2_VALUATIONS_CHECK_STATUS

I_ADDINF - EHS: Additional Information for Function Module Calls

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

I_FLG_USAGES_READ - Boolean Variable (X=True, -=False, Space=Unknown)

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

I_FLG_ONLY_PROTECTED - Boolean Variable (X=True, -=False, Space=Unknown)

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

I_FLG_KEEP_ORG_ORDER - Boolean Variable (X=True, -=False, Space=Unknown)

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

I_FLG_SEND_ERROR_AT_STATUS -

Data type: ESEBOOLE
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_FLG_KEEP_DUPLICATES -

Data type: ESP1_BOOLEAN
Default: ESP1_FALSE
Optional: No
Call by Reference: No ( called with pass by value option)

CHANGING Parameters details for C1F2_VALUATIONS_CHECK_STATUS

X_FLG_WARNING - Boolean Variable (X=True, -=False, Space=Unknown)

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

X_FLG_ERROR - Truth Value

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

X_FLG_INTERNAL_ERROR - Boolean Variable (X=True, -=False, Space=Unknown)

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

X_FURTHER_PARAMS -

Data type: ESPRH_FURTHER_PARAMS_TYPE
Optional: Yes
Call by Reference: Yes

TABLES Parameters details for C1F2_VALUATIONS_CHECK_STATUS

X_API_PROP_TAB - Value Assignment Instances

Data type: ESPRH_APIVA_TAB_TYPE
Optional: Yes
Call by Reference: Yes

X_API_IDENT_TAB - Identifiers

Data type: ESPRH_APIRI_TAB_TYPE
Optional: Yes
Call by Reference: Yes

X_DUIOTAB - EHS: IOTAB for additional information - usage

Data type: RCGDUIOT
Optional: Yes
Call by Reference: Yes

X_ERROR_TAB - EHS: General Error Structure

Data type: RCGEXTERROR
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for C1F2_VALUATIONS_CHECK_STATUS 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_addinf  TYPE RCGADDINF, "   
lv_x_flg_warning  TYPE ESEBOOLE, "   
lt_x_api_prop_tab  TYPE STANDARD TABLE OF ESPRH_APIVA_TAB_TYPE, "   
lv_x_flg_error  TYPE ESEBOOLE, "   
lt_x_api_ident_tab  TYPE STANDARD TABLE OF ESPRH_APIRI_TAB_TYPE, "   
lv_i_flg_usages_read  TYPE ESEBOOLE, "   
lt_x_duiotab  TYPE STANDARD TABLE OF RCGDUIOT, "   
lv_i_flg_only_protected  TYPE ESEBOOLE, "   
lv_x_flg_internal_error  TYPE ESEBOOLE, "   
lt_x_error_tab  TYPE STANDARD TABLE OF RCGEXTERROR, "   
lv_x_further_params  TYPE ESPRH_FURTHER_PARAMS_TYPE, "   
lv_i_flg_keep_org_order  TYPE ESEBOOLE, "   
lv_i_flg_send_error_at_status  TYPE ESEBOOLE, "   SPACE
lv_i_flg_keep_duplicates  TYPE ESP1_BOOLEAN. "   ESP1_FALSE

  CALL FUNCTION 'C1F2_VALUATIONS_CHECK_STATUS'  "NOTRANSL: EHS: ... nur zur internen Verwendung ... (ESTVA, ESTRI bzgl. Sta
    EXPORTING
         I_ADDINF = lv_i_addinf
         I_FLG_USAGES_READ = lv_i_flg_usages_read
         I_FLG_ONLY_PROTECTED = lv_i_flg_only_protected
         I_FLG_KEEP_ORG_ORDER = lv_i_flg_keep_org_order
         I_FLG_SEND_ERROR_AT_STATUS = lv_i_flg_send_error_at_status
         I_FLG_KEEP_DUPLICATES = lv_i_flg_keep_duplicates
    CHANGING
         X_FLG_WARNING = lv_x_flg_warning
         X_FLG_ERROR = lv_x_flg_error
         X_FLG_INTERNAL_ERROR = lv_x_flg_internal_error
         X_FURTHER_PARAMS = lv_x_further_params
    TABLES
         X_API_PROP_TAB = lt_x_api_prop_tab
         X_API_IDENT_TAB = lt_x_api_ident_tab
         X_DUIOTAB = lt_x_duiotab
         X_ERROR_TAB = lt_x_error_tab
. " C1F2_VALUATIONS_CHECK_STATUS




ABAP code using 7.40 inline data declarations to call FM C1F2_VALUATIONS_CHECK_STATUS

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.

 
 
 
 
 
 
 
 
 
 
 
 
DATA(ld_i_flg_send_error_at_status) = ' '.
 
DATA(ld_i_flg_keep_duplicates) = ESP1_FALSE.
 


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!