SAP SAPSCRIPT_USELIST_LIST_FORMS Function Module for SAPscript: Read forms for print program in TTXFP
SAPSCRIPT_USELIST_LIST_FORMS is a standard sapscript uselist list forms SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for SAPscript: Read forms for print program in TTXFP 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 sapscript uselist list forms FM, simply by entering the name SAPSCRIPT_USELIST_LIST_FORMS into the relevant SAP transaction such as SE37 or SE38.
Function Group: STX4
Program Name: SAPLSTX4
Main Program:
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SAPSCRIPT_USELIST_LIST_FORMS 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 'SAPSCRIPT_USELIST_LIST_FORMS'"SAPscript: Read forms for print program in TTXFP.
EXPORTING
PRI_PROG_NAME = "
TABLES
* LAYOUT_SETS = "
EXCEPTIONS
NO_ENTRY_FOUND = 1 SYSTEM_FAILURE = 2 FOREIGN_LOCK = 3
IMPORTING Parameters details for SAPSCRIPT_USELIST_LIST_FORMS
PRI_PROG_NAME -
Data type: TTXFP-PRINT_NAMEOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for SAPSCRIPT_USELIST_LIST_FORMS
LAYOUT_SETS -
Data type: TTXFPOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_ENTRY_FOUND - No Entry Found
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SYSTEM_FAILURE - Error in lock management
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
FOREIGN_LOCK -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SAPSCRIPT_USELIST_LIST_FORMS 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_layout_sets | TYPE STANDARD TABLE OF TTXFP, " | |||
| lv_pri_prog_name | TYPE TTXFP-PRINT_NAME, " | |||
| lv_no_entry_found | TYPE TTXFP, " | |||
| lv_system_failure | TYPE TTXFP, " | |||
| lv_foreign_lock | TYPE TTXFP. " |
|   CALL FUNCTION 'SAPSCRIPT_USELIST_LIST_FORMS' "SAPscript: Read forms for print program in TTXFP |
| EXPORTING | ||
| PRI_PROG_NAME | = lv_pri_prog_name | |
| TABLES | ||
| LAYOUT_SETS | = lt_layout_sets | |
| EXCEPTIONS | ||
| NO_ENTRY_FOUND = 1 | ||
| SYSTEM_FAILURE = 2 | ||
| FOREIGN_LOCK = 3 | ||
| . " SAPSCRIPT_USELIST_LIST_FORMS | ||
ABAP code using 7.40 inline data declarations to call FM SAPSCRIPT_USELIST_LIST_FORMS
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 PRINT_NAME FROM TTXFP INTO @DATA(ld_pri_prog_name). | ||||
Search for further information about these or an SAP related objects