[1629] in SAPr3-news
Re: ABAP List Processing
daemon@ATHENA.MIT.EDU (Wolfram P|chert)
Wed Aug 7 03:57:15 1996
To: sapr3-news@MIT.EDU
Date: Wed, 7 Aug 1996 07:05:26 GMT
From: Wolfram P|chert <wolfram.puechert@sap-ag.de>
Mikey wrote:
>
> Dear All,
>
> I am writing a report to process lists and use various PF keys to
> provide various additional screens of information. I have a
> requirement to display a sales order header and then its various
> items. I use PF22/23 to page between the various item screens of
> the order.
>
> The problem is that each PF22/23 creates a new list level. This
> means that I can not just hit PF3 once to go back to the header
> screen and it also means that I may exhaust the nine levels
> allowed.
>
> What I want to do is exit back one level each time I hit PF22/23
> before I display the next/previous item screen. In order words I
> want to simulate hitting PF3.
>
> Does anyone know now to do this in ABAP?
>
> NOTE: This is a report ABAP and NOT a transaction.
>
> Best Regards, Mike Garner.
Hallo Mike,
Try:
SY-LSIND = SY-LSIND - 1.
at the end of the "AT USER-COMMAND"-section.
regards Wolfram P|chert