SAP TMS_PS_WRITE_PROFILE_TO_DISK Function Module for









TMS_PS_WRITE_PROFILE_TO_DISK is a standard tms ps write profile to disk 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 tms ps write profile to disk FM, simply by entering the name TMS_PS_WRITE_PROFILE_TO_DISK into the relevant SAP transaction such as SE37 or SE38.

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



Function TMS_PS_WRITE_PROFILE_TO_DISK 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 'TMS_PS_WRITE_PROFILE_TO_DISK'"
EXPORTING
IV_PROF_NAME = "

IMPORTING
EV_PROF_NAME = "
EV_PROF_PATH = "

TABLES
TT_PROFILE = "

EXCEPTIONS
PERMISSION_DENIED = 1 READ_PROFILE_FAILED = 2 WRITE_PROFILE_FAILED = 3 SET_CODEPAGE_FAILED = 4 WRITE_DOMCFG_FAILED = 5
.



IMPORTING Parameters details for TMS_PS_WRITE_PROFILE_TO_DISK

IV_PROF_NAME -

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

EXPORTING Parameters details for TMS_PS_WRITE_PROFILE_TO_DISK

EV_PROF_NAME -

Data type: STPA-FILE
Optional: No
Call by Reference: Yes

EV_PROF_PATH -

Data type: STPA-FILE
Optional: No
Call by Reference: Yes

TABLES Parameters details for TMS_PS_WRITE_PROFILE_TO_DISK

TT_PROFILE -

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

EXCEPTIONS details

PERMISSION_DENIED -

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

READ_PROFILE_FAILED -

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

WRITE_PROFILE_FAILED -

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

SET_CODEPAGE_FAILED -

Data type:
Optional: No
Call by Reference: Yes

WRITE_DOMCFG_FAILED -

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

Copy and paste ABAP code example for TMS_PS_WRITE_PROFILE_TO_DISK 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_tt_profile  TYPE STANDARD TABLE OF TPPROFIL, "   
lv_ev_prof_name  TYPE STPA-FILE, "   
lv_iv_prof_name  TYPE STPA-FILE, "   
lv_permission_denied  TYPE STPA, "   
lv_ev_prof_path  TYPE STPA-FILE, "   
lv_read_profile_failed  TYPE STPA, "   
lv_write_profile_failed  TYPE STPA, "   
lv_set_codepage_failed  TYPE STPA, "   
lv_write_domcfg_failed  TYPE STPA. "   

  CALL FUNCTION 'TMS_PS_WRITE_PROFILE_TO_DISK'  "
    EXPORTING
         IV_PROF_NAME = lv_iv_prof_name
    IMPORTING
         EV_PROF_NAME = lv_ev_prof_name
         EV_PROF_PATH = lv_ev_prof_path
    TABLES
         TT_PROFILE = lt_tt_profile
    EXCEPTIONS
        PERMISSION_DENIED = 1
        READ_PROFILE_FAILED = 2
        WRITE_PROFILE_FAILED = 3
        SET_CODEPAGE_FAILED = 4
        WRITE_DOMCFG_FAILED = 5
. " TMS_PS_WRITE_PROFILE_TO_DISK




ABAP code using 7.40 inline data declarations to call FM TMS_PS_WRITE_PROFILE_TO_DISK

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 FILE FROM STPA INTO @DATA(ld_ev_prof_name).
 
"SELECT single FILE FROM STPA INTO @DATA(ld_iv_prof_name).
 
 
"SELECT single FILE FROM STPA INTO @DATA(ld_ev_prof_path).
 
 
 
 
 


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!