Login
Register
Search
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Forums
Integration / Customization
IPA/ProcessFlow
Variable Name within a variable name??
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Lauren Beeker
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5222
People Online:
Visitors:
74
Members:
0
Total:
74
Online Now:
New Topics
Lawson Portal
Need to limit available values in Manager Self-Service based on Action
4/16/2026 1:47 PM
Hello, Our managers have the ability in M
Lawson Portal
Lawson HR170 Jobs Index
3/30/2026 7:35 PM
Hi All, I am new in my role. The organization h
IPA/ProcessFlow
IPA Question - Filtering Employees by XRef Cost Center Across Person and HR Modules
3/2/2026 4:29 PM
Hello Everyone, I am building an IPA process in
Lawson S3 Financials
Lawson S3 to SAP S/4 Hana Migration
2/12/2026 8:54 PM
Can anyone recommend a consulting company who has
Lawson Add-Ins for Microsoft Office
Missing Multi-Stream Upload Option
7/12/2023 11:09 PM
Our IS department has made the server configuratio
Lawson S3 HR/Payroll/Benefits
Secure 2.0
12/8/2025 9:06 PM
Has anyone using S3 V10 for Benefits been able to
Lawson Add-Ins for Microsoft Office
More.... ic81.2
12/5/2025 10:51 PM
We build our PAR's with MS Addins using IC81 and o
Lawson Add-Ins for Microsoft Office
Deleting an Orphan Time Record with MS Add-ins
12/13/2025 7:26 PM
I have discovered an Orphan Time Record when dumpi
Lawson Landmark
Configuration Console - UserField
7/24/2019 6:05 PM
I have a userfield called "ContactCenter"&nb
Lawson Add-Ins for Microsoft Office
Uploads
11/20/2025 3:32 AM
The Next button has stopped functioning on the upl
Top Forum Posters
Name
Points
Greg Moeller
4184
David Williams
3349
Kat V
2984
Woozy
1973
Jimmy Chiu
1883
Kwane McNeal
1437
Ragu Raghavan
1377
Roger French
1315
mark.cook
1244
Chris Martin
825
Forums
Filtered Topics
Unanswered
Unresolved
Active Topics
Most Liked
Most Replies
Search Forums
Advanced Search
Prev
Next
Forums
Integration / Customization
IPA/ProcessFlow
Variable Name within a variable name??
Please
login
to post a reply.
2 Replies
0
Subscribed to this topic
52 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
steveh
New Member
Posts: 2
6/23/2011 6:28 PM
Hi all,
New to process flow and already running into my first issue :) I have a SQL call from SQL integrator node to an oracle database. The schema is being passed in as a variable, so the query is using this variable... but when I get the results from the query back and try to use them in a message builder, I get undefined.. my guess is because the variable name ends up as .Table.Data> I have tried using AS in the select, but that just appends that to the variable name listed above. Does anybody know of a way around this issue? Thanks in advance!
Shane Jones
Veteran Member
Posts: 460
6/25/2011 4:32 PM
Split
If I am understanding you correctly I think you are seeing an issue in the way process flow shows a variable name in its list of variables. Sql queries show output like this:
node_table_field
(however us use it like this: node_field)
You will just want to change what you use to declare the variable even though process flow gives you a list of variables... Usually you just drop the "table" from variable name unless your query has two fields with the same field name. If a field is duplicated you use AS in your "select" to rename the variable. For example:
AS empno
You would just type your variable like this when you want to use it:
Node_empno
Process flow may still show it in a list like this "node_table_empno" but that will not work.
steveh
New Member
Posts: 2
6/27/2011 12:07 PM
Split
Interesting... I will give that a shot... when I tried to do an AS before, and I got something really funky but I will try to access with this alternate approach. Here is a better example of what I am running into...
Query Node = OracleQuery
Query = SELECT .Table.Field1.. etc
So.. Variable ends up coming out as .Table.Field1> and when you try to use this, it is terminating the variable like so.. gives undefined and then I get the rest, .Table.Field1 as a literal string in say a message builder or email.
Before when I tried AS, the variable name came out like so.. .Table.Field1 AS F1>.. so you are saying that I should be able to access as ... right?
Please
login
to post a reply.