SAP EXIT_SAPLN003_001 Function Module for IS-H: Create Name String from Business Partner Data









EXIT_SAPLN003_001 is a standard exit sapln003 001 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-H: Create Name String from Business Partner Data 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 exit sapln003 001 FM, simply by entering the name EXIT_SAPLN003_001 into the relevant SAP transaction such as SE37 or SE38.

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



Function EXIT_SAPLN003_001 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 'EXIT_SAPLN003_001'"IS-H: Create Name String from Business Partner Data
EXPORTING
SS_GPART = "Business Partner Identification Key
* SS_NGPA = "Business Partner Data
* SS_ROLLE = '1' "Function for which Name Formatted
* SS_LIST = ' ' "Output Name on List (ON/OFF)

IMPORTING
SS_PNAME = "Formatted Patient Name
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
ISH_CHECK_LOCKED_GPART IS-H: Checks Whether a Business Partner Is Locked in a Given Period
ISH_CHECK_PAYMENT_GUARANTEE IS-H: Read and Check Insurance Coverage for Services
ISH_FIND_BP_RELATION IS-H: Find Business Partner Relationships
ISH_GET_NVVF_TAB IS-H: OBSOLETE!!! Read Case-Related Insurance Relationships in Int. Table
ISH_NGPA_CONCATENATE IS-H: Create Name String from Business Partner Data
ISH_READ_KHART_TXT IS-H: Determine Long Text for Hospital Type
ISH_READ_KTART IS-H: Read Insurance Provider Data from Insurance Provider File (NKTR)
ISH_READ_NABG IS-H: Read Employer Data
ISH_READ_NBSNR
ISH_READ_NDEB IS-H: Read Customer Data from IS-H Customer File NDEB (opt. Buffered)
ISH_READ_NGPA IS-H: Read General BP from BP File NGPA (Optionally Buffered)
ISH_READ_NGPA_WHERE IS-H: Read Business Partner with Variable WHERE Clause
ISH_READ_NGUZ IS-H: Read User Name Assignment (Optionally Buffered)
ISH_READ_NKBVLANR
ISH_READ_NKRH IS-H: Read Hospital Data
ISH_READ_NKTR IS-H: Read Insurance Provider Data from IP File NKTR (Opt. Buffered)
ISH_READ_NKTR_WHERE IS-H: Read Insurance Providers with Variable WHERE Clause
ISH_READ_NPEF IS-H: Read Specialties for Person
ISH_READ_NPER IS-H: Read Person Data from IS-H Person File NPER (Opt. Buffered)
ISH_READ_NVVF IS-H: OBSOLETE!! Read a Specific Case-Rel. Ins. Relationship (Buffered)
ISH_READ_TN18B IS-H: Read Institution-Dependent Ins. Provider Parameters (TN18B)
ISH_TREATM_CERTIF_STATUS_CHECK IS-H: Check Whether Certificate Status 'Missing' Is Set

IMPORTING Parameters details for EXIT_SAPLN003_001

SS_GPART - Business Partner Identification Key

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

SS_NGPA - Business Partner Data

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

SS_ROLLE - Function for which Name Formatted

Data type: RNG10-GPART
Default: '1'
Optional: Yes
Call by Reference: No ( called with pass by value option)

SS_LIST - Output Name on List (ON/OFF)

Data type: NPDOK-XFELD
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for EXIT_SAPLN003_001

SS_PNAME - Formatted Patient Name

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

Copy and paste ABAP code example for EXIT_SAPLN003_001 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_ss_gpart  TYPE NGPA-GPART, "   
lv_ss_pname  TYPE NGPA, "   
lv_ss_ngpa  TYPE NGPA, "   
lv_ss_rolle  TYPE RNG10-GPART, "   '1'
lv_ss_list  TYPE NPDOK-XFELD. "   ' '

  CALL FUNCTION 'EXIT_SAPLN003_001'  "IS-H: Create Name String from Business Partner Data
    EXPORTING
         SS_GPART = lv_ss_gpart
         SS_NGPA = lv_ss_ngpa
         SS_ROLLE = lv_ss_rolle
         SS_LIST = lv_ss_list
    IMPORTING
         SS_PNAME = lv_ss_pname
. " EXIT_SAPLN003_001




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLN003_001

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 GPART FROM NGPA INTO @DATA(ld_ss_gpart).
 
 
 
"SELECT single GPART FROM RNG10 INTO @DATA(ld_ss_rolle).
DATA(ld_ss_rolle) = '1'.
 
"SELECT single XFELD FROM NPDOK INTO @DATA(ld_ss_list).
DATA(ld_ss_list) = ' '.
 


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!