Presentation is loading. Please wait.

Presentation is loading. Please wait.

HORIZONT 1 XINFO ® The IT Information System Cobol HORIZONT Software for Datacenters Garmischer Str. 8 D- 80339 München Tel ++49(0)89 / 540 162 - 0 www.horizont-it.com.

Similar presentations


Presentation on theme: "HORIZONT 1 XINFO ® The IT Information System Cobol HORIZONT Software for Datacenters Garmischer Str. 8 D- 80339 München Tel ++49(0)89 / 540 162 - 0 www.horizont-it.com."— Presentation transcript:

1 HORIZONT 1 XINFO ® The IT Information System Cobol HORIZONT Software for Datacenters Garmischer Str. 8 D- 80339 München Tel ++49(0)89 / 540 162 - 0 www.horizont-it.com XINFO

2 HORIZONT 2 XINFO ® XINFO and Cobol General program information Copy (which program uses which copy member) Copy Call (which program calls which program) Call Graphics (“inter language” call graph) Graphics Select/assign, file access, file section (file usage) Select/assign, file access, file section DB2 access (EXEC SQL Statements) DB2 access CICS access (EXEC CICS) CICS access DLI access (IMS, EXEC DLI and CBLTDLI) DLI access Variable declarations, variable usage Unused code Comments XINFO‘s Cobol interface gives you access to following information:

3 HORIZONT 3 XINFO ® Cobol - General Info Search for programs by specifying attributes, eg - uses SQL - more than 1000 lines of code - was changed after a certain date

4 HORIZONT 4 XINFO ® Cobol - General Info Program names SQL, CICS, DLI etc. Y/N Code line qty Comments qty Load module name: source member or program id or external translation

5 HORIZONT 5 XINFO ® Cobol - Copy Which programs are using this copy member?

6 HORIZONT 6 XINFO ® Cobol - Copy Programs Copy statement found Nesting Level (Copy in Copy) Replacing Y/N SQL include Y/N

7 HORIZONT 7 XINFO ® Cobol - Copy Right mouse click eg shows copy member

8 HORIZONT 8 XINFO ® Cobol - Copy Next example: declaration of a program name

9 HORIZONT 9 XINFO ® Cobol - Call Select option 3 - Call

10 HORIZONT 10 XINFO ® Cobol - Call Which programs are calling this program?

11 HORIZONT 11 XINFO ® Cobol - Call Calling programs Section within the program (not used in this example) Called program Variable name Parameters

12 HORIZONT 12 XINFO ® Cobol - Call Right mouse click eg shows source member

13 HORIZONT 13 XINFO ® Cobol - Call Source with dynamic call. A previous „MOVE pgmname to varname" was translated by XINFO‘s scanner.

14 HORIZONT 14 XINFO ® Cobol Call Question: which programs are called by “DSN8CC0”?

15 HORIZONT 15 XINFO ® Cobol Call Answer: DSN8CC0 calls two programs (which may contain more program calls)

16 HORIZONT 16 XINFO ® Programs Call Program call shows all calls over multiple levels, independently of the used program language! Which programs are called by DSN8CC0?

17 HORIZONT 17 XINFO ® Programs Call All calls over all levels

18 HORIZONT 18 XINFO ® Programs Call Graph Click on All – GRAPH – Programs Call Diagram… … or right click on any record – GRAPH – Programs Call Diagram

19 HORIZONT 19 XINFO ® Programs Call Graph This chart shows all program calls clearly

20 HORIZONT 20 XINFO ® Cobol - Files Here you can get information about: file definitions file access (read/write) etc

21 HORIZONT 21 XINFO ® Cobol - Files Search for Main Program “DSN8*” and Assignment- Name “*-S-*”

22 HORIZONT 22 XINFO ® Cobol – SELECT/ASSIGN File/DD name ”assignments” and the parameters (taken from File-Control). FILE-CONTROL. SELECT REPOUT ASSIGN TO UT-S-REPORT.

23 HORIZONT 23 XINFO ® Cobol – File Section Select option 6 – File Section

24 HORIZONT 24 XINFO ® Cobol – File Section File attributes from file description, eg record length, record mode etc. FILE-CONTROL. SELECT REPOUT ASSIGN TO UT-S-REPORT. FILE SECTION. FD REPOUT RECORD CONTAINS 120 CHARACTERS LABEL RECORDS ARE OMITTED DATA RECORD IS REPREC. 01 REPREC PIC X(120).

25 HORIZONT 25 XINFO ® Cobol – File Access Search for Main Program “DSN8*” and Assignment- Name “*-S-*”

26 HORIZONT 26 XINFO ® Cobol – File Access „File access" shows all file operations

27 HORIZONT 27 XINFO ® Cobol – File Access Right mouse click eg to show JCL DD statements (XINFO’s JCL scanner is needed)

28 HORIZONT 28 XINFO ® JCL – DSN DSN and other JCL-parameters

29 HORIZONT 29 XINFO ® Cobol – DB2 Access Select option 7 – DB2 Access

30 HORIZONT 30 XINFO ® Cobol – DB2 Access Question: Which programs are using DB2 table "VDEPT"?

31 HORIZONT 31 XINFO ® Cobol – DB2 Access Programs In case of "Type=Table" column "Object" shows the name of the table SQL action

32 HORIZONT 32 XINFO ® Cobol – DB2 Access Search for Main Program “DSN8CC2”

33 HORIZONT 33 XINFO ® Cobol – DB2 Access All used columns are shown

34 HORIZONT 34 XINFO ® Cobol – DB2 Access Search programs by "used columns"

35 HORIZONT 35 XINFO ® Cobol – DB2 Access The column "DEPTNO" is used in several tables by several programs

36 HORIZONT 36 XINFO ® Cobol – Variable Question: In which programs is the variable "DEPTNO" defined?

37 HORIZONT 37 XINFO ® Cobol – Variable In this example "DEPTNO" is defined in two programs Left double mouse click shows the complete record

38 HORIZONT 38 XINFO ® Cobol – Variable The details of the record

39 HORIZONT 39 XINFO ® Cobol – Variable usage

40 HORIZONT 40 XINFO ® Cobol – Variable usage "Variable usage" shows exactly "where and how" variables are used in your programs.

41 HORIZONT 41 XINFO ® Cobol – Variable usage Right mouse click to browse the “Member with Var-Ref”

42 HORIZONT 42 XINFO ® Cobol – Variable usage The result

43 HORIZONT 43 XINFO ® Cobol – CICS Access Example: Search for all "EXEC CICS" in programs "DSN8C*"

44 HORIZONT 44 XINFO ® Cobol – CICS Access "CICS Access" shows all CICS actions and the parameters. LINK and XCTL is shown in the call table as well as in the call graph

45 HORIZONT 45 XINFO ® Cobol – DLI Access Search for DLI calls

46 HORIZONT 46 XINFO ® Cobol – DLI Access IMS actions and parameters. Search for strings in DLI statements

47 HORIZONT 47 XINFO ® Cobol – Unused Code

48 HORIZONT 48 XINFO ® Cobol – Unused Code Program From line, to line Shows program lines that are never called

49 HORIZONT 49 XINFO ® Cobol – Comments Program Line Comment Division

50 HORIZONT 50 XINFO ® Cobol – Comments Search for strings, eg *CICS* in all comments

51 HORIZONT 51 XINFO ® Cobol – Comments All comments with *CICS*

52 HORIZONT 52 XINFO ® Any questions about XINFO and Cobol? Yes? info@horizont-it.com

53 HORIZONT 53 XINFO ® Many thanks for your attention! HORIZONT Software for Datacenters Garmischer Str. 8 D- 80339 München Tel ++49(0)89 / 540 162 - 0 www.horizont-it.com The IT Information System XINFO


Download ppt "HORIZONT 1 XINFO ® The IT Information System Cobol HORIZONT Software for Datacenters Garmischer Str. 8 D- 80339 München Tel ++49(0)89 / 540 162 - 0 www.horizont-it.com."

Similar presentations


Ads by Google