‎2020 Jun 24 9:46 AM
Additional filter in customer oAn additional filter and also selection of customer follow-up person.
The selection should be as follows:
1. Report based on customer follow-up person (check box)
2. If check box is not selected, then existing report will be generated,
Else
3. Print only for a selected follow-up person(selection required)
(If not should print for all)
‎2020 Jun 24 10:07 AM
It seems to be a very simplistic question, but with no details and finally no precise question, so I suggest that you ask an ABAPer in your company.
If you're an ABAPer, please clarify the question.
‎2020 Jun 24 11:04 AM
Comment from OP, taken from duplicate question: "Suppose customer data is there. Check box is given in the code. If I select the check box then the related data only should be displayed and if the check box is not selected then the entire data should be displayed in the output. For that, can any one give me any suggestion regarding the programming ?
‎2020 Jun 24 11:06 AM
Do you know IF...ELSE...?
IF checkbox = 'X'.
PERFORM display_related_data.
ELSE.
PERFORM display_entire_data.
ENDIF.