Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Table object

Former Member
0 Kudos

Hi. There's transaction FBL1N and FBL5N in SAP. It's output is a list of invoices. I have a question about that table in which list of invoices is displayed. Is this some kind of object like ALV_GRID? It looks like was made by WRITE statements, but it's very complex. For example we can sort content of table. And after click on some row the details about clicked invoice are shown. How can I create that object and fill it with my data? I'd be thankful for help. Greetings. P.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

The output is an ALV List and uses the function module 'REUSE_ALV_LIST_DISPLAY'.

It is called in function module FI_ITEMS_DISPLAY of program RFITEMAP.

There are some sample programs in SLIS package starting with BCALV*.

Regards,

Rao A

3 REPLIES 3

Former Member
0 Kudos

Hi,

The output is an ALV List and uses the function module 'REUSE_ALV_LIST_DISPLAY'.

It is called in function module FI_ITEMS_DISPLAY of program RFITEMAP.

There are some sample programs in SLIS package starting with BCALV*.

Regards,

Rao A

0 Kudos

I'm trying to do simple example. From

http://www.howforge.com/abap-4-example-code-alv-list-by-fm-reuse-alv-list-display

I copied code into my program but when I check errors (ctrl+F2) I receive

<i>Field "’REUSE_ALV_LIST_DISPLAY’" is unknown. It is neither in one of the specified tables nor defined by a "DATA" statement.</i>

0 Kudos

Hi,

I copied the program and all the formatting is lost. After inserting all the line breaks I also got the same syntax error.

The quotes around the function module are bad characters. Just remove the single quote before and after the function module name and re-type the single quotes again.

You probably have to remove and re-type all single quotes in the program. You are better off taking the BCALV* sample programs.

Regards,

Rao A