Clients First USA
Clients First knows their software, but they are also astute business people, and they really understand manufacturing and distribution in particular.
Jimmy Witcher, COO, Merrick
Read More
About UsService OfferingsProduct OfferingsIndustries ServedDownloadsBlog
 

Subscribe to our mailing list

* indicates required
    Interested in    
Hot Topics
 

‘Customization’ Category

SAP Business One Query: Drill Downs from GL to the Sub-Ledgers

Monday, February 20th, 2012

If you find that you need to access the sub-ledger (detailed transactions) for a query you would first start with the GL Accounts Table (OACT). Then you will need to join in the detailed journal entries in (JDT1) the join between those two tables looks like this:
SELECT *
FROM OACT
Inner Join JDT1 ON OACT.AcctCode = JDT1.account
Most clients will want to see the period information, so add in that table too:
SELECT *
FROM OACT
Inner Join JDT1 ON OACT.AcctCode = JDT1.account
Inner Join OFPR on JDT1.finncPriod = OFPR.AbsEntry
To access the underlying sub-ledgers, you will need to look at two fields in the Journal Detail file (JDT1), the BaseRef (Reference code in the subledger (i.e., the document number in the invoice table)) and the TransType (tells you which table to access). Below is an example on how to access the data in the AR Invoice table from the Journal Details File (JDT1 -> OINV):
SELECT *
FROM OACT
Inner Join JDT1 ON OACT.AcctCode = JDT1.account
Inner Join OFPR ON JDT1.finncPriod = OFPR.AbsEntry
Left Outer Join OINV
ON OINV.docnum=JDT1.baseref and JDT1.TransType = 13
Note the TransType number, there is a different one for each data source. Repeat the Left Outer Join for Each Source and you will be set. Put the query in something like SBO (for PLD), Crystal Reports, or MS Reporting Services and you can create a nicely formatted report.
Good Luck!

 

Thanks to Ed Monk of SBONotes.com

SAP Business One 8.8 Dashboards

Monday, August 2nd, 2010

SAP recently announced that service update 12 will include a new “Dashboard” feature in the solution.  In this release the ‘Dashboards’ are more for demonstration and testing purposes but it shows you what you will be able to do soon.

They recorded a webinar/video which I have posted in hi-def on youtube.  To check out how the dashboard feature works, see below:

SAP Business One ERP – New 8.8 Cockpit Review Video

Monday, August 2nd, 2010

SAP recently announced that service update 12 will include a new “Cockpit” and a preview to the new “Dashboards” functionality in the solution.  It also includes other features such as queues and high speed ‘google’ like search.

They recorded a webinar/video which I have posted in hi-def on youtube.  To check out how the cockpit feature works, see below:

SAP Business One Overview Demo

Thursday, July 8th, 2010

Here’s a great overview demo of SAP Business One.  It takes you through the key differentiators to really show you the strength of the solution.

Features shown include:

  • Alerts and Workflow
  • Drag and Relate
  • Document Flow and trace
  • XL Reporter
  • Dashboards
  • Light Production
  • CRM & Activity Management
  • User Defined Fields and Tables
  • Customized Forms and Reports
  • Outlook Integration

See our New SAP Business One Resource and Demo Center!

Friday, February 12th, 2010

We’ve just posted up a comprehensive sub-site at Clients First focusing around SAP Business One.  This site covers technical information, customer reference videos, demonstration and how-to videos, and business goal achievement.

It also has information and materials on Crystal Reports and Xcelsius for true business intelligence.  Everything is wrapped up in an entertaining and visual video and avatar presentation format.

image

Click HERE to go to our sub-site.

(more…)