Hi all,
i want add restriction on posting of item journal as per location for that i have done following implementation:
usersetup table:91 created field :loc. area code 200 run table adding value to this field as red|blue|green
on item jounal onaction of post addid code as:
UserSetup.RESET;
UserSetup.SETRANGE("Loc area",Rec."Location Code");
IF UserSetup.FIND('-') THEN
BEGIN
CODEUNIT.RUN(CODEUNIT::"Item Jnl.-Post",Rec);
CurrentJnlBatchName := GETRANGEMAX("Journal Batch Name");
CurrPage.UPDATE(FALSE);
END
ELSE
MESSAGE('USER NOT VALID FOR THIS LOCATION: %1',"Location Code");
now it not allowing to post user with location code as blue,and red on item journal it giviong me error message why so.
0
Answers
Because you try to find equal value RED in user setup, but you have RED|BLUE|GREEN there.
You have to use something like that:
if possible can you please explain what exactly happening in code i have not get it what code is trying to say.