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



Robert,

I don't know if this helps - but I did something a bit like this to build a
string of JSON to insert into a CLOB in a DB2 table based on an RPGLE
update trigger on another table.

I built the JSON dynamically against SYSIBM/SYSDUMMY1 and based it on which
fields had changed on the table according to the trigger buffer.

I then ran the SQL SELECT into a Host Variable and used that for the final
insert.

So - start building the SQL string, in this example I always have msgType
and itemRef keys

SqlStm = 'Select JSON_OBJECT(''msgType'' value ''' + %TrimR(MsgType) +
''', '
+ '''itemRef'' value ''' + %TrimR(After.TPStockRef) + ''' ';

Then append any fields that have changed according to the trigger buffer
(not appropriate to your case probably, but I was just continuing to build
up the SQL to create the JSON string (I've included a numeric field
(Status) and a char field (Grade) as examples)

If After.Status <> Before.Status;
SqlStm += ', ''status'' value ' + %Char(After.Status) + ' ';
EndIf;

If After.Grade <> Before.Grade;
SqlStm += ', ''grade'' value ''' + %TrimR( After.Grade ) + ''' ';
EndIf;

etc,

Then finish off the SQL statement:

SqlStm += ') From SysIbm/SysDummy1';

So you end up with a statement that looks something like:

Select JSON_OBJECT( 'msgType' value 'stockUpdate', 'itemRef'
value 'ABD7743' , 'status' value 3) From SysIbm/SysDummy1

You can then fetch that statement into a host variable (I just used a
varchar as the host variable) in the program and use that for the insert
into the CLOB.

regards,
Craig








On Mon, 1 Jul 2019 at 21:02, Robert Rogerson <rogersonra@xxxxxxxxx> wrote:

@Dave, I'll look into the DESCRIPTORS in sql.
@Charles. The purpose is to create a JSON document where the in the format

{
"FILENAME1 ": [

{"col1": "col1 data"},
{"col2": "col2 data"}
]

}

The challenge is that FILENAME1 is not know until run time.

Any thoughts or admise would be appreciated.

Thanks,

Rob


On Mon, Jul 1, 2019 at 3:20 PM <dlclark@xxxxxxxxxxxxxxxx> wrote:

"RPG400-L" <rpg400-l-bounces@xxxxxxxxxxxxxxxxxx> wrote on 07/01/2019
02:26:16 PM:
I'm creating procedure where I want to pass the file name to the
procedure. So my file declaration in the procedure is...
dcl-f infile disk usropn extfile(pFileIn);

Now when I want to read the file as it's in a procedure I must use a
data
structure. How do I define the data structure as the file is unknown
at
compile time. I'm thing something like...

dcl-ds inFileDs extname(pFileIn) end-ds;
But it gives me
RNF3523: External description INFILEDATA for data structure is not
found;
data structure is ignored.
RNF3608: The parameter for the EXTNAME or EXTFLD keyword must be a
character literal or constant.

How should I be defining this?


If you really want to use "standard" RPG for this type of access
then you would have to create an open data structure (i.e., with no
subfields) and parse it out yourself using %substr. But then you would
have to know the file layout ahead of time, too -- or use an API to get
the equivalent of DSPFFD. Alternatively, SQL has DESCRIPTORS to get the
column definitions.


Sincerely,

Dave Clark
--
int.ext: 91078
direct: (937) 531-6378
home: (937) 751-3300

Winsupply Group Services
3110 Kettering Boulevard
Dayton, Ohio 45439 USA
(937) 294-5331




Thanks,

Rob
--
This is the RPG programming on IBM i (RPG400-L) mailing list
To post a message email: RPG400-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://urldefense.com/v3/__https://lists.midrange.com/
mailman/listinfo/rpg400-l__;!s27icpZD2fbA_A!
MkKppGnwAoTf7X4MUGG87i8PYhG_IraFw330A1_Jm1n66a3RiulJRogUeYLaB7HvXQU$
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://urldefense.com/v3/__https://archive.midrange.com/rpg400-
l__;!s27icpZD2fbA_A!
MkKppGnwAoTf7X4MUGG87i8PYhG_IraFw330A1_Jm1n66a3RiulJRogUeYLacMYGhVM$ .

Please contact support@xxxxxxxxxxxx for any subscription related
questions.

Help support midrange.com by shopping at amazon.com with our affiliate
link:
https://urldefense.com/v3/__https://amazon.midrange.com__;!
s27icpZD2fbA_A!
MkKppGnwAoTf7X4MUGG87i8PYhG_IraFw330A1_Jm1n66a3RiulJRogUeYLala07x6Q$




*********************************************************************************************
This email message and any attachments is for use only by the named
addressee(s) and may contain confidential, privileged and/or proprietary
information. If you have received this message in error, please
immediately notify the sender and delete and destroy the message and all
copies. All unauthorized direct or indirect use or disclosure of this
message is strictly prohibited. No right to confidentiality or privilege
is waived or lost by any error in transmission.


*********************************************************************************************
--
This is the RPG programming on IBM i (RPG400-L) mailing list
To post a message email: RPG400-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/rpg400-l.

Please contact support@xxxxxxxxxxxx for any subscription related
questions.

Help support midrange.com by shopping at amazon.com with our affiliate
link: https://amazon.midrange.com

--
This is the RPG programming on IBM i (RPG400-L) mailing list
To post a message email: RPG400-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/rpg400-l.

Please contact support@xxxxxxxxxxxx for any subscription related
questions.

Help support midrange.com by shopping at amazon.com with our affiliate
link: https://amazon.midrange.com


As an Amazon Associate we earn from qualifying purchases.

This thread ...

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.