SAP SIGN_VERIFY_R46C Function Module for NOTRANSL: Verifizierung der unterzeichneten Daten (46C)









SIGN_VERIFY_R46C is a standard sign verify r46c 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: Verifizierung der unterzeichneten Daten (46C) 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 verify r46c FM, simply by entering the name SIGN_VERIFY_R46C 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_VERIFY_R46C 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_VERIFY_R46C'"NOTRANSL: Verifizierung der unterzeichneten Daten (46C)
EXPORTING
* OBJECT_IMP = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* KEY_PNNR_IMP = "Attributes of Signature for Physical-Sample Drawing
I_RC71 = "Attributes for Signature
* SIGN_REASON_IMP = "Signature reason
* SIGN_REASON_KTXT_IMP = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* KEY_CHORD_IMP = "Attributes of Signature for Engineering Change Order
* KEY_LOT_IMP = "Attributes of Signature for Inspection Lot
* KEY_SHEET_IMP = "Attributes for Signature for PI Sheet
* KEY_EBR_IMP = "Attributes of Signature for Batch Record
* KEY_CHOBJ_IMP = "Attributes of Signature for Object Management Record
* KEY_DMS_IMP = "Attributes for signature for document

IMPORTING
E_INDATALEN = "DE-EN-LANG-SWITCH-NO-TRANSLATION

TABLES
* E_SIGN_INPUT_DATA = "Digital Signature: Data to be Signed
* I_TEXTLINES = "Batch Record: Text Edit Table
.



IMPORTING Parameters details for SIGN_VERIFY_R46C

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

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

KEY_PNNR_IMP - Attributes of Signature for Physical-Sample Drawing

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

I_RC71 - Attributes for Signature

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

SIGN_REASON_IMP - Signature reason

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

SIGN_REASON_KTXT_IMP - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

KEY_CHORD_IMP - Attributes of Signature for Engineering Change Order

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

KEY_LOT_IMP - Attributes of Signature for Inspection Lot

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

KEY_SHEET_IMP - Attributes for Signature for PI Sheet

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

KEY_EBR_IMP - Attributes of Signature for Batch Record

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

KEY_CHOBJ_IMP - Attributes of Signature for Object Management Record

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

KEY_DMS_IMP - Attributes for signature for document

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

EXPORTING Parameters details for SIGN_VERIFY_R46C

E_INDATALEN - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

TABLES Parameters details for SIGN_VERIFY_R46C

E_SIGN_INPUT_DATA - Digital Signature: Data to be Signed

Data type: RC71DT
Optional: Yes
Call by Reference: Yes

I_TEXTLINES - Batch Record: Text Edit Table

Data type: VBCP_TXTLINE
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for SIGN_VERIFY_R46C 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_indatalen  TYPE SSFPARMS-INDATALEN, "   
lt_e_sign_input_data  TYPE STANDARD TABLE OF RC71DT, "   
lv_key_pnnr_imp  TYPE RC78, "   
lv_i_rc71  TYPE RC71, "   
lt_i_textlines  TYPE STANDARD TABLE OF VBCP_TXTLINE, "   
lv_sign_reason_imp  TYPE RC71-REASON, "   
lv_sign_reason_ktxt_imp  TYPE RC71-REASON_KTXT, "   
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. "   

  CALL FUNCTION 'SIGN_VERIFY_R46C'  "NOTRANSL: Verifizierung der unterzeichneten Daten (46C)
    EXPORTING
         OBJECT_IMP = lv_object_imp
         KEY_PNNR_IMP = lv_key_pnnr_imp
         I_RC71 = lv_i_rc71
         SIGN_REASON_IMP = lv_sign_reason_imp
         SIGN_REASON_KTXT_IMP = lv_sign_reason_ktxt_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
    IMPORTING
         E_INDATALEN = lv_e_indatalen
    TABLES
         E_SIGN_INPUT_DATA = lt_e_sign_input_data
         I_TEXTLINES = lt_i_textlines
. " SIGN_VERIFY_R46C




ABAP code using 7.40 inline data declarations to call FM SIGN_VERIFY_R46C

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 INDATALEN FROM SSFPARMS INTO @DATA(ld_e_indatalen).
 
 
 
 
 
"SELECT single REASON FROM RC71 INTO @DATA(ld_sign_reason_imp).
 
"SELECT single REASON_KTXT FROM RC71 INTO @DATA(ld_sign_reason_ktxt_imp).
 
 
 
 
 
 
 


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!