SAP IDCN_FSC_ASSEMBLY Function Module for FSC Form Lines Assembly
IDCN_FSC_ASSEMBLY is a standard idcn fsc assembly SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for FSC Form Lines Assembly 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 idcn fsc assembly FM, simply by entering the name IDCN_FSC_ASSEMBLY into the relevant SAP transaction such as SE37 or SE38.
Function Group: IDCN_FSC
Program Name: SAPLIDCN_FSC
Main Program: SAPLIDCN_FSC
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function IDCN_FSC_ASSEMBLY 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 'IDCN_FSC_ASSEMBLY'"FSC Form Lines Assembly.
EXPORTING
IM_FSCDEF = "Form Structure: Definition
IM_T_FSCBILAINTF = "FSC interface to RFBILA00
IM_FORMHDR = "Generic Interface for Printing: Header
IM_BILASKAL = "Scaling
* IM_BILASPRA = "Language Key
IMPORTING
EX_T_FORMLINES = "Generic Interface for Printing: Lines
EXCEPTIONS
ASSEMBLY_ERROR = 1
IMPORTING Parameters details for IDCN_FSC_ASSEMBLY
IM_FSCDEF - Form Structure: Definition
Data type: IDCN_FSCDEFOptional: No
Call by Reference: Yes
IM_T_FSCBILAINTF - FSC interface to RFBILA00
Data type: IDCN_T_FSCBILAINTFOptional: No
Call by Reference: Yes
IM_FORMHDR - Generic Interface for Printing: Header
Data type: IDCN_FORMHDROptional: No
Call by Reference: Yes
IM_BILASKAL - Scaling
Data type: BILASKALOptional: No
Call by Reference: Yes
IM_BILASPRA - Language Key
Data type: SPRASOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for IDCN_FSC_ASSEMBLY
EX_T_FORMLINES - Generic Interface for Printing: Lines
Data type: IDCN_T_FORMLINESOptional: No
Call by Reference: Yes
EXCEPTIONS details
ASSEMBLY_ERROR - Error during assembly
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for IDCN_FSC_ASSEMBLY 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_im_fscdef | TYPE IDCN_FSCDEF, " | |||
| lv_assembly_error | TYPE IDCN_FSCDEF, " | |||
| lv_ex_t_formlines | TYPE IDCN_T_FORMLINES, " | |||
| lv_im_t_fscbilaintf | TYPE IDCN_T_FSCBILAINTF, " | |||
| lv_im_formhdr | TYPE IDCN_FORMHDR, " | |||
| lv_im_bilaskal | TYPE BILASKAL, " | |||
| lv_im_bilaspra | TYPE SPRAS. " |
|   CALL FUNCTION 'IDCN_FSC_ASSEMBLY' "FSC Form Lines Assembly |
| EXPORTING | ||
| IM_FSCDEF | = lv_im_fscdef | |
| IM_T_FSCBILAINTF | = lv_im_t_fscbilaintf | |
| IM_FORMHDR | = lv_im_formhdr | |
| IM_BILASKAL | = lv_im_bilaskal | |
| IM_BILASPRA | = lv_im_bilaspra | |
| IMPORTING | ||
| EX_T_FORMLINES | = lv_ex_t_formlines | |
| EXCEPTIONS | ||
| ASSEMBLY_ERROR = 1 | ||
| . " IDCN_FSC_ASSEMBLY | ||
ABAP code using 7.40 inline data declarations to call FM IDCN_FSC_ASSEMBLY
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