SAP FT_LIST_FIN_DOCUM_ASS_DOCS Function Module for NOTRANSL: Außenhandel: Listanzeige: Dokumentengeschäft: Zugeordnete Belege
FT_LIST_FIN_DOCUM_ASS_DOCS is a standard ft list fin docum ass docs SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Außenhandel: Listanzeige: Dokumentengeschäft: Zugeordnete Belege 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 ft list fin docum ass docs FM, simply by entering the name FT_LIST_FIN_DOCUM_ASS_DOCS into the relevant SAP transaction such as SE37 or SE38.
Function Group: VFLD
Program Name: SAPLVFLD
Main Program: SAPLVFLD
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FT_LIST_FIN_DOCUM_ASS_DOCS 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 'FT_LIST_FIN_DOCUM_ASS_DOCS'"NOTRANSL: Außenhandel: Listanzeige: Dokumentengeschäft: Zugeordnete Belege.
EXPORTING
* I_VARIANT = "
I_REPORT = "
* I_MSG = "
TABLES
IT_AKKP = "
ET_ALV_KO = "
ET_ALV_PO = "
IT_AKKB = "
IT_DD07V = "
IT_VBAK = "
IT_VBAP = "
IT_VBKD = "Sales and Distribution Document Number
IT_LIKP = "
IT_VBRK = "Billing Documents
IT_VBPA = "
EXCEPTIONS
ALV_ERROR = 1
IMPORTING Parameters details for FT_LIST_FIN_DOCUM_ASS_DOCS
I_VARIANT -
Data type: DISVARIANT-VARIANTOptional: Yes
Call by Reference: Yes
I_REPORT -
Data type: SY-REPIDOptional: No
Call by Reference: Yes
I_MSG -
Data type: FTSEL-SHOW_MSGOptional: Yes
Call by Reference: Yes
TABLES Parameters details for FT_LIST_FIN_DOCUM_ASS_DOCS
IT_AKKP -
Data type: VFDSAKKPOptional: No
Call by Reference: Yes
ET_ALV_KO -
Data type: RVEXAK10_KOptional: No
Call by Reference: Yes
ET_ALV_PO -
Data type: RVEXAK10_POptional: No
Call by Reference: Yes
IT_AKKB -
Data type: AKKBOptional: No
Call by Reference: Yes
IT_DD07V -
Data type: DD07VOptional: No
Call by Reference: Yes
IT_VBAK -
Data type: VBAKOptional: No
Call by Reference: Yes
IT_VBAP -
Data type: VBAPOptional: No
Call by Reference: Yes
IT_VBKD - Sales and Distribution Document Number
Data type: VFDSVBKDOptional: No
Call by Reference: Yes
IT_LIKP -
Data type: LIKPOptional: No
Call by Reference: Yes
IT_VBRK - Billing Documents
Data type: VBRKOptional: No
Call by Reference: Yes
IT_VBPA -
Data type: VBPAOptional: No
Call by Reference: Yes
EXCEPTIONS details
ALV_ERROR - Error in List Processing
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FT_LIST_FIN_DOCUM_ASS_DOCS 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_it_akkp | TYPE STANDARD TABLE OF VFDSAKKP, " | |||
| lv_alv_error | TYPE VFDSAKKP, " | |||
| lv_i_variant | TYPE DISVARIANT-VARIANT, " | |||
| lt_et_alv_ko | TYPE STANDARD TABLE OF RVEXAK10_K, " | |||
| lt_et_alv_po | TYPE STANDARD TABLE OF RVEXAK10_P, " | |||
| lt_it_akkb | TYPE STANDARD TABLE OF AKKB, " | |||
| lv_i_report | TYPE SY-REPID, " | |||
| lv_i_msg | TYPE FTSEL-SHOW_MSG, " | |||
| lt_it_dd07v | TYPE STANDARD TABLE OF DD07V, " | |||
| lt_it_vbak | TYPE STANDARD TABLE OF VBAK, " | |||
| lt_it_vbap | TYPE STANDARD TABLE OF VBAP, " | |||
| lt_it_vbkd | TYPE STANDARD TABLE OF VFDSVBKD, " | |||
| lt_it_likp | TYPE STANDARD TABLE OF LIKP, " | |||
| lt_it_vbrk | TYPE STANDARD TABLE OF VBRK, " | |||
| lt_it_vbpa | TYPE STANDARD TABLE OF VBPA. " |
|   CALL FUNCTION 'FT_LIST_FIN_DOCUM_ASS_DOCS' "NOTRANSL: Außenhandel: Listanzeige: Dokumentengeschäft: Zugeordnete Belege |
| EXPORTING | ||
| I_VARIANT | = lv_i_variant | |
| I_REPORT | = lv_i_report | |
| I_MSG | = lv_i_msg | |
| TABLES | ||
| IT_AKKP | = lt_it_akkp | |
| ET_ALV_KO | = lt_et_alt_ko | |
| ET_ALV_PO | = lt_et_alt_po | |
| IT_AKKB | = lt_it_akkb | |
| IT_DD07V | = lt_it_dd07v | |
| IT_VBAK | = lt_it_vbak | |
| IT_VBAP | = lt_it_vbap | |
| IT_VBKD | = lt_it_vbkd | |
| IT_LIKP | = lt_it_likp | |
| IT_VBRK | = lt_it_vbrk | |
| IT_VBPA | = lt_it_vbpa | |
| EXCEPTIONS | ||
| ALV_ERROR = 1 | ||
| . " FT_LIST_FIN_DOCUM_ASS_DOCS | ||
ABAP code using 7.40 inline data declarations to call FM FT_LIST_FIN_DOCUM_ASS_DOCS
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.| "SELECT single VARIANT FROM DISVARIANT INTO @DATA(ld_i_variant). | ||||
| "SELECT single REPID FROM SY INTO @DATA(ld_i_report). | ||||
| "SELECT single SHOW_MSG FROM FTSEL INTO @DATA(ld_i_msg). | ||||
Search for further information about these or an SAP related objects