Tuesday, February 8, 2011

How to Add two value (ABAP program)

REPORT  ZSALAUDDIN.

DATA: x type i value 10,
      y type i value 20,
      z type i.
z = x + y.
write:/ 'Z is: '.
write: z.
write: SY-ULINE .


output is:    Z is: 30

3 comments:

  1. Hellow brother... I am new in ABAP programming. But I am not getting any proper help from websites. Can I get more ABAP code from you? like database access, how to take input etc..

    ReplyDelete
  2. same to me.. I also need ABAP Codeing help...

    ReplyDelete

Drop Down lists in the selection parameters

PROGRAM ztest.   TYPE-POOLS : vrm.   DATA : name TYPE vrm_id,        list TYPE vrm_values,        value LIKE LINE OF list. ...