

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Load a variable file name
Hi
I am trying (in vain) to get a dynamic file name loaded.
The file is located at
C:\Temp\SEPA\Pending Upload
I have a variable vFolder C:\Temp\SEPA
Mu script which worked until we moved servers...
The load appears to do nothing.so obviously I have something wrong. Any thoughts or suggestions would be appreciated.
Thanks
Rob

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi 🙂
Try it with square brackets around your vFile:
FROM [$(vFile)] (XmlSim....


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Tried that and no joy. but thanks for taking a look

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hmm...
Can you share the error you're getting?
And what is the output of trace $(vFile); ?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @racer25,
Can you please try this?
For Each vFolder in DirList('C:\Temp\SEPA\Pending Upload\*')
Read more at Data Voyagers - datavoyagers.net
Follow me on my LinkedIn | Know IPC Global at ipc-global.com


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks for the replies
No joy on amending the file path to
For Each vFolder in DirList('C:\Temp\SEPA\Pending Upload\*')
When I "Step" through the script it gets to that line and immediately goes to the end without error..

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hmmm. You can try this:
In the very same QlikView App, temporarily load one of those XML files using Qlik Wizard and see the file path that QlikView is using and compare against the folder you are using in your DirList. We are probably missing something there.
Read more at Data Voyagers - datavoyagers.net
Follow me on my LinkedIn | Know IPC Global at ipc-global.com


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Just a thought as I read another post am I over complicating things. There will only ever be one file in that folder and I was looking at this option
Solved: Load multiple files - Qlik Community - 87076
My XML load gave me this which does suggest we have the file path right.
// Start of [PAIN001AON20240827092220.xml] LOAD statements
PmtInf:
LOAD PmtInfId,
PmtMtd,
NbOfTxs as [PmtInf/NbOfTxs],
CtrlSum as [PmtInf/CtrlSum],
ReqdExctnDt,
[CdtTrfTxInf/CdtrAcct/Id/IBAN] as [CdtrAcct/Id/IBAN],
[CdtTrfTxInf/Cdtr/Nm] as [Cdtr/Nm],
[CdtTrfTxInf/Amt/InstdAmt] as InstdAmt,
[CdtTrfTxInf/Amt/InstdAmt/Ccy] as Ccy,
[CdtTrfTxInf/PmtId/EndToEndId] as EndToEndId,
[DbtrAgt/FinInstnId/Othr/Id] as [FinInstnId/Othr/Id],
[DbtrAcct/Id/IBAN],
[Dbtr/Nm],
%Key_Document_5537B40932C780D8 // Key to parent table: Document
FROM [C:\Temp\SEPA\Pending Upload\PAIN001AON20240827092220.xml] (XmlSimple, Table is [Document/CstmrCdtTrfInitn/PmtInf]);
Document:
LOAD [CstmrCdtTrfInitn/GrpHdr/MsgId] as MsgId,
[CstmrCdtTrfInitn/GrpHdr/CreDtTm] as CreDtTm,
[CstmrCdtTrfInitn/GrpHdr/NbOfTxs] as [GrpHdr/NbOfTxs],
[CstmrCdtTrfInitn/GrpHdr/CtrlSum] as [GrpHdr/CtrlSum],
[CstmrCdtTrfInitn/GrpHdr/InitgPty/Id/PrvtId/Othr/Id] as [PrvtId/Othr/Id],
%Key_Document_5537B40932C780D8 // Key for this table: Document
FROM [C:\Temp\SEPA\Pending Upload\PAIN001AON20240827092220.xml] (XmlSimple, Table is [Document]);
// End of [PAIN001AON20240827092220.xml] LOAD statements

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I see. Yes, if that is the case, you don't need the DirList and the other things.
Regardless that, to make your code work with the DirList I guess you need this:
For Each vFolder in DirList('C:\Temp\SEPA\*')
So, this should find the Pending Upload directory that will have the XML file in it.
Read more at Data Voyagers - datavoyagers.net
Follow me on my LinkedIn | Know IPC Global at ipc-global.com
