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: 

Input values from my ALV report are not getting populated in the Output screen. Can I get a solution for this?

sonambagade
Explorer
0 Kudos

Hi.

Input values from my ALV Report are not getting populated in the output. It is an M Report for Trading Purchase.

Can someone help me out with this?

--Sonam.

11 REPLIES 11

former_member809980
Participant
0 Kudos

hi,

to use ALV functionality your program type must be '1' ie executable type..

M type is module pool programs which must have screens and transaction code.

and you cannot Execute M type program without Transaction code.

so kindly mention what exactly  you are doing???

thanks!!

sonambagade
Explorer
0 Kudos

I have used executable type.

When I execute my program, the values do not get populated in the output grid. They are blank.

0 Kudos

hi,

please copy paste the code..

thanks!!

sonambagade
Explorer
0 Kudos

Cannot copy paste the code here

Former Member
0 Kudos

Hi Sonam,

You must be passing workarea of table to field t_outtab .

Use []

    TABLES

      t_outtab                          = <table_name> []

Thanks.

Regards,

Ashish Desai

0 Kudos

Did that. The program gets executed. Just that my output table appears blank.

Is there some FM used to enable viewing of the output?

0 Kudos

Hi Sonam,

Please mention FM you are using.

Thanks.

Regards,

Ashish Desai

0 Kudos

hi Sonam,

Also check that you are passing field catalog correctly or not.

     it_fieldcat                       = lt_fieldcat

or

     it_fieldcat                       = lt_fieldcat[]

If you are using OO method then you might not have created object for class CL_GUI_ALV_GRID

Regards,

Ashish Desai

0 Kudos

I have only used "REUSE_ALV_GRID_DISPLAY"  for displaying my ALV output.

0 Kudos

I am not using OO method.

raymond_giuseppi
Active Contributor
0 Kudos

Even if no data is displayed, are you able to execute The Consistency Check, look for error in field catalog, layout, actual internal table to display, etc.

Did you read the FM documentation and many documents available in scn or online help on definition of ALV grid, execute report BALVBUFDEL ?

Also you should provide much more information, were you previously able to display data, etc.

Regards,

Raymond