I am providing a rough code for the same:
LOOP AT RESULT_PACKAGE ASSIGNING <RESULT_FIELDS>.
IF <RESULT_FIELDS>-calmonth GE '201401'
and IF <RESULT_FIELDS>-calmonth LE '201406' .
If <RESULT_FIELDS>-country = 'AX1'
or
I<RESULT_FIELDS>-country = 'AX2'
or
<RESULT_FIELDS>-country = 'AX3'.
<RESULT_FIELDS>-comp_code= 'C70'.
endif.
endif.
Endloop.
Similarly you can write for other conditions.
Hope this gives an idea.
Regards,
AL