Age: 40 Joined: 01 Feb 2008 Posts: 387 Location: Воронеж
Posted: Mon Dec 15, 2008 6:07 pm Post subject: Прочитать атрубуты вызывающего класса
В методе класса происходит вызов метода другого класса. Как из вызванного метода прочитать атрибуты вызывающего?
Больше конкретики:
Code:
Из метода TRANSLATE_MAIN класса CL_HRPP_ITEM происоходит вызов
CALL METHOD cl_hrpp_document=>create_document_objects.
Нужно изнутри этого метода обатиться к атрибуту CL_HRPP_ITEM->CL_T_HRPP_PPDIX
_________________ Hормальные люди делают вещи намного более безумные чем всё, что делают сумасшедшие (c) С.Лем
Age: 46 Joined: 05 Nov 2007 Posts: 725 Location: КраснАдар
Posted: Mon Dec 15, 2008 6:33 pm Post subject:
Попробовал на самописных классах, сработало вроде.
Code:
DATA: dref TYPE REF TO data.
FIELD-SYMBOLS: <fs> TYPE hrpp_t_item_ppdix.
GET REFERENCE OF cl_hrpp_item=>cl_t_hrpp_ppdix INTO dref.
ASSIGN dref->* TO <fs>.
WRITE <fs>.
Age: 40 Joined: 01 Feb 2008 Posts: 387 Location: Воронеж
Posted: Tue Dec 16, 2008 3:57 pm Post subject:
Большое спасибо.
Ткнули носом, что атрибут то static. _________________ Hормальные люди делают вещи намного более безумные чем всё, что делают сумасшедшие (c) С.Лем
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG. SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG. Every effort is made to ensure content integrity. Use information on this site at your own risk.