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

Want to move data dynamically


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

New User


Joined: 20 Oct 2004
Posts: 59

PostPosted: Mon Oct 09, 2006 1:50 pm
Reply with quote

Hi all,
I have the following requirement :

- I have an input COMMAREA of say 32K used by more than pgm
- At present, the program inspects it for some values and moves this commarea to working storage variable (declared as 32K)

Now, i don't want to declare the WS variable of 32K in pgm and depending on what length is passed i want to declare my variable.

Also each pgm uses specefic length of Commarea i.e.
Pgm1 uses say only first 1000 bytes of Commarea
Pgm2 uses say only first 1750 bytes of Commarea
and so on......

But i don't want to calculate the length of bytes for each pgm before COMMAREA move.

Rather than that i want to use only that data length which is being passed from COMMAREA as this 'll save CPU time by not dng INSPECT till end of 32K bytes.

Say COMMAREA passed only 100 bytes to pgm A(WS declared as 5k), now my pgm should not inspect all the 32K bytes.

Can anyone help me on this.
Back to top
View user's profile Send private message
UmeySan

Active Member


Joined: 22 Aug 2006
Posts: 771
Location: Germany

PostPosted: Mon Oct 09, 2006 3:52 pm
Reply with quote

Hi !

I think, you could test the length of the receiving ComArea.
I allways do that in my Asm-Cics-Pgms.

CLC EIBCALEN,=H'0' Test COMMAREA zero
BE ZZ10 Yes, no XCTL/LINK from another Pgm

Regard's UmeySan
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 Store the data for fixed length COBOL Programming 1
No new posts Data set Rec-Cnt and Byte-Cnt Testing & Performance 2
No new posts SCOPE PENDING option -check data DB2 2
No new posts Check data with Exception Table DB2 0
No new posts JCL EXEC PARM data in C Java & MQSeries 2
Search our Forums:

Back to Top