cancel
Showing results for 
Search instead for 
Did you mean: 

FMS Query in A/r Invoice

ramco1917
Participant
0 Kudos

Hi

I want in A/r Invoice when item is 10021 then G/l Account should be 81302

Thanks

Accepted Solutions (1)

Accepted Solutions (1)

silambarasan_rajendran
Active Contributor

Hi,

FMS may not work sometime GL Account may change after choosing whs,..

Better apply set G/L Account By - Item Level and map the gl account in the item master itself

or

you can do set rules Item as parameter in the advanced GL determination.

Thanks & Regards,

silambu

Answers (1)

Answers (1)

shahbaz_akbar
Participant

HANA Syntax:

IF $[INV1.ItemCode] = '10021' then SELECT '81302' FROM DUMMY;

SQL Syntax:

IF $[INV1.ItemCode] = '10021'

SELECT '81302'