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

Display data through FBL3N

Former Member
0 Likes
753

Hi,

I have a requirement where I have to display my o/p through FBL3N where I will be passing my Account no and Company code.

All this have to be done through my report. Could anyone pls let me know how to proceed?

I am using submit RFITEMGL with so_wlsak in range_racct

with so_wlbuk in s_bukrs and return.

but it is not working. Second option I can see is Call transaction FBL3N using ITAB. But not sure about this.

Please suggest.

Thanks,

Akash

Hi,

I have a requirement where I have to display my o/p through FBL3N where I will be passing my Account no and Company code.

All this have to be done through my report. Could anyone pls let me know how to proceed?

I am using submit RFITEMGL with so_wlsak in range_racct

with so_wlbuk in s_bukrs and return.

but it is not working. Second option I can see is Call transaction FBL3N using ITAB. But not sure about this.

Please suggest.

Thanks,

Akash

2 REPLIES 2
Read only

Former Member
0 Likes
591

Hi,

Use this code

SET PARAMETER ID : 'SAK' FIELD <gl account code value>
SET PARAMETER ID : 'BUK' FIELD <company code value>
CALL TRANSACTION 'FBL3N'.

or

submit rfitemgl using selection-screen '1000'
       with sd_saknr-low eq <gl account value>
       with sd_bukrs-low eq <comp code>
       with x_aisel eq 'X'
       with x_opsel eq ' '
       with pa_stida eq ' '
       with so_budat between <fromdate> and <todate>
       and return.

Regards

Vinod

Read only

Former Member
0 Likes
591

Hello

A few days ago I gave answer to this question. Check this: