Blog directory

Top 10 Tips to Writing Excellent Articles (Technical Blogging)

education_clipart_boy_writing

Deepesh’s Top Ten Tips to writing professional articles on technical things. The article focuses on technical blogging, and tips to show that anyone can write a blog as s/he wishes. . . . → Read More: Top 10 Tips to Writing Excellent Articles (Technical Blogging)

Using Complex Database Views on EnterpriseOne

Database View Diagram

A Database View is a subset of the database sorted and displayed in a particular way. For example, in an Invoice database, perhaps you only wish to display the Vendors stored in the database.
Database View Diagram
EnterpriseOne Views are similar in nature, where it sits on top on JD Edwards Tables, to retrieve data, or a subset of data.

With Business Views, we can join tables using Left outer, Right outer, Union, Intersect joins. One can usually join up to 5 tables in a Business View if using Simple joins. If one uses a Complex join, then number of tables is limited to 3.

What if you need to use more than 5 tables? What if you need to do some complex joins? And What if you need a column which would give you a Count of records for the group?
For e.g. if you have a need to display the number of items on Open orders and quantities shipped, with the order details, you may have to do the following SQL

SELECT sddoco, sdkcoo, sddcto, count(*), sum(sduopn)
FROM F0411
WHERE sdnxtr <=540
GROUP BY sddoco,sdkcoo,sddcto

To accomplish this in current JD Edwards EnterpriseOne Reporting, you will need to do a little more programming. Continue reading Using Complex Database Views on EnterpriseOne

Launch Batch Jobs/UBE from Interactive Apps

UBEInterconnect

The Article describes the use of BSFN & System Functions to dynamically call a UBE/Report/Batch Application from an Interactive Application/form. The BSFN’s use the same JDE API – jdeLaunchUBEEx(); to launch the UBE. The Launch Batch Application System function and Business functions – B9800240, B91300C are documented here. . . . → Read More: Launch Batch Application/UBE Dynamically from Interactive Apps

EnterpriseOne 9.0 Tools API Reference

The ERP 9.0 Tools API Reference is a great help for developers who are looking for help with respect to JDE API’s, and its usage. The help file also provides some sample code for some API’s and usages. . . . → Read More: EnterpriseOne 9.0 Tools API Reference

JD Edwards EnterpriseOne - The Complete Reference

E1-TheCompleteReference

JD Edwards EnterpriseOne – The Complete Reference E-Book for download, Technical, CNC and has Enterpriseone Architecture, system, and CNC related activities. . . . → Read More: JD Edwards EnterpriseOne – The Complete Reference