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

FIELDS

Former Member
0 Likes
613

HI,

can anyone get the table and field names of these fields

gross sales ,credit returns, gross weight, current yr . previous yr

thank q

rushi

5 REPLIES 5
Read only

Former Member
0 Likes
582

Hi,

Use the Table VBAK and

VBAP and find the related fields

reward if useful

regards,

Anji

Read only

Former Member
0 Likes
582

Hi Rushi,

Use the tables VBAK, VBAP, MARA.

Hope this resolves your query.

Reward all the helpful answers.

Regards

Read only

Former Member
0 Likes
582

check any COPA tables ?

like CE01PEPS ( peps = operating concern)

another wise put a login on VBAK/P for both current year and last year.

like this

r_fkdat-sign = 'I'

r_fkdat-options = 'EQ'.

r_fkdat-low = sy-datum.

append r_fkdat

clear r_fkdat

last0(4) = sy-datum0(4) - 1. "2006

last4(4) = sydatum4(4).

r_fkdat-sign = 'I'

r_fkdat-options = 'EQ'.

r_fkdat-low = last.

append r_fkdat

clear r_fkdat

if r_fkdat[] is not initial.

select data from VBAK+ VBAP where date in r_fkdat.

endif.

Regards

Prabhu

Read only

Former Member
0 Likes
582

gross sales - VBAK-NETWR,

credit returns - VBAP-CMPRE_FLT,

gross weight - VBAP-BRGEW,

current yr . - VBKD-GJAHR ,

reward if useful

regards,

Krishna.

Read only

Former Member
0 Likes
582

BRGEW-Gross Weight of the Item FROM VBAP

GJAHR-Fiscal Year FROM KNC1-Customer master (transaction figures)

Hope u can find similar fields from FI Tabels.

regards

Siva