SAP SATT_VALIDITY_CHECK_NODE_INT Function Module for
SATT_VALIDITY_CHECK_NODE_INT is a standard satt validity check node 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 node int FM, simply by entering the name SATT_VALIDITY_CHECK_NODE_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_NODE_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_NODE_INT'".
EXPORTING
I_NODETYPE = "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_NODELIST = "List of Nodes
EXCEPTIONS
CANCELED = 1 ERROR = 2
IMPORTING Parameters details for SATT_VALIDITY_CHECK_NODE_INT
I_NODETYPE - Subgroup of object types in the attribute repository
Data type: HIER_NODETOptional: No
Call by Reference: Yes
I_ATTRTYP - Attribute type for attribute store
Data type: ATTRTYPOptional: No
Call by Reference: Yes
I_TABNAME_IN - Table Name
Data type: TABNAMEOptional: No
Call by Reference: Yes
I_TABNAME_EX - Table Name
Data type: TABNAMEOptional: No
Call by Reference: Yes
I_TABLETYP - Name of table type
Data type: TTYPENAMEOptional: No
Call by Reference: Yes
TABLES Parameters details for SATT_VALIDITY_CHECK_NODE_INT
I_T_ATTR - List with Attribute Values
Data type: SAT_VALUE_TABOptional: No
Call by Reference: No ( called with pass by value option)
P_T_NODELIST - List of Nodes
Data type: HIER_NODEK_TABOptional: No
Call by Reference: Yes
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_NODE_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, " | |||
| lt_i_t_attr | TYPE STANDARD TABLE OF SAT_VALUE_TAB, " | |||
| lv_i_nodetype | TYPE HIER_NODET, " | |||
| lv_error | TYPE HIER_NODET, " | |||
| lv_i_attrtyp | TYPE ATTRTYP, " | |||
| lt_p_t_nodelist | TYPE STANDARD TABLE OF HIER_NODEK_TAB, " | |||
| lv_i_tabname_in | TYPE TABNAME, " | |||
| lv_i_tabname_ex | TYPE TABNAME, " | |||
| lv_i_tabletyp | TYPE TTYPENAME. " |
|   CALL FUNCTION 'SATT_VALIDITY_CHECK_NODE_INT' " |
| EXPORTING | ||
| I_NODETYPE | = lv_i_nodetype | |
| 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_NODELIST | = lt_p_t_nodelist | |
| EXCEPTIONS | ||
| CANCELED = 1 | ||
| ERROR = 2 | ||
| . " SATT_VALIDITY_CHECK_NODE_INT | ||
ABAP code using 7.40 inline data declarations to call FM SATT_VALIDITY_CHECK_NODE_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