Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Doubt About obsolete Comand.

ronaldo_aparecido
Contributor
0 Likes
841

Hi Gurus.

I have a module pool and in my PAI I have:

Loop at t_tela.

endloop.

In extend verification appears the message:

      Program: SAPLZGMM008  Include: LZGMM008TOP  Row: 37

The current ABAP command is obsolete

Tables with headers are no longer supported in the OO context.

Internal Message Code: MESSAGE G1D

Cannot be suppressed using a pragma or pseudo-comment

If i use:

Loop at t_tela into w_tela.

endloop.

Appears the message:

In the event PROCESS AFTER INPUT, no additions are allowed with "LOOP

AT

What is the solution? .

Thanks

1 ACCEPTED SOLUTION
Read only

custodio_deoliveira
Active Contributor
0 Likes
767

Hi Ronaldo,

There's no "solution". You keep the original code:

Loop at t_tela.

endloop.

It would be an issue in the OO context, but screens are not OO so you're fine.

Cheers,

Custodio

Hi Gurus.

I have a module pool and in my PAI I have:

Loop at t_tela.

endloop.

In extend verification appears the message:

      Program: SAPLZGMM008  Include: LZGMM008TOP  Row: 37

The current ABAP command is obsolete

Tables with headers are no longer supported in the OO context.

Internal Message Code: MESSAGE G1D

Cannot be suppressed using a pragma or pseudo-comment

If i use:

Loop at t_tela into w_tela.

endloop.

Appears the message:

In the event PROCESS AFTER INPUT, no additions are allowed with "LOOP

AT

What is the solution? .

Thanks

4 REPLIES 4
Read only

custodio_deoliveira
Active Contributor
0 Likes
768

Hi Ronaldo,

There's no "solution". You keep the original code:

Loop at t_tela.

endloop.

It would be an issue in the OO context, but screens are not OO so you're fine.

Cheers,

Custodio

Read only

0 Likes
767

Thanks Guys .

Read only

arindam_m
Active Contributor
0 Likes
767

Hi,

Yes as pointed out its a generic check message and as pointed out, if the context is not OO you are fine.

Cheers,

Arindam

Read only

Former Member
0 Likes
767

Hi,

are you using table control??