what will happen if you don't give occurs clause while
creating an internal table?

Answer Posted / sukhbir

occurs 0 is used for mem allocation. I believe it means
8kb.
As per new version of sap,occurs sud be avoided as its a
obsolute statement.

Data t_mara type standard table of mara.

or

types : begin of ty_mara,
matnr type mara-matnr,
mkart type mara-mkart,
end of ty_mara.
Data t_mara type standard table of ty_mara.

Is This Answer Correct ?    8 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the two different ways of building a match code object?

586


Explain what is the step-by-step process to create a table in data dictionary?

621


What is locking? : abap data dictionary

622


What are system variable in abap?

607


What is the use of dequeue function module? : sap abap data dictionary

602






How can we upload a text file having delimiters in to legacy system?

591


How to create any functions? How to go about it?

579


how to Create a smart form related to gate pass to be submitted to vendor’s location. This form outputs document number, date, vendors name, address, material details, quantity, unit,and the company logo.

4765


Can we write the code both call transaction and session method in single program?

598


How do you find the information on the current screen? : abap bdc

600


What are the arithmetic operators in the sap abap?

559


If I have put commit in badi implementation class after update, is it allowed? Also if some standard functionality already implemented an update and now i m doing update and if it fails, what will be the impact of commit?

1242


Explain about sap fico testing and the tools used? : abap bdc

602


How to Raise a Particular Ticket in Realtime ?

1634


PROGRAM TO CREATE INQUIRY IN SD USING BAPI 'BAPI_INQUIRY_CREATEFROMDATA'

3687