Solved

master data integration

  • 6 June 2022
  • 1 reply
  • 143 views

Userlevel 7
Badge +13

in our company we are using IFS9, there is a big issues in the integration between inventory part, accounting and manufacturing system.

does system have a report to display the missed information in each master data ?

 

example

part X doesn’t have accounting group which used in M1 and M53.

 

icon

Best answer by Nagah.khaled 13 June 2022, 12:29

View original

1 reply

Userlevel 7
Badge +13

I solved this issue by using SQL statements .

-- accounting group in Posting control M53
select distinct ACCOUNTING_GROUP from INVENTORY_PART where contract='151A' and ACCOUNTING_GROUP not in (
select distinct CONTROL_TYPE2_VALUE from POSTING_CTRL_COMB_DETAIL where company='151'  and POSTING_TYPE ='M53');
 

 

Reply