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

MIRO - Table Name

Former Member
0 Likes
4,133

Hi frnds,

i need the table and field which is showing on header of MIRO transaction.

for ex. if u click the Transaction of MIRO drop down list we will get 4 values.

i.e. 1. Invoice

2. Credit memo

3. Subsequent debit

4. Subsequent credit

i need where these values are storing. i got the structure name and field name ie RM08M-VORGANG.

but i need to display this field values in report when they gave input value as MIRO.

i hope its clear for all.

points will be rewarded for solutions.

Regards,

Balu

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
2,028

The values are stored as Domain level as fixed values. Domain's name is MRM_VORGANG.

5 REPLIES 5
Read only

Former Member
0 Likes
2,028

Hi

The tables are RBKP (header data) and RSEG (item data)

Max

Read only

Former Member
0 Likes
2,029

The values are stored as Domain level as fixed values. Domain's name is MRM_VORGANG.

Read only

0 Likes
2,028

i know that, those are storing domain level. but when i passed the Document Number i need to know what is that...?

ie wheter 1. invoice or 2. credit memo or 3. subsequent debit or 4. subsequent credit.

my requirement, i need to display a report along with transaction when he have the document no. i am getting every thing.. but i am not able to get the transaction header of the document header.

regards,

balu

Read only

0 Likes
2,028

Hi

U can know it reading RBKP (header data table of incoming invoice):

IF RBKP-XRECH = 'X'
  IF RBKPB-TBTKZ = SPACE.
------> VORGANG = 1
  ELSE.
------> VORGANG = 3
  ENDIF.
ELSE.
  IF RBKPB-TBTKZ = SPACE.
------> VORGANG = 2
  ELSE.
------> VORGANG = 4
  ENDIF.
ENDIF.

Max

Read only

0 Likes
2,028

Hi fnds,

thanks for helping me in this.

regards,

balu