SAP SATT_VALIDITY_CHECK_INT Function Module for









SATT_VALIDITY_CHECK_INT is a standard satt validity check int 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 satt validity check int FM, simply by entering the name SATT_VALIDITY_CHECK_INT into the relevant SAP transaction such as SE37 or SE38.

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



Function SATT_VALIDITY_CHECK_INT 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 'SATT_VALIDITY_CHECK_INT'"
EXPORTING
I_OBJTYP = "Object Type of Reference Object for Attribute Repository
I_SUBTYP = "Subgroup of object types in the attribute repository
I_ATTRTYP = "Attribute type for attribute store
I_TABNAME_IN = "Table Name
I_TABNAME_EX = "Table Name
I_TABLETYP = "Name of table type

TABLES
I_T_ATTR = "List with Attribute Values
P_T_OBJLIST = "

EXCEPTIONS
CANCELED = 1 ERROR = 2
.



IMPORTING Parameters details for SATT_VALIDITY_CHECK_INT

I_OBJTYP - Object Type of Reference Object for Attribute Repository

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

I_SUBTYP - Subgroup of object types in the attribute repository

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

I_ATTRTYP - Attribute type for attribute store

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

I_TABNAME_IN - Table Name

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

I_TABNAME_EX - Table Name

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

I_TABLETYP - Name of table type

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

TABLES Parameters details for SATT_VALIDITY_CHECK_INT

I_T_ATTR - List with Attribute Values

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

P_T_OBJLIST -

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

EXCEPTIONS details

CANCELED -

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

ERROR -

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

Copy and paste ABAP code example for SATT_VALIDITY_CHECK_INT 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_canceled  TYPE STRING, "   
lv_i_objtyp  TYPE ATOBJTYPE, "   
lt_i_t_attr  TYPE STANDARD TABLE OF SAT_VALUE_TAB, "   
lv_error  TYPE SAT_VALUE_TAB, "   
lv_i_subtyp  TYPE ATSUBTYPE, "   
lt_p_t_objlist  TYPE STANDARD TABLE OF SAT_OBJ_TAB, "   
lv_i_attrtyp  TYPE ATTRTYP, "   
lv_i_tabname_in  TYPE TABNAME, "   
lv_i_tabname_ex  TYPE TABNAME, "   
lv_i_tabletyp  TYPE TTYPENAME. "   

  CALL FUNCTION 'SATT_VALIDITY_CHECK_INT'  "
    EXPORTING
         I_OBJTYP = lv_i_objtyp
         I_SUBTYP = lv_i_subtyp
         I_ATTRTYP = lv_i_attrtyp
         I_TABNAME_IN = lv_i_tabname_in
         I_TABNAME_EX = lv_i_tabname_ex
         I_TABLETYP = lv_i_tabletyp
    TABLES
         I_T_ATTR = lt_i_t_attr
         P_T_OBJLIST = lt_p_t_objlist
    EXCEPTIONS
        CANCELED = 1
        ERROR = 2
. " SATT_VALIDITY_CHECK_INT




ABAP code using 7.40 inline data declarations to call FM SATT_VALIDITY_CHECK_INT

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



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!