Data Type Ref To Data Type Ref To Data Type
Data Type Ref To Data Type Ref To Data Type
*
*
*
*
*
*
how to get the data from database Table into our webdunpro table?
Ans.create a component with window & view
Create a Node with dictionary structure with cardinality 0-n(it holds n number of
values0)
create the table and bind the value property with node
create a button and provide some functionality to text & on action property
and create a method to get the data from data base records into our table
create application and test it.
How to bind the internal table records to node?
By Using the Bind_table method we can assign the internal table recors to Node.
What is the use of get_static_attributes method and set_static attributes?
get_static_attributes(Importing static_attributes = ls_itab).
the above statment will capture the selected records or data to Ls_itab by using
ls_itab.
Set_static_attributes (Importing Static_attributes = Ls_input)
ls_table it captured the users entry by using this variable we can wrtie the update
logic
update kna1 set name = ls_itab-name
id = ls_itab-name
etc....