cancel
Showing results for 
Search instead for 
Did you mean: 

Value for the "Route" missing in the Sales Order

Former Member
0 Kudos

Hi Gurus,

I have done all the configuration for the Route determination for the Sales Order Type but still I am not able to get the value for the route in the Item of the Sales Order.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi,

I would suggest to check your config once again and check if you have put the correct Transportation Zone in the customer master General Data Tab which is used by your shipping point.??

check once again and let us know if everything was there..

Rajiv Rana

former_member223981
Active Contributor
0 Kudos

Expanding on the previous response, the function responsible for determining the route is SD_ROUTE_DETERMINATIOn. Within this function, there is an important select statement:

**********************************************************************************************************************

SELECT * FROM trolz INTO TABLE xtrolz

    WHERE aland = i_aland AND azone = i_azone

      AND vsbed = i_vsbed AND tragr = i_tragr

      AND lland = i_lland AND lzone = i_lzone

      AND ( grulg = i_grulg OR grulg IN r_grulg ).

***********************************************************************************************************************

Table TROLZ refers to the entries maintan in transaction 0vrf.

It is probable that this select is failing and hence no route is determined. If you set a breakpoint at this code, and check which condition is not satisfied, it should be quicky identified why the route is not being determined.

Hope this helps.

Lakshmipathi
Active Contributor
0 Kudos

Have you checked in 0vrf ?

G. Lakshmipathi