cancel
Showing results for 
Search instead for 
Did you mean: 

FMS

Former Member
0 Kudos

Hi Experts,

I am having trouble with setting FMS on dropdown lists. On the business partner master form, i want the item group to select automatically based on the selection of the BP series (assuming each BP series has its own item group)

Please advise on this.

Thanks & Regards

Aziz

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Aziz,

You may ty this:

if $[OCRD.Groupcode]  ='101' and $[OCRD.Cardtype] = 'C' SELECT  'XXXXX' 

else  if $[OCRD.Groupcode]   ='102' and $[OCRD.Cardtype] = 'S'  SELECT 'YYYY'

else if $[OCRD.GroupCode]  ='103' and $[OCRD.CardType] = 'C'  SELECT 'ZZZZ'

replace groupcode with the groupcode value from SBO and replace xxxx, yyyy and zzzz with udf values.

You may replace the condition of cardtype.

Thanks,

Joseph

Answers (3)

Answers (3)

Rafaee_Mustafa
Active Contributor
0 Kudos

Hi Aziz,

Please share your scenario mapping (which series with which group)

or FMS if you have already created.

Former Member
0 Kudos

Hi Aziz,

Try this

case when  $[OCRD.Groupcode]  ='101' and $[OCRD.Cardtype] = 'C'  then 'XXXXX'

when  $[OCRD.Groupcode]   ='102' and $[OCRD.Cardtype] = 'S'  then 'YYYY'

when  $[OCRD.GroupCode]  ='103' and $[OCRD.CardType] = 'C'  then 'ZZZZ'

With Regards,

BHARATHIRAJA

kothandaraman_nagarajan
Active Contributor
0 Kudos

Hi,

Please post your FMS here to check.

Thanks & Regards,

Nagarajan