SAP SI_RV_FTT_GOV_PROCESSING Function Module for Außenhandel: Meldungen an Behörden: Verdichten von Datensätzen









SI_RV_FTT_GOV_PROCESSING is a standard si rv ftt gov processing SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Außenhandel: Meldungen an Behörden: Verdichten von Datensätzen 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 si rv ftt gov processing FM, simply by entering the name SI_RV_FTT_GOV_PROCESSING into the relevant SAP transaction such as SE37 or SE38.

Function Group: /CCEE/SIFI_INTR_V50G
Program Name: /CCEE/SAPLSIFI_INTR_V50G
Main Program: /CCEE/SAPLSIFI_INTR_V50G
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function SI_RV_FTT_GOV_PROCESSING 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 'SI_RV_FTT_GOV_PROCESSING'"Außenhandel: Meldungen an Behörden: Verdichten von Datensätzen
EXPORTING
* ROUND_VALUES = 'X' "
COUNTRY = "
* I_MEDIUM = "
* I_REPORTING_TYPE = "

IMPORTING
SUM_LINE = "

TABLES
TABLE_DATA = "
* ITEMS_ACCUMULATED_PER_LINE = "
* ACCUMULATION_CRITERIA = "

EXCEPTIONS
NO_PROCESSING = 1 TOO_MANY_CRITERIA = 2
.



IMPORTING Parameters details for SI_RV_FTT_GOV_PROCESSING

ROUND_VALUES -

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

COUNTRY -

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

I_MEDIUM -

Data type:
Optional: Yes
Call by Reference: Yes

I_REPORTING_TYPE -

Data type:
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for SI_RV_FTT_GOV_PROCESSING

SUM_LINE -

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

TABLES Parameters details for SI_RV_FTT_GOV_PROCESSING

TABLE_DATA -

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

ITEMS_ACCUMULATED_PER_LINE -

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

ACCUMULATION_CRITERIA -

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

EXCEPTIONS details

NO_PROCESSING -

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

TOO_MANY_CRITERIA -

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

Copy and paste ABAP code example for SI_RV_FTT_GOV_PROCESSING 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_sum_line  TYPE V50G_SUM_LINE, "   
lt_table_data  TYPE STANDARD TABLE OF V50G_SUM_LINE, "   
lv_round_values  TYPE V50G_SUM_LINE, "   'X'
lv_no_processing  TYPE V50G_SUM_LINE, "   
lv_country  TYPE T005-INTCA, "   
lv_too_many_criteria  TYPE T005, "   
lt_items_accumulated_per_line  TYPE STANDARD TABLE OF V50G_ITEMS_ACCUM_PER_LINE, "   
lv_i_medium  TYPE V50G_ITEMS_ACCUM_PER_LINE, "   
lt_accumulation_criteria  TYPE STANDARD TABLE OF V50G_ACCUMULATION_CRITERIA, "   
lv_i_reporting_type  TYPE V50G_ACCUMULATION_CRITERIA. "   

  CALL FUNCTION 'SI_RV_FTT_GOV_PROCESSING'  "Außenhandel: Meldungen an Behörden: Verdichten von Datensätzen
    EXPORTING
         ROUND_VALUES = lv_round_values
         COUNTRY = lv_country
         I_MEDIUM = lv_i_medium
         I_REPORTING_TYPE = lv_i_reporting_type
    IMPORTING
         SUM_LINE = lv_sum_line
    TABLES
         TABLE_DATA = lt_table_data
         ITEMS_ACCUMULATED_PER_LINE = lt_items_accumulated_per_line
         ACCUMULATION_CRITERIA = lt_accumulation_criteria
    EXCEPTIONS
        NO_PROCESSING = 1
        TOO_MANY_CRITERIA = 2
. " SI_RV_FTT_GOV_PROCESSING




ABAP code using 7.40 inline data declarations to call FM SI_RV_FTT_GOV_PROCESSING

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_round_values) = 'X'.
 
 
"SELECT single INTCA FROM T005 INTO @DATA(ld_country).
 
 
 
 
 
 


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!