SAP ID_FOT_OUTPUT_DECLARATION Function Module for Daten für elektronische Steuermeldung fortschreiben









ID_FOT_OUTPUT_DECLARATION is a standard id fot output declaration SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Daten für elektronische Steuermeldung fortschreiben 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 id fot output declaration FM, simply by entering the name ID_FOT_OUTPUT_DECLARATION into the relevant SAP transaction such as SE37 or SE38.

Function Group: ID_FOT_B2A_CREATE
Program Name: SAPLID_FOT_B2A_CREATE
Main Program: SAPLID_FOT_B2A_CREATE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ID_FOT_OUTPUT_DECLARATION 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 'ID_FOT_OUTPUT_DECLARATION'"Daten für elektronische Steuermeldung fortschreiben
EXPORTING
* ID_PAR_CORR = "
* ID_DRYRUN = ' ' "

CHANGING
CT_FOTDECLSTA = "
CT_FOTTBUKRS = "
CT_DECL_HELP = "

TABLES
TAB_ITAB = "Structure for Data Transfer to DMEE (EC Sales List)

EXCEPTIONS
NOT_UPDATED = 1
.



IMPORTING Parameters details for ID_FOT_OUTPUT_DECLARATION

ID_PAR_CORR -

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

ID_DRYRUN -

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

CHANGING Parameters details for ID_FOT_OUTPUT_DECLARATION

CT_FOTDECLSTA -

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

CT_FOTTBUKRS -

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

CT_DECL_HELP -

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

TABLES Parameters details for ID_FOT_OUTPUT_DECLARATION

TAB_ITAB - Structure for Data Transfer to DMEE (EC Sales List)

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

EXCEPTIONS details

NOT_UPDATED -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ID_FOT_OUTPUT_DECLARATION 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:
lt_tab_itab  TYPE STANDARD TABLE OF ASL_ITEM, "   
lv_id_par_corr  TYPE UMSVCORR, "   
lv_not_updated  TYPE UMSVCORR, "   
lv_ct_fotdeclsta  TYPE FOT_T_DECLSTA, "   
lv_id_dryrun  TYPE XFELD, "   SPACE
lv_ct_fottbukrs  TYPE FOT_T_BUKRS, "   
lv_ct_decl_help  TYPE FOT_T_DECL_HELP. "   

  CALL FUNCTION 'ID_FOT_OUTPUT_DECLARATION'  "Daten für elektronische Steuermeldung fortschreiben
    EXPORTING
         ID_PAR_CORR = lv_id_par_corr
         ID_DRYRUN = lv_id_dryrun
    CHANGING
         CT_FOTDECLSTA = lv_ct_fotdeclsta
         CT_FOTTBUKRS = lv_ct_fottbukrs
         CT_DECL_HELP = lv_ct_decl_help
    TABLES
         TAB_ITAB = lt_tab_itab
    EXCEPTIONS
        NOT_UPDATED = 1
. " ID_FOT_OUTPUT_DECLARATION




ABAP code using 7.40 inline data declarations to call FM ID_FOT_OUTPUT_DECLARATION

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.

 
 
 
 
DATA(ld_id_dryrun) = ' '.
 
 
 


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!