SAP for Automotive Discussions
Connect with fellow SAP users in discussions to troubleshoot challenges, share best practices, and fuel each other's success. Join a conversation or start your own.
cancel
Showing results for 
Search instead for 
Did you mean: 

Internal Order Number For DBM order

Former Member
0 Kudos
882

Hi All,

How to get the internal order no for the SAP DBM order number,?

from which table can we fetch ?

Regards,

Rangakarthick

1 ACCEPTED SOLUTION

joachim_kirstein
Product and Topic Expert
Product and Topic Expert
0 Kudos
495

Hi,

In DBM order an internal order can be created on header level and on split level.

On split level internal order is created within event BILLING_CREATE.

The internal order (like other documents related to the DBM order like e.g. reservation as well) are displayed in the order document flow.

In table /DBM/ORD_DOCFLOW you can fetch internal order number from DBM order.

But its a little bit tricky:

In field INSTID_A you have to select business object BUS2400 representing the DBM order.

Field INSTID_B is populated with business object BUS2075 and the internal order number.

e.g. if you want to select all internal orders for DBM order 29926 you have to select in initial screen

field INSTID_A:

"BUS2400   0000029926*" (consider: there are 3 spaces after BUS2400)

and field INSTID_B:

"BUS2075*"

Example from image: DBM order: 299826

Internal order header: (no split) 121526

Internal order split: 235320 (same for both splits 0001 and 0002)

Regards

Joachim

View solution in original post

2 REPLIES 2

joachim_kirstein
Product and Topic Expert
Product and Topic Expert
0 Kudos
496

Hi,

In DBM order an internal order can be created on header level and on split level.

On split level internal order is created within event BILLING_CREATE.

The internal order (like other documents related to the DBM order like e.g. reservation as well) are displayed in the order document flow.

In table /DBM/ORD_DOCFLOW you can fetch internal order number from DBM order.

But its a little bit tricky:

In field INSTID_A you have to select business object BUS2400 representing the DBM order.

Field INSTID_B is populated with business object BUS2075 and the internal order number.

e.g. if you want to select all internal orders for DBM order 29926 you have to select in initial screen

field INSTID_A:

"BUS2400   0000029926*" (consider: there are 3 spaces after BUS2400)

and field INSTID_B:

"BUS2075*"

Example from image: DBM order: 299826

Internal order header: (no split) 121526

Internal order split: 235320 (same for both splits 0001 and 0002)

Regards

Joachim

0 Kudos
495

Dear Joachim,

Thanks a lot.. it worked..