what is the difference between "types" and "data" in abap.

Answers were Sorted based on User's Feedback



what is the difference between "types" and "data" in abap...

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

what is the difference between "types" and "data" in abap...

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

what is the difference between "types" and "data" in abap...

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

what is the difference between "types" and "data" in abap...

Answer / deepika rao

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

Post New Answer

More Programming Languages AllOther Interview Questions

what is web configuration file

0 Answers   HCL,


what do you meant by Platform-Independent in Java?

6 Answers   Persistent,


What is the use of sas software? Is sas and sap are different?

0 Answers  


Create a class TicTacToe that will enable you to write a complete program to play the game of Tic-Tac-Toe. The class contains as private data a 3- by-3 double array of integers. The constructor should initialize the empty board to all zeros. Allow two human players. Wherever the first player moves, place a 1 in the specified square; place a 2 wherever the second player moves. Each move must be to an empty square. After each move determine whether the game has been won and whether the game is a draw. If you feel ambitious, modify your program so that the computer makes the moves for one of the players automatically. Also, allow the player to specify whether he or she wants to go first or second. If you feel exceptionally ambitious, develop a program that will play three-dimensional Tic-Tac-Toe on a 4-by-4-by-4

2 Answers  


Suppose server object is not loaded into the memory, and the client request for it , what will happen?

0 Answers  






73. How can you set the status and title for a modal dialog box? a) In the attributes of the corresponding screen. b) Before the corresp. call screen statement. c) In a PBO module of the corresponding screen. d) In the PAI module of the corresponding screen.

1 Answers  


which worker is involved in all the phases of SDLC?

1 Answers  


what is woransient key word? how it is used in java

0 Answers   Convergys,


how to stop execution of step 3 in a job mainframe

0 Answers  


how do we provide security for web services

0 Answers  


I would like to know which institute in hyderabad provides best ms-dot net training along with a project. I want to join immediately. please help

2 Answers  


What are the limitation in using querystring in .net?

1 Answers   Tesco,


Categories