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

FBL5N Drilldown

Former Member
0 Likes
1,118

Hi All,

I am developing a Report which should call the FBL5N Tcode in the drill down.

In FBL5N i have display all items ( Both Open and Cleared Items) and should pass Clearing Date also as input.

If i pass Clearing date , open items are not displayed. If clearing date is not passed i am not getting required output for cleared items.

I have to display All items.

How to solve this issue?

Thanks,

Ambika

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
993

If you want all items, you have to pass the posting date not the clearing date.

Rob

5 REPLIES 5
Read only

Former Member
0 Likes
993

did you selected 'All items' radio button on FBL5N selection-screen?

Read only

0 Likes
993

Yes, I selected the All Items radio button

Read only

Former Member
0 Likes
994

If you want all items, you have to pass the posting date not the clearing date.

Rob

Read only

RaymondGiuseppi
Active Contributor
0 Likes
993

In FBL5N i have display all items ( Both Open and Cleared Items) and should pass Clearing Date also as input.

AFAIK, If you want to display every document til a date with their clearing status at this date, It seems impossible with FBL5N, which ignores the clearing date parameter PA_STIDA, when all items box X_AISEL is checked.

* Extract from RFITEMAR (mapping selection-screen parameters to logical database program
  case 'X'.
(...)
        dd_stida          = pa_stida.
(...)
    when x_aisel.
      p_keydate         = '99991231'.
      dd_stida          = '99991231'.  " <= Here clearing date is lost.
      dd_budat[]        = so_budat[].
      dd_opopt          = 'X'.
      dd_apopt          = 'X'.
(...)

As Rob wrote, you can then only select on posting date (and free selection parameters)

Regards,

Raymond

Read only

0 Likes
993

Thanks All. Issue is solved