Hello dear Documentum colleagues!
Question about transfer the value from one form to another (in one process).
So, I have two forms in one process.
1) In first form I set the Process Variable “Operator_Status” (In DropBox executed adaptor, which perform:
select DSS_CODE from ddt_dict where folder(“Certain Folder”)
2) in second form I want to show in text_field the value, which user checked in first form, but another one field of table "ddt_dict" - DSS_VALUE.
That’s why I should set adaptor to text_field
select DSS_VALUE from ddt_dict where DSS_CODE=’${param}’,
where param – I have set in “Special -> Execute adaptor when form initializes -> Input Binding” = variable “Operator_Status” from 1-st form) . Also I have tried to execute adaptor in "General -> Data&storage -> Use adaptors" with the same outcome.

As you can see in scrsht - "Data binding" field is referenced to variable "status1000" - it is empty string variable, which is never used in current form.
As I know i can't create control, which will not refferenced to some variable and it is strange for me, that I can't fill control (text_field) after I execute the dql in adaptor.
My approach doesn’t work. The text_field in 2-nd form is empty. Please clarify what I do wrong. I’m beginner in xCP. Maybe I lost sth.