Jump to content


Click the link below to see the new game I'm developing!


Photo
- - - - -

When Cancel goes to Error Link


15 replies to this topic

#1 Matthews Estrice

Matthews Estrice

    ProIV Guru

  • Members
  • PipPipPipPipPip
  • 248 posts
  • Gender:Male
  • Location:Henley-on-klip

Posted 20 June 2005 - 01:17 PM

Hi everyone,

For some reason, when I press slash enter on the enquiry screen I end up in
error link,but if I use F3 (EOD) I.E OK.

I am intending to link the error page on the error link in the function.
This error page would display COMMS VARIABLE almost the same as @SYSLOOK.

Regards,
Matthews

#2 Joseph Bove

Joseph Bove

    ProIV Guru

  • Members
  • PipPipPipPipPip
  • 756 posts
  • Gender:Male
  • Location:Ramsey, United States

Posted 20 June 2005 - 01:20 PM

Matthew,

As far as I know, ProIV has always worked that way.

What error are you specifically trying to trap for in order to send them to your alternate screen?

Regards,

Joseph

#3 Lewis Mccabe

Lewis Mccabe

    ProIV Guru

  • Members
  • PipPipPipPipPip
  • 455 posts
  • Gender:Male
  • Location:Sarasota, Florida

Posted 20 June 2005 - 04:11 PM

Error link is from years ago before exit and EOD logic points existed. Yes, when you cancel the system runs the error link function. We very, very, rarely use an error link. If you need to conditionally link, do it in exit or EOD logic. FNKEY 9 is cancel and 10 is EOD.

Lew

#4 Matthews Estrice

Matthews Estrice

    ProIV Guru

  • Members
  • PipPipPipPipPip
  • 248 posts
  • Gender:Male
  • Location:Henley-on-klip

Posted 21 June 2005 - 06:34 AM

Hi Joseph,

First of all I want to send the error parameters to an XML page then send the parameters
to the JAVA mail API (bugtrack website) and the MMS/SMS.The user do not give all information and
the users just reboot the systems. I am looking at some error exception handling without having to
using the error logic,but looking at the overral function.I would like to know who the user,company,@TFUNCT
@LFUNCT,@#COMMS,@$COMMS, @DATE, @TIME
I am basically trying to trap errors like :-


@RFUNCT
11:10:45 COMMUNICATIONS MENU NAM/SYS/TTYP24
qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
The following error occurred, causing your function to COM.HOTR
be aborted and an automatic rollback to be performed. 11:10:49

@MSG [ 18]
@MSGTEXT [018 - ERROR IN WRITING FILE - ]
@MSGARGS [COM-HOTR ]

@SYSERR [0 ]
@SYSERRTEXT [ ]

Press [ ]

#5 Guest_Guest_Paul_*

Guest_Guest_Paul_*
  • Guests

Posted 21 June 2005 - 08:42 AM

It sounds like you want to trap when @RFUNCT is called?

You can do this by writing your own function to do what you want, i.e. write a log record with all com variables, @SYSERR, @SYSERRTEXT, @MSG, @MSGTEXT, @MSGARGS, @PFUNCT etc. and then assigning your function to @RFUNCT at logon. This remains persistent for the session or until changed again.

HTH,
Paul

#6 Joseph Bove

Joseph Bove

    ProIV Guru

  • Members
  • PipPipPipPipPip
  • 756 posts
  • Gender:Male
  • Location:Ramsey, United States

Posted 21 June 2005 - 10:12 PM

Matthew,

Paul's basically got it.

The error link is for a user canceling out of the screen. It's coded as @EFUNCT or set in the function via the error link tag.

The error screen is @RFUNCT.

It would probably clarify things more in future releases of ProIV to refer to the exit link at the EOD link and the error link as the Cancel link... or simply drop the error link altogether.

@EFUNCT is meaningless in anything other than screen or menu functions (as far as I know).

Regards,

Joseph

#7 Matthews Estrice

Matthews Estrice

    ProIV Guru

  • Members
  • PipPipPipPipPip
  • 248 posts
  • Gender:Male
  • Location:Henley-on-klip

Posted 22 June 2005 - 08:59 AM

Thank you to everyone who contributed.
This works like a bomb.
I am happy.

Regards,
Matthews

#8 Richard Bassett

Richard Bassett

    ProIV Guru

  • Members
  • PipPipPipPipPip
  • 707 posts
  • Gender:Not Telling
  • Location:Rural France

Posted 22 June 2005 - 09:45 AM

@EFUNCT is meaningless in anything other than screen or menu functions (as far as I know).

I think that is indeed true.
FWIW, for "server side" reports/updates I have often defined/used @EFUNCT to be the link function for "application initiated aborts" - ie. whenever the application detects some exception/situation it can't deal with silently then log some diagnostics, set @LFUNCT=@EFUNCT and FNEXIT. Obviously you can encapsulate this in global logic.
Nothing's as simple as you think

#9 Chris Pepper

Chris Pepper

    ProIV Guru

  • Members
  • PipPipPipPipPip
  • 369 posts
  • Gender:Male
  • Location:United Kingdom

Posted 22 June 2005 - 02:30 PM

The "Error link" from Reports or Updates gets called in situations such as the Primary file on LU1 being invalid.

I just ran a test on this in 4.6 to check what I'd been teaching for the last 15 years was still vaguely true!

BTW "works like a bomb" describes a lot of my code... e.g. explodes without warning devastating the local area! :D

#10 Bob Filipiak

Bob Filipiak

    Expert

  • Members
  • PipPipPipPip
  • 133 posts
  • Gender:Male

Posted 22 June 2005 - 04:34 PM

BTW "works like a bomb" describes a lot of my code... e.g. explodes without warning devastating the local area!  :D

Chris,

YOU Too!!!!!

I have that same problem.

I guess i need to sic 'Code Enforcement' on it.

Bob Filipiak

#11 Richard Bassett

Richard Bassett

    ProIV Guru

  • Members
  • PipPipPipPipPip
  • 707 posts
  • Gender:Not Telling
  • Location:Rural France

Posted 22 June 2005 - 05:53 PM

The "Error link" from Reports or Updates gets called in situations such as the Primary file on LU1 being invalid.

Uh oh, could you clarify what 'invalid' actually meant in the context you tested? :D
Also a question - do you know if this still applies when there's a database transaction extant - ie. there _ought_ to be a rollback?

Thx

Edited by Richard Bassett, 22 June 2005 - 05:54 PM.

Nothing's as simple as you think

#12 Chris Pepper

Chris Pepper

    ProIV Guru

  • Members
  • PipPipPipPipPip
  • 369 posts
  • Gender:Male
  • Location:United Kingdom

Posted 22 June 2005 - 09:22 PM

Created an update Function. L mode on a single standard sequential file.
Set Exit link to @MAIN and Error link to @SYSLOOK.

Used ALIAS to point to a file I knew existed... exit to @MAIN
Changed ALIAS to point to a file I knew did not exist... exit to @SYSLOOK

If I get time tomorrow I could try running on Oracle - not sure what to try though... trying to access a non-existant Table? This wouldn't have anything to roll-back, so it have to be a table nested somewhere down the Function. I'm not sure about whether I predict this to occur. Failure to read primary file in first LU is the only thing I'm confident will cause it!

#13 Guest_Guest_*

Guest_Guest_*
  • Guests

Posted 23 June 2005 - 09:17 AM

This wouldn't have anything to roll-back, so it have to be a table nested somewhere down the Function

Well.. there can in theory be something to undo anywhere a transaction spanned functions (ENABLE(&#@NOAUTOC) or whatever it was) or if there was a (GLOBAL_)LSCALL in default logic or explicit SQL in default logic (or possibly a few other obscure scenarios).

not sure what to try though... trying to access a non-existant Table?

Any file-open failure should cause a rollback - even sequential files. What I can't remember is if ProIV thinks it "knows" and behaves differently when there is an active transaction or simply when connected to Oracle or something.

#14 Matthews Estrice

Matthews Estrice

    ProIV Guru

  • Members
  • PipPipPipPipPip
  • 248 posts
  • Gender:Male
  • Location:Henley-on-klip

Posted 21 February 2008 - 05:34 PM

Hi everyone,

Same problem,'018 - error in writing file - TempFile'
@SYSERRTEXT - Error while excuting the query'
ERROR : current transaction is aborted , commands ignored until end of transaction block.

This is only a PROIV File browser time.
Neil Hunter what did you do? :eek:

Any help?

Thanks in advance ,
Matthews Estrice

#15 Neil Hunter

Neil Hunter

    ProIV Guru

  • Members
  • PipPipPipPipPip
  • 420 posts
  • Gender:Male
  • Location:Johannesburg, South Africa

Posted 22 February 2008 - 05:59 AM

Hi everyone,

Same problem,'018 - error in writing file - TempFile'
@SYSERRTEXT - Error while excuting the query'
ERROR : current transaction is aborted , commands ignored until end of transaction block.

This is only a PROIV File browser time.
Neil Hunter what did you do? :eek:

Any help?

Thanks in advance ,
Matthews Estrice


Why not recreate the browser?

Is TempFile a SEQ file?



Reply to this topic



  


0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users

Click the link below to see the new game I'm developing!