SAP ISH_SGDRG_UNBV10_FILL Function Module for
ISH_SGDRG_UNBV10_FILL is a standard ish sgdrg unbv10 fill 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 ish sgdrg unbv10 fill FM, simply by entering the name ISH_SGDRG_UNBV10_FILL into the relevant SAP transaction such as SE37 or SE38.
Function Group: NC25
Program Name: SAPLNC25
Main Program: SAPLNC25
Appliation area: N
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISH_SGDRG_UNBV10_FILL 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 'ISH_SGDRG_UNBV10_FILL'".
EXPORTING
INC301B = "
INC301D = "
ITNC301XI = "
CREATIONDATE = "
CREATIONTIME = "
IMPORTING
SEGMENTSTRING = "
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLNC25G_001 IS-H: DRG Conversion User Exits: ICPML Int->Ext
EXIT_SAPLNC25G_002 IS-H: DRG Conversion User Exits: ICP Ext->Int
EXIT_SAPLNC25G_003 IS-H: DRG Conversion User Exits: Diagnoses Int->Ext
EXIT_SAPLNC25G_004 IS-H: DRG Conversion User Exits: Diagnoses Ext->Int
EXIT_SAPLNC25G_005 IS-H: DRG Conversion User Exits: DRG/MDC Int->Ext
EXIT_SAPLNC25G_006 IS-H: DRG Conversion User Exits: DRG/MDC Ext->Int
EXIT_SAPLNC25_001 IS-H SG: DRG V1.0 User Exit for STA, Start of File
EXIT_SAPLNC25_002 IS-H SG: DRG V1.0 User Exit for HC1, Enc. Inpat/Day Surgery
EXIT_SAPLNC25_003 IS-H SG: DRG V1.0 User Exit for DR2, Diagnosis Related Group
EXIT_SAPLNC25_004 IS-H SG: DRG V1.0 User Exit for MV3, Movement
EXIT_SAPLNC25_005 IS-H SG: DRG V1.0 User Exit for HC2, Enc. for SOC
EXIT_SAPLNC25_006 IS-H SG: DRG V1.0 User Exit for HC3, Enc. for AaE
EXIT_SAPLNC25_007 IS-H SG: DRG V1.0 User Exit for AG1, Aggregate
EXIT_SAPLNC25_008 IS-H SG: DRG V1.0 User Exit for END, End of File
IMPORTING Parameters details for ISH_SGDRG_UNBV10_FILL
INC301B -
Data type: NC301BOptional: No
Call by Reference: No ( called with pass by value option)
INC301D -
Data type: NC301DOptional: No
Call by Reference: No ( called with pass by value option)
ITNC301XI -
Data type: TNC301XIOptional: No
Call by Reference: No ( called with pass by value option)
CREATIONDATE -
Data type: SY-DATUMOptional: No
Call by Reference: No ( called with pass by value option)
CREATIONTIME -
Data type: SY-UZEITOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISH_SGDRG_UNBV10_FILL
SEGMENTSTRING -
Data type: RNCMAILOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISH_SGDRG_UNBV10_FILL 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_inc301b | TYPE NC301B, " | |||
| lv_segmentstring | TYPE RNCMAIL, " | |||
| lv_inc301d | TYPE NC301D, " | |||
| lv_itnc301xi | TYPE TNC301XI, " | |||
| lv_creationdate | TYPE SY-DATUM, " | |||
| lv_creationtime | TYPE SY-UZEIT. " |
|   CALL FUNCTION 'ISH_SGDRG_UNBV10_FILL' " |
| EXPORTING | ||
| INC301B | = lv_inc301b | |
| INC301D | = lv_inc301d | |
| ITNC301XI | = lv_itnc301xi | |
| CREATIONDATE | = lv_creationdate | |
| CREATIONTIME | = lv_creationtime | |
| IMPORTING | ||
| SEGMENTSTRING | = lv_segmentstring | |
| . " ISH_SGDRG_UNBV10_FILL | ||
ABAP code using 7.40 inline data declarations to call FM ISH_SGDRG_UNBV10_FILL
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 DATUM FROM SY INTO @DATA(ld_creationdate). | ||||
| "SELECT single UZEIT FROM SY INTO @DATA(ld_creationtime). | ||||
Search for further information about these or an SAP related objects