Application Development and Automation 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: 
Read only

ALV REPORT

Former Member
0 Likes
558

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
Read only

Pawan_Kesari
Active Contributor
0 Likes
508

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.

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
Read only

Sandeep_Panghal
Product and Topic Expert
Product and Topic Expert
0 Likes
508

Hi,

When you press back button at the final screen.

SET screen to you report screen .

Regards,

Sandeep

Read only

Pawan_Kesari
Active Contributor
0 Likes
509

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.