Skip to Content
0
Jul 20, 2023 at 08:55 AM

Read Data from ADSO in abap endroutine

197 Views Last edit Jul 20, 2023 at 10:02 AM 2 rev

Hello,

I want to read data from my ADSO HourRate. I need the Data from this ADSO to calculate revenue in my HourADSO.

1. Read Data from ADSO HourRate in the transformation endroutine for ADSO Hour

2. Revenue from ADSO Hour = Revenue * Hours from ADSO Hour.

How can i code this ?

SELECT * FROM /BIC/AMIHDSATZ7 INTO TABLE @DATA(lt_IStundenSatz).

LOOP AT Result_package INTO <RESULT_FIELDS>.
ENDLOOP.

this is all i have at the moment.