cancel
Showing results for 
Search instead for 
Did you mean: 

if we change ship to party address in subsequent salesorder it getting reflect to main sales order ship to party address

former_member767623
Participant
0 Kudos

Dear Guru's,

If we change ship to party address in  subsequent  sales order,  it  get reflecting  to main sales order and  in that ship to party address  .

My client requirement is :

while changing ship to party address in subsequent sales order it should not be change in main sales order ship-to-party address. but avialable both the addresses .

if it possible,  please give me suggestions .

Thanks & Regards,

Radhakrishna. Ette

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

check oss note 97832  (enhancement V09A0001, export parameter FEF_NEW_ADDRESS_CREATE = ' ').

Regards,

JM

former_member767623
Participant
0 Kudos

Dear joan,

thanx for reply, in my system showing V09A0001 does not exit. what ur comment.

former_member767623
Participant
0 Kudos

Dear joan,

please ignore my previous text, i found exit and done the changes.

former_member767623
Participant
0 Kudos

Dear joan,

this exit EXIT_SAPLV09A_001 (V09A0001), trigeering in VL02/vl02n.but my requirement  changing in va02 that time this is not triggering, means this code not reflecting. please suggest .

my code is

IF SY-TCODE = 'VA01' OR SY-TCODE = 'VA02' .

   IF NOT FRT_XSAIN[] IS INITIAL.

     FEF_NEW_ADDRESS_CREATE = ''.

   ENDIF.

ENDIF.


Thanks & Regards,

Radhakrishna. Ette


Former Member
0 Kudos

Hi,

 

I’m not an abaper ... but have you used CMOD to add and activate the coding in V09A0001?

Regards,

JM

former_member767623
Participant
0 Kudos

Dear Jm,

Thanks for your reply, i have done the required changes as suggested by you and working  fine.

step1 ) went to cmod and created project ex ZSDV

step2) click on enhancement assignment

step3) given V09A0001

step4) click on components-->functin exit EXIT_SAPLV09A_001-->double click on include   ZXV09U01--> written the code

IF SY-TCODE = 'VA01' OR SY-TCODE = 'VA02' .

  IF NOT FRT_XSAIN[] IS INITIAL.

    FEF_NEW_ADDRESS_CREATE = 'X'.

  ENDIF.

ENDIF.

Its working fine. and solved my issue that when changing sub sequent ship to party address is not changing the main sales order ship to party address.

Answers (0)