SAP SIGN_DOC_VERIFY1 Function Module for NOTRANSL: Zu unterzeichnendes Dokument erzeugen









SIGN_DOC_VERIFY1 is a standard sign doc verify1 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Zu unterzeichnendes Dokument erzeugen 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 sign doc verify1 FM, simply by entering the name SIGN_DOC_VERIFY1 into the relevant SAP transaction such as SE37 or SE38.

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



Function SIGN_DOC_VERIFY1 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 'SIGN_DOC_VERIFY1'"NOTRANSL: Zu unterzeichnendes Dokument erzeugen
EXPORTING
OBJECT_IMP = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* KEY_CHORD_IMP = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* KEY_LOT_IMP = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* KEY_SHEET_IMP = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* KEY_EBR_IMP = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* KEY_CHOBJ_IMP = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* KEY_DMS_IMP = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* KEY_PNNR_IMP = "DE-EN-LANG-SWITCH-NO-TRANSLATION

IMPORTING
E_DOCUMENT_EXP = "DE-EN-LANG-SWITCH-NO-TRANSLATION
.



IMPORTING Parameters details for SIGN_DOC_VERIFY1

OBJECT_IMP - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

KEY_CHORD_IMP - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

KEY_LOT_IMP - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

KEY_SHEET_IMP - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

KEY_EBR_IMP - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

KEY_CHOBJ_IMP - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

KEY_DMS_IMP - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

KEY_PNNR_IMP - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

EXPORTING Parameters details for SIGN_DOC_VERIFY1

E_DOCUMENT_EXP - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

Copy and paste ABAP code example for SIGN_DOC_VERIFY1 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_object_imp  TYPE RC72-SIGN_OBJ, "   
lv_e_document_exp  TYPE RC70D-DOCUMENT, "   
lv_key_chord_imp  TYPE RC72, "   
lv_key_lot_imp  TYPE RC73, "   
lv_key_sheet_imp  TYPE RC74, "   
lv_key_ebr_imp  TYPE RC75, "   
lv_key_chobj_imp  TYPE RC76, "   
lv_key_dms_imp  TYPE RC77, "   
lv_key_pnnr_imp  TYPE RC78. "   

  CALL FUNCTION 'SIGN_DOC_VERIFY1'  "NOTRANSL: Zu unterzeichnendes Dokument erzeugen
    EXPORTING
         OBJECT_IMP = lv_object_imp
         KEY_CHORD_IMP = lv_key_chord_imp
         KEY_LOT_IMP = lv_key_lot_imp
         KEY_SHEET_IMP = lv_key_sheet_imp
         KEY_EBR_IMP = lv_key_ebr_imp
         KEY_CHOBJ_IMP = lv_key_chobj_imp
         KEY_DMS_IMP = lv_key_dms_imp
         KEY_PNNR_IMP = lv_key_pnnr_imp
    IMPORTING
         E_DOCUMENT_EXP = lv_e_document_exp
. " SIGN_DOC_VERIFY1




ABAP code using 7.40 inline data declarations to call FM SIGN_DOC_VERIFY1

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 SIGN_OBJ FROM RC72 INTO @DATA(ld_object_imp).
 
"SELECT single DOCUMENT FROM RC70D INTO @DATA(ld_e_document_exp).
 
 
 
 
 
 
 
 


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!