Page 1 of 3 1 2 3 >
Topic Options
Rate This Topic
#11436 - 08/05/99 10:47 AM FW:
fernando fortunato Offline
Stealth Member

Registered: 06/12/01
Posts: 20

We have installed ARWeb on a AIX server. Now when we try accessing this one
specific form (all other forms work OK) the browser displays an error page
stating that the page cannot be displayed and the ARWeb application crashes.

When we look in the "waserver.log" file we see the following message:

08/05/99 15:26:18 :: TID 537168112 :: CARPropStruct::Set : ASSERT -
AR_DATA_TYPE_NULL or unknown : Line 1627 in afcstrct.cpp


We are running ARS V4.0.2.

Any help would be greatly appreciated.

Thanks,

Fernando.

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.


Top
#11437 - 08/05/99 04:36 PM (no text) [Re: rlparry]
andyrelo Offline
Stealth Member

Registered: 06/12/01
Posts: 12
tool?

Thanks.

Andy.


___
Get Free Email and Do More On The Web. Visit http://www.msn.com

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.


Top
#11438 - 08/06/99 07:00 PM (no text) [Re: rlparry]
bg_curtis Offline
Stealth Member

Registered: 06/12/01
Posts: 71

We are thinking of buying some paging software for our Remedy system. There
seem to be many choices out there.... Telalert by Telamon, Symon, Personal
Productivity, CuraMessage, Cross Communications and more.

I was hoping to get feedback from those of you who have tried these or other
products, regarding strengths and weaknesses, customer support, reliability,
features.... whatever you might think is usefull.
===
Thanks in advance, Brian
Server and Client 4.0.2
server/database unix/oracle 8.04
users NT 4.0
brian_curtis@mcgraw-hill.com
fax 303.721.4798
_
Do You Yahoo!?
Bid and sell for free at http://auctions.yahoo.com

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.


Top
#11439 - 08/12/99 07:51 AM (no text) [Re: rlparry]
robert malelu Offline
Stealth Member

Registered: 06/12/01
Posts: 32
I have a field with a data value of Lastname, Firstname. I need to perform an
open Dialog and push the data
to a field on the dialog window in format Firstname Lastname (yes, the data
resides in a single field on both
forms). I've tried this format

SUBSTR($FLD_OWNERNAME$, (STRSTR($FLD_OWNERNAME$,",")+2))+
SUBSTR($FLD_OWNERNAME$, 0, (STRSTR($FLD_OWNERNAME$,",")-1))

This tries to get the position of the comma in the string and substring based
upon that position. When I try
to save it, it gives position errors where the quotes are used for the comma.
I've tried double quotes, apostrophes,
(the double quotes converted the statement to comma Zero). The same type errors
for when I try finding the location
of the space in the string. If I put a character in the problem area, it works.
Any ideas on how I can get this
to work would be greatly appreciated. Thanks.
Robert

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.


Top
#11440 - 08/12/99 08:25 AM (no text) [Re: rlparry]
ferrante Offline
Stealth Member

Registered: 06/12/01
Posts: 6
I don't see the error with your statement. However, below is one I use to
get the first word off a character field:
LEFT($Info Copies Queue$,STRSTR($Info Copies Queue$, " "))

And here is how I put the get the rest of the line:
LTRIM(SUBSTR($Info Copies Queue$,STRSTR($Info Copies Queue$, " ") + 1))

Rick

Robert Malelu wrote:

> Folks,
> I have a field with a data value of Lastname, Firstname. I need to perform an
> open Dialog and push the data
> to a field on the dialog window in format Firstname Lastname (yes, the data
> resides in a single field on both
> forms). I've tried this format
>
> SUBSTR($FLD_OWNERNAME$, (STRSTR($FLD_OWNERNAME$,",")+2))+
> SUBSTR($FLD_OWNERNAME$, 0, (STRSTR($FLD_OWNERNAME$,",")-1))
>
> This tries to get the position of the comma in the string and substring based
> upon that position. When I try
> to save it, it gives position errors where the quotes are used for the comma.
> I've tried double quotes, apostrophes,
> (the double quotes converted the statement to comma Zero). The same type errors
> for when I try finding the location
> of the space in the string. If I put a character in the problem area, it works.
> Any ideas on how I can get this
> to work would be greatly appreciated. Thanks.
> Robert
>
> ---------------------------------------------------------------------------
> To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
> with a body of "signoff arslist". The subject line is ignored.


Top
#11441 - 08/12/99 08:46 AM (no text) [Re: rlparry]
robert malelu Offline
Stealth Member

Registered: 06/12/01
Posts: 32
link? We have filters which are performing the exact same thing which work
properly, but trying it from the active link Open Dialog, they fail. Could it
be that the Client doesn't fully support this functionalilty? Server ARS
4.0.2, client 4.0.2 patch 01.




ARSLIST@LISTSERV.ACSU.BUFFALO.EDU on 08/12/99 08:26:12
Please respond to ARSLIST@LISTSERV.ACSU.BUFFALO.EDU @ INTERNET


To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU @ INTERNET
cc:

Subject:

This is a multi-part message in MIME format.
--------------------------------------------------------------------------------
Robert,
I don't see the error with your statement. However, below is one I use to
get the first word off a character field:
LEFT($Info Copies Queue$,STRSTR($Info Copies Queue$, " "))

And here is how I put the get the rest of the line:
LTRIM(SUBSTR($Info Copies Queue$,STRSTR($Info Copies Queue$, " ") + 1))

Rick

Robert Malelu wrote:

> Folks,
> I have a field with a data value of Lastname, Firstname. I need to perform an
> open Dialog and push the data
> to a field on the dialog window in format Firstname Lastname (yes, the data
> resides in a single field on both
> forms). I've tried this format
>
> SUBSTR($FLD_OWNERNAME$, (STRSTR($FLD_OWNERNAME$,",")+2))+
> SUBSTR($FLD_OWNERNAME$, 0, (STRSTR($FLD_OWNERNAME$,",")-1))
>
> This tries to get the position of the comma in the string and substring based
> upon that position. When I try
> to save it, it gives position errors where the quotes are used for the comma.
> I've tried double quotes, apostrophes,
> (the double quotes converted the statement to comma Zero). The same type
errors > for when I try finding the location
> of the space in the string. If I put a character in the problem area, it
works. > Any ideas on how I can get this
> to work would be greatly appreciated. Thanks.
> Robert
>
> ---------------------------------------------------------------------------
> To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
> with a body of "signoff arslist". The subject line is ignored.
--------------------------------------------------------------------------------

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.
begin:vcard
n:Ferrante;Richard
tel;fax:703.883.3383
tel;work:703.883.5298
x-mozilla-html:TRUE
adr:;;;;;;
version:2.1
email;internet:ferrante@mitre.org
fn:Rick Ferrante
end:vcard

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.


Top
#11442 - 08/12/99 08:52 AM (no text) [Re: rlparry]
troelandse Offline
Stealth Member

Registered: 06/12/01
Posts: 14
especially when opening a form in dialog mode.

Most of the KEYWORDS like $USER$ $GROUPS$ etc. are not translated when
saving information in dialog mode. I suspect that FUNCTIONS are not working
either....

Also all field validations like lenght of fields do not work (you can type
200 characters in a 10 character field, it will only complain while trying
to save the record and then it is too late...
(in a normal form when you type the cursor will stop at the database field
lenth specified when the field got created, in dialog mode this does not
work)

Ton Roelandse


>From: Robert Malelu
>Reply-To: "Action Request System discussion list(ARSList)"
>
>To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
>Date: Thu, 12 Aug 1999 08:46:35 -0400
>
>Thanks, Rick. Are you doing this in a Filter or with an Open Dialog active
>link? We have filters which are performing the exact same thing which work
>properly, but trying it from the active link Open Dialog, they fail. Could
>it
>be that the Client doesn't fully support this functionalilty? Server ARS
>4.0.2, client 4.0.2 patch 01.
>
>
>
>
>ARSLIST@LISTSERV.ACSU.BUFFALO.EDU on 08/12/99 08:26:12
>Please respond to ARSLIST@LISTSERV.ACSU.BUFFALO.EDU @ INTERNET
>
>
>To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU @ INTERNET
>cc:
>
>Subject:
>
>This is a multi-part message in MIME format.
>--------------------------------------------------------------------------------
>Robert,
>I don't see the error with your statement. However, below is one I use to
>get the first word off a character field:
>LEFT($Info Copies Queue$,STRSTR($Info Copies Queue$, " "))
>
>And here is how I put the get the rest of the line:
>LTRIM(SUBSTR($Info Copies Queue$,STRSTR($Info Copies Queue$, " ") + 1))
>
>Rick
>
>Robert Malelu wrote:
>
> > Folks,
> > I have a field with a data value of Lastname, Firstname. I need to
>perform an
> > open Dialog and push the data
> > to a field on the dialog window in format Firstname Lastname (yes, the
>data
> > resides in a single field on both
> > forms). I've tried this format
> >
> > SUBSTR($FLD_OWNERNAME$, (STRSTR($FLD_OWNERNAME$,",")+2))+
> > SUBSTR($FLD_OWNERNAME$, 0, (STRSTR($FLD_OWNERNAME$,",")-1))
> >
> > This tries to get the position of the comma in the string and substring
>based
> > upon that position. When I try
> > to save it, it gives position errors where the quotes are used for the
>comma.
> > I've tried double quotes, apostrophes,
> > (the double quotes converted the statement to comma Zero). The same
>type
>errors > for when I try finding the location
> > of the space in the string. If I put a character in the problem area,
>it
>works. > Any ideas on how I can get this
> > to work would be greatly appreciated. Thanks.
> > Robert
> >
> >
>---------------------------------------------------------------------------
> > To unsubscribe from this list, send mail to
>listserv@listserv.buffalo.edu
> > with a body of "signoff arslist". The subject line is ignored.
>--------------------------------------------------------------------------------
>
>---------------------------------------------------------------------------
>To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
>with a body of "signoff arslist". The subject line is ignored.
> begin:vcard
>n:Ferrante;Richard
>tel;fax:703.883.3383
>tel;work:703.883.5298
>x-mozilla-html:TRUE
>adr:;;;;;;
>version:2.1
>email;internet:ferrante@mitre.org
>fn:Rick Ferrante
>end:vcard
>
>---------------------------------------------------------------------------
>To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
>with a body of "signoff arslist". The subject line is ignored.


___
Get Free Email and Do More On The Web. Visit http://www.msn.com

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.


Top
#11443 - 08/12/99 09:18 AM (no text) [Re: rlparry]
robert malelu Offline
Stealth Member

Registered: 06/12/01
Posts: 32




ARSLIST@LISTSERV.ACSU.BUFFALO.EDU on 08/12/99 09:03:05
Please respond to ARSLIST@LISTSERV.ACSU.BUFFALO.EDU @ INTERNET


To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU @ INTERNET
cc:

Subject:

We have logged some bugs with remedy concerning the Dialog options
especially when opening a form in dialog mode.

Most of the KEYWORDS like $USER$ $GROUPS$ etc. are not translated when
saving information in dialog mode. I suspect that FUNCTIONS are not working
either....

Also all field validations like lenght of fields do not work (you can type
200 characters in a 10 character field, it will only complain while trying
to save the record and then it is too late...
(in a normal form when you type the cursor will stop at the database field
lenth specified when the field got created, in dialog mode this does not
work)

Ton Roelandse


>From: Robert Malelu
>Reply-To: "Action Request System discussion list(ARSList)"
>
>To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
>Date: Thu, 12 Aug 1999 08:46:35 -0400
>
>Thanks, Rick. Are you doing this in a Filter or with an Open Dialog active
>link? We have filters which are performing the exact same thing which work
>properly, but trying it from the active link Open Dialog, they fail. Could
>it
>be that the Client doesn't fully support this functionalilty? Server ARS
>4.0.2, client 4.0.2 patch 01.
>
>
>
>
>ARSLIST@LISTSERV.ACSU.BUFFALO.EDU on 08/12/99 08:26:12
>Please respond to ARSLIST@LISTSERV.ACSU.BUFFALO.EDU @ INTERNET
>
>
>To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU @ INTERNET
>cc:
>
>Subject:
>
>This is a multi-part message in MIME format.
>-------------------------------------------------------------------------------
- >Robert,
>I don't see the error with your statement. However, below is one I use to
>get the first word off a character field:
>LEFT($Info Copies Queue$,STRSTR($Info Copies Queue$, " "))
>
>And here is how I put the get the rest of the line:
>LTRIM(SUBSTR($Info Copies Queue$,STRSTR($Info Copies Queue$, " ") + 1))
>
>Rick
>
>Robert Malelu wrote:
>
> > Folks,
> > I have a field with a data value of Lastname, Firstname. I need to
>perform an
> > open Dialog and push the data
> > to a field on the dialog window in format Firstname Lastname (yes, the
>data
> > resides in a single field on both
> > forms). I've tried this format
> >
> > SUBSTR($FLD_OWNERNAME$, (STRSTR($FLD_OWNERNAME$,",")+2))+
> > SUBSTR($FLD_OWNERNAME$, 0, (STRSTR($FLD_OWNERNAME$,",")-1))
> >
> > This tries to get the position of the comma in the string and substring
>based
> > upon that position. When I try
> > to save it, it gives position errors where the quotes are used for the
>comma.
> > I've tried double quotes, apostrophes,
> > (the double quotes converted the statement to comma Zero). The same
>type
>errors > for when I try finding the location
> > of the space in the string. If I put a character in the problem area,
>it
>works. > Any ideas on how I can get this
> > to work would be greatly appreciated. Thanks.
> > Robert
> >
> >
>---------------------------------------------------------------------------
> > To unsubscribe from this list, send mail to
>listserv@listserv.buffalo.edu
> > with a body of "signoff arslist". The subject line is ignored.
>-------------------------------------------------------------------------------
- >
>---------------------------------------------------------------------------
>To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
>with a body of "signoff arslist". The subject line is ignored.
> begin:vcard
>n:Ferrante;Richard
>tel;fax:703.883.3383
>tel;work:703.883.5298
>x-mozilla-html:TRUE
>adr:;;;;;;
>version:2.1
>email;internet:ferrante@mitre.org
>fn:Rick Ferrante
>end:vcard
>
>---------------------------------------------------------------------------
>To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
>with a body of "signoff arslist". The subject line is ignored.


___
Get Free Email and Do More On The Web. Visit http://www.msn.com

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.


Top
#11444 - 08/12/99 09:22 AM (no text) [Re: rlparry]
ferrante Offline
Stealth Member

Registered: 06/12/01
Posts: 6
Sorry.

Robert Malelu wrote:

> Thanks, Rick. Are you doing this in a Filter or with an Open Dialog active
> link? We have filters which are performing the exact same thing which work
> properly, but trying it from the active link Open Dialog, they fail. Could it
> be that the Client doesn't fully support this functionalilty? Server ARS
> 4.0.2, client 4.0.2 patch 01.
>
> ARSLIST@LISTSERV.ACSU.BUFFALO.EDU on 08/12/99 08:26:12
> Please respond to ARSLIST@LISTSERV.ACSU.BUFFALO.EDU @ INTERNET
>
> To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU @ INTERNET
> cc:
>
> Subject:
>
> This is a multi-part message in MIME format.
> --------------------------------------------------------------------------------
> Robert,
> I don't see the error with your statement. However, below is one I use to
> get the first word off a character field:
> LEFT($Info Copies Queue$,STRSTR($Info Copies Queue$, " "))
>
> And here is how I put the get the rest of the line:
> LTRIM(SUBSTR($Info Copies Queue$,STRSTR($Info Copies Queue$, " ") + 1))
>
> Rick
>
> Robert Malelu wrote:
>
> > Folks,
> > I have a field with a data value of Lastname, Firstname. I need to perform an
> > open Dialog and push the data
> > to a field on the dialog window in format Firstname Lastname (yes, the data
> > resides in a single field on both
> > forms). I've tried this format
> >
> > SUBSTR($FLD_OWNERNAME$, (STRSTR($FLD_OWNERNAME$,",")+2))+
> > SUBSTR($FLD_OWNERNAME$, 0, (STRSTR($FLD_OWNERNAME$,",")-1))
> >
> > This tries to get the position of the comma in the string and substring based
> > upon that position. When I try
> > to save it, it gives position errors where the quotes are used for the comma.
> > I've tried double quotes, apostrophes,
> > (the double quotes converted the statement to comma Zero). The same type
> errors > for when I try finding the location
> > of the space in the string. If I put a character in the problem area, it
> works. > Any ideas on how I can get this
> > to work would be greatly appreciated. Thanks.
> > Robert
> >
> > ---------------------------------------------------------------------------
> > To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
> > with a body of "signoff arslist". The subject line is ignored.
> --------------------------------------------------------------------------------
>
> ---------------------------------------------------------------------------
> To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
> with a body of "signoff arslist". The subject line is ignored.
> begin:vcard
> n:Ferrante;Richard
> tel;fax:703.883.3383
> tel;work:703.883.5298
> x-mozilla-html:TRUE
> adr:;;;;;;
> version:2.1
> email;internet:ferrante@mitre.org
> fn:Rick Ferrante
> end:vcard
>
> ---------------------------------------------------------------------------
> To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
> with a body of "signoff arslist". The subject line is ignored.


Top
#11445 - 08/12/99 04:44 PM (no text) [Re: rlparry]
james a weaver Offline
Stealth Member

Registered: 06/12/01
Posts: 25

James A. Weaver
Infrastructure Process Applications
Telephone: 1-713-656-0815 Fax: 1-713-656-0755 Pager: 1-800-637-1357
Mail : P. O. Box 4276 Rm. FB2163, Houston, TX 77210-4276
Internet: james.a.weaver@exxon.com

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.


Top
Page 1 of 3 1 2 3 >


Moderator:  Matt Reinfeldt