Reputation: 107
I have created two Text Fields, P1_MYTEXT_A
and P1_MYTEXT_B
.
P1_MYTEXT_A
has a change event.
Event: Change
,Selection Type: Item(s)
,Item(s): P1_MYTEXT_A
Events that are True
Set Type: Static Assigment
,Value: Set Type: Static Assigment
,Value: ++&APP_ALIAS.++&P1_MYTEXT_A.++&APP_ID.++
When entered in P1_MYTEXT_A
, I wanted display P1_MYTEXT_B
like this:
++TESTAPP01++AAA++106++
Instead, I get
++TESTAPP01++++106++
What do I should to fix it?
Upvotes: 0
Views: 1457
Reputation: 142705
Don't use static assignment, because - that's not exactly static. Set
'++' || :APP_ALIAS ||'++'|| :P1_MYTEXT_A ||'++' || :APP_ID ||'++'
P1_MYTEXT_A
That's it.
Upvotes: 4