‎2020 Nov 13 7:02 AM
Hi gurus,
I am using these two fields STORENETWORKID AND STORESUPPLIERID from the table EBAN in an adobe form. Now my requirement is to increase the field length of these two to 'String' in the Zprogram that i've created for my PR that is attached to my adobe form. i'm calling out these field texts using the FM 'Read_text'. Any way that i can increase their length by code. Any help regarding this would be highly appreciated.
Regards,
Hamza
‎2020 Nov 13 7:06 AM
Why didn't you create 2 new fields, defines them in the Interface of the Form & used them in the form ... simply ?
‎2020 Nov 13 7:15 AM
frdric.girod i'm looping at the table eban and getting all the data from there.
‎2020 Nov 13 7:24 AM
Create a new table with the two new fields and populate it, and use it ...
types: begin of my_eban,
eban type eban,
my_field1 type my_type_1,
my_field2 type my_type_2,
end of my_eban,
my_table_eban type standard table of my_eban .....
data(my_table) = corresponding my_table_eban( eban... ).
‎2020 Nov 13 7:41 AM
‎2020 Nov 13 7:46 AM
You will have to define the same in the interface of the form.
‎2020 Nov 13 8:05 AM
‎2020 Nov 13 8:08 AM
yes because "..." should be replace 🙂
I wrote the code without checking the syntax
so you should complete the type of key for your internal table
you should replace "eban" by the internal table containing the data of eban (eban is certainly a simple structure)