cancel
Showing results for 
Search instead for 
Did you mean: 

Internal Table values need to Capture in ITS Template Single I/P Field

Former Member
0 Kudos

Hi,

I have created one input field which max length is blank mean can capture N number of characters .I need to capture all the values of internal table in above specified field .I am supplying data in internal table and using following syntax in ITS but there only single value is visible in input field .

<b><input type="text" id="ACCOUNT" name="ACCOUNT_ID" value="`ITAB-ACCT.value`” size="030" title=""></b>

Where ITAB is an internal table with 10 records but there only single record is visible.

<b>This process is same like Process Purchase Order where we have range of PO Numbers Which is available in GS_SEARCH_FIELD-OBJECT_ID .</b>

Thanks,

SS

Accepted Solutions (0)

Answers (1)

Answers (1)

athavanraja
Active Contributor
0 Kudos

do you mean all the 10 record's acct field value should be concatenated into this inputfield?

ITAB-ACCT.value would only bring in the workarea value

you need to loop thru all the values either at the client side or at the server side and put them into one single variable for using it with inputfield

Raja