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

COBOl program logic


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

New User


Joined: 15 Oct 2009
Posts: 23
Location: Pune

PostPosted: Wed Jul 21, 2010 8:14 pm
Reply with quote

Hello everyone,

I have to modify a program,

This program reads one input file & based on the cust-ID, it determines the type of customer ( say- cust type- A, B, C etc. This cust-type is retrieved from Db2 tables).
At present, all cust-types are processed with the same logic… Now I need to update the program to process the records with cust-type “A” with special logic & all other types as before…

Problem is that my client is going to change very frequently the processing of different cust type & thus wish to make this process dynamic…
i.e. in future there should not be any software change needed to change the processing of customer type… only Db2 table changes/parameter changes should be needed…

I’ll further clarify, Today I am processing Cust-Type A with special logic & all other types with general logic,
tomorrow I may need to process cust-type B with special logic & all other types with general logic… and all this without changing the program..i .e. only table data/parameters changes are allowed… Please suggest how to approach the problem?

I think we can pass a parameter to program with values of those cust-types which should be processed with special logic, program will read the records and validate the types against these parms & can process them as needed.. please suggest me what other way this can be handled?

Many Thanks & regards, icon_smile.gif
Back to top
View user's profile Send private message
naveensrimf

New User


Joined: 04 Oct 2005
Posts: 34

PostPosted: Wed Jul 21, 2010 8:20 pm
Reply with quote

Hi,

don't change any existing logic.Just delcare Dynamic varaibles and change the program as per new dyanmic varaibles and Add your new functionality.
Back to top
View user's profile Send private message
Deja vu

New User


Joined: 15 Oct 2009
Posts: 23
Location: Pune

PostPosted: Wed Jul 21, 2010 8:41 pm
Reply with quote

Thanks for your quick responce...
Actually I have never dealt with dynamic variable, could you please suggest where to look for more detailed info on this?

naveensrimf wrote:
Hi,

don't change any existing logic.Just delcare Dynamic varaibles and change the program as per new dyanmic varaibles and Add your new functionality.
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: Wed Jul 21, 2010 8:56 pm
Reply with quote

Hello,

As long as all of the customer types can be handled by existing code a solution could be to have an external control table or database table that says which customer type should use which code/routine. There would be one entry per customer type.

If a customer type is to switch from one set of code to another all that needs be done is modify the control table.

If a new set of code is needed to handle something not yet defined, then the process would have to be modified to incorporate the new processing code.
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 Replace each space in cobol string wi... COBOL Programming 3
No new posts Using API Gateway from CICS program CICS 0
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts COBOL ZOS Web Enablement Toolkit HTTP... COBOL Programming 0
No new posts Calling DFSORT from Cobol, using OUTF... DFSORT/ICETOOL 5
Search our Forums:

Back to Top