SAP SSFR_APPLSSFA_CREATE Function Module for









SSFR_APPLSSFA_CREATE is a standard ssfr applssfa create 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 ssfr applssfa create FM, simply by entering the name SSFR_APPLSSFA_CREATE into the relevant SAP transaction such as SE37 or SE38.

Function Group: SSFR
Program Name: SAPLSSFR
Main Program: SAPLSSFR
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function SSFR_APPLSSFA_CREATE 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 'SSFR_APPLSSFA_CREATE'"
EXPORTING
IV_APPLIC = "
* IV_DETACHED = "
* IV_ASK_PWD = "
IV_REPLACE_EXISTING_APPL = "
* IV_SSFTOOLKIT = "
* IV_SSFFORMAT = "
* IV_PAB = "
* IV_PROFILE = "
* IV_PROFILEID = "
* IV_HASHALG = "
* IV_ENCALG = "
* IV_INCCERTS = "

TABLES
* ET_BAPIRET2 = "
.



IMPORTING Parameters details for SSFR_APPLSSFA_CREATE

IV_APPLIC -

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

IV_DETACHED -

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

IV_ASK_PWD -

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

IV_REPLACE_EXISTING_APPL -

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

IV_SSFTOOLKIT -

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

IV_SSFFORMAT -

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

IV_PAB -

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

IV_PROFILE -

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

IV_PROFILEID -

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

IV_HASHALG -

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

IV_ENCALG -

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

IV_INCCERTS -

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

TABLES Parameters details for SSFR_APPLSSFA_CREATE

ET_BAPIRET2 -

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

Copy and paste ABAP code example for SSFR_APPLSSFA_CREATE 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_iv_applic  TYPE SSFAPPL, "   
lt_et_bapiret2  TYPE STANDARD TABLE OF BAPIRET2, "   
lv_iv_detached  TYPE SSFBDETA, "   
lv_iv_ask_pwd  TYPE SSFASK_PWD, "   
lv_iv_replace_existing_appl  TYPE BOOLEAN, "   
lv_iv_ssftoolkit  TYPE SSFTOOLKIT, "   
lv_iv_ssfformat  TYPE SSFFORM, "   
lv_iv_pab  TYPE SSFPAB, "   
lv_iv_profile  TYPE SSFPROF, "   
lv_iv_profileid  TYPE SSFID, "   
lv_iv_hashalg  TYPE SSFHASH, "   
lv_iv_encalg  TYPE SSFENCR, "   
lv_iv_inccerts  TYPE SSFBINCC. "   

  CALL FUNCTION 'SSFR_APPLSSFA_CREATE'  "
    EXPORTING
         IV_APPLIC = lv_iv_applic
         IV_DETACHED = lv_iv_detached
         IV_ASK_PWD = lv_iv_ask_pwd
         IV_REPLACE_EXISTING_APPL = lv_iv_replace_existing_appl
         IV_SSFTOOLKIT = lv_iv_ssftoolkit
         IV_SSFFORMAT = lv_iv_ssfformat
         IV_PAB = lv_iv_pab
         IV_PROFILE = lv_iv_profile
         IV_PROFILEID = lv_iv_profileid
         IV_HASHALG = lv_iv_hashalg
         IV_ENCALG = lv_iv_encalg
         IV_INCCERTS = lv_iv_inccerts
    TABLES
         ET_BAPIRET2 = lt_et_bapiret2
. " SSFR_APPLSSFA_CREATE




ABAP code using 7.40 inline data declarations to call FM SSFR_APPLSSFA_CREATE

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.

 
 
 
 
 
 
 
 
 
 
 
 
 


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!