× Discuss on Template programming, jBASE programming, Enquiries, No-File enquiry, Enquiry routines, Version, Version routines, Menus, Abbriviations, Creating local reference fields, Fast path enquiries, Creating charts and graphs, Generating Reports, Deal slips, Straight through processing, Multi Company and Multi Book setup, Tabbed screens, Composite Screens, T24 API, etc...

Delivery

More
12 years 9 months ago #8594 by JOSHH
Delivery was created by JOSHH
Hi,

What is a delivery module ? how is it used in cheque printing ?

i have a requirement to use the Delivery module to get message and print it in cheque after the Loan is created.

any idea how this is done ?

best regards...

Please Log in or Create an account to join the conversation.

More
12 years 9 months ago #8598 by AMMAR.FAIDI
Replied by AMMAR.FAIDI on topic Re: Delivery
HI
it's a module that is responsible of creating messages to be delivered to the customer like ( SMS .EMAIL , SWIFT , PRINTING OF ADVICES ...etc ) how it can be used this need a setup from TEMENOS side and customization from client side
B.R

Please Log in or Create an account to join the conversation.

More
12 years 9 months ago #8601 by Reto
Replied by Reto on topic Re: Delivery
Hi,
find attached a quick summary on the most relevant tables invovled.
Based on this and together with the helptext you should be able to do the setup.
(Once you've understood the logic of the delivery module it's not that hard anymore and can easily be done by you)

cheers
Reto
Attachments:

Please Log in or Create an account to join the conversation.

More
12 years 9 months ago #8612 by JOSHH
Replied by JOSHH on topic Re: Delivery
thx reto..

any examples of delivery routines attached to DE.MAPPING ? I assume this routine populates additional values in the APPLICATION.HANDOFF which is then formatted for desired printing.

Please Log in or Create an account to join the conversation.

More
12 years 9 months ago #8615 by nsureshb
Replied by nsureshb on topic Re: Delivery
Hi Josh

Find below a small sample mapping program.

*QUOTE
SUBROUTINE DE.MAP(MAT MM.HANDOFF.REC,ERR.MSG)

*MM.HANDOFF.REC - This is the handoff array which is later passed to APPLICATION.HANDOFF
* and the values are populated in the handoff record. Usually the user defined or
* user populated values start at position 9 [MM.HANDOFF.REC(9)] but other values
* can also be manipulated but with care.

IF MM.HANDOFF.REC(2)<75> = '' THEN
INT.CCY = MM.HANDOFF.REC(2)<82>
ZERO = 0
CALL SC.FORMAT.CCY.AMT(INT.CCY,ZERO)
MM.HANDOFF.REC(2)<75> = ZERO ;*manipulation of core populated values
END
MM.HANDOFF.REC(9)<1> = "THIS IS A SAMPLE ROUTINE"
RETURN
*UNQUOTE

Hope this helps.
Cheers
SB

Please Log in or Create an account to join the conversation.

More
11 months 2 weeks ago #24146 by ghulamraza
Replied by ghulamraza on topic Re: Delivery
Hi Friend

Can you share such an additional mapping routine for LC application (DE.MAPPING 700.LC.4) where my requirement is to display OLD.LC.NUMBER core field but as per our local business practice, this field data is auto generated through version auth.routine upon authorization of LC to maintain a local LC number serial like LCSF9001S1326/22.

In LC Handoff Record, position of this field 7.28 that showing TF2213600094 ID bcz when core system prepareS LC handoff record this field comes with blank local lc number therefore system updated core TF number.

Regards/RAZA

Please Log in or Create an account to join the conversation.

Time to create page: 0.146 seconds