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: 

ALV REPORT

Former Member
0 Kudos

Dear All,

I'm creating hr-kpi report.,

for ex.,

_____________________________

kpi | previousweek. |

______________|_______________|

headcount | 30. |

______________|_______________|

Here when i couble click on 30 it goes to standard report s_l9c_94000095., This i recorded in bdc program and called in my program using that perform statemetns and call transaction 's_l9c_94000095' using bdcdata mode 'E'. so it goes that report..

When i say back it again comes to selection screen for me it must not come that selection screen . It must straightly come to my report.,.,

So, for that how can i code can someone help me solve this problem.,

Thanks,

ThiruKumaran. R

1 ACCEPTED SOLUTION

Pawan_Kesari
Active Contributor
0 Kudos

With statment

CALL TRANSACTION ta { [USING bdc_tab [bdc_options]] }. 

control will come back to selection-screem in your case, however if you can use

 CALL TRANSACTION ta { [AND SKIP FIRST SCREEN]} 

you will get the desire result.

In this case you need to use statement

SET PARAMETER ID pid FIELD field.

to pass the selection-screen parameter.

2 REPLIES 2

Sandeep_Kumar
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi,

When you press back button at the final screen.

SET screen to you report screen .

Regards,

Sandeep

Pawan_Kesari
Active Contributor
0 Kudos

With statment

CALL TRANSACTION ta { [USING bdc_tab [bdc_options]] }. 

control will come back to selection-screem in your case, however if you can use

 CALL TRANSACTION ta { [AND SKIP FIRST SCREEN]} 

you will get the desire result.

In this case you need to use statement

SET PARAMETER ID pid FIELD field.

to pass the selection-screen parameter.