Posted: Mon Aug 04, 2008 1:51 pm Post subject: Просмотр исходного кода программ, защищенного *@#@@[SAP]
Note: Вся отвестенность за использовании программы лежит на Вас!
Do not use this program to read in SAPMSYST. This is not possible, as for any other protected program.
Code:
*********************************************************************
* Bernhard Lanner, 2006.08.31
* zcon IT-Consulting GmbH
* www.zcon.at
*--------------------------------------------------------------------
* Editor fьr alle Fдlle
* Mit diesem Editor kann jeglicher Source eingefьgt werden.
*
* Insbesondere die Zeichenfolge
* *@#@@[SAP]
* Steht diese in der ersten Zeile eines ABAPS, kann der
* Source nicht mehr zur Anzeige gebracht werden. Diese
* Zeichenfolge kann nicht mit den Standard Editoren eingegeben
* werden. Die SAP schьtzt mit dieser Technik z.B. das Programm
* SAPMSYST.
*
* Fьr das Editieren der Programme ist kein Entwicklerschlьssel
* erforderlich und kann bei Bedarf auf der Produktion
* erfolgen. Weiters ist kein Transportauftrag erforderlich.
* BerechtigungsmдЯig genьgt das Recht zur Ausfьhren dieses
* Programmes.
*********************************************************************
REPORT yzcon_edit LINE-SIZE 80.
TYPES: BEGIN OF gy_code,
line(80),
END OF gy_code.
DATA: gt_code TYPE TABLE OF gy_code.
PARAMETERS program TYPE trdir-name.
START-OF-SELECTION.
* Read
READ REPORT program INTO gt_code.
WRITE: / 'Read: ', sy-subrc.
IF sy-subrc EQ 0.
WRITE: 'OK'.
ELSE.
WRITE: 'Error when reading program.'.
EXIT.
ENDIF.
* Edit
EDITOR-CALL FOR gt_code.
WRITE: / 'Edit: ', sy-subrc.
IF sy-subrc EQ 0.
WRITE: 'OK'.
ELSE.
WRITE: 'Error when editing program.'.
EXIT.
ENDIF.
* Insert
INSERT REPORT program FROM gt_code.
WRITE: / 'Insert: ', sy-subrc.
IF sy-subrc EQ 0.
WRITE: 'OK'.
ELSE.
WRITE: 'Error when inserting program.'.
EXIT.
ENDIF.
* Activate
GENERATE REPORT program.
WRITE: / 'Generate:', sy-subrc.
IF sy-subrc EQ 0.
WRITE: 'OK'.
ELSE.
WRITE: 'Error when generating program.'.
EXIT.
ENDIF.
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.