× 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.



"RPG400-L" <rpg400-l-bounces@xxxxxxxxxxxx> wrote on 03/12/2018 07:36:36
AM:
I have a UDS defined in a non-cycle program (defined with Main in the
h-specs). On compiling, I notice the warning

RNF7539: Data area dataArea should be unlocked explicitly in a non-
cycle module.

However, if I code an UNLOCK, the message below is issued and the
program will not compile.

RNF7069: The Factor 2 operand dataArea of UNLOCK is not a data area
or an update file.


I did some testing. You're probably missing the DTAARA keyword in
column 40 of the UDS statement. Using the MAIN keyword means that the LDA
(and other data areas) cannot be automatically handled by the RPG program.
Therefore, you must explicitly tell RPG that your UDS is a data area by
specifying the DTAARA keyword on your UDS statement and coding the IN,
OUT, and UNLOCK op codes in your calculations. Using D-specs, there are
about five or six different ways to code a data area definition.


D UDS DTAARA
D SubField0 10A

D UDS DTAARA('MYDTAARA1')
D SubField1 10A

D MYDTAARA2 UDS DTAARA
D SubField2 10A

D dsName3 UDS DTAARA('MYDTAARA3')
D SubField3 10A

D dsVarName4 S 10A INZ('MYDTAARA4')
D dsName4 UDS DTAARA(*var:dsVarName4)
D SubField4 10A


Sincerely,

Dave Clark

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.