Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

alv report filtering

Former Member
0 Likes
347

how to do programatically filtering

please send code

how to do programatically filtering

please send code

1 REPLY 1
Read only

Former Member
0 Likes
326

Hi sunil

Filter Condition

In a filter condition, you provide information on which data records are to be displayed:

· The column in which the tested content is located

· The comparison value with which the rows are tested. This can be an individual value or an range for the given value.

· The condition, that is, an operator that defines the necessary relation between the cell value and the comparison value (for example, greater than, less than or equal to)

· Exclusion or inclusion, that is, whether the rows that fit the condition are to be displayed or whether they are not to be displayed

All entries that have the value AA in the CARRID column should be displayed.

*gr_filter->add_filter(

columnname = 'CARRID'

sign = 'I'

option = 'EQ'

low = 'AA' ).*

...

-> With the columname parameter, you determine the column name

-> With the low (or high) parameter, you determine the comparison value

-> With the option parameter, you determine the condition

-> With the sign parameter, you determine whether it is an inclusive or exclusive condition

reward if helpful

regards

Lakshman