• How to Browse TCT, PPT, FCT, PCT entries in CICS

    How to browse TCT table data? Use command DSPCICSTCT to browse entries in TCT (Terminal Control Table). Only you can browse the data, but you cannot change or delete it. How to browse PCT table data? Use command DSPCICSPCT to browse entries in PCT (Program Control Table). Only you can browse the… Read More ⇢

    How to Browse TCT, PPT, FCT, PCT entries in CICS
  • CICS COBOL Program Example

    Identification Division.==>No differencesEnvironment Division==>MUST be EMPTY in CICS Program!No SELECT statements allowed!Data Division==>No FILE SECTION – (No SELECTS) Data DivisionWORKING-STORAGE SECTION.Switches, Flags, Variables, Records, etc.You get ‘fresh’ copy each time program loaded!LINKAGE SECTION  (New Item!!)DFHCOMMAREA defined or CICS will!Used to receive data from CICS.CICS also inserts EIB Block definition Procedure… Read More ⇢

    CICS COBOL Program Example
  • IMS DB Command Code Vs Proc Option

    The real differences between IMS DB command code and Proc options. Read More ⇢

    IMS DB Command Code Vs Proc Option
  • COBOL Compiler: New Options Arch, Optimize

    Enterprise COBOL for z/OS , V5.1 introduces two significant compiler options. Related COBOL online compiler Based on new code generation and optimization technology the new ARCH -The syntax is ARCH(n). Parameter n is an integer between 6 and 10 inclusive, specifying the machine architecture for which instructions are to be… Read More ⇢

  • Top Rowset Positioning Examples for INSERT, UPDATE and DELETE

    Rowset positioning top examples on how to use it and work with multiple rows in DB2. Read More ⇢

    Top Rowset Positioning Examples for INSERT, UPDATE and DELETE
  • 4 Distinct Flavours of NetCOBOL

    NetCOBOL for .net The Fujitsu NetCOBOL® for .NET COBOL compiler enables access to the latest web technologies. COBOL applications can easily integrate with Internet XML Web Services and ASP.NET applications. The NetCOBOL for .NET compiler produces Microsoft’s® Intermediate Language (MSIL) that executes under the Common Language Runtime (CLR). This language-neutral,… Read More ⇢

    4 Distinct Flavours of NetCOBOL
  • JCL: How to Use Separator in DFSORT

    Here’s the best example of how you can insert separators in DFSORT. In the above example, inserting ‘*’ 20 times is a separator. Top valid separators: The usage of separators you can find here is OUTREC, IFTHEN, and OVERLAY statement. Wherein the actual values are overlaid with separators. Downloads Read More ⇢

    JCL: How to Use Separator in DFSORT
  • COBOL PERFORM Varying with UNITIL Logic

    COBOL Perform Varying Until logic useful to search a Table or an Array. Read More ⇢

    COBOL PERFORM Varying with UNITIL Logic
  • DB2: What’s Stored Procedure

    Today’s post What is stored procedure? How many types of stored procedures? What are those? A stored procedure  is a user-written program that can be called by an application with an SQL CALL statement. It is a compiled program that is stored at a DB2 server, and can execute SQL statements. Stored… Read More ⇢

    DB2: What’s Stored Procedure