Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

this is about abap objects

Former Member
0 Likes
397

hi,

there is perform in normal abap program i have convert it into object oriented program we can write in call method but how to write the stmt in object oriented programing

perform abb (sapmov101) or perform asd in program sapmov101

think sapmov101 is module pool program.

how to convert to

call method

is it posible to have program parameter in object oriented programing .

2 REPLIES 2
Read only

h_senden2
Active Contributor
0 Likes
379

Why should you use it ? Then you want to call a method of a local class in a program. What you always can do, is to make the local class a global class. So define it in transaction SE24

regards,

Hans

Please reward all helpful answers !!!!!

Read only

Former Member
0 Likes
379

Hi,

You have to define a class in Se24 and methods for that class

You can define some parameters for that method.

define a object type ref to class

call the method with the parameters..

something like below

CALL METHOD im_header->get_data

RECEIVING

re_data = re_data.

reward if useful

regards,

Anji