cancel
Showing results for 
Search instead for 
Did you mean: 

Dynamic values in text fields adobe interactive forms

Former Member
0 Kudos

Hi All,

I need help in sap interactive form regarding drop down value of text field2 according to value entered in text field1.

Thanks in advance.

Chitta Ranjan

Accepted Solutions (1)

Accepted Solutions (1)

navip
Active Participant
0 Kudos

Hi Chitta Ranjan,

  You can achieve your requirement through ACTION BUILDER.

Please refer my document from the below link.

http://scn.sap.com/docs/DOC-44845

Regards,

Naveen

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Chitta,

In change* event, insert formcalc / javascript to check the changed value and alter others text field value.

example in javascript

if ( this.rawValue == "AAAA" ) {

// you might want to write some logic here to retrieve text to display based on the selected drop down value

data.Main.Body.rawValue = "1100".

}else

{

//.... others logic

}

Hope this helps.

regards,

Xiang Li