T24 : AUT.NEW.CONTENT

1,659 views
Skip to first unread message

M Rizwan

unread,
Feb 10, 2010, 7:54:08 AM2/10/10
to jb...@googlegroups.com
T24 : R06

Will it be possible to assign a default value(current system date) to
a date field thru
AUT.NEW.CONTENT at VERSION level.

Will "COMI" can be used in a subroutine attach to AUT.NEW.CONTENT to
default this value?

Thanks

K. Ouassa

unread,
Feb 10, 2010, 4:11:24 PM2/10/10
to jb...@googlegroups.com
Rizwan

Can you try this, as per attached doc.

Regards

OUASSA K.



 
> Date: Wed, 10 Feb 2010 15:54:08 +0300
> Subject: T24 : AUT.NEW.CONTENT
> From: raaif....@gmail.com
> To: jb...@googlegroups.com

> --
> Please read the posting guidelines at: http://groups.google.com/group/jBASE/web/Posting%20Guidelines
>
> IMPORTANT: Type T24: at the start of the subject line for questions specific to Globus/T24
>
> To post, send email to jB...@googlegroups.com
> To unsubscribe, send email to jBASE-un...@googlegroups.com
> For more options, visit this group at http://groups.google.com/group/jBASE?hl=en


Hotmail : une messagerie fiable avec la protection anti-spam performante de Microsoft Inscrivez-vous

Defaulting today date.doc

FY Choong

unread,
Feb 11, 2010, 10:41:07 AM2/11/10
to jb...@googlegroups.com
you can attach routine EB.DEFAULT.TODAY in AUT.NEW.CONTENT and it will
default system today's date.

> --
> Please read the posting guidelines at: http://groups.google.com/group/jBASE/web/Posting%20Guidelines
>
> IMPORTANT: Type T24: at the start of the subject line for questions specific to Globus/T24
>
> To post, send email to jB...@googlegroups.com
> To unsubscribe, send email to jBASE-un...@googlegroups.com
> For more options, visit this group at http://groups.google.com/group/jBASE?hl=en
>

--
Thank you and Regards,
Foong Yee

M Rizwan

unread,
Feb 11, 2010, 3:23:48 PM2/11/10
to jb...@googlegroups.com
Thanks dudes for your comments and support.
I am lucky for this case that  'out of the box' routine is available to get the bank date.
 
But what if the need is to attached some values through our own program. Is it same like a field level routine where COMI or R.NEW is used to assign the values?
 
Thanks and Kind Regards
 
Riz.
Rizwan

Yohan

unread,
Feb 11, 2010, 4:49:35 PM2/11/10
to jb...@googlegroups.com
Hi

This is what happen inside the routine since this is not a sensitive routine i am publish it here

     SUBROUTINE EB.DEFAULT.TODAY
*
** This subroutine will default TODAY into local currency
** automatically from VERSION validation if defined
*
$INSERT I_COMMON
$INSERT I_EQUATE
*
      YAF = AF ; YAV = AV ; YAS = AS
      IF NOT(YAV) THEN YAV = 1
      IF NOT(YAS) THEN YAS = 1
*
      IF R.NEW(AF)<1,YAV,YAS> = "" THEN
         COMI = TODAY
      END
*
      RETURN
*
   END

Best Regards
Yohan

M Rizwan

unread,
Feb 12, 2010, 5:18:11 AM2/12/10
to jb...@googlegroups.com
Thanks Yohan,Choong,Quossa,Vladislav for your kind feedbacks.
We will close this issue here.
 
Best Wishes

jaro

unread,
Feb 15, 2010, 7:24:55 AM2/15/10
to jBASE
not sure whether this will work. because the above mentioned routine
is scheduled as validation routine at field check returning the date
assigned under COMI variable. in auto new content routine the routine
should assign the value into R.NEW dim array, not the COMI variable.

On Feb 12, 11:18 am, M Rizwan <raaif.riz...@gmail.com> wrote:
> Thanks Yohan,Choong,Quossa,Vladislav for your kind feedbacks.
> We will close this issue here.
>
> Best Wishes
>

> >   On Thu, Feb 11, 2010 at 9:23 PM, M Rizwan <raaif.riz...@gmail.com>wrote:
>
> >>   Thanks dudes for your comments and support.
> >> I am lucky for this case that  'out of the box' routine is available to
> >> get the bank date.
>
> >> But what if the need is to attached some values through our own
> >> program. Is it same like a field level routine where COMI or R.NEW is used
> >> to assign the values?
>
> >> Thanks and Kind Regards
>
> >> Riz.
>

> >> On 11 February 2010 18:41, FY Choong <fycho...@gmail.com> wrote:
>
> >>> you can attach routine EB.DEFAULT.TODAY in AUT.NEW.CONTENT and it will
> >>> default system today's date.
>

> >>> On Wed, Feb 10, 2010 at 8:54 PM, M Rizwan <raaif.riz...@gmail.com>

paapu a.t.

unread,
Feb 15, 2010, 8:36:27 AM2/15/10
to jb...@googlegroups.com
Hello All,
 
Try this set up,,
Instead of attaching a routone at to default TODAY.

R09 Test VERSION, SEE

PGM.NAME.VERSION.. FUNDS.TRANSFER,ATR

------------------------------------------------------------------------------

2 RECORDS.PER.PAGE.. 1

3 FIELDS.PER.LINE... 1

4. 1 LANGUAGE.CODE.. 1 English

46 NO.OF.AUTH........ 0

50. 1 AUTOM.FIELD.NO. DEBIT.VALUE.DATE DEBIT.VALUE.DATE

52. 1 AUT.NEW.CONTENT !TODAY

 

Thanks & regards,

atr



On Mon, Feb 15, 2010 at 5:54 PM, jaro <ja...@jarmal.net> wrote:
not sure whether this will work. because the above mentioned routine
is scheduled as validation routine at field check returning the date
assigned under COMI variable. in auto new content routine the routine
should assign the value into R.NEW dim array, not the COMI variable.

On Feb 12, 11:18 am, M Rizwan <raaif.riz...@gmail.com> wrote:
> Thanks Yohan,Choong,Quossa,Vladislav for your kind feedbacks.
> We will close this issue here.
>
> Best Wishesou
>

jaro

unread,
Feb 15, 2010, 2:11:52 PM2/15/10
to jBASE
Atr is right, you can use some basic variables e.g. !TODAY directly,
but ensure your t24 release support it. it has been introduced in
recent releases.

On Feb 15, 2:36 pm, "paapu a.t." <mypa...@gmail.com> wrote:
> Hello All,
>
> Try this set up,,
> Instead of attaching a routone at to default TODAY.
>

> *R09 Test* *VERSION,* *SEE*
>
> PGM.NAME.VERSION.. FUNDS.TRANSFER,ATR
>
> *
> ---------------------------------------------------------------------------­---
> *

Reply all
Reply to author
Forward
0 new messages