Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP keyword 'BUILD'

Former Member
0 Kudos
122

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

7 REPLIES 7

Former Member
0 Kudos
95

As per my knowledge there is no keyword 'BUILD' in ABAP.

Regards,

Joy.

Former Member
0 Kudos
95

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.

Former Member
0 Kudos
95

Hi,

I guess there is no keyword 'BUILD' in ABAP. Where did you found it?

Regards Rudi

Former Member
0 Kudos
95

Hi,

There is no BUILD command in ABAP.

Thanks,

Murali

former_member182485
Active Contributor
0 Kudos
95

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

0 Kudos
95

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

Former Member
0 Kudos
95

There is no keyword BUILD in ABAP.