what is the difference between
data: begin of ty_emp,
eno type i,
ename type string,
dno type i,
end of ty_emp.
and
types: begin of ty_emp,
eno type i,
ename type string,
dno type i,
end of ty_emp.
Answers were Sorted based on User's Feedback
Answer / mohanty
First is the structure and the second one is structure data type
Is This Answer Correct ? | 16 Yes | 2 No |
Answer / aka ashishy
1st one is a structure and the 2nd one is its data type which is like a blue print which tells how the values of the structure gonna reside.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / md
Types means just declaration which doesnot allocate memory
Data means data type of structure which allocates memory
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / jwalitha
using the statement -Types
we can declare own data types
TYPES dtype [TYPE type|LIKE dobj] ...
where as using DATA statement
we can declare own variables or instance attributes of classes
DATA var [{TYPE type}|{LIKE dobj}] ...
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / dillip kumar mishra
First one is work area and second one is a strucure.
Is This Answer Correct ? | 3 Yes | 6 No |
Answer / sivaramakrishna
first one is declaring internal table in old format without headder line(declaring with out workarea),second one is declaring internal table in new format.
Is This Answer Correct ? | 0 Yes | 3 No |
What is roles and responsibilities of sap hr consultants? : sap abap hr
CAN WE DEBUG A IDOC? IF YES HOW TO DEBUG IN INBOUND SIDE AND OUTPUT SIDE.
if i want to take some matter from a smart form to another smart form .then how is it possible?
There is a file in application server. How can you upload it and separate it as per different fields?
Can we add a field to the sap standard screen? If so, how?
What are the types of parameters in the function modules?
Identify the valid statement when coding a field exit (a) SUBMIT RSCA101X. (b) MESSAGE E101. (c) MESSAGE I101. (d) BREAK-POINT.
In real time how we get the tickets? whether it is through email or any thing else.
1.Have you created custom table? Do you always use existing data elements and domains or create new ones? whatis the transaction code to see existing data elements and domains? 2.Performance wise inner join is better or For..ALL entries? why? 3.Where will you place data element domain and field together in an ABAP Program? 4.How will you pass the data/programs from one system to other system? 5.How will you print TOP-OF-PAGE in ALV Report?How will you make ALV Report interactive? 6.In Interactive report if i try to go to 20th list and my report has only 19 list what will be output? 7.Have you worked on Function Modules?How will you raise EXCEPTIONS in function modules? 8.Why you say Call transaction is faster than session? 9.How the business is carried out in your organisation?How did you get specs for coding ? Explain me complete step by step scenario from client deciding to switch SAP to your role of coding and after coding explain me how the object reaches back to client? Dont explain me about 5 phases like Business blueprint,realization etc? 10.To find User exit in SD module we can use development class VMOD and find out related exits. Which development class you use for MM FICO and PP Modules?
What is the syntax for ‘call transaction’?
What is meant by performance analysis?
can any post me all steps in MM ,SD, PP FLOW in detail?