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: 

MIRO - Table Name

Former Member
0 Kudos

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

Former Member
0 Kudos

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

5 REPLIES 5

Former Member
0 Kudos

Hi

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

Max

Former Member
0 Kudos

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

0 Kudos

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

0 Kudos

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

0 Kudos

Hi fnds,

thanks for helping me in this.

regards,

balu