cancel
Showing results for 
Search instead for 
Did you mean: 

Binding of an inputfield to a value

Former Member
0 Kudos

Hi,

I've been able to bind tables, but am absolutely clueless on binding an inputfield to a value. Here's the scenario. I've four input fields, where I'm entering values in the first three to get the fourth. The fourth value is an export (return) parameter of the BAPI. After the BAPI is called, i need to display the value returned by the BAPI in the fourth inputfield. Hope this information is enough.

View Entire Topic
Former Member
0 Kudos

hi lloyd.........

create 4 attributes...... either in a single node or different nodes.

all are bound to 4 input fields........

attr1 and attr2 are exported to the bapi.....

so when a button is clicked..... read teh 2 attributes using code wizard and pass it tot he bapi....

once the bapi is executed it retursns var1 and var2.

now write the coding as:

<reference>->set_attribute(

name = <attribute name>

value =var1).

do the same for the var2 also.

---regards,

alex b justin

Former Member
0 Kudos

Hi Alex,

You're solution worked out. Thanx a lot

Regards,

Lloyd