cancel
Showing results for 
Search instead for 
Did you mean: 

get tableview data in internal table. CRM WEBUI

Former Member
0 Kudos

I want to read the whole tableview into internal table. Where and how to do it? I want to get this table in DO_FINISH_INPUT and then go on to save in DB. Before saving i need to change internal table data. Please help.I am looking for the way to read the data from tableview into my internal table.

Accepted Solutions (0)

Answers (1)

Answers (1)

Domi
Contributor
0 Kudos

If these change only refer to "screen to internal" issues (some kind of conversion exit) which can't be done in the setter/getter methods

then you already have an "internal table": the context node.

You can loop over this node and do your changes.

But if the changes are some sort of business logic I would strongly recommend to to this in the BOL or even better in the API implementation behind the BOL.

For almost any SAP standard objects there are exits/BADIs/enhancments options to change data before saving.

If you are talking about a custom object based on a WebUI value node, without a custom-BOL: rethink your implementation and build an API and BOL and extend the standard model!