Skip to content
Advertisement

Conditional loop clearing of HR infotype itab lines?

I have no idea about ABAP – but my colleague (also no idea about it) showed me some code he came up with and it consisted of wayyy too many if-statements. In JavaScript I could’ve improved it but in ABAP I’m a bit lost because I’m missing my Arrays ;). I found out that internal Tables are used instead. But I still can’t figure it out.

The code is placed in a column of a Query Manager made by EPI-USE. It’s just a way to adjust some results of the query and I noticed I get an error if I try to create a report (“already in a program”) and if I create a class or a method (“close try-catch-block before declaring new Class”).

The problem is extremely simple:

There’s a person that has many properties, the values are numbers. These are the properties

JavaScript

I want to Loop through the PA0013-Block and follow These rules:

Conditions:

If PA0013-RVNUM is empty all other properties have to be set to empty.

If a PA0013-Value is empty all following PA0013-Values have to be set to empty (not the previous ones).

If a PA0013-Value is empty the corresponding PA0000-Value has to be set to empty.

After the first Loop:

If any of the PA0000-Values has the value 3 execute the command REJECT. in order to kick the line out of the results.

My JS Code for this would look like that:

JavaScript

Can someone help me by “translating” my js code into ABAP?

My colleague just did something like this for all of the conditions:

JavaScript

JavaScript

JavaScript

He told me he set the PERNRs empty in order for the Query not to fill them with wrong PERNRs.

Advertisement

Answer

Here is how this program could look like. No guarantee at all that it works and does what your JavaScript does.

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement