View previous topic :: View next topic |
Author |
Message |
rek Beginner
Joined: 19 Dec 2004 Posts: 9 Topics: 2 Location: Chennai, India
|
Posted: Sun Dec 19, 2004 7:13 pm Post subject: Any pointers to documents on MAPLESS transactions... |
|
|
Hi Board,
Is there a place where I can get documents on MAPLESS transaction? _________________ Thanks,
Rek |
|
Back to top |
|
 |
Bithead Advanced

Joined: 03 Jan 2003 Posts: 550 Topics: 23 Location: Michigan, USA
|
Posted: Mon Dec 20, 2004 12:00 pm Post subject: |
|
|
Please can you explain what a MAPLESS transaction is? |
|
Back to top |
|
 |
rek Beginner
Joined: 19 Dec 2004 Posts: 9 Topics: 2 Location: Chennai, India
|
Posted: Tue Dec 21, 2004 4:51 pm Post subject: |
|
|
MAPLESS transactions are like MPPs which does not have a MAP (Screen ). This are like SUBROUTINES, but they will play independent of the calling program. Something like a seperate thread.
Hope this clarifies... _________________ Thanks,
Rek |
|
Back to top |
|
 |
Bithead Advanced

Joined: 03 Jan 2003 Posts: 550 Topics: 23 Location: Michigan, USA
|
Posted: Wed Dec 22, 2004 9:44 am Post subject: |
|
|
CICS has maps. IMS has formats. Data in formats is converted to messages by the Message Formatting Service (MFS).
Any transaction can be invoked without a format if the data is keyed in correctly. Iit is just easier not to do it that way in most cases. The coding of a non-MFS invoked transaction is basically the same as one with a format.
I usually refer to the IMS Application Programming Guides but these are not easy to read so you might want to start with the Red Book primer from IBM. A quick search on the internet brought up some other information as well. |
|
Back to top |
|
 |
rek Beginner
Joined: 19 Dec 2004 Posts: 9 Topics: 2 Location: Chennai, India
|
Posted: Wed Dec 22, 2004 1:50 pm Post subject: |
|
|
Thanks Bithead.
Quote: |
The coding of a non-MFS invoked transaction is basically the same as one with a format.
|
If there is MFS then the message from the MPP is returned to the terminal. For a non-MFS invoked transaction, how could we capture the reply from the transaction. Also How to invoke such transactions in a BMP or a regular MPP.
Quote: |
A quick search on the internet brought up some other information as well.
|
Could you pls share the info you got through internet? If you have a sample code, that would be great!!! _________________ Thanks,
Rek |
|
Back to top |
|
 |
Bithead Advanced

Joined: 03 Jan 2003 Posts: 550 Topics: 23 Location: Michigan, USA
|
Posted: Wed Dec 22, 2004 1:56 pm Post subject: |
|
|
To invoke the background transaction from a BMP or another MPP, insert a message (ISRT) to an alternate PCB (where TYPE=TP) that is either explicitly coded with the transaction in the PSB (NAME=) or is assigned using the CHNG call.
The search trems that I used were +IMS +TRANSACTION. At least one hit should be the IBM Primer. |
|
Back to top |
|
 |
|
|