Age: 165 Joined: 04 Oct 2007 Posts: 1218 Location: Санкт-Петербург
Posted: Fri Jun 19, 2009 2:08 pm Post subject:
Ничего себе простенький
Не зная имени переменной, как можно получить ее имя?
Можно узнать тип переменной, думаю можно получить список всех переменных в программе.
Уточните, что Вы хотите?
пишу класс для работы с excel.
предположим объект PrinterSetup.
У него есть свойство( важное как я понимаю ) Orientation.
Если я в своем ABAP объекте делаю его объявление так:
Code:
CLASS z_cl_PageSetup DEFINITION.
PUBLIC SECTION.
Data: f_noflush Type bool.
Data: save_f_noflush Type bool.
Data: Worksheet Type ole2_object.
Data: PageSetup Type ole2_object.
...
Data: Orientation Type I Value xlPortrait. "xlLandscape,
...
ENDCLASS.
то хотелось бы при присвоении
object->Orientation = xlLandscape.
что бы это отразилось на msexcel ...
В ABAP я что то затрудняюсь такое сделать...(может намекнете как сделать? если есть возможность ?)
Вот я и подумал, что можно было бы написать код, который свойство устанавливал по этой переменной!
то есть получал бы название переменной и вставлял в вызов OLE
Code:
METHOD Set_Property.
p_Prop = get_property_name( Variable ).
If f_noflush is initial.
set property of PrinterSetUp p_Prop = p_Value.
Else.
set property of PrinterSetUp p_Prop = p_Value no flush.
EndIf. "
ENDMETHOD.
Вот и вопрос как получить то это имя?
вот для этого зверя object->Orientation получить имя Orientation ? _________________ (SAP) Система нипель... выпускает лучше, чем впускает!
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.