cancel
Showing results for 
Search instead for 
Did you mean: 

table in scripts

Former Member
0 Kudos

hello,

How to place a Table in SAP-Script main window.

can any body help me.

in SMART FORMS , insert->Table is there , but in scripts how it is possible.

DETAIL : i had an internal table which consists of data. i need to place this data in main window, in table format.

regards,

kiran

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

U have to hadnle using BOX, POSITION, and SIZE commands .

Syntax.

BOX Command

Syntax

/: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]

Parameters: For each of XPOS, YPOS, WIDTH, HEIGHT, and FRAME, you must specify both a measurement and a unit of measurement. Specify the INTENSITY parameter as a percentage between 0 and 100.

Use the above command u can draw the tables.

Check the following link also.

http://help.sap.com/saphelp_40b/helpdata/en/d1/803293454211d189710000e8322d00/content.htm

Let me know u face any problem

Regards

Former Member
0 Kudos

Hi,

In case of sapscript u will use

loop itab.

      • call FM write_form where u pass the form element

      • inside the form element u have to write the data to

      • be printed like &itab-XXX&

endloop

To make the grid visible in the window editor make use of the statement BOX provide the x and y cordinated to the box statement and the height and the width .

Hope ur query is answered.

Reward useful answers.

Regards,

Shrita

Former Member
0 Kudos

in sapscript there is no any ormat like smartform to place table ..

for inserting in table format 1st u have to draw box which looks like table..

and u have to use paragraph format with proper tab position of variable ..

like

<b>ph</b> itab-field1,,itab-field2,,itab-field3

ph---paragraph format..

it is very hectic but if u use sapscript than u have to do that way.

Former Member
0 Kudos

hi,

use <b>BOX</b> command..

Syntax

/: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]

Effect: draws a box of the specified size at the specified position.

Parameters: For each of XPOS, YPOS, WIDTH, HEIGHT and FRAME both a measurement and a unit of measurement must be specified. The INTENSITY parameter should be specified as a percentage between 0 and 100.

1. XPOS, YPOS: Upper left corner of the box, relative to the values of the POSITION command.

Default: Values specified in the POSITION command.

The following calculation is performed internally to determine the absolute output position of a box on the page:

X(abs) = XORIGIN + XPOS

Y(abs) = YORIGIN + YPOS

2. WIDTH: Width of the box. Default: WIDTH value of the SIZE command.

3. HEIGHT: Height of the box. Default: HEIGHT value of the SIZE command.

4. FRAME: Thickness of frame.

Default: 0 (no frame).

5. INTENSITY: Grayscale of box contents as % .

Default: 100 (full black)

Measurements: Decimal numbers must be specified as literal values (like ABAP numeric constants) by being enclosed in inverted commas. The period should be used as the decimal point character. See also the examples listed below.

Units of measurement: The following units of measurement may be used:

• TW (twip)

• PT (point)

• IN (inch)

• MM (millimeter)

• CM (centimeter)

• LN (line)

• CH (character).

The following conversion factors apply:

• 1 TW = 1/20 PT

• 1 PT = 1/72 IN

• 1 IN = 2.54 CM

• 1 CM = 10 MM

• 1 CH = height of a character relative to the CPI specification in the layout set header

• 1 LN = height of a line relative to the LPI specification in the layout set header

/: BOX FRAME 10 TW

Draws a frame around the current window with a frame thickness of 10 TW (= 0.5 PT).

/: BOX INTENSITY 10

Fills the window background with shadowing having a gray scale of 10 %.

/: BOX HEIGHT 0 TW FRAME 10 TW

Draws a horizontal line across the complete top edge of the window.

/: BOX WIDTH 0 TW FRAME 10 TW

Draws a vertical line along the complete height of the left hand edge of the window.

/: BOX WIDTH '17.5' CM HEIGHT 1 CM FRAME 10 TW INTENSITY 15

/: BOX WIDTH '17.5' CM HEIGHT '13.5' CM FRAME 10 TW

/: BOX XPOS '10.0' CM WIDTH 0 TW HEIGHT '13.5' CM FRAME 10 TW

/: BOX XPOS '13.5' CM WIDTH 0 TW HEIGHT '13.5' CM FRAME 10 TW

Draws two rectangles and two lines to construct a table of three columns with a highlighted heading section.

hope this helps,

do reward if it helps,

priya.