cancel
Showing results for 
Search instead for 
Did you mean: 

IS_CHANGED_BY_CLIENT( ) ISSUE

Former Member
0 Kudos

I'm re-using the alv component of SAP in order to display ALV_GRID within web dynpro for abap....

The method is changed by client on the if_WD_context element is working really nice.

Unfortunatly when I change the sorting of the alv ( using headerclick ) it appears this method is always returning false....

Really problematic to me.

Any has had the same issue ?

Regards

Stephan K.

Accepted Solutions (0)

Answers (2)

Answers (2)

shahid
Product and Topic Expert
Product and Topic Expert
0 Kudos

I assume that once there is a rebinding of the table ..is_changed_client return abap_false.

we need to read the value of is_changed_client in the methods which can change/bind the values to the node/table.

so that we can set the is_changed_client by abap_true/false after the binding

Former Member
0 Kudos

Dear all,

@Saravanan : It's my mistake, i didn't tell completely ! Of course I add a sort and then I do a change, but the method does not return true...

cheerz

saravanan_narayanan
Active Contributor
0 Kudos

Hello Stephan,

I believe you are doing this check in the view controller. could you move this check logic to component controller and check whether it works or not?

BR, Saravanan

saravanan_narayanan
Active Contributor
0 Kudos

Hello Stephan,

this method will return abap_true only if the value is changed by the user. By sorting, the value is not changed. Only the order of the elements is changed. hope this helps.

BR, Saravanan