‎2006 Jun 16 4:20 PM
Hi ,
I am working on MEDRUCK (Sap Script) for PO ,
I want the item details to be in a box , to get it done i have added the command <b>BOX FRAME 10 TW</b> in the event <b>ITEM_HEADER_F</b>.
But what is happening is that the box is displayed only on the first page and no where else , and the box also encloses the terms and payment terms, which is not what i actually require , i just want the item details to be in box.
Please suggest what is to be done.
Thanks
Arun
‎2006 Jun 16 4:22 PM
‎2006 Jun 16 4:22 PM
Hi,
U can set the X origin and Y origin of box using POSITION command...
Sreedhar
‎2006 Jun 16 4:22 PM
‎2006 Jun 16 4:28 PM
create a seperate window place it where u need and use position command to place the box where u want to be in layout.
hope it works fine.
‎2006 Jun 16 4:22 PM
‎2006 Jun 17 3:33 AM
Hi Arun,
From my understanding, u need to display only the item header deatils on every page. This is my assumption.
First create a variable window say window1 with one text element as HEADER,
/E HEADER
/: POSITION XORIGIN '-.2' CM YORIGIN '-.2' CM
/: SIZE WIDTH '.2' CM HEIGHT '.2' CM
/: BOX FRAME 10 TW
P1 ITEM_No ITEM_Desc
/: &itab-num& &itab-desc&
Write ur variables here and adjust it properly, Use the same window on next page also and use the same text element HEADER in "OPEN_FORM" on next page also.
And if u say simply,
BOX FRAME 10 TW
It will draw box which fits whole window and it covers all the data whatever u write after box command.
If found helpful, please do reward.