IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

problem in running MPP program


IBM Mainframe Forums -> IMS DB/DC
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
suman_sen

New User


Joined: 23 Jan 2007
Posts: 3
Location: India

PostPosted: Wed Feb 07, 2007 6:15 pm
Reply with quote

hi,
i am trying to run an an IMS application program (MPP program)
but when i am firing the transaction the program is abending .
can any one tell me how to run it succesfully.

i am using the below PSB
PCB TYPE=TP,ALTRESP=YES,MODIFY=YES
PCB TYPE=GSAM,DBDNAME=IVPDB5,PROCOPT=G
PCB TYPE=GSAM,DBDNAME=IVPDB5,PROCOPT=L
PSBGEN LANG=PLI,PSBNAME=SN0200,CMPAT=YES
END

and the application program is

SN0200: PROC($PCB1,$PCB2,$PCB3) OPTIONS (MAIN) REORDER;
DCL ADDR BUILTIN;
DCL PLITDLI ENTRY;
DCL $PCB1 PTR;
DCL $PCB2 PTR;
DCL $PCB3 PTR;
DCL DBPTR PTR;
DCL 1 PCBAREA BASED(DBPTR),
2 DBDNAME CHAR(08);
DCL SIOAREA CHAR(500);
DCL $SIOAREA PTR;
$SIOAREA=ADDR(SIOAREA);
DCL 1 DBPCB BASED($PCB3),
2 DBD CHAR (08),
2 LEV CHAR (02),
2 STC CHAR (02),
2 RES1 CHAR (08),
2 SENA CHAR (08),
2 RES2 CHAR (08),
2 KBA CHAR (100);


PUT SKIP LIST('INSIDE PROGRAM SN0100 ');
DBPTR = $PCB1;
PUT SKIP LIST('DATABASE NAME IS : ' || DBDNAME);
DBPTR = $PCB2;
PUT SKIP LIST('DATABASE NAME IS : ' || DBDNAME);
DBPTR = $PCB3;
PUT SKIP LIST('DATABASE NAME IS : ' || DBDNAME);
CALL PLITDLI(3,'GU',$PCB1,$SIOAREA);
END SN0200;
Back to top
View user's profile Send private message
Bitneuker

CICS Moderator


Joined: 07 Nov 2005
Posts: 1104
Location: The Netherlands at Hole 19

PostPosted: Wed Feb 07, 2007 6:44 pm
Reply with quote

Could you provide us with some detailed information about the abend? And why is the PCB duplicate with PROCOPT=G and L? Meanwhile have a look at some documentation about GSAM
Back to top
View user's profile Send private message
suman_sen

New User


Joined: 23 Jan 2007
Posts: 3
Location: India

PostPosted: Thu Feb 08, 2007 12:33 pm
Reply with quote

hi
we are getting the following abend code

+DFS0578I - READ SUCCESSFUL FOR DDNAME PROCLIB MEMBER = DFSINTDC IMS1
IEA995I SYMPTOM DUMP OUTPUT 223
USER COMPLETION CODE=0551
Back to top
View user's profile Send private message
Devzee

Active Member


Joined: 20 Jan 2007
Posts: 684
Location: Hollywood

PostPosted: Thu Feb 08, 2007 12:57 pm
Reply with quote

I dont think this is an MPP program.

Is this BMP ? can you share the execution jcl?
Back to top
View user's profile Send private message
krishna_mf

New User


Joined: 31 Jan 2007
Posts: 56
Location: banglore

PostPosted: Thu Feb 08, 2007 3:10 pm
Reply with quote

hi
we are getting the following abend code while running the MPP program

IBM0204S ONCODE=84 The UNDEFINEDFILE condition was raised because a DD statemenent or CMS FILEDEF was not used in ('ONF
ILE'= SYSPRINT).
From compile unit SN0200 at entry point SN0200 at compile unit offset at entry offset +000000DA at
address 098029B2.

we are using the following trasaction definition to run the program
SPACE 2
APPLCTN PSB=DFSIVPE,PGMTYPE=TP //* NON-CONV MPP *//
TRANSACT CODE=SN020,MODE=SNGL,
MSGTYPE=(SNGLSEG,NONRESPONSE,1)
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> IMS DB/DC

 


Similar Topics
Topic Forum Replies
No new posts Using API Gateway from CICS program CICS 0
No new posts Running REXX through JOB CLIST & REXX 13
No new posts Map Vols and Problem Dataset All Other Mainframe Topics 2
No new posts DB2 Event passed to the Application P... DB2 1
No new posts How to pass the PARM value to my targ... COBOL Programming 8
Search our Forums:

Back to Top