It looks like by default it is not in 'development' mode, and you can't make changes to the delivered Context Definition, or its Selection Mapping.
Change the configured value and all the fields on the configuration pages become editable.
SELECT *
FROM PS_SCCPS_INSTALL;
This should equal 'DEV'.
Population Selection - Context Definition
Posted by
Michael Nitschke
on Wednesday, 25 July 2012
Labels:
Population Selection,
Population Update
/
Comments: (0)
Instance Variables
Posted by
Michael Nitschke
on Thursday, 5 July 2012
/
Comments: (2)
This does not work:
If any(&instanceVariable) Then
...
This does work:
Local string&x = &instanceVariable;
If any(&x) Then
...
Haven't had time to look at why that is the case yet.
If any(&instanceVariable) Then
...
This does work:
Local string&x = &instanceVariable;
If any(&x) Then
...
Haven't had time to look at why that is the case yet.