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: 

ecc 6.0 performs wise how to following codeing standards...

Former Member
0 Kudos

Hi Floks,

ECC 6.0 how to maintain the codeing stanard....

like select * from

select...... endselect

internal table declaration....

like wise

in depth i want perform wise codeing standerds...

usefull ans i will give rewardpoints.

Regards.

Krishna.

4 REPLIES 4

former_member386202
Active Contributor
0 Kudos

hi,

Refr this report performance wise

----


  • TABLES *

----


TABLES : vbrk.

----


  • TYPES *

----


TYPES : BEGIN OF t_vbrk,

vbeln TYPE vbeln_vf,

rplnr TYPE rplnr,

bukrs TYPE bukrs,

END OF t_vbrk,

BEGIN OF t_fpltc,

fplnr TYPE fplnr,

fpltr TYPE fpltr,

ccnum TYPE ccnum,

END OF t_fpltc,

BEGIN OF t_final,

bukrs TYPE bukrs,

vbeln TYPE vbeln_vf,

rfzei TYPE rfzei_cc,

ccnum TYPE ccnum,

END OF t_final.

----


  • WORK AREAS *

----


DATA : wa_vbrk TYPE t_vbrk,

wa_fpltc TYPE t_fpltc,

wa_final TYPE t_final,

wa_bseg TYPE bseg.

----


  • INTERNAL TABLES *

----


DATA : it_vbrk TYPE STANDARD TABLE OF t_vbrk,

it_fpltc TYPE STANDARD TABLE OF t_fpltc,

it_final TYPE STANDARD TABLE OF t_final.

----


  • PARAMETERS & SELECT-OPTIONS *

----


SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE text-001.

SELECT-OPTIONS : s_vbeln FOR vbrk-vbeln OBLIGATORY.

SELECTION-SCREEN END OF BLOCK blk1.

----


  • START-OF-SELECTION *

----


START-OF-SELECTION.

PERFORM sub_read_vbrk.

PERFORM sub_read_fpltc.

PERFORM sub_collect_data.

PERFORM sub_read_update_bseg.

&----


*& Form SUB_READ_VBRK

&----


  • text

----


FORM sub_read_vbrk.

SELECT vbeln

rplnr

bukrs

FROM vbrk

INTO TABLE it_vbrk

WHERE vbeln IN s_vbeln

AND rplnr NE ' '.

IF sy-subrc EQ 0.

SORT it_vbrk BY rplnr.

ENDIF.

ENDFORM. " SUB_READ_VBRK

&----


*& Form SUB_READ_FPLTC

&----


  • text

----


FORM sub_read_fpltc.

IF NOT it_vbrk[] IS INITIAL.

SELECT fplnr

fpltr

ccnum

FROM fpltc

INTO TABLE it_fpltc

FOR ALL ENTRIES IN it_vbrk

WHERE fplnr EQ it_vbrk-rplnr

AND ccins EQ 'GIFC'.

IF sy-subrc EQ 0.

SORT it_fpltc BY fplnr.

ENDIF.

ENDIF.

ENDFORM. " SUB_READ_FPLTC

Regards,

Prashant

Former Member
0 Kudos

hi

if you are working in ECC6.0 version of SAP, while coding if you press F1 on each command you will get the repestive syntax for that command

So it is better to go through the help in ECC6.0 to understand all the programming stds

Regards

Anji

Former Member
0 Kudos

Hi,

firstly there is nothing different than sap 4.7ecc rather abap editor has been somewht changed such tht its look and feel is something like java editor . here some more function modules have been introduced and we can do webdynpro applications.

unlike these coding standards remain same any how for ur satisfaction. i will be describing u abt tht.

1. do not use select * and do not use select and endselect.

2. try avoiding innerjoin and use at max of for all entries only.

3. when usng read stmt use binary search i.e with key addition.

4.do not use nested selects.

so there is some wrong notion tht coding standards hav been changed some enhancements has come but not entirly changed......mostly the major cange is webdnpro usage ....

i thnk it might be useful to you.

Former Member
0 Kudos

Hi,

Go to transaction SE30, hit the button tips'n'tricks.

Here you can get an idea of wise coding.

regards

Sven