I'm looking to perform something like the following in a variant config action
All three characteristics conatin two character country values and use table T005 as a lookup check table.
I have two organizational groups that are allowed to ban shipping products to specific countries.
For example:
- The laboratory can ban a batch from going to a country because of a failed spec.
- The governemnt group can ban a batch because some temporary ban due to embargos/regulatory approvals, etc..
Access to each characteristic is controlled via organizational groups so one group can't change the others.
So Char 1 has the value of MX (Mexico)
Char 2 has the values PA, ES, (Panama, Spain)
We want Char 3 to have the values of MX, PA, ES.
I.e. the union set fo Char 1 and Char 2
I've tried numerous versions of this to no avail. I can't get past the syntax check!!
Here's some of the things I've tried:
$SELF.CHAR3 = CHAR1 + CHAR2
$SELF.CHAR3 = SELF.CHAR1 + SELF.CHAR2
$SELF.CHAR3 = CHAR1 & CHAR2
$SELF.CHAR3 = SELF.CHAR1 & SELF.CHAR2
And numerous others...
Any suggestion as to how I can do this?
In the end, we'd used CHAR 3 to set the LOBM_COUNTRY_NOK characteristic that SAP provides to block shipments to these countries by accident in batch determination.
Craig