Login
Register
Search
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Forums
Performance Management
Smart Notification
Infoset Data?
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
HireIQ
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5264
People Online:
Visitors:
201
Members:
0
Total:
201
Online Now:
New Topics
Lawson S3 Procurement
Tolerance Settings
3/31/2025 2:01 PM
I've been trying to set a tolerance for some t
Dealing with Lawson / Infor
Printing Solutions other than MHC
3/27/2025 1:00 PM
What are others using for printing solutions besid
Lawson S3 Procurement
Green check marks in Lawson 9.0.1
3/20/2025 4:55 PM
Hi, How to remove green check mark on items when o
Lawson S3 HR/Payroll/Benefits
Pay Rate History to Show All Positions
2/26/2025 3:34 PM
Does anyone know how to modify payratehistory.htm
Infor CloudSuite
How to build a Pre-Prod tenant
2/7/2025 1:28 AM
After we finished our implementation and ended our
Lawson S3 Procurement
Browser issue with RQC Shopping
1/28/2025 5:49 PM
Since the recent Chrome/Edge updates, our RQC shop
Lawson S3 Procurement
S3-Procurement New Company
1/22/2025 10:38 PM
My Accounting Department has created a new Company
S3 Customization/Development
JUSTIFIED RIGHT
1/15/2025 7:41 PM
Is there a way in Lawson COBOL to make a character
S3 Systems Administration
ADFS certificate - new cert
12/3/2024 9:38 PM
The certificates on the windows boxes expired and
Lawson S3 HR/Payroll/Benefits
Post Tax Benefit Plan Table
11/14/2024 9:16 PM
Hi, totally new to Laswon. I have a repor
Top Forum Posters
Name
Points
Greg Moeller
4184
David Williams
3349
JonA
3291
Kat V
2984
Woozy
1973
Jimmy Chiu
1883
Kwane McNeal
1437
Ragu Raghavan
1375
Roger French
1315
mark.cook
1244
Forums
Filtered Topics
Unanswered
Unresolved
Announcements
Active Topics
Most Liked
Most Replies
Search Forums
Search
Advanced Search
Topics
Posts
Prev
Next
Forums
Performance Management
Smart Notification
Infoset Data?
Please
login
to post a reply.
13 Replies
0
Subscribed to this topic
14 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
George Graham
Veteran Member
Posts: 201
3/8/2011 5:40 PM
Anyone know physically where the infoset data is stored? Is it a blob in a table and I'm just missing it?
Woozy
Veteran Member
Posts: 709
3/9/2011 5:48 PM
Split
I'm not positive about this - I know just enough about this to be dangerous - but I think it is stored on the OLAP server on the LBI box as a cube. Because of this, it's not someplace that can be easily queried directly, if that's what you're trying to do.
I'd be happy to hear that I'm wrong, if there is anyone else out there who knows more about this than I do...
Chris Martin
Veteran Member
Posts: 277
3/9/2011 6:10 PM
Split
It's been awhile since I looked for this, but I believe it is in a blob/image field on one the SN tables. However, if you check the large infoset box when saving the infoset, the data will be stored in a database table in the SN repository (table will start with the name "INFOSET...").
George Graham
Veteran Member
Posts: 201
3/9/2011 6:24 PM
Split
I thought I remembered it being a blob...but I've looked in all of the SN tables and can't find anything...I don't believe is uses OLAP....
George Graham
Veteran Member
Posts: 201
3/9/2011 6:24 PM
Split
I thought I remembered it being a blob...but I've looked in all of the SN tables and can't find anything...I don't believe it uses OLAP....
JeffR
Advanced Member
Posts: 22
3/9/2011 9:53 PM
Split
I don't know if this helps or not, but what I pass to access one of the Infosets through ProcessFlow, I go to the LBI Server, LawsonSN database and then query on the specific infoset that I am attempting to access the data from. I actually trigger the update of the infoset in ProcessFlow and then query on the results.
George Graham
Veteran Member
Posts: 201
3/10/2011 2:41 PM
Split
Hpw specifically do you query the Infoset results? What node are you using?
JeffR
Advanced Member
Posts: 22
3/10/2011 3:09 PM
Split
I am using the SQL Node to query the infoset.
George Graham
Veteran Member
Posts: 201
3/10/2011 3:25 PM
Split
Do you mind posting your query?
JeffR
Advanced Member
Posts: 22
3/10/2011 4:02 PM
Split
There is actually 3 separate queries that I run. One to detect Adds, another to detect Deletes and another to detect Changes.
For Adds the query is:
SELECT a.column1, a.column2
FROM as a
LEFT OUTER JOIN as b on b.column1 = a.column1 and b.rowisnew = 0
where b.column1 is null
For Deletes the query is:
SELECT a.column1, a.column2
FROM as a
LEFT OUTER JOIN as b on b.column1 = a.column1 and b.rowisnew = 1
WHERE b.column1 is null
For Changes the query is:
SELECT a.column1 AS OLDCODE, a.column2 AS OLDSUP, b.column1 AS NEWCODE, b.column2 AS NEWSUP
FROM as a
LEFT OUTER JOIN as b on b.column1 = a.column1
WHERE b.rowisnew = 1
and b.column2 != a.column2
and a.rowisnew = 0
This example is to capture changes made on HRSUPER where column0 is Company, column1 is Supervisor Code and column 2 is the Employee attached to the code.
George Graham
Veteran Member
Posts: 201
3/14/2011 11:34 AM
Split
So, Jeff, are you querying the actual database, not the SN tables themselves? Or can you point out which tables you are pulling from?
JeffR
Advanced Member
Posts: 22
3/14/2011 1:26 PM
Split
I am querying the the Infoset created when you perform an update infoset in SN. I am not sure what SN tables you are referring to.
George Graham
Veteran Member
Posts: 201
3/14/2011 1:51 PM
Split
In your queries you have "select xxx from"
I'm looking for what specifically you are using as the from db/table that is not in your syntax.
JeffR
Advanced Member
Posts: 22
3/14/2011 2:10 PM
Split
The From would be the infoset name like infoset_1000 or whatever number is assigned to that infoset. Once assigned it won't change. I have a variable there which is why it didn't translate so I can run this in either Production or Test and it picks up the correct infoset name. The Left Outer Join is actual joining to the same Infoset just the other Rowisnew value.
Please
login
to post a reply.