SAP TADIR_PFLEGE Function Module for
TADIR_PFLEGE is a standard tadir pflege 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 tadir pflege FM, simply by entering the name TADIR_PFLEGE into the relevant SAP transaction such as SE37 or SE38.
Function Group: STRW
Program Name: SAPLSTRW
Main Program: SAPLSTRW
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function TADIR_PFLEGE 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 'TADIR_PFLEGE'".
EXPORTING
ADIR = "TADIR, as read by the caller
* E71TEMP = "
* EDCNT = ' ' "Control: ' ' normal, X without EXI
* MASTERFLAG = ' ' "Set to MASTER
* MSGNOEXI = ' ' "Message: exists is sent
* NODIALOG = ' ' "No dialog is to take place
* READONLY = ' ' "TADIR is only to be displayed
* START_COLUMN = 16 "Start screen column
* START_ROW = 8 "Start screen line
IMPORTING
NEWADIR = "TADIR, as set in the function modu
PDDERR = "Return code as DDERR
IMPORTING Parameters details for TADIR_PFLEGE
ADIR - TADIR, as read by the caller
Data type: TADIROptional: No
Call by Reference: No ( called with pass by value option)
E71TEMP -
Data type: E071Optional: Yes
Call by Reference: No ( called with pass by value option)
EDCNT - Control: ' ' normal, X without EXI
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
MASTERFLAG - Set to MASTER
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
MSGNOEXI - Message: exists is sent
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
NODIALOG - No dialog is to take place
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
READONLY - TADIR is only to be displayed
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
START_COLUMN - Start screen column
Data type:Default: 16
Optional: Yes
Call by Reference: No ( called with pass by value option)
START_ROW - Start screen line
Data type:Default: 8
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for TADIR_PFLEGE
NEWADIR - TADIR, as set in the function modu
Data type: TADIROptional: No
Call by Reference: No ( called with pass by value option)
PDDERR - Return code as DDERR
Data type: DDERROptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for TADIR_PFLEGE 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_adir | TYPE TADIR, " | |||
| lv_newadir | TYPE TADIR, " | |||
| lv_pdderr | TYPE DDERR, " | |||
| lv_e71temp | TYPE E071, " | |||
| lv_edcnt | TYPE E071, " SPACE | |||
| lv_masterflag | TYPE E071, " SPACE | |||
| lv_msgnoexi | TYPE E071, " SPACE | |||
| lv_nodialog | TYPE E071, " SPACE | |||
| lv_readonly | TYPE E071, " SPACE | |||
| lv_start_column | TYPE E071, " 16 | |||
| lv_start_row | TYPE E071. " 8 |
|   CALL FUNCTION 'TADIR_PFLEGE' " |
| EXPORTING | ||
| ADIR | = lv_adir | |
| E71TEMP | = lv_e71temp | |
| EDCNT | = lv_edcnt | |
| MASTERFLAG | = lv_masterflag | |
| MSGNOEXI | = lv_msgnoexi | |
| NODIALOG | = lv_nodialog | |
| READONLY | = lv_readonly | |
| START_COLUMN | = lv_start_column | |
| START_ROW | = lv_start_row | |
| IMPORTING | ||
| NEWADIR | = lv_newadir | |
| PDDERR | = lv_pdderr | |
| . " TADIR_PFLEGE | ||
ABAP code using 7.40 inline data declarations to call FM TADIR_PFLEGE
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_edcnt) | = ' '. | |||
| DATA(ld_masterflag) | = ' '. | |||
| DATA(ld_msgnoexi) | = ' '. | |||
| DATA(ld_nodialog) | = ' '. | |||
| DATA(ld_readonly) | = ' '. | |||
| DATA(ld_start_column) | = 16. | |||
| DATA(ld_start_row) | = 8. | |||
Search for further information about these or an SAP related objects