cancel
Showing results for 
Search instead for 
Did you mean: 

Web dynpro abap row repeater

Dev164
Participant
0 Kudos

When using row repeater am unable to display objects in row repeater.

plz hlp!.

Accepted Solutions (1)

Accepted Solutions (1)

Shivesh
Advisor
Advisor
0 Kudos

HI Mangesh,

     Row Repeater works as a Table. Assign Context Node to Row Repeater Data Source & Assign attributes of Node to Objects Under Row Repeater.

     Now move to coding part: Bind LT(Table) to the node assigned to Row Repeater.

     This will work & will help u.

Regard's,

Shivesh Ranjan.

Dev164
Participant
0 Kudos

Hi Shivesh

               Thank u,

                              now  i have a scenario to display project name and users it but using row repeater am getting project name and only the first user of internal table

Shivesh
Advisor
Advisor
0 Kudos

Hi Mangesh,

    First Check Cadinality of the Node, make it 0 to n. Then, prepare the data for displaying in an Internal Table. And, then bind that internal table (using Bind Table method) with the Node assigned to Row Repeater.

Regard's,

Shivesh Ranjan.

Dev164
Participant
0 Kudos

have set cardinality of project node and user node to 0...n.

nd = wd_context->path_get_node(  'Project.Users' ).

el = nd->get_element( ).

nd->bind_table( new_items = lt_users ).

Shivesh
Advisor
Advisor
0 Kudos

HI Mangesh,

    Correct...

Regard's,

Shivesh Ranjan.

Answers (0)