× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Why not verify the user first by just doing,
SetLL (userid) Arwfr1;
If %Equal;
... User ok, process
Else;
... User not found, error message
EndIf;


Jeff Davis




Mike <koldark@xxxxxxxxx>
Sent by: rpg400-l-bounces@xxxxxxxxxxxx
09/25/2008 11:08 AM
Please respond to
"RPG programming on the AS400 / iSeries" <rpg400-l@xxxxxxxxxxxx>


To
"RPG programming on the AS400 / iSeries" <rpg400-l@xxxxxxxxxxxx>
cc

Subject
Retrieving an Record Problem






Okay, that may not be the best subject...

I am setting up an approval workflow within an application. I pass the
username and the dollar amount to the subprocedure and figure out what
workflow I need to use for the approval process. I thought I had this
working until I try to handle the condition when the user hasn't been
setup.

So in my table I have:
wfid wfuser wfamt
1 user1 0
2 user2 0
2 user2 10000.00

Now if user3 tries to send something to the workflow, it shouldn't go
becuase they are not setup. (Please note I have another table that
contains
the actual flow definition)

I had this code to retrieve the correct workflow:
setgt (userId:amount) ARWFR1;
readp ARWFR1;
return wfid;

Obviously this works if the user is properly setup. However, throw our
user3
sinareo back in and it won't work right. So then I tried:
setgt (userId:amount) ARWFR1;
readpe (userId) ARWFR1;
if (%eof());
return 0;
endif;
return wfid;

This is not working as I had expected. I am sure I am missing obvious, can
you see it? I hope my current logic is clear enough.


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.