SSF_DEVELOPE is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name SSF_DEVELOPE into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
SSFG
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'SSF_DEVELOPE' "
EXPORTING
ssf_dest = " rfcdes-rfcdest RFC Destination
* str_format = 'PKCS7' " ssfparms-ssfformat
* b_outdec = 'X' " ssfparms-boutdec Decode output data
* io_spec = 'T' " ssfparms-iospec
ostr_enveloped_data_l = " ssfparms-envdatalen
IMPORTING
ostr_output_data_l = " ssfparms-outdatalen
crc = " ssfparms-ssfcrc SSF Return code
TABLES
ostr_enveloped_data = " ssfbin
recipient = " ssfinfo Payee information
ostr_output_data = "
EXCEPTIONS
SSF_RFC_ERROR = 1 "
SSF_RFC_NO_MEMORY = 2 "
SSF_RFC_GET_DATA_ERROR = 3 "
SSF_RFC_SEND_DATA_ERROR = 4 "
SSF_RFC_RECIPIENT_ERROR = 5 " Error Occurred During Reading of Recipient Line
SSF_RFC_INPUT_DATA_ERROR = 6 "
SSF_FB_INPUT_PARAMETER_ERROR = 7 " Function Module Parameter Error
SSF_RFC_DESTINATION_ERROR = 8 "
. " SSF_DEVELOPE
The ABAP code below is a full code listing to execute function module SSF_DEVELOPE including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| ld_ostr_output_data_l | TYPE SSFPARMS-OUTDATALEN , |
| ld_crc | TYPE SSFPARMS-SSFCRC , |
| it_ostr_enveloped_data | TYPE STANDARD TABLE OF SSFBIN,"TABLES PARAM |
| wa_ostr_enveloped_data | LIKE LINE OF it_ostr_enveloped_data , |
| it_recipient | TYPE STANDARD TABLE OF SSFINFO,"TABLES PARAM |
| wa_recipient | LIKE LINE OF it_recipient , |
| it_ostr_output_data | TYPE STANDARD TABLE OF STRING,"TABLES PARAM |
| wa_ostr_output_data | LIKE LINE OF it_ostr_output_data . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_ostr_output_data_l | TYPE SSFPARMS-OUTDATALEN , |
| ld_ssf_dest | TYPE RFCDES-RFCDEST , |
| it_ostr_enveloped_data | TYPE STANDARD TABLE OF SSFBIN , |
| wa_ostr_enveloped_data | LIKE LINE OF it_ostr_enveloped_data, |
| ld_crc | TYPE SSFPARMS-SSFCRC , |
| ld_str_format | TYPE SSFPARMS-SSFFORMAT , |
| it_recipient | TYPE STANDARD TABLE OF SSFINFO , |
| wa_recipient | LIKE LINE OF it_recipient, |
| ld_b_outdec | TYPE SSFPARMS-BOUTDEC , |
| it_ostr_output_data | TYPE STANDARD TABLE OF STRING , |
| wa_ostr_output_data | LIKE LINE OF it_ostr_output_data, |
| ld_io_spec | TYPE SSFPARMS-IOSPEC , |
| ld_ostr_enveloped_data_l | TYPE SSFPARMS-ENVDATALEN . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name SSF_DEVELOPE or its description.