what is the difference between "types" and "data" in abap.
Answers were Sorted based on User's Feedback
Answer / nimesh kumar
The main difference between DATA and TYPE in ABAP is that
DATA occupy memory space while TYPE does not occupy memory
space.
| Is This Answer Correct ? | 57 Yes | 2 No |
Answer / shankar
The main difference between DATA and TYPE in ABAP is that
Data for use in Predefined data objects and Types for use
in User defined Data objects
| Is This Answer Correct ? | 21 Yes | 6 No |
Answer / chetan
We can not assign value to a variable which is created as TYPE.
TYPES: a1 TYPE i .
DATA: a2 TYPE a1 .
is correct. But,
data : a3 TYPE a2.
is wrong.
| Is This Answer Correct ? | 5 Yes | 0 No |
types are defiend with veribal (we has allready asine a
veriable and we want a another variable like that veriable
then we use type. as ew has acct is a nummeric veriable and
we also want a numeric veriable bal. there we can use type.)
when we defined a veriable first time then we use data for
given that type ( int, char, float,etc.).
| Is This Answer Correct ? | 12 Yes | 11 No |
how to stop execution of step 3 in a job mainframe
What is BASIS
What is good attributes of Programming language ?
Given a arbitrary pointer to an element in a singly linked list?what is the time complexity for its deletion .
Full from of MP3?
Artficial language is provided which of the language?
Given a Binary Search Tree, write a program to print the kth smallest element without using any static/global variable. You can?t pass the value k to any function also.
What for decision coverage and modified condition decision coverage are used? Wat is the difference between them?
Is buffer size and file block size is similar? If similar,at which case it will be same size?
WHat is execution in manual testing and when will we start execution and what language we use in execution
This is the portal and portlet interview question API: is JSR 168 API Server: is ibm web sphere portal server6.0 IDE: is RAD 7.0 Question:In normal struts what is the actionservlet? Ans:org.apache.struts.action.ActionServlet. But What is the actionservlet in strutsportlet?
Given: coordinates of rectangle-> left bottom and right top points. the rectangles create a hole.Find the maximum area of the hole. eg. 4 rectangles create a hole in between. find its area.