SAP ABAP Case Programm

Hallo Ingo,

vielen vielen DAnk.
Bis bald

Hallo Ingo,

vielen vielen DAnk.
Bis bald

Hallo Buenos,

leider werde ich immer noch nicht richtig schlau aus Deiner Anfrage. Um das weiter zu analysieren fehlt mir aber momentan auch die Zeit.

Sorry und viele Grüße,
Udo.

Hi,
konnte gestern nicht.
Hier meine Korrektur. Hoffe es hilft!!!

Gruß Wolf-Dieter

loop at it_easte_bo_pv_pf into wa_easte_bo_pv_pf.

case wa_easte_bo_pv_pf-PERVERBR.

when '0

Hi Buenos,

first of all, I don’t understand what your question is. What output medium are you planning to use? Screen with standard list, ALV, web-dynpro, file…Do you have a problem getting the correct result?

Second, I don’t think I can help you solving a business related issue. To develop a program you need to understand all business related elements and know the SAP tables and their contents.

As for technical help, no problem. Btw. in your loop you overwrite the determined bonus again after the endcase statement. Please take a closer look at your business requirement and your coded logic. If you would have debugged the program you would have noticed that right-away.

Regards

Marc

Hallo Buenos,

Soweit ich weiß, geht das mit CASE nicht. CASE vergleicht immer mit „=“.

Das muß also mit mehreren IF geschehen:

IF EASTE-PERVERBR BETWEEN 0 AND 998.
BONUSPVPF = 0.
ENDIF.

IF EASTE-PERVERBR BETWEEN 999 AND 1798.
BONUSPVPF = 84.
ENDIF.

Gruß
Christian