SAP HR_CZ_RELDP_SIGN_BY_USER Function Module for









HR_CZ_RELDP_SIGN_BY_USER is a standard hr cz reldp sign by user 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 hr cz reldp sign by user FM, simply by entering the name HR_CZ_RELDP_SIGN_BY_USER into the relevant SAP transaction such as SE37 or SE38.

Function Group: 3T99
Program Name: SAPL3T99
Main Program: SAPL3T99
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function HR_CZ_RELDP_SIGN_BY_USER 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 'HR_CZ_RELDP_SIGN_BY_USER'"
EXPORTING
INPUT_XML = "
OSTR_INPUT_DATA_L = "
CESTA = "
* PVS_SENDING = ' ' "
IDSTR = "
TRANSACTION = "
* SIGNER = ' ' "
* PASSWORD = ' ' "
* ASK_PWD = 'X' "
* STR_FORMAT = 'PKCS7' "
* B_INC_CERTS = ' ' "
* B_DETACHED = ' ' "
* B_INENC = 'X' "
* IO_SPEC = 'T' "

IMPORTING
G_CRC = "
G_RESULT = "
SIGNERID = "
P_PVS = "

TABLES
OSTR_INPUT_DATA = "

EXCEPTIONS
NO_SSF_INFO_FOUND = 1 SSF_RFC_DESTINATION_ERROR = 10 CANCELED_BY_USER = 2 SSF_RFC_ERROR = 3 SSF_RFC_NO_MEMORY = 4 SSF_RFC_GET_DATA_ERROR = 5 SSF_RFC_SEND_DATA_ERROR = 6 SSF_RFC_SIGNER_LIST_ERROR = 7 SSF_RFC_INPUT_DATA_ERROR = 8 SSF_FB_INPUT_PARAMETER_ERROR = 9
.



IMPORTING Parameters details for HR_CZ_RELDP_SIGN_BY_USER

INPUT_XML -

Data type: IF_IXML_DOCUMENT
Optional: No
Call by Reference: Yes

OSTR_INPUT_DATA_L -

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

CESTA -

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

PVS_SENDING -

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

IDSTR -

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

TRANSACTION -

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

SIGNER -

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

PASSWORD -

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

ASK_PWD -

Data type: SSFPARMS-ASK_PWD
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

STR_FORMAT -

Data type: SSFPARMS-SSFFORMAT
Default: 'PKCS7'
Optional: Yes
Call by Reference: No ( called with pass by value option)

B_INC_CERTS -

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

B_DETACHED -

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

B_INENC -

Data type: SSFPARMS-BINENC
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

IO_SPEC -

Data type: SSFPARMS-IOSPEC
Default: 'T'
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for HR_CZ_RELDP_SIGN_BY_USER

G_CRC -

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

G_RESULT -

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

SIGNERID -

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

P_PVS -

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

TABLES Parameters details for HR_CZ_RELDP_SIGN_BY_USER

OSTR_INPUT_DATA -

Data type:
Optional: No
Call by Reference: Yes

EXCEPTIONS details

NO_SSF_INFO_FOUND -

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

SSF_RFC_DESTINATION_ERROR -

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

CANCELED_BY_USER -

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

SSF_RFC_ERROR -

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

SSF_RFC_NO_MEMORY -

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

SSF_RFC_GET_DATA_ERROR -

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

SSF_RFC_SEND_DATA_ERROR -

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

SSF_RFC_SIGNER_LIST_ERROR -

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

SSF_RFC_INPUT_DATA_ERROR -

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

SSF_FB_INPUT_PARAMETER_ERROR -

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

Copy and paste ABAP code example for HR_CZ_RELDP_SIGN_BY_USER 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_g_crc  TYPE SSFPARMS-SSFCRC, "   
lv_input_xml  TYPE IF_IXML_DOCUMENT, "   
lt_ostr_input_data  TYPE STANDARD TABLE OF IF_IXML_DOCUMENT, "   
lv_no_ssf_info_found  TYPE IF_IXML_DOCUMENT, "   
lv_ostr_input_data_l  TYPE SSFPARMS-INDATALEN, "   
lv_ssf_rfc_destination_error  TYPE SSFPARMS, "   
lv_cesta  TYPE RLGRAP-FILENAME, "   
lv_pvs_sending  TYPE CHAR1, "   ' '
lv_idstr  TYPE T5TELDP-IDSOUB, "   
lv_transaction  TYPE CHAR20, "   
lv_signer  TYPE SSFPARMS-SIGNER, "   ' '
lv_g_result  TYPE SSFINFO-RESULT, "   
lv_canceled_by_user  TYPE SSFINFO, "   
lv_password  TYPE SSFINFO-PASSWORD, "   ' '
lv_signerid  TYPE SSFINFO-ID, "   
lv_ssf_rfc_error  TYPE SSFINFO, "   
lv_p_pvs  TYPE P18_PVS, "   
lv_ask_pwd  TYPE SSFPARMS-ASK_PWD, "   'X'
lv_ssf_rfc_no_memory  TYPE SSFPARMS, "   
lv_str_format  TYPE SSFPARMS-SSFFORMAT, "   'PKCS7'
lv_ssf_rfc_get_data_error  TYPE SSFPARMS, "   
lv_b_inc_certs  TYPE SSFPARMS-BINCCERTS, "   ' '
lv_ssf_rfc_send_data_error  TYPE SSFPARMS, "   
lv_b_detached  TYPE SSFPARMS-BDETACHED, "   ' '
lv_ssf_rfc_signer_list_error  TYPE SSFPARMS, "   
lv_b_inenc  TYPE SSFPARMS-BINENC, "   'X'
lv_ssf_rfc_input_data_error  TYPE SSFPARMS, "   
lv_io_spec  TYPE SSFPARMS-IOSPEC, "   'T'
lv_ssf_fb_input_parameter_error  TYPE SSFPARMS. "   

  CALL FUNCTION 'HR_CZ_RELDP_SIGN_BY_USER'  "
    EXPORTING
         INPUT_XML = lv_input_xml
         OSTR_INPUT_DATA_L = lv_ostr_input_data_l
         CESTA = lv_cesta
         PVS_SENDING = lv_pvs_sending
         IDSTR = lv_idstr
         TRANSACTION = lv_transaction
         SIGNER = lv_signer
         PASSWORD = lv_password
         ASK_PWD = lv_ask_pwd
         STR_FORMAT = lv_str_format
         B_INC_CERTS = lv_b_inc_certs
         B_DETACHED = lv_b_detached
         B_INENC = lv_b_inenc
         IO_SPEC = lv_io_spec
    IMPORTING
         G_CRC = lv_g_crc
         G_RESULT = lv_g_result
         SIGNERID = lv_signerid
         P_PVS = lv_p_pvs
    TABLES
         OSTR_INPUT_DATA = lt_ostr_input_data
    EXCEPTIONS
        NO_SSF_INFO_FOUND = 1
        SSF_RFC_DESTINATION_ERROR = 10
        CANCELED_BY_USER = 2
        SSF_RFC_ERROR = 3
        SSF_RFC_NO_MEMORY = 4
        SSF_RFC_GET_DATA_ERROR = 5
        SSF_RFC_SEND_DATA_ERROR = 6
        SSF_RFC_SIGNER_LIST_ERROR = 7
        SSF_RFC_INPUT_DATA_ERROR = 8
        SSF_FB_INPUT_PARAMETER_ERROR = 9
. " HR_CZ_RELDP_SIGN_BY_USER




ABAP code using 7.40 inline data declarations to call FM HR_CZ_RELDP_SIGN_BY_USER

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 SSFCRC FROM SSFPARMS INTO @DATA(ld_g_crc).
 
 
 
 
"SELECT single INDATALEN FROM SSFPARMS INTO @DATA(ld_ostr_input_data_l).
 
 
"SELECT single FILENAME FROM RLGRAP INTO @DATA(ld_cesta).
 
DATA(ld_pvs_sending) = ' '.
 
"SELECT single IDSOUB FROM T5TELDP INTO @DATA(ld_idstr).
 
 
"SELECT single SIGNER FROM SSFPARMS INTO @DATA(ld_signer).
DATA(ld_signer) = ' '.
 
"SELECT single RESULT FROM SSFINFO INTO @DATA(ld_g_result).
 
 
"SELECT single PASSWORD FROM SSFINFO INTO @DATA(ld_password).
DATA(ld_password) = ' '.
 
"SELECT single ID FROM SSFINFO INTO @DATA(ld_signerid).
 
 
 
"SELECT single ASK_PWD FROM SSFPARMS INTO @DATA(ld_ask_pwd).
DATA(ld_ask_pwd) = 'X'.
 
 
"SELECT single SSFFORMAT FROM SSFPARMS INTO @DATA(ld_str_format).
DATA(ld_str_format) = 'PKCS7'.
 
 
"SELECT single BINCCERTS FROM SSFPARMS INTO @DATA(ld_b_inc_certs).
DATA(ld_b_inc_certs) = ' '.
 
 
"SELECT single BDETACHED FROM SSFPARMS INTO @DATA(ld_b_detached).
DATA(ld_b_detached) = ' '.
 
 
"SELECT single BINENC FROM SSFPARMS INTO @DATA(ld_b_inenc).
DATA(ld_b_inenc) = 'X'.
 
 
"SELECT single IOSPEC FROM SSFPARMS INTO @DATA(ld_io_spec).
DATA(ld_io_spec) = 'T'.
 
 


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!