SAP QSS7_READ_SIGN_REMARK Function Module for NOTRANSL: Auslesen der Tabelle der Bemerkung zur Signatur
QSS7_READ_SIGN_REMARK is a standard qss7 read sign remark 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: Auslesen der Tabelle der Bemerkung zur Signatur 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 qss7 read sign remark FM, simply by entering the name QSS7_READ_SIGN_REMARK into the relevant SAP transaction such as SE37 or SE38.
Function Group: QSS7
Program Name: SAPLQSS7
Main Program: SAPLQSS7
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function QSS7_READ_SIGN_REMARK 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 'QSS7_READ_SIGN_REMARK'"NOTRANSL: Auslesen der Tabelle der Bemerkung zur Signatur.
EXPORTING
IV_DS_APPLICATION = "Application of the Digital Signature
* IV_VORGANG = "Business Transaction
* IV_QMNUM = "Notification Number
* IV_MANUM = "Sequential Activity Number
IV_DS_SIGNOBJECT = "Digital Signature Object
IV_SIGN_STATE = "Status of Signature Process
* IV_SIGNSTRAT = "Signature Strategy
* IV_PRUEFLOS = "Inspection Lot Number
* IV_PHYNR = "Number of the physical sample
* IV_VORNR = "Operation Number
* IV_PROBENR = "Sample Number (Based on an Inspection Point)
* IV_PRNR = "Sample-Drawing Number
CHANGING
* LT_SIGN_REMARK = "Record of Remarks from the Application for Digital Signature
* LV_DEFAULT_REMARK_ID = "Component of Version Number
IMPORTING Parameters details for QSS7_READ_SIGN_REMARK
IV_DS_APPLICATION - Application of the Digital Signature
Data type: SIGN_APPLOptional: No
Call by Reference: Yes
IV_VORGANG - Business Transaction
Data type: J_VORGANGOptional: Yes
Call by Reference: Yes
IV_QMNUM - Notification Number
Data type: QMNUMOptional: Yes
Call by Reference: Yes
IV_MANUM - Sequential Activity Number
Data type: MANUMOptional: Yes
Call by Reference: Yes
IV_DS_SIGNOBJECT - Digital Signature Object
Data type: SIGN_OBJECTOptional: No
Call by Reference: Yes
IV_SIGN_STATE - Status of Signature Process
Data type: SIGN_STATEOptional: No
Call by Reference: Yes
IV_SIGNSTRAT - Signature Strategy
Data type: SIGNSTRATOptional: Yes
Call by Reference: Yes
IV_PRUEFLOS - Inspection Lot Number
Data type: QPLOSOptional: Yes
Call by Reference: Yes
IV_PHYNR - Number of the physical sample
Data type: QPHYSPRNROptional: Yes
Call by Reference: Yes
IV_VORNR - Operation Number
Data type: VORNROptional: Yes
Call by Reference: Yes
IV_PROBENR - Sample Number (Based on an Inspection Point)
Data type: QPROBENRPPOptional: Yes
Call by Reference: Yes
IV_PRNR - Sample-Drawing Number
Data type: QPZNROptional: Yes
Call by Reference: Yes
CHANGING Parameters details for QSS7_READ_SIGN_REMARK
LT_SIGN_REMARK - Record of Remarks from the Application for Digital Signature
Data type: SIGN_REMARK_TABOptional: Yes
Call by Reference: Yes
LV_DEFAULT_REMARK_ID - Component of Version Number
Data type: SIGN_REMARK_STRUC-IDOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for QSS7_READ_SIGN_REMARK 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_lt_sign_remark | TYPE SIGN_REMARK_TAB, " | |||
| lv_iv_ds_application | TYPE SIGN_APPL, " | |||
| lv_iv_vorgang | TYPE J_VORGANG, " | |||
| lv_iv_qmnum | TYPE QMNUM, " | |||
| lv_iv_manum | TYPE MANUM, " | |||
| lv_iv_ds_signobject | TYPE SIGN_OBJECT, " | |||
| lv_lv_default_remark_id | TYPE SIGN_REMARK_STRUC-ID, " | |||
| lv_iv_sign_state | TYPE SIGN_STATE, " | |||
| lv_iv_signstrat | TYPE SIGNSTRAT, " | |||
| lv_iv_prueflos | TYPE QPLOS, " | |||
| lv_iv_phynr | TYPE QPHYSPRNR, " | |||
| lv_iv_vornr | TYPE VORNR, " | |||
| lv_iv_probenr | TYPE QPROBENRPP, " | |||
| lv_iv_prnr | TYPE QPZNR. " |
|   CALL FUNCTION 'QSS7_READ_SIGN_REMARK' "NOTRANSL: Auslesen der Tabelle der Bemerkung zur Signatur |
| EXPORTING | ||
| IV_DS_APPLICATION | = lv_iv_ds_application | |
| IV_VORGANG | = lv_iv_vorgang | |
| IV_QMNUM | = lv_iv_qmnum | |
| IV_MANUM | = lv_iv_manum | |
| IV_DS_SIGNOBJECT | = lv_iv_ds_signobject | |
| IV_SIGN_STATE | = lv_iv_sign_state | |
| IV_SIGNSTRAT | = lv_iv_signstrat | |
| IV_PRUEFLOS | = lv_iv_prueflos | |
| IV_PHYNR | = lv_iv_phynr | |
| IV_VORNR | = lv_iv_vornr | |
| IV_PROBENR | = lv_iv_probenr | |
| IV_PRNR | = lv_iv_prnr | |
| CHANGING | ||
| LT_SIGN_REMARK | = lv_lt_sign_remark | |
| LV_DEFAULT_REMARK_ID | = lv_lv_default_remark_id | |
| . " QSS7_READ_SIGN_REMARK | ||
ABAP code using 7.40 inline data declarations to call FM QSS7_READ_SIGN_REMARK
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 ID FROM SIGN_REMARK_STRUC INTO @DATA(ld_lv_default_remark_id). | ||||
Search for further information about these or an SAP related objects