Application Development 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: 

about delegation and copy

Former Member
0 Kudos
107

hi all,

what is difference b/n delegate business object and copy business object ?

Thanks in advance

gupt

5 REPLIES 5

Former Member
0 Kudos
69

Delegation means whatever properties or methods/events you have added to a subtype it will going to reflect the super type. You can consider it as reverse of inheritence.

Copy means you are coping any business object and from it creating a new one.

Regards,

Joy.

Former Member
0 Kudos
69

hi

COPY:

if you are coping ny business object and from it creating a new one.

ex: goto SWO1

(Existing One) FORMABSENC copied ZFORMABSENC (new one)

Now all the methods and events events copied to ZFORMABSENC.

Now add a new method to ZFORMABSENC

now new method is not availble in FORMABSENC.

DELEGATION:

Now delegate the ZFORMABSENC ---> FORMABSENC.

now new method is availble in FORMABSENC.

Thanks

sitaram

0 Kudos
69

hi sitaram,

in delegation also i am not able get new method?can explain it

thanks in advance

gupt

0 Kudos
69

hi sitaram,

in delegation also i am not able get new method?can explain it

thanks in advance

gupt

Former Member
0 Kudos
69

Hi first of all check all your methods are implemented or not ..

then go further..

Reward if find useful