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

Creating XML Files - XML GENERATE, XML PARSE


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
shanmudhaya

New User


Joined: 03 Jun 2008
Posts: 3
Location: Inida

PostPosted: Mon Sep 15, 2008 8:55 pm
Reply with quote

Hi,
I have one main module that contains the XML generate statement and the submodule does the XML parsing. I have open and close statments for the output files in both the modules and write the XML data in the output file in the called module. Since it calls the submodule so many times, the job took much time to complete. I tried removing the open and close statements in called module and retain only write statements in the called module. But i got the protection exception. Could anyone help me on this?

Mainmodule: XXXXMAIN
Sub Module: XXXXSUB

XML GENETARE:
XML GENERATE WS-XML-OUTPUT-DATA
FROM INPUTDATA
COUNT IN WS-XML-CHAR-COUNT.

XML PARSING IN SUBMODULE:
XML PARSE XXXXSUB-XML-IN-REC
PROCESSING PROCEDURE 03100-XML-PARSE
ON EXCEPTION
DISPLAY 'PROBLEM IN ' XXXXSUB-PGM-NAME
DISPLAY 'XML ERROR CODE: ' XML-CODE
DISPLAY 'XML RECORD: ' XXXXSUB-XML-IN-REC
MOVE WS-LAST-PARA
TO XXXXSUB-ERROR-PARA
SET XXXXSUB-INVALID-INPUT
TO TRUE
MOVE WS-INVALID-INPUT-XML
TO XXXXSUB-ERROR-MSG
END-XML

or

Is there any option to reduce the running time and space?

Thanks!!!
Regards,
Raja
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Mon Sep 15, 2008 11:22 pm
Reply with quote

Hello,

Quote:
But i got the protection exception
A protection exception is usually not a space issue. Protection exceptions often occur when storage gets "walked on".

Quote:
the job took much time to complete.
Please define "much time". Do you mean cpu time or elapsed time or something else?
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 -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Compare 2 files and retrive records f... DFSORT/ICETOOL 0
No new posts Compare 2 files(F1 & F2) and writ... JCL & VSAM 8
No new posts PARSE Syntax for not fix length word ... JCL & VSAM 7
No new posts Write line by line from two files DFSORT/ICETOOL 7
No new posts Compare only first records of the fil... SYNCSORT 7
Search our Forums:

Back to Top