2008 Jun 24 11:17 AM
Hi Guru's,
I would like to know if ther is any keyword 'BUILD' in ABAP.
If yes please let me know how it is used.
regards
Sunil Kumar P
2008 Jun 24 11:20 AM
As per my knowledge there is no keyword 'BUILD' in ABAP.
Regards,
Joy.
2008 Jun 24 11:21 AM
hi
u can fing ur self
just go to se38
openn an report or create an new one
now write Build on the editor
place cursor on the build and press F1
if thereis nay docimntation itwill get displayed
else not
Cheers
Snehi.
2008 Jun 24 11:22 AM
Hi,
I guess there is no keyword 'BUILD' in ABAP. Where did you found it?
Regards Rudi
2008 Jun 24 11:27 AM
2008 Jun 24 11:29 AM
Hi,
There is no keyword as BUILD in ABAP.
You must have come across some perform statment like.
Perform build_fieldcatalog
Perform Build_final.
But these are just naming convension for better understanding .
Regards
Bikas
2008 Jun 24 12:34 PM
Hi,
The statement has been used in one of the program which has to be upgraded to ECC6.0.
I could not replace this BUILD statement. Below is the code
REPORT zghgtmrg .
merge trkorr-list into a single transport
TABLES: e070, e070c, e071, e071k.
PARAMETERS: p_sfile RADIOBUTTON GROUP a,
p_slist RADIOBUTTON GROUP a.
SELECTION-SCREEN SKIP 1.
PARAMETERS: p_file LIKE rlgrap-filename.
SELECTION-SCREEN SKIP 1.
SELECT-OPTIONS: p_list FOR e070-trkorr.
PARAMETERS: p_trkorr LIKE e070-trkorr DEFAULT 'CD1K90????'.
DATA: BEGIN OF wk,
rec(255),
p1(32),
p2(32),
p3(32),
p4(32),
p5(32),
p6(32),
p7(32),
p8(32),
p9(32),
trkorr LIKE e070-trkorr,
ctr TYPE i,
as4pos LIKE e071-as4pos,
errsw,
END OF wk.
DATA: BEGIN OF wk_thiskey,
pgmid LIKE e071k-pgmid,
object LIKE e071k-object,
objname LIKE e071k-objname,
END OF wk_thiskey.
DATA: BEGIN OF wk_lastkey,
pgmid LIKE e071k-pgmid,
object LIKE e071k-object,
objname LIKE e071k-objname,
END OF wk_lastkey.
DATA: fe071 LIKE e071 OCCURS 100 WITH HEADER LINE,
fe071k LIKE e071k OCCURS 100 WITH HEADER LINE,
te071 LIKE e071 OCCURS 3000 WITH HEADER LINE,
te071k LIKE e071k OCCURS 3000 WITH HEADER LINE.
DATA: BEGIN OF ifile OCCURS 500,
rec(255),
END OF ifile.
DATA: x09 TYPE x VALUE '09'.
*Begin Of Change by v02.01MA3
DATA L_P_FILE TYPE STRING.
L_P_FILE = p_list.
RANGES: i_list FOR e070-trkorr.
START-OF-SELECTION.
Check input parameters:
IF NOT p_slist IS INITIAL.
DESCRIBE TABLE p_list LINES wk-ctr.
IF wk-ctr EQ 0.
MESSAGE i368(00) WITH 'Specify trkorrs in list'.
EXIT.
ENDIF.
ELSE.
IF p_file IS INITIAL.
MESSAGE i368(00) WITH 'Specify filename'.
EXIT.
ENDIF.
ENDIF.
IF NOT p_slist IS INITIAL.
use p_list from selection screen:
Check selected transports:
LOOP AT p_list.
IF p_list-option NE 'EQ'.
MESSAGE i368(00) WITH 'Do not use generic selections'.
MOVE 'X' TO wk-errsw.
EXIT.
ENDIF.
ENDLOOP.
ELSE.
Build p_list from (P_FILE).
This last statement has to be replaced.
Can anyone guide me on this.
Regards
Sunil kumar P
2008 Jun 24 12:46 PM