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
How do you restrict the data to be entered in the payroll area? : sap abap hr
Explain what is an rdbms?
What is the use of f4if_shlp_exit_example function module ? : sap abap data dictionary
What is the difference between pnp and pnpce? : abap hr
What are the basic objects of the data dictionary? : abap data dictionary
Application Category?
How to debug a sapscript?
– Programming using BAPI : Create Debit Memo Request (DMR) with reference to Sales Order and update the delivery number and PO number in the newly created DMR. Send the spool of the report by E-mail if the E-mail option is enabled. Selection Screen Required: Sales Org Delivery type Sales document type Optional: Planned Goods movement date Option to choose E-Mail E-mail Address Output device Output Output should display both successful and unsuccessful creation of DMR with the following fields, Success/Error (S/E) Sales Document number Delivery number New Debit memo request number Error message Tables TVAK, TVCPA, VBAK, LIKP, LIPS
What is the difference between table and template?
What are the steps in creating screen ?
How can we achieve MVC ?
What are the two different ways of building a match code object? : abap data dictionary
I have 3 transactions,where the output of one transaction is input of another and output of 2nd transaction is input of 3rd transaction.i have one flat file with all data for the 3 transaction.if the 3rd transaction failed can we rollback the remaining 2 transactions or not.Is this possible in BDC,How/
What are internal tables? How do you get the number of lines in an internal table?
what is leave to TRANSACTION?