SAP ABAP Question:
Download Questions PDF

Can you print decimals in type N? What is difference between float and packed data type?

Answer:

No, we cannot print decimals in type N because decimal places are not permitted with N

data type.

Float Data Type: It cannot be declared in Parameters.

Packed Number: It can be declared in Parameters. For e.g.

PARAMETERS : A(4) TYPE P DECIMALS 2,

B(4) TYPE P DECIMALS 2.

DATA : C(4) TYPE P DECIMALS 2.

C = A + B.

WRITE : / ‘THE SUM IS’ , C.

Download SAP ABAP Interview Questions And Answers PDF

Previous QuestionNext Question
What is view? Different types of view. Explain?What is step-loop? Explain all the steps?