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: 

Report(sap-abap)

Former Member
0 Kudos

Hi Friends,

I have been assigned one Inventory report (Module : MM) where one field (AUFNR) is to be come from structure(COBL) in transaction.

1 - Could you tell the table name for this structure(COBL) to fetch the field(AUFNR) since structure contains no value.

2- Could u tell me how to display range of date just below below the report header(with smallFont size)( ex : Date : 20/01/2008 to 21/01/2008 ).

Please treat this as urgent .

I will reward for useful answers.

Thx in Adv.

Bobby

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Bobby,

all data related to Aufnr is there in tables

AUFK :header level table

RESB : item level table

please check whether you are able to get all fields from these two tables,

which reprt you are using (alv or classical)

then only i will be able to tell abt header,

Warm regards,

Talwinder

3 REPLIES 3

Former Member
0 Kudos

Bobby,

all data related to Aufnr is there in tables

AUFK :header level table

RESB : item level table

please check whether you are able to get all fields from these two tables,

which reprt you are using (alv or classical)

then only i will be able to tell abt header,

Warm regards,

Talwinder

Former Member
0 Kudos

Hi Talwinder,

I am using ALV report.Pls tell me the procedure to get table from given structure .Rest of fields are comes from table MSEG and MKPF .

Thx ...

Bobby

0 Kudos

have u checked in AUFK & RESB tables,

these two tables are linked by AUFNR,

regarding header:

CONCATENATE date1 'to' date2 INTO wf_line SEPARATED BY space.

fs_line-typ = 'A'.

fs_line-info = wf_line.

APPEND fs_line TO int_header.

CLEAR fs_line.

CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'

EXPORTING

it_list_commentary = int_header.