This is an RPG (and not an SQL) error.
Embedded SQL always generates a work field for each host variable.
The first parameter in your stored procedure may be an input/output field.
After having called the stored procedure the piUserId is updated, which is
not allowed, because it is defined/passed as constant reference.
Just generate a work field for piUserId, move piUserId to this work field
and pass the work field as parameter.
Mit freundlichen Grüßen / Best regards
Birgitta Hauser
"Shoot for the moon, even if you miss, you'll land among the stars." (Les
Brown)
"If you think education is expensive, try ignorance." (Derek Bok)
"What is worse than training your staff and losing them? Not training them
and keeping them!"
-----Ursprüngliche Nachricht-----
Von: rpg400-l-bounces@xxxxxxxxxxxx [mailto:rpg400-l-bounces@xxxxxxxxxxxx] Im
Auftrag von Hockchai Lim
Gesendet: Thursday, 15.11 2012 21:02
An: rpg400-l@xxxxxxxxxxxx
Betreff: RNF 5346 - when calling SQL store procedure with const variable
I'm getting a RNF5346 error when trying to call a sql stored procedure. The
error appears to be caused by passing the stored procedure with a const
variable, which makes sense that I got the compile error. Is creating a
temp piUserID variable be the only option to get around this problem?
The RPG PI looks like below:
P lrRequestLoginReset...
P B export
D pi
D piUserID 10 varying const
D piResEml 100 const
D piErrFlag 1
D piErrID 7
D piErrMsg 255
The sql call statement looks like below (note: piUserid is const varying
length exec sql call lrRequestLoginResetSP(:piUserid, :piResEml, :m4ErrFlag,
:m4ErrID, :m4ErrMsg);
The compile error is as follow:
49200 C SQL_00009 IFEQ '1'
SQ
49200 C EVAL PIUSERID = SQL_00011
SQ
=====> aaaaaaaa
RNF5346 30 a 049200 The operation modifies the field, but the field
cannot be
--
This is the RPG programming on the IBM i / System i (RPG400-L) mailing list
To post a message email: RPG400-L@xxxxxxxxxxxx To subscribe, unsubscribe, or
change list options,
visit:
http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives at
http://archive.midrange.com/rpg400-l.
As an Amazon Associate we earn from qualifying purchases.