cancel
Showing results for 
Search instead for 
Did you mean: 

dynamic text include in adobe form

Former Member
0 Kudos

Hi all

I have to convert a sapscript in an adobe form.

example :

In the selection screen i have a field by the name :Preferance Zone :

Display text from SO10 here by following below logic

If Preferance Zone NAFT read text YSD_NONPREF_NAFA

If Preferance Zone USKR read text YSD_NONPREF_KOREA.

How Can i achieve this.

Any body Can you please give me some sudo code for this.

Regards

Sandeep

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hello,

In the context of the form,

1. Create a text field.

2. Change the text type to Include text

3. Pass the right variables of text Name, Object, etc taken from the global vraiables coded in Code Initialization. Use your required logic in code initialization to populate the variables.

4. In the form you can directly use the textfield.

Regards,

Omkar MIrvankar.

rakesh_m2
Contributor
0 Kudos

Hello Sandeep..

Declare a variable for the text and preference area in the interface of the adobe form.

then write a code in code initialization as

if(preference area = ' USKR')

text = 'korea'

else

text =

and then create a node in adobe forms for text and map this variable over there

Thanks,

Rakesh.