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:
Hitman
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5208
People Online:
Visitors:
506
Members:
0
Total:
506
Online Now:
New Topics
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
Lawson S3 Procurement
ED501 Error: Map 850 not supported by /law/c15vda/lawson/test10/edi/bin/laws_out_91
11/12/2024 3:47 PM
Tried runnning ED501 and getting the atathced erro
Lawson S3 HR/Payroll/Benefits
Error
11/6/2024 9:54 PM
When I try to enroll a retiree in 72.1 health plan
Infor ERP (Syteline)
Syteline: New Data Maintenance Wizard (Error) Need help
11/1/2024 4:24 PM
Hi, I need help with an error on syteline while us
Dealing with Lawson / Infor
Implementing Lawson v10 with Cerner Surginet, Case Cart Picking, and Quick Adds for the OR
10/29/2024 4:20 PM
Hi Everyone, I am wondering if there is any org
Lawson S3 HR/Payroll/Benefits
Canada Tax Calculation (Federal and Provincial) Issue
10/23/2024 5:00 AM
Initially, we had problem with CPP2 calculation is
Lawson S3 HR/Payroll/Benefits
CA Section 125 401k Plan
10/22/2024 10:13 PM
Does anyone have any recommendations on how to fac
S3 Systems Administration
Running AC120 deleted records from ACMASTER table
10/22/2024 3:40 PM
We recently ran the AC120 as normal and somehow it
Lawson S3 Procurement
RQ13 Approval Info
10/17/2024 2:12 PM
When a Requisition is approved on RQ13, what table
S3 Customization/Development
Read and Write CSV file COBOL
10/9/2024 2:53 PM
Does anyone have a quik example of a program that
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
1372
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
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
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
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
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
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
Hpw specifically do you query the Infoset results? What node are you using?
JeffR
Advanced Member
Posts: 22
3/10/2011 3:09 PM
I am using the SQL Node to query the infoset.
George Graham
Veteran Member
Posts: 201
3/10/2011 3:25 PM
Do you mind posting your query?
JeffR
Advanced Member
Posts: 22
3/10/2011 4:02 PM
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
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
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
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
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.