2008 Jun 13 1:19 PM
hi all,
what is difference b/n delegate business object and copy business object ?
Thanks in advance
gupt
2008 Jun 13 1:26 PM
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.
2008 Jun 13 1:39 PM
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
2008 Jun 13 2:55 PM
hi sitaram,
in delegation also i am not able get new method?can explain it
thanks in advance
gupt
2008 Jun 13 2:55 PM
hi sitaram,
in delegation also i am not able get new method?can explain it
thanks in advance
gupt
2008 Jun 13 3:18 PM
Hi first of all check all your methods are implemented or not ..
then go further..
Reward if find useful