
I'm trying to import Price list for category IC (Inventory ítem and clustomer), but I'm getting the message Error: csiteid_0 Value:
'SlsPrc,,S,F,7502007772780,PMU 940317114,CEDIS,
Where 7502007772780 is the ínventory id
PMU 940317114 is the customer id
and CEDIS is the Site id
Is there any way to import Price lists?
I've tried several layouts but in all I receive the same message
*This post is locked for comments
I have the same question (0)Hi MMAAFS,
If you enter data manually in this screen, you must press the Refresh button. Have you modified the control macro to press the refresh button?
Add the following code to the transaction import control macro, between the end of level 0 and the beginning of level 1.
serr = SetObjectValue( "cmdRefresh", "PRESS" )
For example:
' cReplaceExistingPricePlans is an Check Box
' Values are 1 for ON and 0 for OFF
' Values are CHECKED for ON and UNCHECKED for OFF
serr = SetObjectValue( "cReplaceExistingPricePlans", ImportField(11) )
serr = SetObjectValue( "cmdRefresh", "PRESS" )
case 1 ' 1 of 2
'Level 1 if of Type D
' Field mask is UUUUUUUUUUUUUUU
serr = SetObjectValue( "cCatalogNbr_0", ImportField(1) )
Let me know if this resolves the problem.