PROGRAM zdtp_massdownload



PROGRAM zdtp_massdownload.

*======================================================================

* Mass download version 1.4.4.

*----------------------------------------------------------------------

* PROGRAM DESCRIPTION & USE

* Allows a user to download programs, Functions, DD definitions, etc to

* the presentation server. This version searches

* recursively for nested includes and function modules, and allows you

* to download the resulting code as standard text

* or HTML web pages within a suitable directory structure.

*

* You can either search by object name, using wildcards if you wish, or

* a combination of Author and object name. If

* you want all objects returned for a particular author then select the

* author name and choose the most suitable

* radiobutton. All objects will be returned if the fields to the right

* hand side of the radiobutton are left completely

* blank.

*

* Compatible with R/3 Enterprise and Netweaver, for older versions of

*SAP you will need Direct Download version 5.xx.

* This version removes the programming limitations imposed by

*developing across SAP releases 3 to 4.6.

*

* In order to be able to download files to the SAP server you must

*first set up a logical filepath within transaction

* 'FILE', or use an existing one. You must also create a external

*operating system command in SM69 called ZDTX_MKDIR. This

* will then be used to create any directories needed on the SAP server

* This program is intended to allow a person to keep a visual

*representation of a program for backup purposes only as

* has not been designed to allow programs to be uploaded to SAP systems

*-----------------------------------------------------------------------

*

* Author : Copyright (C) 1998 E.G.Mellodew

* program contact :

* This program is free software; you can redistribute it and/or

* modify it under the terms of the GNU General Public License

* as published by the Free Software Foundation; either version 2

* of the License, or (at your option) any later version.

*

* This program is distributed in the hope that it will be useful,

* but WITHOUT ANY WARRANTY; without even the implied warranty of

* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the

* GNU General Public License for more details.

*

* You should have received a copy of the GNU General Public License

* along with this program; if not, write to the Free Software

* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA.

*

*-----------------------------------------------------------------------

*-----------------------------------------------------------------------

* SAP Tables

*-----------------------------------------------------------------------

TABLES: trdir, seoclass, tfdir, enlfdir, dd02l, tadiv.

TYPE-POOLS: abap, seor.

*-----------------------------------------------------------------------

* Types

*-----------------------------------------------------------------------

* text element structure

TYPES: ttexttable LIKE textpool.

* GUI titles

TYPES: tguititle LIKE d347t.

* Message classes

TYPES: BEGIN OF tmessage,

arbgb LIKE t100-arbgb,

stext LIKE t100a-stext,

msgnr LIKE t100-msgnr,

text LIKE t100-text,

END OF tmessage.

* Screen flow.

TYPES: BEGIN OF tscreenflow,

screen LIKE d020s-dnum,

code LIKE d022s-line,

END OF tscreenflow.

* Holds a table\structure definition

TYPES: BEGIN OF tdicttablestructure,

fieldname LIKE dd03l-fieldname,

position LIKE dd03l-position,

keyflag LIKE dd03l-keyflag,

rollname LIKE dd03l-rollname,

domname LIKE dd03l-domname,

datatype LIKE dd03l-datatype,

leng LIKE dd03l-leng,

lowercase TYPE lowercase,

ddtext LIKE dd04t-ddtext,

END OF tdicttablestructure.

* Holds a tables attributes + its definition

TYPES: BEGIN OF tdicttable,

tablename LIKE dd03l-tabname,

tabletitle LIKE dd02t-ddtext,

istructure TYPE tdicttablestructure OCCURS 0,

END OF tdicttable.

TYPES: BEGIN OF tdictfilename,

tablename LIKE dd03l-tabname,

filename TYPE string,

END OF tdictfilename.

* Include program names

TYPES: BEGIN OF tinclude,

includename LIKE trdir-name,

includetitle LIKE tftit-stext,

END OF tinclude.

* Exception class texts

TYPES: BEGIN OF tconcept,

constname TYPE string,

concept TYPE sotr_conc,

END OF tconcept.

* Method

TYPES: BEGIN OF tmethod,

cmpname(61),

descript LIKE vseomethod-descript,

exposure LIKE vseomethod-exposure,

methodkey TYPE string,

END OF tmethod.

* Interfaces

TYPES: BEGIN OF tinterface,

interfacename LIKE vseoclass-clsname,

END OF tinterface.

* Class

TYPES: BEGIN OF tclass,

scanned(1),

clsname LIKE vseoclass-clsname,

descript LIKE vseoclass-descript,

msg_id LIKE vseoclass-msg_id,

exposure LIKE vseoclass-exposure,

state LIKE vseoclass-state,

clsfinal LIKE vseoclass-clsfinal,

r3release LIKE vseoclass-r3release,

imethods TYPE tmethod OCCURS 0,

idictstruct TYPE tdicttable OCCURS 0,

itextelements TYPE ttexttable OCCURS 0,

imessages TYPE tmessage OCCURS 0,

iinterfaces TYPE tinterface OCCURS 0,

iconcepts TYPE tconcept OCCURS 0,

textelementkey TYPE string,

publicclasskey TYPE string,

privateclasskey TYPE string,

protectedclasskey TYPE string,

typesclasskey TYPE string,

exceptionclass TYPE abap_bool,

END OF tclass.

* function modules

TYPES: BEGIN OF tfunction,

functionname LIKE tfdir-funcname,

functiongroup LIKE enlfdir-area,

includenumber LIKE tfdir-include,

functionmaininclude LIKE tfdir-funcname,

functiontitle LIKE tftit-stext,

topincludename LIKE tfdir-funcname,

progname LIKE tfdir-pname,

programlinkname LIKE tfdir-pname,

messageclass LIKE t100-arbgb,

itextelements TYPE ttexttable OCCURS 0,

iselectiontexts TYPE ttexttable OCCURS 0,

imessages TYPE tmessage OCCURS 0,

iincludes TYPE tinclude OCCURS 0,

idictstruct TYPE tdicttable OCCURS 0,

iguititle TYPE tguititle OCCURS 0,

iscreenflow TYPE tscreenflow OCCURS 0,

END OF tfunction.

TYPES: BEGIN OF tprogram,

progname LIKE trdir-name,

programtitle LIKE tftit-stext,

subc LIKE trdir-subc,

messageclass LIKE t100-arbgb,

imessages TYPE tmessage OCCURS 0,

itextelements TYPE ttexttable OCCURS 0,

iselectiontexts TYPE ttexttable OCCURS 0,

iguititle TYPE tguititle OCCURS 0,

iscreenflow TYPE tscreenflow OCCURS 0,

iincludes TYPE tinclude OCCURS 0,

idictstruct TYPE tdicttable OCCURS 0,

END OF tprogram.

*-----------------------------------------------------------------------

* Internal tables

*-----------------------------------------------------------------------

* Dictionary object

DATA: idictionary TYPE STANDARD TABLE OF tdicttable WITH HEADER LINE.

* Dictionary objects which have previously been downloaded

DATA: idictfilename TYPE STANDARD TABLE OF tdictfilename

WITH HEADER LINE.

* Function modules.

DATA: ifunctions TYPE STANDARD TABLE OF tfunction WITH HEADER LINE.

* Function modules used within programs.

DATA: iprogfunctions TYPE STANDARD TABLE OF tfunction WITH HEADER LINE.

* Tree display structure.

DATA: itreedisplay TYPE STANDARD TABLE OF snodetext WITH HEADER LINE.

* Message class data

DATA: imessages TYPE STANDARD TABLE OF tmessage WITH HEADER LINE.

* Holds a single message class an all of its messages

DATA: isinglemessageclass TYPE STANDARD TABLE OF tmessage

WITH HEADER LINE.

* Holds program related data

DATA: iprograms TYPE STANDARD TABLE OF tprogram WITH HEADER LINE.

* Classes

DATA: iclasses TYPE STANDARD TABLE OF tclass WITH HEADER LINE.

* Table of paths created on the SAP server

DATA: iserverpaths TYPE STANDARD TABLE OF string WITH HEADER LINE.

*-----------------------------------------------------------------------

* Table prototypes

*-----------------------------------------------------------------------

DATA: dumidictstructure TYPE STANDARD TABLE OF tdicttablestructure.

DATA: dumitexttab TYPE STANDARD TABLE OF ttexttable.

DATA: dumiincludes TYPE STANDARD TABLE OF tinclude.

DATA: dumihtml TYPE STANDARD TABLE OF string.

DATA: dumiheader TYPE STANDARD TABLE OF string .

DATA: dumiscreen TYPE STANDARD TABLE OF tscreenflow .

DATA: dumiguititle TYPE STANDARD TABLE OF tguititle.

DATA: dumimethods TYPE STANDARD TABLE OF tmethod.

DATA: dumiconcepts TYPE STANDARD TABLE OF tconcept.

DATA: dumiinterfaces TYPE STANDARD TABLE OF tinterface.

*-----------------------------------------------------------------------

* Global objects

*-----------------------------------------------------------------------

DATA: objfile TYPE REF TO cl_gui_frontend_services.

DATA: objruntimeerror TYPE REF TO cx_root.

*-----------------------------------------------------------------------

* Constants

*-----------------------------------------------------------------------

CONSTANTS: versionno TYPE string VALUE '1.4.4'.

CONSTANTS: tables TYPE string VALUE 'TABLES'.

CONSTANTS: table TYPE string VALUE 'TABLE'.

CONSTANTS: like TYPE string VALUE 'LIKE'.

CONSTANTS: type TYPE string VALUE 'TYPE'.

CONSTANTS: typerefto TYPE string VALUE 'TYPE REF TO'.

CONSTANTS: structure TYPE string VALUE 'STRUCTURE'.

CONSTANTS: lowstructure TYPE string VALUE 'structure'.

CONSTANTS: occurs TYPE string VALUE 'OCCURS'.

CONSTANTS: function TYPE string VALUE 'FUNCTION'.

CONSTANTS: callfunction TYPE string VALUE ' CALL FUNCTION'.

CONSTANTS: message TYPE string VALUE 'MESSAGE'.

CONSTANTS: include TYPE string VALUE 'INCLUDE'.

CONSTANTS: lowinclude TYPE string VALUE 'include'.

CONSTANTS: destination TYPE string VALUE 'DESTINATION'.

CONSTANTS: is_table TYPE string VALUE 'T'.

CONSTANTS: is_program TYPE string VALUE 'P'.

CONSTANTS: is_screen TYPE string VALUE 'S'.

CONSTANTS: is_guititle TYPE string VALUE 'G'.

CONSTANTS: is_documentation TYPE string VALUE 'D'.

CONSTANTS: is_messageclass TYPE string VALUE 'MC'.

CONSTANTS: is_function TYPE string VALUE 'F'.

CONSTANTS: is_class TYPE string VALUE 'C'.

CONSTANTS: is_method TYPE string VALUE 'M'.

CONSTANTS: asterix TYPE string VALUE '*'.

CONSTANTS: comma TYPE string VALUE ','.

CONSTANTS: period TYPE string VALUE '.'.

CONSTANTS: dash TYPE string VALUE '-'.

CONSTANTS: true TYPE abap_bool VALUE 'X'.

CONSTANTS: false TYPE abap_bool VALUE ''.

CONSTANTS: lt TYPE string VALUE '<'.

CONSTANTS: gt TYPE string VALUE '>'.

CONSTANTS: unix TYPE string VALUE 'UNIX'.

CONSTANTS: non_unix TYPE string VALUE 'not UNIX'.

CONSTANTS: htmlextension TYPE string VALUE 'html'.

CONSTANTS: textextension TYPE string VALUE 'txt'.

CONSTANTS: ss_code TYPE c VALUE 'C'.

CONSTANTS: ss_table TYPE c VALUE 'T'.

*-----------------------------------------------------------------------

* Global variables

*-----------------------------------------------------------------------

DATA: statusbarmessage(100).

DATA: forcedexit TYPE abap_bool VALUE false.

DATA: starttime LIKE sy-uzeit.

DATA: runtime LIKE sy-uzeit.

DATA: downloadfileextension TYPE string.

DATA: downloadfolder TYPE string.

DATA: serverslashseparator TYPE string.

DATA: frontendslashseparator TYPE string.

DATA: slashseparatortouse TYPE string.

DATA: serverfilesystem TYPE filesys_d.

DATA: serverfolder TYPE string.

DATA: frontendopsystem TYPE string.

DATA: serveropsystem TYPE string.

DATA: customernamespace TYPE string.

RANGES: soprogramname FOR trdir-name.

RANGES: soauthor FOR usr02-bname.

RANGES: sotablenames FOR dd02l-tabname.

RANGES: sofunctionname FOR tfdir-funcname.

RANGES: soclassname FOR vseoclass-clsname.

RANGES: sofunctiongroup FOR enlfdir-area.

FIELD-SYMBOLS: TYPE tdicttable.

*-----------------------------------------------------------------------

* Selection screen declaration

*-----------------------------------------------------------------------

* Author

SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME TITLE tblock1.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 5(23) tauth.

PARAMETERS: pauth LIKE usr02-bname MEMORY ID mauth.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 5(36) tpmod.

PARAMETERS: pmod AS CHECKBOX.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN: END OF BLOCK b1.

SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE tblock2.

* Tables

SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS: rtable RADIOBUTTON GROUP r1.

SELECTION-SCREEN COMMENT 5(15) trtable.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 10(15) tptable.

SELECT-OPTIONS: sotable FOR dd02l-tabname.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 10(79) ttnote.

SELECTION-SCREEN END OF LINE.

* Message classes

SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS: rmess RADIOBUTTON GROUP r1.

SELECTION-SCREEN COMMENT 5(18) tpmes.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 10(18) tmname.

PARAMETERS: pmname LIKE t100-arbgb MEMORY ID mmname.

SELECTION-SCREEN END OF LINE.

* Function modules

SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS: rfunc RADIOBUTTON GROUP r1.

SELECTION-SCREEN COMMENT 5(30) trfunc.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 10(15) tpfname.

SELECT-OPTIONS: sofname FOR tfdir-funcname.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 10(15) tfgroup.

SELECT-OPTIONS: sofgroup FOR enlfdir-area.

SELECTION-SCREEN END OF LINE.

* Classes

SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS: rclass RADIOBUTTON GROUP r1.

SELECTION-SCREEN COMMENT 5(30) trclass.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 10(15) tpcname.

SELECT-OPTIONS: soclass FOR seoclass-clsname.

SELECTION-SCREEN END OF LINE.

* Programs / includes

SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS: rprog RADIOBUTTON GROUP r1 DEFAULT 'X'.

SELECTION-SCREEN COMMENT 5(18) tprog.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 10(15) trpname.

SELECT-OPTIONS: soprog FOR trdir-name.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN SKIP.

* Language

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(27) tmlang.

PARAMETERS: pmlang LIKE t100-sprsl DEFAULT 'EN'.

SELECTION-SCREEN END OF LINE.

* Package

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(24) tpack.

SELECT-OPTIONS: sopack FOR tadiv-devclass.

SELECTION-SCREEN END OF LINE.

* Customer objects

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(27) tcust.

PARAMETERS: pcust AS CHECKBOX DEFAULT 'X'.

SELECTION-SCREEN END OF LINE.

* Alt customer name range

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(27) tnrange.

PARAMETERS: pcname TYPE namespace MEMORY ID mnamespace.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN: END OF BLOCK b2.

* Additional things to download.

SELECTION-SCREEN: BEGIN OF BLOCK b3 WITH FRAME TITLE tblock3.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(33) tptext.

PARAMETERS: ptext AS CHECKBOX DEFAULT 'X' MEMORY ID mtext.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(33) tmess.

PARAMETERS: pmess AS CHECKBOX DEFAULT 'X' MEMORY ID mmess.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(33) tpinc.

PARAMETERS: pinc AS CHECKBOX DEFAULT 'X' MEMORY ID minc.

SELECTION-SCREEN COMMENT 40(20) treci.

PARAMETERS: preci AS CHECKBOX DEFAULT 'X' MEMORY ID mreci.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(33) tpfunc.

PARAMETERS: pfunc AS CHECKBOX DEFAULT 'X' MEMORY ID mfunc.

SELECTION-SCREEN COMMENT 40(20) trecf.

PARAMETERS: precf AS CHECKBOX DEFAULT 'X' MEMORY ID mrecf.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(33) trecc.

PARAMETERS: precc AS CHECKBOX DEFAULT 'X' MEMORY ID mrecc.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(33) tfdoc.

PARAMETERS: pfdoc AS CHECKBOX DEFAULT 'X' MEMORY ID mfdoc.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(33) tcdoc.

PARAMETERS: pcdoc AS CHECKBOX DEFAULT 'X' MEMORY ID mcdoc.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(33) tpscr.

PARAMETERS: pscr AS CHECKBOX DEFAULT 'X' MEMORY ID mscr.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(33) tpdict.

PARAMETERS: pdict AS CHECKBOX DEFAULT 'X' MEMORY ID mdict.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(33) tsortt.

PARAMETERS: psortt AS CHECKBOX DEFAULT ' ' MEMORY ID msortt.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN: END OF BLOCK b3.

* File details

SELECTION-SCREEN: BEGIN OF BLOCK b4 WITH FRAME TITLE tblock4.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(20) tphtml.

PARAMETERS: phtml RADIOBUTTON GROUP g1 DEFAULT 'X'.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 5(29) tback.

PARAMETERS: pback AS CHECKBOX DEFAULT 'X'.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(20) tptxt.

PARAMETERS: ptxt RADIOBUTTON GROUP g1.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN SKIP.

* Download to SAP server

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(25) tserv.

PARAMETERS: pserv RADIOBUTTON GROUP g2.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 8(20) tspath.

PARAMETERS: plogical LIKE filename-fileintern MEMORY ID mlogical.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN COMMENT /28(60) tsdpath.

* Download to PC

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(25) tpc.

PARAMETERS: ppc RADIOBUTTON GROUP g2 DEFAULT 'X'.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 8(20) tppath.

PARAMETERS: pfolder LIKE rlgrap-filename MEMORY ID mfolder.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN: END OF BLOCK b4.

* Display options

SELECTION-SCREEN: BEGIN OF BLOCK b5 WITH FRAME TITLE tblock5.

* Display final report

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(33) trep.

PARAMETERS: prep AS CHECKBOX DEFAULT 'X'.

SELECTION-SCREEN END OF LINE.

* Display progress messages

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(33) tpromess.

PARAMETERS: ppromess AS CHECKBOX DEFAULT 'X'.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN: END OF BLOCK b5.

*-----------------------------------------------------------------------

* Display a directory picker window

*-----------------------------------------------------------------------

AT SELECTION-SCREEN ON VALUE-REQUEST FOR pfolder.

DATA: objfile TYPE REF TO cl_gui_frontend_services.

DATA: pickedfolder TYPE string.

DATA: initialfolder TYPE string.

IF sy-batch IS INITIAL.

CREATE OBJECT objfile.

IF NOT pfolder IS INITIAL.

initialfolder = pfolder.

ELSE.

objfile->get_temp_directory( CHANGING temp_dir = initialfolder

EXCEPTIONS cntl_error = 1

error_no_gui = 2

not_supported_by_gui = 3 ).

ENDIF.

objfile->directory_browse( EXPORTING initial_folder = initialfolder

CHANGING selected_folder = pickedfolder

EXCEPTIONS cntl_error = 1

error_no_gui = 2

not_supported_by_gui = 3 ).

IF sy-subrc = 0.

pfolder = pickedfolder.

ELSE.

WRITE: / 'An error has occured picking a folder'.

ENDIF.

ENDIF.

*-----------------------------------------------------------------------

AT SELECTION-SCREEN.

*-----------------------------------------------------------------------

CASE 'X'.

WHEN ppc.

IF pfolder IS INITIAL.

* User must enter a path to save to

MESSAGE e000(oo) WITH 'You must enter a file path'.

ENDIF.

WHEN pserv.

IF plogical IS INITIAL.

* User must enter a logical path to save to

MESSAGE e000(oo) WITH 'You must enter a logical file name'.

ENDIF.

ENDCASE.

*-----------------------------------------------------------------------

AT SELECTION-SCREEN ON plogical.

*-----------------------------------------------------------------------

IF NOT pserv IS INITIAL.

CALL FUNCTION 'FILE_GET_NAME'

EXPORTING

logical_filename = plogical

IMPORTING

file_name = serverfolder

EXCEPTIONS

file_not_found = 1

OTHERS = 2.

IF sy-subrc = 0.

IF serverfolder IS INITIAL.

MESSAGE e000(oo)

WITH 'No file path returned from logical filename'.

ELSE.

* Path to display on the selection screen

tsdpath = serverfolder.

* Remove the trailing slash off the path as the subroutine

* buildFilename will add an extra one

SHIFT serverfolder RIGHT DELETING TRAILING serverslashseparator.

SHIFT serverfolder LEFT DELETING LEADING space.

ENDIF.

ELSE.

MESSAGE e000(oo) WITH 'Logical filename does not exist'.

ENDIF.

ENDIF.

* ----------------------------------------------------------------------

AT SELECTION-SCREEN ON VALUE-REQUEST FOR soprog-low.

* ----------------------------------------------------------------------

CALL FUNCTION 'REPOSITORY_INFO_SYSTEM_F4'

EXPORTING

object_type = 'PROG'

object_name = soprog-low

suppress_selection = 'X'

use_alv_grid = ''

without_personal_list = ''

IMPORTING

object_name_selected = soprog-low

EXCEPTIONS

cancel = 1.

* ----------------------------------------------------------------------

AT SELECTION-SCREEN ON VALUE-REQUEST FOR soprog-high.

* ----------------------------------------------------------------------

CALL FUNCTION 'REPOSITORY_INFO_SYSTEM_F4'

EXPORTING

object_type = 'PROG'

object_name = soprog-high

suppress_selection = 'X'

use_alv_grid = ''

without_personal_list = ''

IMPORTING

object_name_selected = soprog-high

EXCEPTIONS

cancel = 1.

* ----------------------------------------------------------------------

AT SELECTION-SCREEN ON VALUE-REQUEST FOR soclass-low.

* ----------------------------------------------------------------------

CALL FUNCTION 'F4_DD_ALLTYPES'

EXPORTING

object = soclass-low

suppress_selection = 'X'

display_only = ''

only_types_for_clifs = 'X'

IMPORTING

RESULT = soclass-low.

* ----------------------------------------------------------------------

AT SELECTION-SCREEN ON VALUE-REQUEST FOR soclass-high.

* ----------------------------------------------------------------------

CALL FUNCTION 'F4_DD_ALLTYPES'

EXPORTING

object = soclass-high

suppress_selection = 'X'

display_only = ''

only_types_for_clifs = 'X'

IMPORTING

RESULT = soclass-high.

* ----------------------------------------------------------------------

AT SELECTION-SCREEN ON VALUE-REQUEST FOR sofname-low.

* ----------------------------------------------------------------------

CALL FUNCTION 'REPOSITORY_INFO_SYSTEM_F4'

EXPORTING

object_type = 'FUNC'

object_name = sofname-low

suppress_selection = 'X'

use_alv_grid = ''

without_personal_list = ''

IMPORTING

object_name_selected = sofname-low

EXCEPTIONS

cancel = 1.

* ----------------------------------------------------------------------

AT SELECTION-SCREEN ON VALUE-REQUEST FOR sofname-high.

* ----------------------------------------------------------------------

CALL FUNCTION 'REPOSITORY_INFO_SYSTEM_F4'

EXPORTING

object_type = 'FUNC'

object_name = sofname-high

suppress_selection = 'X'

use_alv_grid = ''

without_personal_list = ''

IMPORTING

object_name_selected = sofname-high

EXCEPTIONS

cancel = 1.

* ----------------------------------------------------------------------

AT SELECTION-SCREEN ON VALUE-REQUEST FOR sofgroup-low.

* ----------------------------------------------------------------------

CALL FUNCTION 'REPOSITORY_INFO_SYSTEM_F4'

EXPORTING

object_type = 'FUGR'

object_name = sofgroup-low

suppress_selection = 'X'

use_alv_grid = ''

without_personal_list = ''

IMPORTING

object_name_selected = sofgroup-low

EXCEPTIONS

cancel = 1.

* ----------------------------------------------------------------------

AT SELECTION-SCREEN ON VALUE-REQUEST FOR sofgroup-high.

* ----------------------------------------------------------------------

CALL FUNCTION 'REPOSITORY_INFO_SYSTEM_F4'

EXPORTING

object_type = 'FUGR'

object_name = sofgroup-high

suppress_selection = 'X'

use_alv_grid = ''

without_personal_list = ''

IMPORTING

object_name_selected = sofgroup-high

EXCEPTIONS

cancel = 1.

*-----------------------------------------------------------------------

* initialisation

*-----------------------------------------------------------------------

INITIALIZATION.

* Parameter screen texts.

tblock1 = 'Author (Optional)'.

tblock2 = 'Objects to download'.

tblock3 =

'Additional downloads for programs, function modules and classes'.

tblock4 = 'Download parameters'.

tblock5 = 'Display options'.

tauth = 'Author name'.

tpmod = 'Include programs modified by author'.

tcust = 'Only customer objects'.

tnrange = 'Alt customer name range'.

trtable = 'Tables / Structures'.

tptable = 'Table name'.

CONCATENATE 'Note: tables are stored under the username of the'

'last person who modified them'

INTO ttnote.

trfunc = 'Function modules'.

tpfname = 'Function name'.

tfgroup = 'Function group'.

trclass = 'Classes'.

tpcname = 'Class name'.

tmess = 'Message class'.

tmname = 'Class name'.

tmlang = 'Language'.

tprog = 'Programs'.

trpname = 'Program name'.

tpack = 'Package'.

tptxt = 'Text document'.

tphtml = 'HTML document'.

tback = 'Include background colour'.

tptext = 'Text elements'.

tpinc = 'Include programs'.

treci = 'Recursive search'.

tppath = 'File path'.

tspath = 'Logical file name'.

tpmes = 'Message classes'.

tpfunc = 'Function modules'.

tfdoc = 'Function module documentation'.

tcdoc = 'Class documentation'.

trecf = 'Recursive search'.

trecc = 'Class recursive search'.

tpscr = 'Screens'.

tpdict = 'Dictionary structures'.

tsortt = 'Sort table fields alphabetically'.

tserv = 'Download to server'.

tpc = 'Download to PC'.

trep = 'Display download report'.

tpromess = 'Display progress messages'.

* Determine the frontend operating system type.

IF sy-batch IS INITIAL.

PERFORM determinefrontendopsystem

USING frontendslashseparator frontendopsystem.

ENDIF.

PERFORM determineserveropsystem

USING serverslashseparator serverfilesystem serveropsystem.

* Determine if the external command exists. If it doesn't then disable

* the server input field

PERFORM findexternalcommand

USING serverfilesystem.

*-----------------------------------------------------------------------

START-OF-SELECTION.

*-----------------------------------------------------------------------

PERFORM checkcomboboxes.

PERFORM fillselectionranges.

starttime = sy-uzeit.

* Don't display status messages if we are running in the background

IF NOT sy-batch IS INITIAL.

ppromess = ''.

ENDIF.

* Fool the HTML routines to stop them hyperlinking anything with a space

* in them

IF pcname IS INITIAL.

customernamespace = '^'.

ELSE.

customernamespace = pcname.

ENDIF.

* Set the file extension and output type of the file

IF ptxt IS INITIAL.

downloadfileextension = htmlextension.

ELSE.

downloadfileextension = textextension.

ENDIF.

* Determine which operating slash and download directory to use

CASE 'X'.

WHEN ppc.

slashseparatortouse = frontendslashseparator.

downloadfolder = pfolder.

WHEN pserv.

slashseparatortouse = serverslashseparator.

downloadfolder = serverfolder.

ENDCASE.

* Main program flow.

CASE 'X'.

* Select tables

WHEN rtable.

PERFORM retrievetables USING idictionary[]

sotablenames[]

soauthor[]

sopack[].

* Select message classes tables

WHEN rmess.

PERFORM retrievemessageclass

USING imessages[]

soauthor[] "Author

pmname "Message class name

pmlang "Message class language

pmod "Modified by author

sopack[]. "Package

* Select function modules

WHEN rfunc.

PERFORM retrievefunctions

USING sofunctionname[] "Function name

sofunctiongroup[] "Function group

ifunctions[] "Found functions

soauthor[] "Author

ptext "Get text elements

pscr "Get screens

pcust "Customer data only

customernamespace "Customer name range

sopack[]. "Package

* Find Dict structures, messages, functions, includes etc.

PERFORM scanforadditionalfuncstuff

USING ifunctions[]

preci "Search for includes recursively

precf "Search for functions recursively

pinc "Search for includes

pfunc "Search for functions

pdict "search for dictionary objects

pmess "Search for messages

pcust "Customer data only

customernamespace. "Customer name range

* Select Classes

WHEN rclass.

PERFORM retrieveclasses

USING iclasses[]

ifunctions[]

soclassname[] "Class name

soauthor[] "Author

customernamespace "Customer name range

pmod "Also modified by author

pcust "Customer object only

pmess "Find messages

ptext "Text Elements

pdict "Dictionary structures

pfunc "Get functions

pinc "Get includes

precf "Search recursively for functions

preci "Search recursively for includes

precc "Search recursively for classes

pmlang "Language

sopack[]. "Package

LOOP AT ifunctions.

* Find Dict structures, messages, functions, includes etc.

PERFORM scanforadditionalfuncstuff

USING ifunctions[]

preci "Search for includes recursively

precf "Search for functions recursively

pinc "Search for includes

pfunc "Search for functions

pdict "search for dictionary objects

pmess "Search for messages

pcust "Customer data only

customernamespace. "Customer name range

ENDLOOP.

* Select programs

WHEN rprog.

PERFORM retrieveprograms

USING iprograms[]

iprogfunctions[]

soprogramname[] "Program name

soauthor[] "Author

customernamespace "Customer name range

pmod "Also modified by author

pcust "Customer object only

pmess "Find messages

ptext "Text Elements

pdict "Dictionay structures

pfunc "Get functions

pinc "Get includes

pscr "Get screens

precf "Search recursively for functions

preci "Search recursively for includes

sopack[]. "Package

ENDCASE.

*-----------------------------------------------------------------------

END-OF-SELECTION.

*-----------------------------------------------------------------------

IF forcedexit = 0.

* Decide what to download

CASE 'X'.

* Download tables

WHEN rtable.

IF NOT ( idictionary[] IS INITIAL ).

PERFORM downloadddstructures USING idictionary[]

idictfilename[]

downloadfolder

htmlextension

space

psortt

slashseparatortouse

pserv

ppromess

serverfilesystem

pback.

ENDIF.

* Download message class

WHEN rmess.

IF NOT ( imessages[] IS INITIAL ).

SORT imessages ASCENDING BY arbgb msgnr.

LOOP AT imessages.

APPEND imessages TO isinglemessageclass.

AT END OF arbgb.

PERFORM downloadmessageclass USING isinglemessageclass[]

imessages-arbgb

downloadfolder

downloadfileextension

phtml

space

customernamespace

pinc

pdict

pmess

slashseparatortouse

pserv

ppromess

serverfilesystem

pback.

CLEAR isinglemessageclass[].

ENDAT.

ENDLOOP.

ENDIF.

* Download functions

WHEN rfunc.

IF NOT ( ifunctions[] IS INITIAL ).

PERFORM downloadfunctions USING ifunctions[]

idictfilename[]

downloadfolder

downloadfileextension

space

pfdoc

phtml

customernamespace

pinc

pdict

textextension

htmlextension

psortt

slashseparatortouse

pserv

ppromess

serverfilesystem

pback.

ENDIF.

* Download Classes

WHEN rclass.

IF NOT ( iclasses[] IS INITIAL ).

PERFORM downloadclasses USING iclasses[]

ifunctions[]

idictfilename[]

downloadfolder

downloadfileextension

htmlextension

textextension

phtml

customernamespace

pinc

pdict

pcdoc

psortt

slashseparatortouse

pserv

ppromess

serverfilesystem

pback.

ENDIF.

* Download programs

WHEN rprog.

IF NOT ( iprograms[] IS INITIAL ).

PERFORM downloadprograms USING iprograms[]

iprogfunctions[]

idictfilename[]

downloadfolder

downloadfileextension

htmlextension

textextension

phtml

customernamespace

pinc

pdict

'' "Documentation

psortt

slashseparatortouse

pserv

ppromess

serverfilesystem

pback.

ENDIF.

ENDCASE.

* Free all the memory IDs we may have built up in the program

* Free up any memory used for caching HTML versions of objects

PERFORM freememory USING iprograms[]

ifunctions[]

iprogfunctions[]

idictionary[].

IF NOT prep IS INITIAL.

GET TIME.

runtime = sy-uzeit - starttime.

CASE 'X'.

WHEN rtable.

PERFORM filltreenodetables USING idictionary[]

itreedisplay[]

runtime.

WHEN rmess.

PERFORM filltreenodemessages USING imessages[]

itreedisplay[]

runtime.

WHEN rfunc.

PERFORM filltreenodefunctions USING ifunctions[]

itreedisplay[]

runtime.

WHEN rclass.

PERFORM filltreenodeclasses USING iclasses[]

ifunctions[]

itreedisplay[]

runtime.

WHEN rprog.

PERFORM filltreenodeprograms USING iprograms[]

iprogfunctions[]

itreedisplay[]

runtime.

ENDCASE.

IF NOT ( itreedisplay[] IS INITIAL ).

PERFORM displaytree USING itreedisplay[].

ELSE.

statusbarmessage = 'No items found matching selection criteria'.

PERFORM displaystatus USING statusbarmessage 2.

ENDIF.

ENDIF.

ENDIF.

* Clear out all the internal tables

CLEAR iprograms[].

CLEAR ifunctions[].

CLEAR iclasses[].

CLEAR iprogfunctions[].

CLEAR imessages[].

CLEAR idictionary[].

CLEAR idictfilename[].

*--- Memory IDs

* User name

SET PARAMETER ID 'MAUTH' FIELD pauth.

* Message class

SET PARAMETER ID 'MMNAME' FIELD pmname.

* Customer namespace

SET PARAMETER ID 'MNAMESPACE' FIELD pcname.

* Folder

SET PARAMETER ID 'MFOLDER' FIELD pfolder.

* Logical filepath

SET PARAMETER ID 'MLOGICAL' FIELD plogical.

* Text element checkbox

SET PARAMETER ID 'MTEXT' FIELD ptext.

* Messages checkbox

SET PARAMETER ID 'MMESS' FIELD pmess.

* Includes checkbox

SET PARAMETER ID 'MINC' FIELD pinc.

* Recursive includes checkbox.

SET PARAMETER ID 'MRECI' FIELD preci.

* Functions checkbox

SET PARAMETER ID 'MFUNC' FIELD pfunc.

* Recursive functions checkbox

SET PARAMETER ID 'MRECF' FIELD precf.

* Recursive classes checkbox

SET PARAMETER ID 'MRECF' FIELD precc.

* Function module documentation checkbox

SET PARAMETER ID 'MFDOC' FIELD pfdoc.

* Class documentation checkbox

SET PARAMETER ID 'MCDOC' FIELD pcdoc.

* Screens checkbox

SET PARAMETER ID 'MSCR' FIELD pscr.

* Dictionary checkbox

SET PARAMETER ID 'MDICT' FIELD pdict.

* Sort table ascending checkBox

SET PARAMETER ID 'MSORTT' FIELD psortt.

************************************************************************

***************************************************SUBROUTINES**********

************************************************************************

*-----------------------------------------------------------------------

* free memory...

*-----------------------------------------------------------------------

FORM freememory USING ilocprograms LIKE iprograms[]

ilocfunctions LIKE ifunctions[]

ilocprogfunctions LIKE iprogfunctions[]

ilocdictionary LIKE idictionary[].

FIELD-SYMBOLS: LIKE LINE OF ilocfunctions.

FIELD-SYMBOLS: LIKE LINE OF ilocprograms.

FIELD-SYMBOLS: TYPE tdicttable.

LOOP AT ilocfunctions ASSIGNING .

LOOP AT -idictstruct ASSIGNING .

FREE MEMORY ID -tablename.

ENDLOOP.

ENDLOOP.

LOOP AT ilocprogfunctions ASSIGNING .

LOOP AT -idictstruct ASSIGNING .

FREE MEMORY ID -tablename.

ENDLOOP.

ENDLOOP.

LOOP AT ilocprograms ASSIGNING .

LOOP AT -idictstruct ASSIGNING .

FREE MEMORY ID -tablename.

ENDLOOP.

ENDLOOP.

LOOP AT ilocdictionary ASSIGNING .

FREE MEMORY ID -tablename.

ENDLOOP.

ENDFORM. "freeMemory

*-----------------------------------------------------------------------

* checkComboBoxes... Check input parameters

*-----------------------------------------------------------------------

FORM checkcomboboxes.

IF pauth IS INITIAL.

IF sopack[] IS INITIAL.

CASE 'X'.

WHEN rtable.

IF sotable[] IS INITIAL.

statusbarmessage =

'You must enter either a table name or author.'.

ENDIF.

WHEN rfunc.

IF ( sofname[] IS INITIAL ) AND ( sofgroup[] IS INITIAL ).

IF sofname[] IS INITIAL.

statusbarmessage =

'You must enter either a function name or author.'.

ELSE.

IF sofgroup[] IS INITIAL.

statusbarmessage =

'You must enter either a function group, or an author name.'.

ENDIF.

ENDIF.

ENDIF.

WHEN rprog.

IF soprog[] IS INITIAL.

statusbarmessage =

'You must enter either a program name or author name.'.

ENDIF.

ENDCASE.

ENDIF.

ELSE.

* Check the user name of the person objects are to be downloaded for

IF pauth = 'SAP*' OR pauth = 'SAP'.

statusbarmessage =

'Sorry cannot download all objects for SAP standard user'.

ENDIF.

ENDIF.

IF NOT statusbarmessage IS INITIAL.

PERFORM displaystatus USING statusbarmessage 3.

forcedexit = 1.

STOP.

ENDIF.

ENDFORM. "checkComboBoxes

"checkComboBoxes

*-----------------------------------------------------------------------

* fillSelectionRanges... for selection routines

*-----------------------------------------------------------------------

FORM fillselectionranges.

DATA: strlength TYPE i.

strlength = STRLEN( pcname ).

IF NOT pauth IS INITIAL.

soauthor-sign = 'I'.

soauthor-option = 'EQ'.

soauthor-low = pauth.

APPEND soauthor.

ENDIF.

* Tables

IF NOT sotable IS INITIAL.

sotablenames[] = sotable[].

* Add in the customer namespace if we need to

IF NOT pcname IS INITIAL.

LOOP AT sotablenames.

IF sotablenames-low+0(strlength) pcname.

CONCATENATE pcname sotablenames-low INTO sotablenames-low.

ENDIF.

IF sotablenames-high+0(strlength) pcname.

CONCATENATE pcname sotablenames-high INTO sotablenames-high.

ENDIF.

MODIFY sotablenames.

ENDLOOP.

ENDIF.

ENDIF.

* Function names

IF NOT sofname IS INITIAL.

sofunctionname[] = sofname[].

* Add in the customer namespace if we need to

IF NOT pcname IS INITIAL.

LOOP AT sofunctionname.

IF sofunctionname-low+0(strlength) pcname.

CONCATENATE pcname sofunctionname-low INTO sofunctionname-low.

ENDIF.

IF sofunctionname-high+0(strlength) pcname.

CONCATENATE pcname sofunctionname-high INTO

sofunctionname-high.

ENDIF.

MODIFY sofunctionname.

ENDLOOP.

ENDIF.

ENDIF.

* Function group

IF NOT sofgroup IS INITIAL.

sofunctiongroup[] = sofgroup[].

* Add in the customer namespace if we need to

IF NOT pcname IS INITIAL.

LOOP AT sofunctionname.

IF sofunctiongroup-low+0(strlength) pcname.

CONCATENATE pcname sofunctiongroup-low INTO

sofunctiongroup-low.

ENDIF.

IF sofunctiongroup-high+0(strlength) pcname.

CONCATENATE pcname sofunctiongroup-high INTO

sofunctiongroup-high.

ENDIF.

MODIFY sofunctiongroup.

ENDLOOP.

ENDIF.

ENDIF.

* Class names

IF NOT soclass IS INITIAL.

soclassname[] = soclass[].

* Add in the customer namespace if we need to

IF NOT pcname IS INITIAL.

LOOP AT soclassname.

IF soclassname-low+0(strlength) pcname.

CONCATENATE pcname soclassname-low INTO soclassname-low.

ENDIF.

IF soclassname-high+0(strlength) pcname.

CONCATENATE pcname soclassname-high INTO soclassname-high.

ENDIF.

MODIFY soclassname.

ENDLOOP.

ENDIF.

ENDIF.

* Program names

IF NOT soprog IS INITIAL.

soprogramname[] = soprog[].

* Add in the customer namespace if we need to

IF NOT pcname IS INITIAL.

LOOP AT soprogramname.

IF soprogramname-low+0(strlength) pcname.

CONCATENATE pcname soprogramname-low INTO soprogramname-low.

ENDIF.

IF soprogramname-high+0(strlength) pcname.

CONCATENATE pcname soprogramname-high INTO soprogramname-high.

ENDIF.

MODIFY soprogramname.

ENDLOOP.

ENDIF.

ENDIF.

ENDFORM. "checkComboBoxes

" fillSelectionRanges

*-----------------------------------------------------------------------

* retrieveTables... Search for tables in dictionary

*-----------------------------------------------------------------------

FORM retrievetables USING ilocdictstructure LIKE idictionary[]

sotable LIKE sotable[]

soauthor LIKE soauthor[]

value(solocpackage) LIKE sopack[].

DATA: idictstructure TYPE STANDARD TABLE OF tdicttable.

DATA: wadictstructure TYPE tdicttable.

SELECT a~tabname AS tablename

INTO CORRESPONDING FIELDS OF TABLE idictstructure

FROM dd02l AS a

INNER JOIN tadir AS b

ON a~tabname = b~obj_name

WHERE a~tabname IN sotable

AND a~tabclass 'CLUSTER'

AND a~tabclass 'POOL'

AND a~tabclass 'VIEW'

AND a~as4user IN soauthor

AND a~as4local = 'A'

AND b~pgmid = 'R3TR'

AND b~object = 'TABL'

AND b~devclass IN solocpackage[].

LOOP AT idictstructure INTO wadictstructure.

PERFORM findtabledescription USING wadictstructure-tablename

wadictstructure-tabletitle.

PERFORM findtabledefinition USING wadictstructure-tablename

wadictstructure-istructure[].

APPEND wadictstructure TO ilocdictstructure.

CLEAR wadictstructure.

ENDLOOP.

ENDFORM. "checkComboBoxes

"retrieveTables

*-----------------------------------------------------------------------

* findTableDescription... Search for table description in dictionary

*-----------------------------------------------------------------------

FORM findtabledescription USING value(tablename)

tabledescription.

SELECT SINGLE ddtext

FROM dd02t

INTO tabledescription

WHERE tabname = tablename

AND ddlanguage = pmlang.

ENDFORM. "checkComboBoxes

"findTableDescription

*-----------------------------------------------------------------------

* findTableDefinition... Find the structure of a table from the SAP

*database.

*-----------------------------------------------------------------------

FORM findtabledefinition USING value(tablename)

idictstruct LIKE dumidictstructure[].

DATA gotstate LIKE dcobjif-gotstate.

DATA: definition TYPE STANDARD TABLE OF dd03p WITH HEADER LINE.

DATA: wadictstruct TYPE tdicttablestructure.

CALL FUNCTION 'DDIF_TABL_GET'

EXPORTING

name = tablename

state = 'A'

langu = pmlang

IMPORTING

gotstate = gotstate

TABLES

dd03p_tab = definition

EXCEPTIONS

illegal_input = 1

OTHERS = 2.

IF sy-subrc = 0 AND gotstate = 'A'.

LOOP AT definition.

MOVE-CORRESPONDING definition TO wadictstruct.

PERFORM removeleadingzeros CHANGING wadictstruct-position.

PERFORM removeleadingzeros CHANGING wadictstruct-leng.

APPEND wadictstruct TO idictstruct.

ENDLOOP.

ENDIF.

ENDFORM. "checkComboBoxes

"findTableDefinition

*-----------------------------------------------------------------------

* retrieveMessageClass... Retrieve a message class from the SAP

*database

*-----------------------------------------------------------------------

FORM retrievemessageclass USING ilocmessages LIKE imessages[]

rangeauthor LIKE soauthor[]

value(messageclassname)

value(messageclasslang)

value(modifiedby)

value(solocpackage) LIKE sopack[].

DATA: wamessage TYPE tmessage.

DATA: imclasses TYPE STANDARD TABLE OF arbgb.

IF NOT messageclassname IS INITIAL.

* Check to see if the message class exists in the package

IF NOT solocpackage[] IS INITIAL.

SELECT obj_name AS arbgb

INTO TABLE imclasses

FROM tadir

WHERE pgmid = 'R3TR'

AND object = 'MSAG'

AND devclass IN solocpackage.

ENDIF.

REPLACE '*' WITH '%' INTO messageclassname.

IF imclasses[] IS INITIAL.

SELECT t100~arbgb

t100~text

t100~msgnr

t100a~stext

APPENDING CORRESPONDING FIELDS OF TABLE ilocmessages

FROM t100

INNER JOIN t100a

ON t100a~arbgb = t100~arbgb

WHERE t100a~masterlang = messageclasslang

AND t100~sprsl = messageclasslang

AND t100~arbgb LIKE messageclassname

AND t100a~respuser IN rangeauthor[].

ELSE.

SELECT t100~arbgb

t100~text

t100~msgnr

t100a~stext

APPENDING CORRESPONDING FIELDS OF TABLE ilocmessages

FROM t100

INNER JOIN t100a

ON t100a~arbgb = t100~arbgb

FOR ALL entries IN imclasses

WHERE t100~sprsl = messageclasslang

AND ( t100~arbgb LIKE messageclassname AND t100~arbgb =

imclasses-table_line )

AND t100a~masterlang = messageclasslang

AND t100a~respuser IN rangeauthor[].

ENDIF.

ELSE.

IF modifiedby IS INITIAL.

* Select by author

SELECT t100~arbgb "#EC CI_BUFFJOIN

t100~msgnr

t100~text

t100a~stext

APPENDING CORRESPONDING FIELDS OF TABLE ilocmessages

FROM t100

INNER JOIN t100a

ON t100a~arbgb = t100~arbgb

INNER JOIN tadir

ON t100~arbgb = tadir~obj_name

WHERE t100a~masterlang = messageclasslang

AND t100a~respuser IN rangeauthor[]

AND tadir~pgmid = 'R3TR'

AND tadir~object = 'MSAG'

AND tadir~devclass IN solocpackage[].

ELSE.

* Select also by the last person who modified the message class

SELECT t100~arbgb "#EC CI_BUFFJOIN

t100~msgnr

t100~text

t100a~stext

APPENDING CORRESPONDING FIELDS OF TABLE ilocmessages

FROM t100

INNER JOIN t100a

ON t100a~arbgb = t100~arbgb

INNER JOIN tadir

ON t100~arbgb = tadir~obj_name

WHERE t100a~masterlang = messageclasslang

AND t100a~respuser IN rangeauthor[]

AND t100a~lastuser IN rangeauthor[]

AND tadir~pgmid = 'R3TR'

AND tadir~object = 'MSAG'

AND tadir~devclass IN solocpackage[].

ENDIF.

ENDIF.

ENDFORM. "checkComboBoxes

"retrieveMessageClass

*-----------------------------------------------------------------------

* retrieveFunctions... Retrieve function modules from SAP DB. May

*be called in one of two ways

*-----------------------------------------------------------------------

FORM retrievefunctions USING sofname LIKE sofunctionname[]

sofgroup LIKE sofunctiongroup[]

ilocfunctionnames LIKE ifunctions[]

value(solocauthor) LIKE soauthor[]

value(gettextelements)

value(getscreens)

value(customeronly)

value(customernamerange)

value(solocpackage) LIKE sopack[].

DATA: wafunctionname TYPE tfunction.

DATA: nogroupsfound TYPE abap_bool VALUE true.

DATA: previousfg TYPE v_fdir-area.

* select by function name and/or function group.

SELECT a~funcname AS functionname

a~area AS functiongroup

INTO CORRESPONDING FIELDS OF TABLE ilocfunctionnames

FROM v_fdir AS a

INNER JOIN tlibv AS b

ON a~area = b~area

INNER JOIN tadir AS c

ON a~area = c~obj_name

WHERE a~funcname IN sofname[]

AND a~area IN sofgroup[]

AND a~generated = ''

AND b~uname IN solocauthor[]

AND pgmid = 'R3TR'

AND object = 'FUGR'

AND devclass IN solocpackage[]

ORDER BY a~area.

LOOP AT ilocfunctionnames INTO wafunctionname.

PERFORM retrievefunctiondetail USING wafunctionname-functionname

wafunctionname-progname

wafunctionname-includenumber

wafunctionname-functiontitle.

PERFORM findmainfunctioninclude USING wafunctionname-progname

wafunctionname-functiongroup

wafunctionname-includenumber

wafunctionname-functionmaininclude.

PERFORM findfunctiontopinclude USING wafunctionname-progname

wafunctionname-functiongroup

wafunctionname-topincludename.

* Find all user defined includes within the function group

PERFORM scanforfunctionincludes USING wafunctionname-progname

customeronly

customernamerange

wafunctionname-iincludes[].

* Find main message class

PERFORM findmainmessageclass USING wafunctionname-progname

wafunctionname-messageclass.

* Find any screens declared within the main include

IF NOT getscreens IS INITIAL.

IF previousfg IS INITIAL OR previousfg

wafunctionname-functiongroup.

PERFORM findfunctionscreenflow USING wafunctionname.

* Search for any GUI texts

PERFORM retrieveguititles USING wafunctionname-iguititle[]

wafunctionname-progname.

ENDIF.

ENDIF.

IF NOT gettextelements IS INITIAL.

* Find the program texts from out of the database.

PERFORM retrieveprogramtexts USING

wafunctionname-iselectiontexts[]

wafunctionname-itextelements[]

wafunctionname-progname.

ENDIF.

previousfg = wafunctionname-functiongroup.

MODIFY ilocfunctionnames FROM wafunctionname.

ENDLOOP.

ENDFORM. "checkComboBoxes

"retrieveFunctions

*-----------------------------------------------------------------------

* retrieveFunctionDetail... Retrieve function module details from

* sap db.

*-----------------------------------------------------------------------

FORM retrievefunctiondetail USING value(functionname)

progname

includename

titletext.

SELECT SINGLE pname

include

FROM tfdir

INTO (progname, includename)

WHERE funcname = functionname.

IF sy-subrc = 0.

SELECT SINGLE stext

FROM tftit

INTO titletext

WHERE spras = pmlang

AND funcname = functionname.

ENDIF.

ENDFORM. "checkComboBoxes

"retrieveFunctionDetail

"findFunctionTopInclude

*-----------------------------------------------------------------------

* scanForAdditionalFuncStuff... Search for additional things relating

*to functions

*-----------------------------------------------------------------------

FORM scanforadditionalfuncstuff USING ilocfunctions LIKE ifunctions[]

value(recursiveincludes)

value(recursivefunctions)

value(searchforincludes)

value(searchforfunctions)

value(searchfordictionary)

value(searchformessages)

value(customeronly)

value(customernamerange).

DATA: wafunction TYPE tfunction.

DATA: wainclude TYPE tinclude.

LOOP AT ilocfunctions INTO wafunction.

IF NOT searchforincludes IS INITIAL.

* Search in the main include

PERFORM scanforincludeprograms USING

wafunction-functionmaininclude

recursiveincludes

customeronly

customernamerange

wafunction-iincludes[].

* Search in the top include

PERFORM scanforincludeprograms USING wafunction-topincludename

recursiveincludes

customeronly

customernamerange

wafunction-iincludes[].

ENDIF.

IF NOT searchforfunctions IS INITIAL.

PERFORM scanforfunctions USING wafunction-functionmaininclude

wafunction-programlinkname

recursiveincludes

recursivefunctions

customeronly

customernamerange

ilocfunctions[].

ENDIF.

MODIFY ilocfunctions FROM wafunction.

ENDLOOP.

* Now we have everthing perhaps we had better find all the dictionary

*structures

IF NOT searchfordictionary IS INITIAL.

LOOP AT ilocfunctions INTO wafunction.

PERFORM scanfortables USING wafunction-progname

customeronly

customernamerange

wafunction-idictstruct[].

PERFORM scanforlikeortype USING wafunction-progname

customeronly

customernamerange

wafunction-idictstruct[].

PERFORM scanfortables USING wafunction-functionmaininclude

customeronly

customernamerange

wafunction-idictstruct[].

PERFORM scanforlikeortype USING wafunction-functionmaininclude

customeronly

customernamerange

wafunction-idictstruct[].

LOOP AT wafunction-iincludes INTO wainclude.

PERFORM scanfortables USING wainclude-includename

customeronly

customernamerange

wafunction-idictstruct[].

PERFORM scanforlikeortype USING wainclude-includename

customeronly

customernamerange

wafunction-idictstruct[].

ENDLOOP.

MODIFY ilocfunctions FROM wafunction.

ENDLOOP.

ENDIF.

* Now search for all messages

IF NOT searchformessages IS INITIAL.

LOOP AT ilocfunctions INTO wafunction.

PERFORM scanformessages USING wafunction-progname

wafunction-messageclass

wafunction-imessages[].

MODIFY ilocfunctions FROM wafunction.

ENDLOOP.

ENDIF.

ENDFORM. "checkComboBoxes

"scanForAdditionalFuncStuff

*-----------------------------------------------------------------------

* scanForClasses... Search each class or method for other classes

*-----------------------------------------------------------------------

FORM scanforclasses USING value(classname)

value(classlinkname)

value(customeronly)

value(customernamerange)

ilocclasses LIKE iclasses[]

value(solocpackage) LIKE sopack[].

DATA ilines TYPE STANDARD TABLE OF string WITH HEADER LINE.

DATA: head TYPE string.

DATA: tail TYPE string.

DATA: linelength TYPE i VALUE 0.

DATA: waline TYPE string.

DATA: waclass TYPE tclass.

DATA: wasearchclass TYPE tclass.

DATA: castclassname TYPE program.

DATA: exceptioncustomernamerange TYPE string.

* Build the name of the possible cusotmer exception classes

CONCATENATE customernamerange 'CX_' INTO exceptioncustomernamerange.

* Read the program code from the textpool.

castclassname = classname.

READ REPORT castclassname INTO ilines.

LOOP AT ilines INTO waline.

* Find custom tables.

linelength = STRLEN( waline ).

IF linelength > 0.

IF waline(1) = asterix.

CONTINUE.

ENDIF.

TRANSLATE waline TO UPPER CASE.

FIND typerefto IN waline IGNORING CASE.

IF sy-subrc = 0.

* Have found a reference to another class

SPLIT waline AT type INTO head tail.

SHIFT tail LEFT DELETING LEADING space.

SPLIT tail AT 'REF' INTO head tail.

SHIFT tail LEFT DELETING LEADING space.

SPLIT tail AT 'TO' INTO head tail.

SHIFT tail LEFT DELETING LEADING space.

IF tail CS period.

SPLIT tail AT period INTO head tail.

ELSE.

IF tail CS comma.

SPLIT tail AT comma INTO head tail.

ENDIF.

ENDIF.

ELSE.

* Try and find classes which are only referenced through static

* mehods

FIND '=>' IN waline MATCH OFFSET sy-fdpos.

IF sy-subrc = 0.

head = waline+0(sy-fdpos).

SHIFT head LEFT DELETING LEADING space.

CONDENSE head.

FIND 'call method' IN head IGNORING CASE.

IF sy-subrc = 0.

SHIFT head LEFT DELETING LEADING space.

SPLIT head AT space INTO head tail.

SPLIT tail AT space INTO head tail.

* Should have the class name here

head = tail.

ELSE.

* Still have a class name even though it does not have the

* words call method in front

IF waline CS '='.

SPLIT waline AT '=' INTO tail head.

SHIFT head LEFT DELETING LEADING space.

SPLIT head AT '=' INTO head tail.

ENDIF.

sy-subrc = 0.

ENDIF.

ENDIF.

ENDIF.

IF sy-subrc = 0.

TRY.

IF head+0(1) = 'Y' OR head+0(1) = 'Z' OR head CS

customernamerange.

* We have found a class best append it to our class table if

* we do not already have it.

READ TABLE ilocclasses INTO wasearchclass WITH KEY clsname

= head.

IF sy-subrc 0.

IF head+0(3) = 'CX_'

OR head+0(4) = 'ZCX_'

OR head+0(4) = 'YCX_'

OR head CS exceptioncustomernamerange.

waclass-exceptionclass = true.

ENDIF.

waclass-clsname = head.

* Check the package

IF NOT solocpackage[] IS INITIAL.

SELECT SINGLE obj_name

FROM tadir

INTO waclass-clsname

WHERE pgmid = 'R3TR'

AND object = 'CLAS'

AND obj_name = waclass-clsname

AND devclass IN solocpackage[].

IF sy-subrc = 0.

APPEND waclass TO ilocclasses.

ENDIF.

ELSE.

APPEND waclass TO ilocclasses.

ENDIF.

ENDIF.

ENDIF.

CATCH cx_sy_range_out_of_bounds.

ENDTRY.

ENDIF.

ENDIF.

ENDLOOP.

ENDFORM. "checkComboBoxes

"scanForClasses

*-----------------------------------------------------------------------

* scanForIncludePrograms... Search each program for include programs

*-----------------------------------------------------------------------

FORM scanforincludeprograms USING value(programname)

value(recursiveincludes)

value(customeronly)

value(customernamerange)

ilocincludes LIKE dumiincludes[].

DATA: iincludelines TYPE STANDARD TABLE OF string WITH HEADER LINE.

DATA: itokens TYPE STANDARD TABLE OF stokes WITH HEADER LINE.

DATA: ikeywords TYPE STANDARD TABLE OF text20 WITH HEADER LINE.

DATA: istatements TYPE STANDARD TABLE OF sstmnt WITH HEADER LINE.

DATA: watokens TYPE stokes.

DATA: wainclude TYPE tinclude.

DATA: waincludeexists TYPE tinclude.

DATA: maxlines TYPE i.

DATA: nextline TYPE i.

DATA: castprogramname TYPE program.

* Read the program code from the textpool.

castprogramname = programname.

READ REPORT castprogramname INTO iincludelines.

APPEND include TO ikeywords.

SCAN ABAP-SOURCE iincludelines TOKENS INTO itokens WITH INCLUDES

STATEMENTS INTO istatements KEYWORDS FROM ikeywords.

CLEAR iincludelines[].

maxlines = LINES( itokens ).

LOOP AT itokens WHERE str = include AND type = 'I'.

nextline = sy-tabix + 1.

IF nextline get_method_include( EXPORTING mtdkey =

methodid

RECEIVING result =

locmethodkey

EXCEPTIONS

class_not_existing = 1

method_not_existing = 2 ).

methodkey = locmethodkey.

ENDFORM. "checkComboBoxes

"findMethodKey

*-----------------------------------------------------------------------

* scanForMessages... Search each program for messages

*-----------------------------------------------------------------------

FORM scanformessages USING value(programname)

value(mainmessageclass)

ilocmessages LIKE imessages[].

DATA: iincludelines TYPE STANDARD TABLE OF string WITH HEADER LINE.

DATA: itokens TYPE STANDARD TABLE OF stokes WITH HEADER LINE.

DATA: istatements TYPE STANDARD TABLE OF sstmnt WITH HEADER LINE.

DATA: ikeywords TYPE STANDARD TABLE OF text20 WITH HEADER LINE.

DATA: wamessage TYPE tmessage.

DATA: wamessagecomparison TYPE tmessage.

DATA: watokens TYPE stokes.

DATA: nextline TYPE i.

DATA: stringlength TYPE i VALUE 0.

DATA: workingonmessage TYPE abap_bool VALUE false.

DATA: castprogramname TYPE program.

* Read the program code from the textpool.

castprogramname = programname.

READ REPORT castprogramname INTO iincludelines.

APPEND message TO ikeywords.

SCAN ABAP-SOURCE iincludelines TOKENS INTO itokens WITH INCLUDES

STATEMENTS INTO istatements KEYWORDS FROM ikeywords.

CLEAR iincludelines[].

LOOP AT itokens.

IF itokens-str = message.

workingonmessage = true.

CONTINUE.

ENDIF.

IF workingonmessage = true.

stringlength = STRLEN( itokens-str ).

* Message declaration 1

IF stringlength = 4 AND itokens-str+0(1) CA sy-abcde.

wamessage-msgnr = itokens-str+1(3).

wamessage-arbgb = mainmessageclass.

ELSE.

IF itokens-str CS '''' OR itokens-str CS '`'.

* Message declaration 2

TRANSLATE itokens-str USING ''' '.

TRANSLATE itokens-str USING '` '.

CONDENSE itokens-str.

SHIFT itokens-str LEFT DELETING LEADING space.

wamessage-text = itokens-str.

wamessage-arbgb = 'Hard coded'.

ELSE.

IF itokens-str = 'ID'.

* Message declaration 3

nextline = sy-tabix + 1.

READ TABLE itokens INDEX nextline INTO watokens.

TRANSLATE watokens-str USING ''' '.

CONDENSE itokens-str.

SHIFT watokens-str LEFT DELETING LEADING space.

IF NOT watokens-str = 'SY-MSGID'.

wamessage-arbgb = watokens-str.

nextline = nextline + 4.

READ TABLE itokens INDEX nextline INTO watokens.

TRANSLATE watokens-str USING ''' '.

CONDENSE watokens-str.

SHIFT watokens-str LEFT DELETING LEADING space.

wamessage-msgnr = watokens-str.

ELSE.

workingonmessage = false.

ENDIF.

ELSE.

IF stringlength >= 5 AND itokens-str+4(1) = '('.

* Message declaration 4

wamessage-msgnr = itokens-str+1(3).

SHIFT itokens-str LEFT UP TO '('.

REPLACE '(' INTO itokens-str WITH space.

REPLACE ')' INTO itokens-str WITH space.

CONDENSE itokens-str.

wamessage-arbgb = itokens-str.

ENDIF.

ENDIF.

ENDIF.

ENDIF.

* find the message text

IF NOT wamessage-arbgb IS INITIAL AND NOT wamessage-msgnr IS

INITIAL AND wamessage-text IS INITIAL.

SELECT SINGLE text

FROM t100

INTO wamessage-text

WHERE sprsl = pmlang

AND arbgb = wamessage-arbgb

AND msgnr = wamessage-msgnr.

ENDIF.

* Append the message

IF NOT wamessage IS INITIAL.

IF NOT wamessage-text IS INITIAL.

* Don't append the message if we already have it listed

READ TABLE ilocmessages WITH KEY arbgb = wamessage-arbgb

msgnr = wamessage-msgnr

INTO wamessagecomparison.

IF sy-subrc 0.

APPEND wamessage TO ilocmessages.

ENDIF.

ENDIF.

CLEAR wamessage.

workingonmessage = false.

ENDIF.

ENDIF.

ENDLOOP.

ENDFORM. "checkComboBoxes

"scanForMessages

*-----------------------------------------------------------------------

* scanForTables... Search each program for dictionary tables

*-----------------------------------------------------------------------

FORM scanfortables USING value(programname)

value(customeronly)

value(customernamerange)

ilocdictionary LIKE idictionary[].

DATA: iincludelines TYPE STANDARD TABLE OF string WITH HEADER LINE.

DATA: itokens TYPE STANDARD TABLE OF stokes WITH HEADER LINE.

DATA: istatements TYPE STANDARD TABLE OF sstmnt WITH HEADER LINE.

DATA: ikeywords TYPE STANDARD TABLE OF text20 WITH HEADER LINE.

DATA: wadictionary TYPE tdicttable.

DATA: wadictionarycomparison TYPE tdicttable.

DATA: castprogramname TYPE program.

* Read the program code from the textpool.

castprogramname = programname.

READ REPORT castprogramname INTO iincludelines.

APPEND tables TO ikeywords.

SCAN ABAP-SOURCE iincludelines TOKENS INTO itokens WITH INCLUDES

STATEMENTS INTO istatements KEYWORDS FROM ikeywords.

CLEAR iincludelines[].

SORT itokens ASCENDING BY str.

DELETE itokens WHERE str = tables.

LOOP AT itokens.

IF NOT customeronly IS INITIAL.

TRY.

CASE itokens-str+0(1).

WHEN 'Y' OR 'Z' OR customernamerange.

WHEN OTHERS.

CONTINUE.

ENDCASE.

* if ( iTokens-str+0(1) 'Y' or iTokens-str+0(1) 'Z' or

* itokens-str ns customernamerange ).

* continue.

* endif.

CATCH cx_sy_range_out_of_bounds INTO objruntimeerror.

ENDTRY.

ENDIF.

wadictionary-tablename = itokens-str.

* Don't append the object if we already have it listed

READ TABLE ilocdictionary INTO wadictionarycomparison WITH KEY

tablename = wadictionary-tablename.

IF sy-subrc 0.

PERFORM findtabledescription USING wadictionary-tablename

wadictionary-tabletitle.

PERFORM findtabledefinition USING wadictionary-tablename

wadictionary-istructure[].

APPEND wadictionary TO ilocdictionary.

ENDIF.

ENDLOOP.

ENDFORM. "checkComboBoxes

"scanForTables

*-----------------------------------------------------------------------

* findProgramScreenFlow...

*-----------------------------------------------------------------------

FORM findprogramscreenflow USING waprogram TYPE tprogram.

DATA: iflow TYPE STANDARD TABLE OF tscreenflow WITH HEADER LINE.

CALL FUNCTION 'DYNPRO_PROCESSINGLOGIC'

EXPORTING

rep_name = waprogram-progname

TABLES

scr_logic = iflow.

SORT iflow ASCENDING BY screen.

DELETE ADJACENT DUPLICATES FROM iflow COMPARING screen.

IF waprogram-subc 'M'.

DELETE iflow WHERE screen >= '1000' AND screen 0.

IF waline(1) = asterix.

CONTINUE.

ENDIF.

TRANSLATE waline TO UPPER CASE.

* Determine the lineType.

IF endofline = true.

SHIFT waline UP TO like.

IF sy-subrc = 0.

linetype = like.

ELSE.

SHIFT waline UP TO type.

IF sy-subrc = 0.

FIND 'BEGIN OF' IN waline.

IF sy-subrc 0.

FIND 'END OF' IN waline.

IF sy-subrc 0.

FIND 'VALUE' IN waline.

IF sy-subrc 0.

linetype = type.

ENDIF.

ENDIF.

ENDIF.

ELSE.

SHIFT waline UP TO include.

IF sy-subrc = 0.

SPLIT waline AT space INTO junk ilines.

ENDIF.

SHIFT waline UP TO structure.

IF sy-subrc = 0.

linetype = structure.

ELSE.

CONTINUE.

ENDIF.

ENDIF.

ENDIF.

ELSE.

linetype = comma.

ENDIF.

CASE linetype.

WHEN like OR type OR structure.

* Work on the appropriate lineType

SHIFT waline UP TO space.

SHIFT waline LEFT DELETING LEADING space.

IF waline CS table.

SPLIT waline AT table INTO head tail.

SPLIT tail AT 'OF' INTO head tail.

waline = tail.

SHIFT waline LEFT DELETING LEADING space.

REPLACE ALL OCCURRENCES OF 'WITH HEADER LINE' IN waline

WITH ''.

ENDIF.

* Are we only to download SAP dictionary structures.

IF NOT customeronly IS INITIAL.

TRY.

IF waline+0(1) = 'Y' OR waline+0(1) = 'Z' OR waline CS

customernamerange.

ELSE.

linetype = ''.

CONTINUE.

ENDIF.

CATCH cx_sy_range_out_of_bounds INTO objruntimeerror.

ENDTRY.

ENDIF.

IF waline CS comma.

SPLIT waline AT comma INTO head tail.

IF waline CS dash.

SPLIT head AT dash INTO head tail.

ENDIF.

IF waline CS occurs.

SPLIT waline AT space INTO head tail.

ENDIF.

ELSE.

IF waline CS period.

SPLIT waline AT period INTO head tail.

IF waline CS dash.

SPLIT head AT dash INTO head tail.

ENDIF.

IF waline CS occurs.

SPLIT waline AT space INTO head tail.

ENDIF.

ELSE.

SPLIT waline AT space INTO head tail.

IF waline CS dash.

SPLIT head AT dash INTO head tail.

ENDIF.

ENDIF.

ENDIF.

IF NOT head IS INITIAL.

wadictionary-tablename = head.

* Don't append the object if we already have it listed

READ TABLE ilocdictionary INTO wadictionarycomparison

WITH KEY tablename =

wadictionary-tablename.

IF sy-subrc 0.

PERFORM findtabledescription USING wadictionary-tablename

wadictionary-tabletitle.

PERFORM findtabledefinition USING wadictionary-tablename

wadictionary-istructure[].

* Only append if the item is a table and not a structure

*or data element

IF NOT wadictionary-istructure[] IS INITIAL.

APPEND wadictionary TO ilocdictionary.

ENDIF.

ENDIF.

CLEAR wadictionary.

ENDIF.

linetype = ''.

ENDCASE.

ENDIF.

ENDLOOP.

ENDFORM. "checkComboBoxes

"scanForLikeOrType

*-----------------------------------------------------------------------

* displayStatus...

*-----------------------------------------------------------------------

FORM displaystatus USING value(message)

value(delay).

CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'

EXPORTING

percentage = 0

text = message

EXCEPTIONS

OTHERS = 1.

IF delay > 0.

WAIT UP TO delay SECONDS.

ENDIF.

ENDFORM. "checkComboBoxes

"displayStatus

*-----------------------------------------------------------------------

* removeLeadingZeros...

*-----------------------------------------------------------------------

FORM removeleadingzeros CHANGING myvalue.

CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'

EXPORTING

input = myvalue

IMPORTING

output = myvalue

EXCEPTIONS

OTHERS = 1.

ENDFORM. "checkComboBoxes

"removeLeadingZeros

*-----------------------------------------------------------------------

* determineFrontendOPSystem.... Determine the frontend operating

*system type.

*-----------------------------------------------------------------------

FORM determinefrontendopsystem USING separator

operatingsystem.

DATA: platformid TYPE i VALUE 0.

CREATE OBJECT objfile.

CALL METHOD objfile->get_platform

RECEIVING

platform = platformid

EXCEPTIONS

cntl_error = 1

error_no_gui = 2

not_supported_by_gui = 3.

CASE platformid.

WHEN objfile->platform_windows95

OR objfile->platform_windows98

OR objfile->platform_nt351

OR objfile->platform_nt40

OR objfile->platform_nt50

OR objfile->platform_mac

OR objfile->platform_os2

OR 14. "XP

separator = '\'.

operatingsystem = non_unix.

WHEN OTHERS.

separator = '/'.

operatingsystem = unix.

ENDCASE.

ENDFORM. "checkComboBoxes

"determineFrontendOpSystem

*-----------------------------------------------------------------------

* determineServerOPSystem.... Determine the server operating system

*type.

*-----------------------------------------------------------------------

FORM determineserveropsystem USING separator

serverfilesystem

serveropsystem.

* Find the file system

SELECT SINGLE filesys

FROM opsystem

INTO serverfilesystem

WHERE opsys = sy-opsys.

FIND 'WINDOWS' IN serverfilesystem IGNORING CASE.

IF sy-subrc = 0.

separator = '\'.

serveropsystem = non_unix.

serverfilesystem = 'Windows NT'.

ELSE.

FIND 'DOS' IN serverfilesystem IGNORING CASE.

IF sy-subrc = 0.

separator = '\'.

serveropsystem = non_unix.

ELSE.

separator = '/'.

serveropsystem = unix.

ENDIF.

ENDIF.

ENDFORM. "checkComboBoxes

"determineServerOpSystem

*-----------------------------------------------------------------------

* findExternalCommand.... Determine if the external command exists.

*If it doesn't then disable the

* server input field

*-----------------------------------------------------------------------

FORM findexternalcommand USING value(locserverfilesystem).

DATA: castserveropsys TYPE syopsys.

castserveropsys = locserverfilesystem.

CALL FUNCTION 'SXPG_COMMAND_CHECK'

EXPORTING

commandname = 'ZDTX_MKDIR'

operatingsystem = castserveropsys

EXCEPTIONS

command_not_found = 1

OTHERS = 0.

IF sy-subrc 0.

LOOP AT SCREEN.

IF screen-name = 'PLOGICAL'.

screen-input = 0.

MODIFY SCREEN.

ENDIF.

IF screen-name = 'PSERV'.

screen-input = 0.

MODIFY SCREEN.

ENDIF.

IF screen-name = 'PPC'.

screen-input = 0.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

MESSAGE s000(oo) WITH 'Download to server disabled,'

'external command ZDTX_MKDIR not defined.'.

ENDIF.

ENDFORM. "findExternalCommand

************************************************************************

************************DOWNLOAD ROUTINES*******************************

************************************************************************

*-----------------------------------------------------------------------

* downloadDDStructures... download database objects to file

*-----------------------------------------------------------------------

FORM downloadddstructures USING ilocdictionary LIKE idictionary[]

ilocdictionaryfilename LIKE

idictfilename[]

value(pathname)

value(htmlfileextension)

value(subdir)

value(sorttablesasc)

value(slashseparator)

value(savetoserver)

value(displayprogressmessage)

value(locserverfilesystem)

value(addbackground) TYPE abap_bool.

FIELD-SYMBOLS: TYPE tdicttable.

DATA: tablefilename TYPE string.

DATA: tablefilenamewithpath TYPE string.

DATA: ihtmltable TYPE STANDARD TABLE OF string WITH HEADER LINE.

DATA: newsubdirectory TYPE string.

DATA: completesavepath TYPE string.

DATA: wadictfilename LIKE LINE OF ilocdictionaryfilename.

LOOP AT ilocdictionary ASSIGNING .

PERFORM buildfilename USING pathname

subdir

-tablename

space

space

htmlfileextension

is_table

savetoserver

slashseparator

tablefilenamewithpath

tablefilename

newsubdirectory

completesavepath.

READ TABLE ilocdictionaryfilename INTO wadictfilename WITH KEY

tablename = -tablename

filename = completesavepath.

IF sy-subrc 0.

* Try and import a converted table to memory as it will be much

* quicker than converting it again

IMPORT ihtmltable FROM MEMORY ID -tablename.

IF sy-subrc 0.

CONCATENATE 'Converting table' -tablename

'to html' INTO statusbarmessage SEPARATED BY space.

PERFORM displaystatus USING statusbarmessage 0.

PERFORM convertddtohtml USING -istructure[]

ihtmltable[]

-tablename

-tabletitle

sorttablesasc

addbackground.

EXPORT ihtmltable TO MEMORY ID -tablename.

ENDIF.

IF savetoserver IS INITIAL.

PERFORM savefiletopc USING ihtmltable[]

tablefilenamewithpath

tablefilename

space

space

displayprogressmessage.

ELSE.

PERFORM savefiletoserver USING ihtmltable[]

tablefilenamewithpath

tablefilename

completesavepath

displayprogressmessage

locserverfilesystem.

ENDIF.

wadictfilename-tablename = -tablename.

wadictfilename-filename = completesavepath.

APPEND wadictfilename TO ilocdictionaryfilename.

CLEAR wadictfilename.

ENDIF.

CLEAR ihtmltable[].

ENDLOOP.

ENDFORM. "downloadDDStructures

"downloadDDStructures

*-----------------------------------------------------------------------

* downloadMessageClass...

*-----------------------------------------------------------------------

FORM downloadmessageclass USING ilocmessages LIKE imessages[]

value(messageclassname)

value(userfilepath)

value(fileextension)

value(htmlfileflag)

subdir

value(customernamerange)

value(getincludes)

value(getdictstructures)

value(userhasselectedmessageclasses)

value(slashseparator)

value(savetoserver)

value(displayprogressmessage)

value(locserverfilesystem)

value(addbackground) TYPE abap_bool.

DATA: htmlpagename TYPE string.

DATA: newfilenameonly TYPE string.

DATA: newfilenamewithpath TYPE string.

DATA: ihtmltable TYPE STANDARD TABLE OF string WITH HEADER LINE.

DATA: newsubdirectory TYPE string.

DATA: completesavepath TYPE string.

PERFORM appendmessagestofile USING ilocmessages[]

ihtmltable[]

userhasselectedmessageclasses.

CONCATENATE `message class ` messageclassname INTO htmlpagename.

IF htmlfileflag IS INITIAL.

APPEND '' TO ihtmltable.

APPEND

'-----------------------------------------------------------'

TO ihtmltable.

PERFORM buildfootermessage USING ihtmltable.

APPEND ihtmltable.

ELSE.

PERFORM convertcodetohtml USING ihtmltable[]

htmlpagename

space

is_messageclass

''

false

fileextension

customernamerange

getincludes

getdictstructures

addbackground.

ENDIF.

PERFORM buildfilename USING userfilepath

subdir

messageclassname

space

space

fileextension

is_messageclass

savetoserver

slashseparator

newfilenamewithpath

newfilenameonly

newsubdirectory

completesavepath.

IF savetoserver IS INITIAL.

PERFORM savefiletopc USING ihtmltable[]

newfilenamewithpath

newfilenameonly

space

space

displayprogressmessage.

ELSE.

* Save the file to the SAP server

PERFORM savefiletoserver USING ihtmltable[]

newfilenamewithpath

newfilenameonly

completesavepath

displayprogressmessage

locserverfilesystem.

ENDIF.

ENDFORM. "downloadMessageClass

"downloadMessageClass

*-----------------------------------------------------------------------

* appendMessagesToFile

*-----------------------------------------------------------------------

FORM appendmessagestofile USING ilocmessages LIKE imessages[]

ilochtml LIKE dumihtml[]

value(userhasselectedmessageclasses).

DATA: previousmessageid LIKE imessages-arbgb.

FIELD-SYMBOLS: TYPE tmessage.

DATA: wahtml TYPE string.

SORT ilocmessages ASCENDING BY arbgb msgnr.

IF NOT ilocmessages[] IS INITIAL.

IF userhasselectedmessageclasses IS INITIAL.

* Only add these extra lines if we are actually appending them to

*the end of some program code

APPEND wahtml TO ilochtml.

APPEND wahtml TO ilochtml.

APPEND '*Messages' TO ilochtml.

APPEND

'*----------------------------------------------------------' TO

ilochtml.

ENDIF.

LOOP AT ilocmessages ASSIGNING .

IF ( -arbgb previousmessageid ).

IF userhasselectedmessageclasses IS INITIAL.

* Only add this extra lines if we are actually appending them

*to the end of some program code

APPEND '*' TO ilochtml.

CONCATENATE `* Message class: ` -arbgb INTO wahtml.

APPEND wahtml TO ilochtml.

ENDIF.

previousmessageid = -arbgb.

CLEAR wahtml.

ENDIF.

IF userhasselectedmessageclasses IS INITIAL.

* Only add this extra lines if we are actually appending them to

*the end of some program code

CONCATENATE '*' -msgnr ` ` -text INTO

wahtml.

ELSE.

CONCATENATE -msgnr ` ` -text INTO

wahtml.

ENDIF.

APPEND wahtml TO ilochtml.

ENDLOOP.

ENDIF.

ENDFORM. "appendMessagesToFile

"appendMessagesToFile

*-----------------------------------------------------------------------

* downloadFunctions... Download function modules to file.

*-----------------------------------------------------------------------

FORM downloadfunctions USING ilocfunctions LIKE ifunctions[]

ilocdictionaryfilename LIKE idictfilename[]

value(userfilepath)

value(fileextension)

value(subdir)

value(downloaddocumentation)

value(converttohtml)

value(customernamerange)

value(getincludes)

value(getdictstruct)

value(textfileextension)

value(htmlfileextension)

value(sorttablesasc)

value(slashseparator)

value(savetoserver)

value(displayprogressmessage)

value(locserverfilesystem)

value(addbackground) TYPE abap_bool.

DATA: mainsubdir TYPE string.

DATA: incsubdir TYPE string.

FIELD-SYMBOLS: TYPE tfunction.

FIELD-SYMBOLS: TYPE tinclude.

DATA: iemptytextelements TYPE STANDARD TABLE OF ttexttable.

DATA: iemptyselectiontexts TYPE STANDARD TABLE OF ttexttable.

DATA: iemptymessages TYPE STANDARD TABLE OF tmessage.

DATA: iemptyguititles TYPE STANDARD TABLE OF tguititle.

DATA: functiondocumentationexists TYPE abap_bool VALUE false.

LOOP AT ilocfunctions ASSIGNING .

IF subdir IS INITIAL.

incsubdir = -functionname.

mainsubdir = ''.

ELSE.

CONCATENATE subdir -functionname INTO incsubdir

SEPARATED BY slashseparator.

mainsubdir = subdir.

ENDIF.

IF NOT downloaddocumentation IS INITIAL.

PERFORM downloadfunctiondocs USING -functionname

-functiontitle

userfilepath

fileextension

converttohtml

slashseparator

savetoserver

displayprogressmessage

mainsubdir

functiondocumentationexists

locserverfilesystem

addbackground.

ENDIF.

* Download main source code

PERFORM readfunctionanddownload USING -itextelements[]

-iselectiontexts[]

-imessages[]

-functionname

-functionmaininclude

-functiontitle

userfilepath

fileextension

mainsubdir

converttohtml

functiondocumentationexists

customernamerange

getincludes

getdictstruct

slashseparator

savetoserver

displayprogressmessage

locserverfilesystem

addbackground.

* Download top include

PERFORM readincludeanddownload USING iemptytextelements[]

iemptyselectiontexts[]

iemptymessages[]

iemptyguititles[]

-topincludename

-functionname

-functiontitle

is_function

userfilepath

fileextension

mainsubdir

converttohtml

customernamerange

getincludes

getdictstruct

slashseparator

savetoserver

displayprogressmessage

locserverfilesystem

addbackground.

* Download screens.

IF NOT -iscreenflow[] IS INITIAL.

PERFORM downloadscreens USING -iscreenflow[]

-progname

userfilepath

textfileextension

mainsubdir

slashseparator

savetoserver

displayprogressmessage

locserverfilesystem.

ENDIF.

* Download GUI titles

IF NOT -iguititle[] IS INITIAL.

PERFORM downloadguititles USING -iguititle

userfilepath

textfileextension

mainsubdir

slashseparator

savetoserver

displayprogressmessage

locserverfilesystem.

ENDIF.

* Download all other includes

LOOP AT -iincludes ASSIGNING .

PERFORM readincludeanddownload USING iemptytextelements[]

iemptyselectiontexts[]

iemptymessages[]

iemptyguititles[]

-includename

space

-includetitle

is_program

userfilepath

fileextension

incsubdir

converttohtml

customernamerange

getincludes

getdictstruct

slashseparator

savetoserver

displayprogressmessage

locserverfilesystem

addbackground.

ENDLOOP.

* Download all dictionary structures

IF NOT -idictstruct[] IS INITIAL.

PERFORM downloadddstructures USING -idictstruct[]

ilocdictionaryfilename[]

userfilepath

htmlfileextension

mainsubdir

sorttablesasc

slashseparator

savetoserver

displayprogressmessage

locserverfilesystem

addbackground.

ENDIF.

ENDLOOP.

ENDFORM. "downloadFunctions

"downloadFunctions

*-----------------------------------------------------------------------

* readIcludeAndDownload...

*-----------------------------------------------------------------------

FORM readincludeanddownload USING iloctextelements LIKE dumitexttab[]

ilocselectiontexts LIKE dumitexttab[]

ilocmessages LIKE imessages[]

ilocguititles LIKE dumiguititle[]

value(programname)

value(functionname)

value(programdescription)

value(overideprogtype)

value(userfilepath)

value(fileextension)

value(additionalsubdir)

value(converttohtml)

value(customernamerange)

value(getincludes)

value(getdictstructures)

value(slashseparator)

value(savetoserver)

value(displayprogressmessage)

value(locserverfilesystem)

value(addbackground) TYPE abap_bool.

DATA: ilines TYPE STANDARD TABLE OF string WITH HEADER LINE.

DATA: localfilenamewithpath TYPE string.

DATA: localfilenameonly TYPE string.

DATA: newsubdirectory TYPE string.

DATA: objectname TYPE string.

DATA: completesavepath TYPE string.

READ REPORT programname INTO ilines.

* Download GUI titles for main program

IF NOT ilocguititles[] IS INITIAL.

PERFORM appendguititles USING ilocguititles[]

ilines[].

ENDIF.

* Download text elements for main program

IF NOT iloctextelements[] IS INITIAL.

PERFORM appendtextelements USING iloctextelements[]

ilines[].

ENDIF.

* Download selection texts for main program

IF NOT ilocselectiontexts[] IS INITIAL.

PERFORM appendselectiontexts USING ilocselectiontexts[]

ilines[].

ENDIF.

* Download messages classes for main program.

IF NOT ilocmessages[] IS INITIAL.

PERFORM appendmessagestofile USING ilocmessages[]

ilines[]

space.

ENDIF.

IF converttohtml IS INITIAL.

APPEND '' TO ilines.

APPEND

'----------------------------------------------------------------------'

TO ilines.

PERFORM buildfootermessage USING ilines.

APPEND ilines.

ELSE.

PERFORM convertcodetohtml USING ilines[]

programname

programdescription

overideprogtype

space

space

fileextension

customernamerange

getincludes

getdictstructures

addbackground.

ENDIF.

IF functionname IS INITIAL.

objectname = programname.

ELSE.

objectname = functionname.

ENDIF.

PERFORM buildfilename USING userfilepath

additionalsubdir

objectname

space

programname

fileextension

overideprogtype

savetoserver

slashseparator

localfilenamewithpath

localfilenameonly

newsubdirectory

completesavepath.

IF savetoserver IS INITIAL.

PERFORM savefiletopc USING ilines[]

localfilenamewithpath

localfilenameonly

space

space

displayprogressmessage.

ELSE.

PERFORM savefiletoserver USING ilines[]

localfilenamewithpath

localfilenameonly

completesavepath

displayprogressmessage

locserverfilesystem.

ENDIF.

ENDFORM. "readIncludeAndDownload

"readIncludeAndDownload

*-----------------------------------------------------------------------

* readClassAndDownload...

*-----------------------------------------------------------------------

FORM readclassanddownload USING walocclass TYPE tclass

value(classname)

value(functionname)

value(overideprogtype)

value(userfilepath)

value(fileextension)

value(additionalsubdir)

value(converttohtml)

value(customernamerange)

value(getincludes)

value(getdictstructures)

value(slashseparator)

value(savetoserver)

value(displayprogressmessage)

value(locserverfilesystem)

value(addbackground) TYPE abap_bool.

DATA: itemplines TYPE STANDARD TABLE OF string WITH HEADER LINE.

DATA: ilines TYPE STANDARD TABLE OF string WITH HEADER LINE.

DATA: localfilenamewithpath TYPE string.

DATA: localfilenameonly TYPE string.

DATA: newsubdirectory TYPE string.

DATA: objectname TYPE string.

DATA: castclassname TYPE program.

DATA: completesavepath TYPE string.

* Build up attribute comments

APPEND

'**********************************************************************'

TO ilines.

APPEND '* Class attributes. *'

TO ilines.

APPEND

'**********************************************************************'

TO ilines.

CASE walocclass-exposure.

WHEN 0.

APPEND `Instantiation: Private` TO ilines.

WHEN 1.

APPEND `Instantiation: Protected` TO ilines.

WHEN 2.

APPEND `Instantiation: Public` TO ilines.

ENDCASE.

CONCATENATE `Message class: ` walocclass-msg_id INTO ilines.

APPEND ilines.

CASE walocclass-state.

WHEN 0.

APPEND `State: Only Modelled` TO ilines.

WHEN 1.

APPEND `State: Implemented` TO ilines.

ENDCASE.

CONCATENATE `Final Indicator: ` walocclass-clsfinal INTO ilines.

APPEND ilines.

CONCATENATE `R/3 Release: ` walocclass-r3release INTO ilines.

APPEND ilines.

CLEAR ilines.

APPEND ilines.

castclassname = walocclass-publicclasskey.

READ REPORT castclassname INTO itemplines.

IF sy-subrc = 0.

PERFORM reformatclasscode USING itemplines[].

APPEND

'**********************************************************************'

TO ilines.

APPEND '* Public section of class. *' TO ilines.

APPEND

'**********************************************************************'

TO ilines.

LOOP AT itemplines.

APPEND itemplines TO ilines.

ENDLOOP.

ENDIF.

castclassname = walocclass-privateclasskey.

READ REPORT castclassname INTO itemplines.

IF sy-subrc = 0.

PERFORM reformatclasscode USING itemplines[].

APPEND ilines.

APPEND

'**********************************************************************'

TO ilines.

APPEND '* Private section of class. *' TO ilines.

APPEND

'**********************************************************************'

TO ilines.

LOOP AT itemplines.

APPEND itemplines TO ilines.

ENDLOOP.

ENDIF.

castclassname = walocclass-protectedclasskey.

READ REPORT castclassname INTO itemplines.

IF sy-subrc = 0.

PERFORM reformatclasscode USING itemplines[].

APPEND ilines.

APPEND

'**********************************************************************'

TO ilines.

APPEND '* Protected section of class. *' TO ilines.

APPEND

'**********************************************************************'

TO ilines.

LOOP AT itemplines.

APPEND itemplines TO ilines.

ENDLOOP.

ENDIF.

castclassname = walocclass-typesclasskey.

READ REPORT castclassname INTO itemplines.

IF sy-subrc = 0.

APPEND ilines.

APPEND

'**********************************************************************'

TO ilines.

APPEND '* Types section of class. *' TO ilines.

APPEND

'**********************************************************************'

TO ilines.

LOOP AT itemplines.

APPEND itemplines TO ilines.

ENDLOOP.

ENDIF.

* Download text elements for this class

IF NOT walocclass-itextelements[] IS INITIAL.

PERFORM appendtextelements USING walocclass-itextelements[]

ilines[].

ENDIF.

* Download messages classes for this class.

IF NOT walocclass-imessages[] IS INITIAL.

PERFORM appendmessagestofile USING walocclass-imessages[]

ilines[]

space.

ENDIF.

* Download exception texts for this class

IF NOT walocclass-iconcepts[] IS INITIAL.

PERFORM appendexceptiontexts USING walocclass-iconcepts[]

ilines[].

ENDIF.

IF converttohtml IS INITIAL.

APPEND '' TO ilines.

APPEND

'----------------------------------------------------------------------'

TO ilines.

PERFORM buildfootermessage USING ilines.

APPEND ilines.

ELSE.

PERFORM convertclasstohtml USING ilines[]

classname

walocclass-descript

overideprogtype

fileextension

customernamerange

getdictstructures

addbackground.

ENDIF.

IF functionname IS INITIAL.

objectname = classname.

ELSE.

objectname = functionname.

ENDIF.

PERFORM buildfilename USING userfilepath

additionalsubdir

objectname

space

classname

fileextension

overideprogtype

savetoserver

slashseparator

localfilenamewithpath

localfilenameonly

newsubdirectory

completesavepath.

IF savetoserver IS INITIAL.

PERFORM savefiletopc USING ilines[]

localfilenamewithpath

localfilenameonly

space

space

displayprogressmessage.

ELSE.

PERFORM savefiletoserver USING ilines[]

localfilenamewithpath

localfilenameonly

completesavepath

displayprogressmessage

locserverfilesystem.

ENDIF.

ENDFORM. "readClassAndDownload

"readClassAndDownload

*-----------------------------------------------------------------------

* readMethodAndDownload...

*-----------------------------------------------------------------------

FORM readmethodanddownload USING walocmethod TYPE tmethod

value(methodname)

value(methodkey)

value(functionname)

value(overideprogtype)

value(userfilepath)

value(fileextension)

value(additionalsubdir)

value(converttohtml)

value(customernamerange)

value(getincludes)

value(getdictstructures)

value(slashseparator)

value(savetoserver)

value(displayprogressmessage)

value(locserverfilesystem)

value(addbackground) TYPE abap_bool.

DATA: ilines TYPE STANDARD TABLE OF string WITH HEADER LINE.

DATA: itemplines TYPE STANDARD TABLE OF string WITH HEADER LINE.

DATA: localfilenamewithpath TYPE string.

DATA: localfilenameonly TYPE string.

DATA: newsubdirectory TYPE string.

DATA: objectname TYPE string.

DATA: castmethodkey TYPE program.

DATA: completesavepath TYPE string.

* Add the method scope to the downloaded file

APPEND

'**********************************************************************'

TO ilines.

APPEND '* Method attributes. *' TO ilines.

APPEND

'**********************************************************************'

TO ilines.

CASE walocmethod-exposure.

WHEN 0.

APPEND `Instantiation: Private` TO ilines.

WHEN 1.

APPEND `Instantiation: Protected` TO ilines.

WHEN 2.

APPEND `Instantiation: Public` TO ilines.

ENDCASE.

APPEND

'**********************************************************************'

TO ilines.

APPEND '' TO ilines.

castmethodkey = walocmethod-methodkey.

READ REPORT castmethodkey INTO itemplines.

LOOP AT itemplines.

APPEND itemplines TO ilines.

ENDLOOP.

IF converttohtml IS INITIAL.

APPEND '' TO ilines.

APPEND

'----------------------------------------------------------------------'

TO ilines.

PERFORM buildfootermessage USING ilines.

APPEND ilines.

ELSE.

PERFORM convertcodetohtml USING ilines[]

methodname

walocmethod-descript

overideprogtype

space

space

fileextension

customernamerange

getincludes

getdictstructures

addbackground.

ENDIF.

IF functionname IS INITIAL.

objectname = methodname.

ELSE.

objectname = functionname.

ENDIF.

CASE walocmethod-exposure.

WHEN 0.

* Private

CONCATENATE additionalsubdir slashseparator 'private_methods'

INTO additionalsubdir.

WHEN 1.

* Protected

CONCATENATE additionalsubdir slashseparator 'protected_methods'

INTO additionalsubdir.

WHEN 2.

* Public

CONCATENATE additionalsubdir slashseparator 'public_methods'

INTO additionalsubdir.

ENDCASE.

PERFORM buildfilename USING userfilepath

additionalsubdir

objectname

space

methodname

fileextension

overideprogtype

savetoserver

slashseparator

localfilenamewithpath

localfilenameonly

newsubdirectory

completesavepath.

IF savetoserver IS INITIAL.

PERFORM savefiletopc USING ilines[]

localfilenamewithpath

localfilenameonly

space

space

displayprogressmessage.

ELSE.

PERFORM savefiletoserver USING ilines[]

localfilenamewithpath

localfilenameonly

completesavepath

displayprogressmessage

locserverfilesystem.

ENDIF.

ENDFORM. "checkComboBoxes

"readMethodAndDownload

*-----------------------------------------------------------------------

* readFunctionAndDownload...

*-----------------------------------------------------------------------

FORM readfunctionanddownload USING iloctextelements LIKE dumitexttab[]

ilocselectiontexts LIKE dumitexttab[]

ilocmessages LIKE imessages[]

value(functionname)

value(functioninternalname)

value(shorttext)

value(userfilepath)

value(fileextension)

value(subdir)

value(converttohtml)

value(functiondocumentationexists)

value(customernamerange)

value(getincludes)

value(getdictstructures)

value(slashseparator)

value(savetoserver)

value(displayprogressmessage)

value(locserverfilesystem)

value(addbackground) TYPE abap_bool.

DATA: ilines TYPE STANDARD TABLE OF string WITH HEADER LINE.

DATA: localfilenamewithpath TYPE string.

DATA: localfilenameonly TYPE string.

DATA: newsubdirectory TYPE string.

DATA: completesavepath TYPE string.

READ REPORT functioninternalname INTO ilines.

* If we found any text elements for this function then we ought to

*append them to the main include.

IF NOT iloctextelements[] IS INITIAL.

PERFORM appendtextelements USING iloctextelements[]

ilines[].

ENDIF.

* If we found any message classes for this function then we ought to

*append them to the main include.

IF NOT ilocmessages[] IS INITIAL.

PERFORM appendmessagestofile USING ilocmessages[]

ilines[]

space.

ENDIF.

IF converttohtml IS INITIAL.

APPEND '' TO ilines.

APPEND

'----------------------------------------------------------------------'

TO ilines.

PERFORM buildfootermessage USING ilines.

APPEND ilines.

ELSE.

PERFORM convertfunctiontohtml USING ilines[]

functionname

shorttext

is_function

functiondocumentationexists

true

fileextension

customernamerange

getincludes

getdictstructures

addbackground.

ENDIF.

PERFORM buildfilename USING userfilepath

subdir

functionname

space

space

fileextension

is_function

savetoserver

slashseparator

localfilenamewithpath

localfilenameonly

newsubdirectory

completesavepath.

IF savetoserver IS INITIAL.

PERFORM savefiletopc USING ilines[]

localfilenamewithpath

localfilenameonly

space

space

displayprogressmessage.

ELSE.

PERFORM savefiletoserver USING ilines[]

localfilenamewithpath

localfilenameonly

completesavepath

displayprogressmessage

locserverfilesystem.

ENDIF.

ENDFORM. "checkComboBoxes

"readFunctionAndDownload

*-----------------------------------------------------------------------

* buildFilename...

*-----------------------------------------------------------------------

FORM buildfilename USING value(userpath)

value(additionalsubdirectory)

value(objectname)

value(mainfunctionno)

value(includename)

value(fileextension)

value(downloadtype)

value(downloadtoserver)

value(slashseparator)

newfilenamewithpath

newfilenameonly

newsubdirectory

completepath.

* If we are running on a non UNIX environment we will need to remove

* forward slashes from the additional path.

IF downloadtoserver IS INITIAL.

IF frontendopsystem = non_unix.

IF NOT additionalsubdirectory IS INITIAL.

TRANSLATE additionalsubdirectory USING '/_'.

IF additionalsubdirectory+0(1) = '_'.

SHIFT additionalsubdirectory LEFT BY 1 PLACES.

ENDIF.

ENDIF.

ENDIF.

ELSE.

IF serveropsystem = non_unix.

IF NOT additionalsubdirectory IS INITIAL.

TRANSLATE additionalsubdirectory USING '/_'.

IF additionalsubdirectory+0(1) = '_'.

SHIFT additionalsubdirectory LEFT BY 1 PLACES.

ENDIF.

ENDIF.

ENDIF.

ENDIF.

CASE downloadtype.

* Programs

WHEN is_program.

IF additionalsubdirectory IS INITIAL.

CONCATENATE userpath slashseparator objectname period

fileextension INTO newfilenamewithpath.

CONCATENATE userpath slashseparator INTO completepath.

ELSE.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator objectname period

fileextension INTO newfilenamewithpath.

CONCATENATE userpath slashseparator additionalsubdirectory

INTO completepath.

ENDIF.

* Function Modules

WHEN is_function.

IF additionalsubdirectory IS INITIAL.

FIND 'top' IN includename IGNORING CASE.

IF sy-subrc = 0.

CONCATENATE userpath slashseparator objectname

slashseparator 'Global-' objectname

period fileextension

INTO newfilenamewithpath.

ELSE.

IF includename CS mainfunctionno AND NOT mainfunctionno IS

INITIAL.

CONCATENATE userpath slashseparator objectname

slashseparator objectname

period fileextension

INTO newfilenamewithpath.

ELSE.

CONCATENATE userpath slashseparator objectname

slashseparator objectname

period fileextension

INTO newfilenamewithpath.

ENDIF.

ENDIF.

newsubdirectory = objectname.

CONCATENATE userpath

slashseparator

newsubdirectory

slashseparator INTO completepath.

ELSE.

FIND 'top' IN includename IGNORING CASE.

IF sy-subrc = 0.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator objectname

slashseparator 'Global-' objectname

period fileextension

INTO newfilenamewithpath.

ELSE.

IF includename CS mainfunctionno AND NOT mainfunctionno IS

INITIAL.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator objectname

slashseparator objectname

period fileextension

INTO newfilenamewithpath.

ELSE.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator objectname

slashseparator objectname

period fileextension

INTO newfilenamewithpath.

ENDIF.

ENDIF.

CONCATENATE additionalsubdirectory slashseparator objectname

INTO newsubdirectory.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator objectname INTO completepath.

ENDIF.

* Table definition

WHEN is_table.

IF additionalsubdirectory IS INITIAL.

CONCATENATE userpath slashseparator 'Dictionary_Objects' "

slashseparator objectname

slashseparator

objectname period fileextension

INTO newfilenamewithpath.

CONCATENATE userpath slashseparator objectname INTO

newsubdirectory.

CONCATENATE userpath slashseparator objectname INTO

completepath.

ELSE.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator 'Dictionary_Objects' "

slashseparator objectname

slashseparator

objectname period fileextension

INTO newfilenamewithpath.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator objectname INTO newsubdirectory.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator objectname INTO completepath.

ENDIF.

* Program & Function documentation

WHEN is_documentation.

IF additionalsubdirectory IS INITIAL.

CONCATENATE userpath slashseparator objectname

slashseparator 'Docs-'

objectname period

fileextension

INTO newfilenamewithpath.

CONCATENATE userpath slashseparator objectname INTO

newsubdirectory.

CONCATENATE userpath slashseparator objectname INTO

completepath.

ELSE.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator objectname

slashseparator 'Docs-'

objectname period fileextension

INTO newfilenamewithpath.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator objectname INTO newsubdirectory.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator objectname INTO completepath.

ENDIF.

* Screens

WHEN is_screen.

IF additionalsubdirectory IS INITIAL.

CONCATENATE userpath slashseparator 'Screens'

slashseparator 'screen_'

objectname period

fileextension INTO newfilenamewithpath.

CONCATENATE userpath slashseparator 'screens' INTO

newsubdirectory.

CONCATENATE userpath slashseparator 'screens' INTO completepath.

ELSE.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator 'Screens'

slashseparator 'screen_'

objectname period

fileextension INTO newfilenamewithpath.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator 'screens' INTO newsubdirectory.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator 'screens' INTO completepath.

ENDIF.

* GUI title

WHEN is_guititle.

IF additionalsubdirectory IS INITIAL.

CONCATENATE userpath slashseparator 'Screens'

slashseparator 'gui_title_'

objectname period

fileextension INTO newfilenamewithpath.

CONCATENATE userpath slashseparator 'screens' INTO

newsubdirectory.

CONCATENATE userpath slashseparator 'screens' INTO completepath.

ELSE.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator 'Screens'

slashseparator 'gui_title_'

objectname period

fileextension INTO newfilenamewithpath.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator 'Screens' INTO newsubdirectory.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator 'Screens' INTO completepath.

ENDIF.

* Message Class

WHEN is_messageclass.

IF additionalsubdirectory IS INITIAL.

CONCATENATE userpath slashseparator objectname

slashseparator 'Message class-'

objectname period

fileextension

INTO newfilenamewithpath.

CONCATENATE userpath slashseparator objectname INTO

newsubdirectory.

CONCATENATE userpath slashseparator objectname INTO

completepath.

ELSE.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator objectname

slashseparator 'Message class-'

objectname period fileextension

INTO newfilenamewithpath.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator objectname INTO newsubdirectory.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator objectname INTO completepath.

ENDIF.

* Class definition

WHEN is_class.

IF additionalsubdirectory IS INITIAL.

CONCATENATE userpath slashseparator objectname

slashseparator 'Class-'

objectname period fileextension

INTO newfilenamewithpath.

CONCATENATE userpath slashseparator objectname INTO

newsubdirectory.

CONCATENATE userpath slashseparator objectname INTO

completepath.

ELSE.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator objectname

slashseparator 'Class-'

objectname period fileextension

INTO newfilenamewithpath.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator objectname INTO newsubdirectory.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator objectname INTO completepath.

ENDIF.

* Class definition

WHEN is_method.

IF additionalsubdirectory IS INITIAL.

CONCATENATE userpath slashseparator

objectname period fileextension

INTO newfilenamewithpath.

CONCATENATE userpath slashseparator objectname INTO

newsubdirectory.

CONCATENATE userpath slashseparator objectname INTO

completepath.

ELSE.

CONCATENATE userpath slashseparator additionalsubdirectory

slashseparator

objectname period fileextension

INTO newfilenamewithpath.

* concatenate userPath slashSeparator additionalSubDirectory

*slashSeparator objectName into newSubDirectory.

CONCATENATE userpath slashseparator additionalsubdirectory

INTO completepath.

ENDIF.

ENDCASE.

TRANSLATE completepath TO LOWER CASE.

CONCATENATE objectname period fileextension INTO newfilenameonly.

TRANSLATE newfilenameonly TO LOWER CASE.

TRANSLATE newfilenamewithpath TO LOWER CASE.

TRANSLATE newsubdirectory TO LOWER CASE.

* If we are running on a non UNIX environment we will need to remove

*incorrect characters from the filename.

IF downloadtoserver IS INITIAL.

IF frontendopsystem = non_unix.

TRANSLATE newfilenameonly USING '/_'.

TRANSLATE newfilenamewithpath USING '/_'.

TRANSLATE newfilenameonly USING '< '.

TRANSLATE newfilenamewithpath USING '< '.

TRANSLATE newfilenameonly USING '> '.

TRANSLATE newfilenamewithpath USING '> '.

TRANSLATE newfilenameonly USING '? '.

TRANSLATE newfilenamewithpath USING '? '.

TRANSLATE newfilenameonly USING '| '.

TRANSLATE newfilenamewithpath USING '| '.

CONDENSE newfilenameonly NO-GAPS.

CONDENSE newfilenamewithpath NO-GAPS.

ENDIF.

ELSE.

IF serveropsystem = non_unix.

TRANSLATE newfilenameonly USING '/_'.

TRANSLATE newfilenamewithpath USING '/_'.

TRANSLATE newfilenameonly USING '< '.

TRANSLATE newfilenamewithpath USING '< '.

TRANSLATE newfilenameonly USING '> '.

TRANSLATE newfilenamewithpath USING '> '.

TRANSLATE newfilenameonly USING '? '.

TRANSLATE newfilenamewithpath USING '? '.

TRANSLATE newfilenameonly USING '| '.

TRANSLATE newfilenamewithpath USING '| '.

CONDENSE newfilenameonly NO-GAPS.

CONDENSE newfilenamewithpath NO-GAPS.

ENDIF.

ENDIF.

ENDFORM. "checkComboBoxes

"buildFilename

*-----------------------------------------------------------------------

* saveFileToPc... write an internal table to a file on the local PC

*-----------------------------------------------------------------------

FORM savefiletopc USING idownload TYPE STANDARD TABLE

value(filenamewithpath)

value(filename)

value(writefieldseparator)

value(truncatetrailingblanks)

value(displayprogressmessage).

DATA: statusmessage TYPE string.

DATA: objfile TYPE REF TO cl_gui_frontend_services.

DATA: strsubrc TYPE string.

IF NOT displayprogressmessage IS INITIAL.

CONCATENATE `Downloading: ` filename INTO statusmessage.

PERFORM displaystatus USING statusmessage 0.

ENDIF.

CREATE OBJECT objfile.

objfile->gui_download( EXPORTING filename = filenamewithpath

filetype = 'ASC'

write_field_separator =

writefieldseparator

trunc_trailing_blanks =

truncatetrailingblanks

CHANGING data_tab = idownload[]

EXCEPTIONS file_write_error = 1

no_batch = 2

gui_refuse_filetransfer = 3

invalid_type = 4

no_authority = 5

unknown_error = 6

header_not_allowed = 7

separator_not_allowed = 8

filesize_not_allowed = 9

header_too_long = 10

dp_error_create = 11

dp_error_send = 12

dp_error_write = 13

unknown_dp_error = 14

access_denied = 15

dp_out_of_memory = 16

disk_full = 17

dp_timeout = 18

file_not_found = 19

dataprovider_exception = 20

control_flush_error = 21

not_supported_by_gui = 22

error_no_gui = 23 ).

IF sy-subrc 0.

strsubrc = sy-subrc.

CONCATENATE `File save error: ` filename ` sy-subrc: ` strsubrc

INTO statusmessage.

PERFORM displaystatus USING statusmessage 3.

ENDIF.

ENDFORM. "checkComboBoxes

"saveFileToPc

*-----------------------------------------------------------------------

* saveFileToServer... write an internal table to a file on the SAP

*server

*-----------------------------------------------------------------------

FORM savefiletoserver USING idownload TYPE STANDARD TABLE

value(filenamewithpath)

value(filename)

value(path)

value(displayprogressmessage)

value(locserverfilesystem).

DATA: wadownload TYPE string.

DATA: statusmessage TYPE string.

IF NOT displayprogressmessage IS INITIAL.

CONCATENATE `Downloading: ` filename INTO statusmessage.

PERFORM displaystatus USING statusmessage 0.

ENDIF.

READ TABLE iserverpaths WITH KEY table_line = path.

IF sy-subrc 0.

PERFORM createserverdirectory USING path locserverfilesystem.

APPEND path TO iserverpaths.

ENDIF.

OPEN DATASET filenamewithpath FOR OUTPUT IN TEXT MODE ENCODING

DEFAULT.

IF sy-subrc = 0.

LOOP AT idownload INTO wadownload.

TRANSFER wadownload TO filenamewithpath.

IF sy-subrc 0.

MESSAGE e000(oo) WITH 'Error transferring data to file'.

ENDIF.

ENDLOOP.

CLOSE DATASET filenamewithpath.

IF sy-subrc 0.

MESSAGE e000(oo) WITH 'Error closing file'.

ENDIF.

ELSE.

* Unable to create a file

MESSAGE e000(oo) WITH 'Error creating file on SAP server'

'check permissions'.

ENDIF.

ENDFORM. "checkComboBoxes

"saveFileToServer

*-----------------------------------------------------------------------

* createServerDirectory...

*-----------------------------------------------------------------------

FORM createserverdirectory USING value(path)

value(locserverfilesystem).

DATA: castserveropsys TYPE syopsys.

castserveropsys = locserverfilesystem.

* Parameters for remove command.

DATA: param1 TYPE sxpgcolist-parameters.

* Return status

DATA: funcstatus TYPE extcmdexex-status.

* Command line listing returned by the function

DATA: iserveroutput TYPE STANDARD TABLE OF btcxpm.

DATA: waserveroutput TYPE btcxpm.

* Targetsystem type conversion variable.

DATA: target TYPE rfcdisplay-rfchost.

* Operating system

DATA: operatingsystem TYPE sxpgcolist-opsystem.

* Head for split command.

DATA: head TYPE string..

DATA: tail TYPE string.

param1 = path.

target = sy-host.

operatingsystem = locserverfilesystem.

CALL FUNCTION 'SXPG_COMMAND_EXECUTE'

EXPORTING

commandname = 'ZDTX_MKDIR'

additional_parameters = param1

operatingsystem = castserveropsys

targetsystem = target

stdout = 'X'

stderr = 'X'

terminationwait = 'X'

IMPORTING

status = funcstatus

TABLES

exec_protocol = iserveroutput[]

EXCEPTIONS

no_permission = 1

command_not_found = 2

parameters_too_long = 3

security_risk = 4

wrong_check_call_interface = 5

program_start_error = 6

program_termination_error = 7

x_error = 8

parameter_expected = 9

too_many_parameters = 10

illegal_command = 11

wrong_asynchronous_parameters = 12

cant_enq_tbtco_entry = 13

jobcount_generation_error = 14

OTHERS = 15.

IF sy-subrc = 0.

* Although the function succeded did the external command actually

* work

IF funcstatus = 'E'.

* External command returned with an error

IF sy-opsys CS 'Windows NT'.

READ TABLE iserveroutput INDEX 1 INTO waserveroutput.

IF waserveroutput-message NS 'already exists'.

* An error occurred creating the directory on the server

MESSAGE e000(oo) WITH 'An error occurred creating a directory'.

ENDIF.

ELSE.

READ TABLE iserveroutput INDEX 2 INTO waserveroutput.

SPLIT waserveroutput-message AT space INTO head tail.

SHIFT tail LEFT DELETING LEADING space.

IF tail 'Do not specify an existing file.'.

* An error occurred creating the directory on the server

MESSAGE e000(oo) WITH 'An error occurred creating a directory'.

ENDIF.

ENDIF.

ENDIF.

ELSE.

CASE sy-subrc.

WHEN 1.

* No permissions to run the command

MESSAGE e000(oo)

WITH 'No permissions to run external command ZDTX_MKDIR'.

WHEN 2.

* External command not found

MESSAGE e000(oo) WITH 'External comand ZDTX_MKDIR not found'.

WHEN OTHERS.

* Unable to create the directory

MESSAGE e000(oo) WITH 'An error occurred creating a directory'

', subrc:'

sy-subrc.

ENDCASE.

ENDIF.

ENDFORM. "checkComboBoxes

"createServerDirectory

*-----------------------------------------------------------------------

* appendTextElements...

*-----------------------------------------------------------------------

FORM appendtextelements USING iloctextelements LIKE dumitexttab[]

iloclines LIKE dumihtml[].

FIELD-SYMBOLS: TYPE ttexttable.

DATA: waline TYPE string.

IF LINES( iloctextelements ) > 0.

APPEND '' TO iloclines.

APPEND '*Text elements' TO iloclines.

APPEND

'*----------------------------------------------------------' TO

iloclines.

LOOP AT iloctextelements ASSIGNING .

CONCATENATE '* ' -key -entry INTO

waline SEPARATED BY space.

APPEND waline TO iloclines.

ENDLOOP.

ENDIF.

ENDFORM. "checkComboBoxes

"appendTextElements

*-----------------------------------------------------------------------

* appendGUITitles...

*-----------------------------------------------------------------------

FORM appendguititles USING ilocguititles LIKE dumiguititle[]

iloclines LIKE dumihtml[].

FIELD-SYMBOLS: TYPE tguititle.

DATA: waline TYPE string.

IF LINES( ilocguititles ) > 0.

APPEND '' TO iloclines.

APPEND '*GUI Texts' TO iloclines.

APPEND

'*----------------------------------------------------------' TO

iloclines.

LOOP AT ilocguititles ASSIGNING .

CONCATENATE '* ' -obj_code '-->' -text

INTO waline SEPARATED BY space.

APPEND waline TO iloclines.

ENDLOOP.

ENDIF.

ENDFORM. "checkComboBoxes

"appendGUITitles

*-----------------------------------------------------------------------

* appendSelectionTexts...

*-----------------------------------------------------------------------

FORM appendselectiontexts USING ilocselectiontexts LIKE dumitexttab[]

iloclines LIKE dumihtml[].

FIELD-SYMBOLS: TYPE ttexttable.

DATA: waline TYPE string.

IF LINES( ilocselectiontexts ) > 0.

APPEND '' TO iloclines.

APPEND '' TO iloclines.

APPEND '*Selection texts' TO iloclines.

APPEND

'*----------------------------------------------------------' TO

iloclines.

LOOP AT ilocselectiontexts ASSIGNING .

CONCATENATE '* ' -key -entry

INTO waline SEPARATED BY space.

APPEND waline TO iloclines.

ENDLOOP.

ENDIF.

ENDFORM. "checkComboBoxes

"appendSelectionTexts

*-----------------------------------------------------------------------

* appendExceptionTexts...

*-----------------------------------------------------------------------

FORM appendexceptiontexts USING iconcepts LIKE dumiconcepts[]

iloclines LIKE dumihtml[].

FIELD-SYMBOLS: TYPE tconcept.

DATA: waline TYPE string.

DATA: concepttext TYPE sotr_txt.

IF LINES( iconcepts ) > 0.

APPEND '' TO iloclines.

APPEND '*Exception texts' TO iloclines.

APPEND

'*----------------------------------------------------------' TO

iloclines.

LOOP AT iconcepts ASSIGNING .

* Find the text for this concept

CALL FUNCTION 'SOTR_GET_TEXT_KEY'

EXPORTING concept = -concept

langu = pmlang

search_in_second_langu = 'X'

* second_langu = 'DE'

IMPORTING e_text = concepttext

EXCEPTIONS no_entry_found = 1

parameter_error = 2

OTHERS = 3.

IF sy-subrc = 0.

CONCATENATE '* ' -constname '-' concepttext INTO

waline SEPARATED BY space.

APPEND waline TO iloclines.

ENDIF.

ENDLOOP.

ENDIF.

ENDFORM. "checkComboBoxes

"appendExceptionTexts

*-----------------------------------------------------------------------

* downloadFunctionDocs...

*-----------------------------------------------------------------------

FORM downloadfunctiondocs USING value(functionname)

value(functiondescription)

value(userfilepath)

value(fileextension)

value(converttohtml)

value(slashseparator)

value(savetoserver)

value(displayprogressmessage)

subdir

documentationdownloaded

value(locserverfilesystem)

value(addbackground) TYPE abap_bool.

DATA: ilines TYPE STANDARD TABLE OF string WITH HEADER LINE.

DATA: idocumentation TYPE STANDARD TABLE OF funct WITH HEADER LINE.

DATA: iexceptions TYPE STANDARD TABLE OF rsexc WITH HEADER LINE.

DATA: iexport TYPE STANDARD TABLE OF rsexp WITH HEADER LINE.

DATA: iparameter TYPE STANDARD TABLE OF rsimp WITH HEADER LINE.

DATA: itables TYPE STANDARD TABLE OF rstbl WITH HEADER LINE.

DATA: iscriptlines TYPE STANDARD TABLE OF tline WITH HEADER LINE.

DATA: htmlpagename TYPE string.

DATA: newfilenamewithpath TYPE string.

DATA: newfilenameonly TYPE string.

DATA: object LIKE dokhl-object.

DATA: stringlength TYPE i VALUE 0.

DATA: newsubdirectory TYPE string.

DATA: waline(255).

DATA: completesavepath TYPE string.

documentationdownloaded = false.

object = functionname.

CALL FUNCTION 'FUNCTION_IMPORT_DOKU'

EXPORTING

funcname = functionname

TABLES

dokumentation = idocumentation

exception_list = iexceptions

export_parameter = iexport

import_parameter = iparameter

tables_parameter = itables

EXCEPTIONS

error_message = 1

function_not_found = 2

invalid_name = 3

OTHERS = 4.

CALL FUNCTION 'DOCU_GET'

EXPORTING

id = 'FU'

langu = pmlang

object = object

typ = 'T'

version_active_or_last = 'L'

TABLES

line = iscriptlines

EXCEPTIONS

no_docu_on_screen = 1

no_docu_self_def = 2

no_docu_temp = 3

ret_code = 4

OTHERS = 5.

IF sy-subrc = 0 AND NOT ( iscriptlines[] IS INITIAL ).

APPEND 'SHORT TEXT' TO ilines.

CONCATENATE space functiondescription INTO functiondescription

SEPARATED BY space.

APPEND functiondescription TO ilines.

APPEND space TO ilines.

LOOP AT iscriptlines.

MOVE iscriptlines-tdline TO ilines.

CONCATENATE space ilines INTO ilines SEPARATED BY space.

WHILE ilines CP '&*' OR ilines CP '*&'.

REPLACE '&' INTO ilines WITH space.

SHIFT ilines LEFT DELETING LEADING space.

ENDWHILE.

APPEND ilines.

ENDLOOP.

CLEAR ilines.

IF NOT ( idocumentation[] IS INITIAL ).

APPEND ilines.

APPEND 'PARAMETER DOCUMENTATION' TO ilines.

APPEND '-----------------------' TO ilines.

APPEND ilines.

DESCRIBE FIELD idocumentation-parameter LENGTH stringlength IN

CHARACTER MODE.

stringlength = stringlength + 3.

LOOP AT idocumentation.

MOVE idocumentation-parameter TO waline.

MOVE idocumentation-stext TO waline+stringlength.

APPEND waline TO ilines.

ENDLOOP.

ENDIF.

CONCATENATE `Documentation - ` functionname INTO htmlpagename.

IF converttohtml IS INITIAL.

APPEND ilines.

APPEND

'----------------------------------------------------------------------'

TO ilines.

APPEND ilines.

PERFORM buildfootermessage USING ilines.

APPEND ilines.

ELSE.

PERFORM convertcodetohtml USING ilines[]

htmlpagename

space

is_documentation

true

space

space

space

space

space

addbackground.

ENDIF.

PERFORM buildfilename USING userfilepath

subdir

functionname

space

space

fileextension

is_documentation

savetoserver

slashseparator

newfilenamewithpath

newfilenameonly

newsubdirectory

completesavepath.

IF savetoserver IS INITIAL.

PERFORM savefiletopc USING ilines[]

newfilenamewithpath

newfilenameonly

space

space

displayprogressmessage.

ELSE.

PERFORM savefiletoserver USING ilines[]

newfilenamewithpath

newfilenameonly

completesavepath

displayprogressmessage

locserverfilesystem.

ENDIF.

documentationdownloaded = true.

ENDIF.

ENDFORM. "checkComboBoxes

*-----------------------------------------------------------------------

* downloadClassDocs...

*-----------------------------------------------------------------------

FORM downloadclassdocs USING value(classname) TYPE seoclsname

value(userfilepath)

value(fileextension)

value(converttohtml)

value(slashseparator)

value(savetoserver)

value(displayprogressmessage)

subdir

documentationdownloaded

value(locserverfilesystem)

value(addbackground) TYPE abap_bool.

DATA: ilines TYPE STANDARD TABLE OF string WITH HEADER LINE.

DATA: idocumentation TYPE STANDARD TABLE OF funct WITH HEADER LINE.

DATA: iexceptions TYPE STANDARD TABLE OF rsexc WITH HEADER LINE.

DATA: iexport TYPE STANDARD TABLE OF rsexp WITH HEADER LINE.

DATA: iparameter TYPE STANDARD TABLE OF rsimp WITH HEADER LINE.

DATA: itables TYPE STANDARD TABLE OF rstbl WITH HEADER LINE.

DATA: iscriptlines TYPE STANDARD TABLE OF tline WITH HEADER LINE.

DATA: htmlpagename TYPE string.

DATA: newfilenamewithpath TYPE string.

DATA: newfilenameonly TYPE string.

DATA: object LIKE dokhl-object.

DATA: stringlength TYPE i VALUE 0.

DATA: newsubdirectory TYPE string.

DATA: waline(255).

DATA: completesavepath TYPE string.

documentationdownloaded = false.

object = classname.

CALL FUNCTION 'DOC_OBJECT_GET'

EXPORTING

class = 'CL'

name = object

language = pmlang

* short_text = ' '

* appendix = ' '

* importing

* header = header

TABLES

itf_lines = iscriptlines[]

EXCEPTIONS

object_not_found = 1.

IF sy-subrc = 0 AND NOT ( iscriptlines[] IS INITIAL ).

LOOP AT iscriptlines.

MOVE iscriptlines-tdline TO ilines.

CONCATENATE space ilines INTO ilines SEPARATED BY space.

WHILE ilines CP '&*' OR ilines CP '*&'.

REPLACE '&' INTO ilines WITH space.

SHIFT ilines LEFT DELETING LEADING space.

ENDWHILE.

APPEND ilines.

ENDLOOP.

CONCATENATE `Documentation - ` classname INTO htmlpagename.

IF converttohtml IS INITIAL.

APPEND ilines.

APPEND

'----------------------------------------------------------------------'

TO ilines.

APPEND ilines.

PERFORM buildfootermessage USING ilines.

APPEND ilines.

ELSE.

PERFORM convertcodetohtml USING ilines[]

htmlpagename

space

is_documentation

true

space

space

space

space

space

addbackground.

ENDIF.

PERFORM buildfilename USING userfilepath

subdir

classname

space

space

fileextension

is_documentation

savetoserver

slashseparator

newfilenamewithpath

newfilenameonly

newsubdirectory

completesavepath.

IF savetoserver IS INITIAL.

PERFORM savefiletopc USING ilines[]

newfilenamewithpath

newfilenameonly

space

space

displayprogressmessage.

ELSE.

PERFORM savefiletoserver USING ilines[]

newfilenamewithpath

newfilenameonly

completesavepath

displayprogressmessage

locserverfilesystem.

ENDIF.

documentationdownloaded = true.

ENDIF.

ENDFORM. "checkComboBoxes

*-----------------------------------------------------------------------

* downloadScreens...

*-----------------------------------------------------------------------

FORM downloadscreens USING ilocscreenflow LIKE dumiscreen[]

value(programname)

value(userfilepath)

value(textfileextension)

value(subdir)

value(slashseparator)

value(savetoserver)

value(displayprogressmessage)

value(locserverfilesystem).

TABLES: d020t.

DATA: header LIKE d020s.

DATA: ifields TYPE STANDARD TABLE OF d021s WITH HEADER LINE.

DATA: iflowlogic TYPE STANDARD TABLE OF d022s WITH HEADER LINE.

FIELD-SYMBOLS TYPE tscreenflow.

DATA: wacharheader TYPE scr_chhead.

DATA: iscreenchar TYPE STANDARD TABLE OF scr_chfld WITH HEADER LINE.

DATA: ifieldschar TYPE STANDARD TABLE OF scr_chfld WITH HEADER LINE.

DATA: stars TYPE string VALUE

'****************************************************************'.

DATA: comment1 TYPE string VALUE

'* This file was generated by Direct Download Enterprise. *'.

DATA: comment2 TYPE string VALUE

'* Please do not change it manually. *'.

DATA: dynprotext TYPE string VALUE '%_DYNPRO'.

DATA: headertext TYPE string VALUE '%_HEADER'.

DATA: paramstext TYPE string VALUE '%_PARAMS'.

DATA: descriptiontext TYPE string VALUE '%_DESCRIPTION'.

DATA: fieldstext TYPE string VALUE '%_FIELDS'.

DATA: flowlogictext TYPE string VALUE '%_FLOWLOGIC'.

DATA: programlength TYPE string.

DATA: newsubdirectory TYPE string.

DATA: newfilenamewithpath TYPE string.

DATA: newfilenameonly TYPE string.

DATA: completesavepath TYPE string.

LOOP AT ilocscreenflow ASSIGNING .

CALL FUNCTION 'RS_IMPORT_DYNPRO'

EXPORTING

dylang = pmlang

dyname = programname

dynumb = -screen

IMPORTING

header = header

TABLES

ftab = ifields

pltab = iflowlogic.

CALL FUNCTION 'RS_SCRP_HEADER_RAW_TO_CHAR'

EXPORTING

header_int = header

IMPORTING

header_char = wacharheader

EXCEPTIONS

OTHERS = 1.

* Add in the top comments for the file

APPEND stars TO iscreenchar .

APPEND comment1 TO iscreenchar.

APPEND comment2 TO iscreenchar.

APPEND stars TO iscreenchar.

* Screen identification

APPEND dynprotext TO iscreenchar.

APPEND wacharheader-prog TO iscreenchar.

APPEND wacharheader-dnum TO iscreenchar.

APPEND sy-saprl TO iscreenchar.

DESCRIBE FIELD d020t-prog LENGTH programlength IN CHARACTER MODE.

CONCATENATE ` ` programlength INTO iscreenchar.

APPEND iscreenchar.

* Header

APPEND headertext TO iscreenchar.

APPEND wacharheader TO iscreenchar.

* Description text

APPEND descriptiontext TO iscreenchar.

SELECT SINGLE dtxt FROM d020t INTO iscreenchar

WHERE prog = programname

AND dynr = -screen

AND lang = pmlang.

APPEND iscreenchar.

* Fieldlist text

APPEND fieldstext TO iscreenchar.

CALL FUNCTION 'RS_SCRP_FIELDS_RAW_TO_CHAR'

TABLES

fields_int = ifields[]

fields_char = ifieldschar[]

EXCEPTIONS

OTHERS = 1.

LOOP AT ifieldschar.

MOVE-CORRESPONDING ifieldschar TO iscreenchar.

APPEND iscreenchar.

ENDLOOP.

* Flowlogic text

APPEND flowlogictext TO iscreenchar.

* Flow logic.

LOOP AT iflowlogic.

APPEND iflowlogic TO iscreenchar.

ENDLOOP.

PERFORM buildfilename USING userfilepath

subdir

wacharheader-dnum

space

space

textfileextension

is_screen

savetoserver

slashseparator

newfilenamewithpath

newfilenameonly

newsubdirectory

completesavepath.

IF savetoserver IS INITIAL.

* Save the screen to the local computer

PERFORM savefiletopc USING iscreenchar[]

newfilenamewithpath

newfilenameonly

'X'

'X'

displayprogressmessage.

ELSE.

* Save the screen to the SAP server

PERFORM savefiletoserver USING iscreenchar[]

newfilenamewithpath

newfilenameonly

completesavepath

displayprogressmessage

locserverfilesystem.

ENDIF.

CLEAR header. CLEAR wacharheader.

CLEAR iscreenchar[].

CLEAR ifieldschar[].

CLEAR ifields[].

CLEAR iflowlogic[].

ENDLOOP.

ENDFORM. "checkComboBoxes

"downloadScreens

*-----------------------------------------------------------------------

* downloadGUITitles..

*-----------------------------------------------------------------------

FORM downloadguititles USING ilocguititles LIKE dumiguititle[]

value(userfilepath)

value(textfileextension)

value(subdir)

value(slashseparator)

value(savetoserver)

value(displayprogressmessage)

value(locserverfilesystem).

DATA: ilines TYPE STANDARD TABLE OF string WITH HEADER LINE.

FIELD-SYMBOLS: TYPE tguititle.

DATA: newsubdirectory TYPE string.

DATA: newfilenamewithpath TYPE string.

DATA: newfilenameonly TYPE string.

DATA: completesavepath TYPE string.

LOOP AT ilocguititles ASSIGNING .

APPEND -text TO ilines.

PERFORM buildfilename USING userfilepath

subdir

-obj_code

space

space

textfileextension

is_guititle

savetoserver

slashseparator

newfilenamewithpath

newfilenameonly

newsubdirectory

completesavepath.

IF savetoserver IS INITIAL.

PERFORM savefiletopc USING ilines[]

newfilenamewithpath

newfilenameonly

space

space

displayprogressmessage.

ELSE.

PERFORM savefiletoserver USING ilines[]

newfilenamewithpath

newfilenameonly

completesavepath

displayprogressmessage

locserverfilesystem.

ENDIF.

CLEAR ilines[].

ENDLOOP.

ENDFORM. "checkComboBoxes

"downloadGUITitles

*-----------------------------------------------------------------------

* downloadPrograms..

*-----------------------------------------------------------------------

FORM downloadprograms USING ilocprogram LIKE iprograms[]

ilocfunctions LIKE ifunctions[]

ilocdictionaryfilename LIKE idictfilename[]

value(userfilepath)

value(fileextension)

value(htmlfileextension)

value(textfileextension)

value(converttohtml)

value(customernamerange)

value(getincludes)

value(getdictstruct)

value(downloaddocumentation)

value(sorttablesasc)

value(slashseparator)

value(savetoserver)

value(displayprogressmessage)

value(locserverfilesystem)

value(addbackground) TYPE abap_bool.

DATA: iprogfunctions TYPE STANDARD TABLE OF tfunction WITH HEADER LINE.

FIELD-SYMBOLS: TYPE tprogram.

FIELD-SYMBOLS: TYPE tinclude.

DATA: iemptytextelements TYPE STANDARD TABLE OF ttexttable.

DATA: iemptyselectiontexts TYPE STANDARD TABLE OF ttexttable.

DATA: iemptymessages TYPE STANDARD TABLE OF tmessage.

DATA: iemptyguititles TYPE STANDARD TABLE OF tguititle.

DATA: locconverttohtml(1).

DATA: locfileextension TYPE string.

SORT ilocprogram ASCENDING BY progname.

LOOP AT ilocprogram ASSIGNING .

* if the program to download is this program then always download as

*text otherwise you will get a rubbish file

IF -progname = sy-cprog.

locconverttohtml = ''.

locfileextension = textextension.

ELSE.

locconverttohtml = converttohtml.

locfileextension = fileextension.

ENDIF.

* Download the main program

PERFORM readincludeanddownload USING -itextelements[]

-iselectiontexts[]

-imessages[]

-iguititle[]

-progname

space

-programtitle

is_program

userfilepath

locfileextension

-progname

locconverttohtml

customernamerange

getincludes

getdictstruct

slashseparator

savetoserver

displayprogressmessage

locserverfilesystem

addbackground.

* Download screens.

IF NOT -iscreenflow[] IS INITIAL.

PERFORM downloadscreens USING -iscreenflow[]

-progname

userfilepath

textfileextension

-progname

slashseparator

savetoserver

displayprogressmessage

locserverfilesystem.

ENDIF.

* Download GUI titles

IF NOT -iguititle[] IS INITIAL.

PERFORM downloadguititles USING -iguititle

userfilepath

textfileextension

-progname

slashseparator

savetoserver

displayprogressmessage

locserverfilesystem.

ENDIF.

* Download all other includes

LOOP AT -iincludes ASSIGNING .

PERFORM readincludeanddownload USING iemptytextelements[]

iemptyselectiontexts[]

iemptymessages[]

iemptyguititles[]

-includename

space

-includetitle

is_program

userfilepath

fileextension

-progname

converttohtml

customernamerange

getincludes

getdictstruct

slashseparator

savetoserver

displayprogressmessage

locserverfilesystem

addbackground.

ENDLOOP.

* Download all dictionary structures

IF NOT -idictstruct[] IS INITIAL.

PERFORM downloadddstructures USING -idictstruct[]

ilocdictionaryfilename[]

userfilepath

htmlfileextension

-progname

sorttablesasc

slashseparator

savetoserver

displayprogressmessage

locserverfilesystem

addbackground.

ENDIF.

* Download any functions used by these programs

LOOP AT ilocfunctions INTO iprogfunctions WHERE programlinkname =

-progname.

APPEND iprogfunctions.

ENDLOOP.

IF NOT iprogfunctions[] IS INITIAL.

PERFORM downloadfunctions USING iprogfunctions[]

ilocdictionaryfilename[]

userfilepath

fileextension

-progname

downloaddocumentation

converttohtml

customernamerange

getincludes

getdictstruct

textfileextension

htmlfileextension

sorttablesasc

slashseparator

savetoserver

displayprogressmessage

locserverfilesystem

addbackground.

CLEAR iprogfunctions[].

ENDIF.

ENDLOOP.

ENDFORM. "checkComboBoxes

"downloadPrograms

*-----------------------------------------------------------------------

* downloadClasses..

*-----------------------------------------------------------------------

FORM downloadclasses USING ilocclasses LIKE iclasses[]

ilocfunctions LIKE ifunctions[]

ilocdictionaryfilename LIKE idictfilename[]

value(userfilepath)

value(fileextension)

value(htmlfileextension)

value(textfileextension)

value(converttohtml)

value(customernamerange)

value(getincludes)

value(getdictstruct)

value(downloaddocumentation)

value(sorttablesasc)

value(slashseparator)

value(savetoserver)

value(displayprogressmessage)

value(locserverfilesystem)

value(addbackground) TYPE abap_bool.

DATA: iclassfunctions TYPE STANDARD TABLE OF tfunction WITH HEADER LINE.

FIELD-SYMBOLS: TYPE tclass.

FIELD-SYMBOLS: TYPE tmethod.

DATA: additionalsubdirectory TYPE string.

DATA: classdocumentationexists TYPE abap_bool VALUE false.

SORT ilocclasses ASCENDING BY clsname.

LOOP AT ilocclasses ASSIGNING .

* Download the class

PERFORM readclassanddownload USING

-clsname

space

is_class

userfilepath

fileextension

space

converttohtml

customernamerange

getincludes

getdictstruct

slashseparator

savetoserver

displayprogressmessage

locserverfilesystem

addbackground.

* Download all of the methods

LOOP AT -imethods ASSIGNING .

additionalsubdirectory = -clsname.

PERFORM readmethodanddownload USING

-cmpname

-methodkey

space

is_method

userfilepath

fileextension

additionalsubdirectory

converttohtml

customernamerange

getincludes

getdictstruct

slashseparator

savetoserver

displayprogressmessage

locserverfilesystem

addbackground.

ENDLOOP.

* Download all dictionary structures

IF NOT -idictstruct[] IS INITIAL.

PERFORM downloadddstructures USING -idictstruct[]

ilocdictionaryfilename[]

userfilepath

htmlfileextension

-clsname

sorttablesasc

slashseparator

savetoserver

displayprogressmessage

locserverfilesystem

addbackground.

ENDIF.

* Download any functions used by these programs

LOOP AT ilocfunctions INTO iclassfunctions WHERE programlinkname =

-clsname.

APPEND iclassfunctions.

ENDLOOP.

IF NOT iclassfunctions[] IS INITIAL.

PERFORM downloadfunctions USING iclassfunctions[]

ilocdictionaryfilename[]

userfilepath

fileextension

-clsname

downloaddocumentation

converttohtml

customernamerange

getincludes

getdictstruct

textfileextension

htmlfileextension

sorttablesasc

slashseparator

savetoserver

displayprogressmessage

locserverfilesystem

addbackground.

CLEAR iclassfunctions[].

ENDIF.

IF downloaddocumentation = true.

PERFORM downloadclassdocs USING -clsname

userfilepath

fileextension

converttohtml

slashseparator

savetoserver

displayprogressmessage

'' "subdirectory

classdocumentationexists

locserverfilesystem

addbackground.

ENDIF.

ENDLOOP.

ENDFORM. "checkComboBoxes

"downloadClasses

*-----------------------------------------------------------------------

* reFormatClassCode... Expand a classes public, private and

* protected section from the 72 characters that the class

* builder sets it to back to the wide editor mode

*-----------------------------------------------------------------------

FORM reformatclasscode USING itemplines LIKE dumihtml[].

FIELD-SYMBOLS: TYPE string.

DATA: newline TYPE string.

DATA: inewtable TYPE STANDARD TABLE OF string.

DATA: foundone TYPE abap_bool VALUE false.

LOOP AT itemplines ASSIGNING .

IF NOT IS INITIAL.

IF foundone = false.

FIND 'data' IN RESPECTING CASE.

IF sy-subrc = 0.

foundone = true.

ENDIF.

FIND 'constants' IN RESPECTING CASE.

IF sy-subrc = 0.

foundone = true.

ENDIF.

IF foundone = true.

newline = .

IF ( newline CS '.' OR newline CS '*' ).

REPLACE '!' IN WITH ''.

APPEND newline TO inewtable.

CLEAR newline.

foundone = false.

ENDIF.

ELSE.

REPLACE '!' IN WITH ''.

APPEND TO inewtable.

ENDIF.

ELSE.

CONCATENATE newline INTO newline SEPARATED BY space.

IF ( newline CS '.' OR newline CS '*' ).

APPEND newline TO inewtable.

CLEAR newline.

foundone = false.

ENDIF.

ENDIF.

ELSE.

REPLACE '!' IN WITH ''.

APPEND TO inewtable[].

ENDIF.

ENDLOOP.

itemplines[] = inewtable[].

ENDFORM. "checkComboBoxes

"reFormatClassCode

************************************************************************

***************************HTML ROUTINES********************************

************************************************************************

*-----------------------------------------------------------------------

* convertDDToHTML... Convert text description to HTML

*-----------------------------------------------------------------------

FORM convertddtohtml USING ilocdictstructure LIKE dumidictstructure[]

ilochtml LIKE dumihtml[]

value(tablename)

value(tabletitle)

value(sorttablesasc)

value(addbackground) TYPE abap_bool..

DATA: icolumncaptions TYPE STANDARD TABLE OF string WITH HEADER LINE.

DATA: wadictionary TYPE tdicttablestructure.

DATA: wahtml TYPE string.

DATA: title TYPE string.

FIELD-SYMBOLS: TYPE tdicttablestructure.

* Holds one cell from the internal table

FIELD-SYMBOLS: .

* The value of one cell form the internal table

DATA: wtextcell TYPE string.

DATA: rowcounter(3).

PERFORM buildcolumnheaders USING icolumncaptions[].

* Add a html header to the table

CONCATENATE 'Dictionary object-' tablename INTO title SEPARATED BY

space.

PERFORM addhtmlheader USING ilochtml[]

title

addbackground

ss_table.

APPEND `` TO ilochtml.

APPEND ` ` TO ilochtml.

APPEND ` ` TO ilochtml.

CONCATENATE ` Table: ` tablename '' INTO wahtml.

APPEND wahtml TO ilochtml.

CONCATENATE ` Description: ` tabletitle '' INTO wahtml.

APPEND wahtml TO ilochtml.

APPEND ` ` TO ilochtml.

APPEND ` ` TO ilochtml.

APPEND ` ` TO

ilochtml.

APPEND `` TO ilochtml.

* Do we need to sort the fields into alphabetical order

IF NOT sorttablesasc IS INITIAL.

SORT ilocdictstructure ASCENDING BY fieldname.

ENDIF.

* This is where the header fields are defined

APPEND `` TO ilochtml.

LOOP AT icolumncaptions.

CONCATENATE ` ` icolumncaptions `` INTO wahtml.

APPEND wahtml TO ilochtml.

ENDLOOP.

APPEND `` TO ilochtml.

* Add the table cells here

LOOP AT ilocdictstructure ASSIGNING .

APPEND `` TO ilochtml.

rowcounter = rowcounter + 1.

CONCATENATE ` ` rowcounter `` INTO wahtml.

APPEND wahtml TO ilochtml.

DO.

* Assign each field in the table to the field symbol

ASSIGN COMPONENT sy-index OF STRUCTURE TO

.

IF sy-subrc = 0.

MOVE TO wtextcell.

wahtml = ` `.

* Add the caption name

IF wtextcell IS INITIAL.

CONCATENATE wahtml ' ' '' INTO wahtml.

ELSE.

CONCATENATE wahtml wtextcell '' INTO wahtml.

ENDIF.

APPEND wahtml TO ilochtml.

CLEAR wahtml.

ELSE.

EXIT.

ENDIF.

ENDDO.

APPEND `` TO ilochtml.

ENDLOOP.

APPEND ` ` TO ilochtml.

APPEND ` ` TO ilochtml.

APPEND ` ` TO ilochtml.

* Add a html footer to the table

PERFORM addhtmlfooter USING ilochtml[].

ENDFORM. "checkComboBoxes

"convertDDToHTML

"convertITABtoHtml

*-----------------------------------------------------------------------

* convertCodeToHtml... Builds an HTML table based upon a text table.

*-----------------------------------------------------------------------

FORM convertcodetohtml USING icontents LIKE dumihtml[]

value(programname)

value(shortdescription)

value(sourcecodetype)

value(functiondocumentationexists)

value(ismainfunctioninclude)

value(htmlextension)

value(customernamerange)

value(getincludes)

value(getdictstructures)

value(addbackground) TYPE abap_bool.

DATA: htmltable TYPE STANDARD TABLE OF string WITH HEADER LINE.

DATA: head(255).

DATA: tail(255).

DATA: mytabix TYPE sytabix.

DATA: nextline TYPE sytabix.

DATA: hyperlinkname TYPE string.

DATA: copyofcurrentline TYPE string.

DATA: currentlinelength TYPE i VALUE 0.

DATA: copylinelength TYPE i VALUE 0.

DATA: ignorefuturelines TYPE abap_bool VALUE false.

DATA: foundasterix TYPE abap_bool VALUE false.

DATA: lowercaselink TYPE string.

DATA: wanextline TYPE string.

DATA: wacontent TYPE string.

DATA: incommentmode TYPE abap_bool VALUE 'X'.

* Add a html header to the table

PERFORM addhtmlheader USING htmltable[]

programname

addbackground

ss_code.

APPEND '' TO htmltable.

* Prgroamname and description

APPEND '' TO htmltable.

APPEND ` ` TO htmltable.

CONCATENATE ` Code listing for: ` programname ``

INTO htmltable.

APPEND htmltable.

CONCATENATE ` Description: ` shortdescription `` INTO

htmltable.

APPEND htmltable.

APPEND ` ` TO htmltable.

* Code

APPEND ` ` TO htmltable.

APPEND ` ` TO htmltable.

* Table containing code

APPEND ` ` TO htmltable.

APPEND ` ` TO htmltable.

APPEND ` ` TO htmltable.

LOOP AT icontents INTO wacontent.

mytabix = sy-tabix.

IF NOT ( wacontent IS INITIAL ).

WHILE ( wacontent CS '' ).

REPLACE '' IN wacontent WITH gt.

ENDWHILE.

IF wacontent+0(1) asterix.

IF mytabix = 1.

APPEND ` ` TO htmltable.

incommentmode = false.

ELSE.

IF incommentmode = true.

APPEND ` ` TO htmltable.

incommentmode = false.

APPEND ` ` TO htmltable.

ENDIF.

ENDIF.

currentlinelength = STRLEN( wacontent ).

copyofcurrentline = wacontent.

* Don't hyperlink anything for files of type documentation

IF sourcecodetype is_documentation.

* Check for any functions to highlight

IF ( wacontent CS callfunction ) AND ( wacontent

'DESTINATION' ).

nextline = mytabix + 1.

READ TABLE icontents INTO wanextline INDEX nextline.

TRANSLATE wanextline TO UPPER CASE.

IF wanextline NS 'DESTINATION'.

SHIFT copyofcurrentline LEFT DELETING LEADING space.

copylinelength = STRLEN( copyofcurrentline ).

SPLIT copyofcurrentline AT space INTO head tail.

SPLIT tail AT space INTO head tail.

SPLIT tail AT space INTO head tail.

* Function name is now in head

TRANSLATE head USING ''' '.

SHIFT head LEFT DELETING LEADING space.

TRY.

IF head+0(1) = 'Y' OR head+0(1) = 'Z' OR head+0(1) =

'y' OR head+0(1) = 'z' OR head CS customernamerange.

* Definately a customer function module

hyperlinkname = head.

IF sourcecodetype = is_function.

copyofcurrentline = 'call function 1.

IF wacontent+0(1) = asterix AND ignorefuturelines = false.

foundasterix = true.

ELSE.

IF foundasterix = true.

* Lets add our extra HTML lines in here

APPEND '' TO htmltable.

* Global data hyperlink

copyofcurrentline = '* '

'Function module documentation'

''

INTO copyofcurrentline.

CONCATENATE copyofcurrentline '' INTO

copyofcurrentline.

APPEND copyofcurrentline TO htmltable.

ENDIF.

foundasterix = false.

ignorefuturelines = true.

ENDIF.

ENDIF.

ENDIF.

ENDIF.

ENDIF.

* Carry on as normal

IF NOT ( wacontent IS INITIAL ).

WHILE ( wacontent CS '' ).

REPLACE '' IN wacontent WITH gt.

ENDWHILE.

IF wacontent+0(1) asterix.

IF mytabix = 1.

APPEND ` ` TO htmltable.

incommentmode = false.

ELSE.

IF incommentmode = true.

APPEND ` ` TO htmltable.

incommentmode = false.

APPEND ` ` TO htmltable.

ENDIF.

ENDIF.

currentlinelength = STRLEN( wacontent ).

* Don't hyperlink anything for files of type documentation

IF sourcecodetype is_documentation.

* Check for any functions to highlight

IF ( wacontent CS callfunction ) AND ( wacontent

'DESTINATION' ).

nextline = mytabix + 1.

READ TABLE icontents INTO wanextline INDEX nextline.

TRANSLATE wanextline TO UPPER CASE.

IF wanextline NS 'DESTINATION'.

copyofcurrentline = wacontent.

SHIFT copyofcurrentline LEFT DELETING LEADING space.

copylinelength = STRLEN( copyofcurrentline ).

SPLIT copyofcurrentline AT space INTO head tail.

SPLIT tail AT space INTO head tail.

SPLIT tail AT space INTO head tail.

* Function name is now in head

TRANSLATE head USING ''' '.

SHIFT head LEFT DELETING LEADING space.

TRY.

IF head+0(1) = 'Y' OR head+0(1) = 'Z' OR head+0(1) =

'y' OR head+0(1) = 'z' OR head CS customernamerange.

* Definately a customer function module

hyperlinkname = head.

IF sourcecodetype = is_function.

copyofcurrentline = 'call function ................
................

In order to avoid copyright disputes, this page is only a partial summary.

Google Online Preview   Download