Name: Anonymous 2012-06-19 21:16
So, /prog/, what do you think of this language?
http://help.sap.com/saphelp_nw2004s/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm
http://help.sap.com/saphelp_nw2004s/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm
CALL METHOD meth EXPORTING i1 = f1 i2 =f2 ...
IMPORTING e1 = g1 e2 =g2 ...
CHANGING c1 = f1 c2 =f2 ...
RECEIVING r = h
EXCEPTIONS e1 = rc1 e2 =rc2 ...METHODS CONSTRUCTOR
IMPORTING [VALUE(]i1 i2 ...[)] TYPE type [OPTIONAL]...
EXCEPTIONS exc1 exc2 ... .AT LINE-SELECTION.
WINDOW STARTING AT 45 3 ENDING AT 85 13.
WRITE: 'Alternative Plane Types',
'for', wa-carrid, wa-connid.
ULINE.
SELECT planetype seatsmax
INTO (plane, seats)
FROM saplane AS plane
WHERE seatsmax < wa-seatsmax AND
seatsmax >= ALL ( select seatsocc
FROM sflight
WHERE carrid = wa-carrid AND
connid = wa-connid )
ORDER BY seatsmax.
WRITE: / plane, seats.
ENDSELECT.