Skip to main content

Posts

Mainframe - WORK SHOP on Project Case Study

Mainframe - WORK SHOP on Project Case Study · Work shop is executed at its own standards(mainframes). · Work shop runs for 15 Days (2hrs of Theory + lab unlimited) · Follows Water Fall SDLC o Impact Analysis o Estimation o Design o Coding o Testing · Technical Approach/s to solve problems/abends · Refreshing Important Technical Concepts · Usage of various tools · Write to mfdtech@gmail.com for day-day schedule/ for Demo. Class Room S
Recent posts

Mainframe Consultants / Programmers

Mainframe Consultants / Programmers are available immediately to work on  Mainframe Projects across the globe.  Contact me (arunam7@gmail.com or mfdtech@gmail.com )  to discuss further if below are your requirements 1 . Would like to Outsource the Projects ? 2.  Need Experienced Consultants to work at client Place 3.  Need Freshers / Trained Mainframe programmers to work at client Place 4.  Mainframe Training for Corporate 5. Recruitment assistance   

Freshers 2017 / 2018 Passout Graduates Job oppurtunity with MNCs

Freshers 2017/2018  Passout Graduates -  Job oppurtunity with MNCs Prerequisites 1.  Should have 65 % and above through out 10/10+2 /BE/MCA 2.  All Branches 3.  Year of Passing 2017 and 2018 4.  Send your Resume to mfdtech@gmail.com      Subject line :  Location/PassOut/Branch/%Marks                          Eg :  HYD-2018 - CSE - 70% I will write back to you with the process involved

Match_merge_logic

MATCH - MERGE     LOGIC   Match Merge logic is extensively used in COBOL programs to compare the data in two sequential files effectively. Only pre-requisite to for using this logic is, all input files to be in Sorted Order   Problem : I have 2 Sequential files File 1   and File 2 .                  If Record exists in both the files then write data into FILE A                                If Record exists only in File1 and not in File2 then write data into FILE B                  If Record exists only in File2 and not in File1 then write data into FILE C   Solution: The effective way of solvi ng above problem is, by using Match Merge Logic. Only pre-requisite to for using this logic is, all input files to be in Sorted Order.  First step sort I/P file   Explanation of Logic : Below listed are I/P and Output files data for say RollNo   File 1                   File 2                         FILE A                     FILE B                              FILE C 10          

Inter_View_Qns2

  1.     Where do we use TSQs                  Data in TSQ is stored as VSAM files a.     Pageup and Pagedown Logic b.     For writing Log Details (as we cant use Displays in CICS)   2.     How do we access the TSQ using a Key field a.     Using RIDFIELD   3.     What is Sync Point and why is called as 2 Phase Commit a.     Sync point is issued to save the data till that LUW. b.     This is called as 2 Phase commit as , first it saves the data pertaining to File, Db2 then CICS data. 4.     I would like to generate only Input field (along with A, F, L) and not Output files in my Symbolic Map, how to achieve this ? a.     Use Mode = IN   , in BMS macro 5.     How do you position your cursor on Map. a.     Code   IC, in Attribute field of BMS macro of respective field b.     Move -1 to Length field of respective field c.     Using SEND MAP    CURSOR ( 100 ) 6.     How do you test Physical Map layout in CICS region. a.     Use CECI send Map () Mapset() 7.     What’s the debugging tool

DB2-IMS - Few Difference

Cobol-DB2 Cobol -IMS 1 Need to Prcompile to generate 1. DBRM (Sql Staments only) 2. Cobol Object code No Precompilation Required 2 Bind the DBRM to Generate Plan. Plan consists of Executable SQL Quries No Bind Process is Required. Here we Write PSBs to fetch respective Record. 3 Compile Cobol Code Compile Cobol-Ims program 4 Execute Cobol - DB2 Program using IKJEFT01, where in we Specify Program Name and Plan Name to be Executed Execute Cobol-IMS program using DFSRRC00. Pass Program Name , PSB, Name, Plan name Thru Parm Parameter Why We need BIND In DB2 not in IMS Say below query is written in Cobol-Db2 Program Equivalent IMS Call 1 Select A, B, C First Define PCB to Fetch the field A, B, C Where A=10 Using DLI Call fetch the field A, B,

How to Solve SOC7 Abend - with screen shots

Below process helps to find out the statement, caused the SOC7 error. Check the Sysout of RUNJCL . This shows the error statement and lists offset value Take the Offset Value 000003C0 Got to respective Compilation Job listing, check the sysprint Search for the offset value 0003C0 (delete +00 -- initial 3 letters of Offset value and search for it) check below 2 screen shots This Offset value is listed under line no 0045 – which refers to Move statement. Take this no. 045 and find for it in same sysprint. This points to the exact statement, caused SOC7 T his 045 pints to the Move statement 1526, this is the exact line in the program Check for the above line no. In source program . This points to the statement highlighted below . Check the statement, variable check-4, which is added to check-6. These are having different Picture clause. check-4 is alfhanumaric, holding some junk data, when this data is moved to Chcek-6 variable(of comp-3) creates SOC7 error. This is just an example to e