The Data Iterator node can be used to loop through records.  One way to use this node is to loop through the lines of a TXT or CSV file so that the data can be manipulated and stored somewhere else, or used in Lawson programs.  Here is an example of a process using data iterators.  The first node accesses a csv file and loops through each line.  The second iterator takes the line from the first node, and splits it on a delimiter.  From there, it loops through each field in the line and makes an assignment.

  1. The first node, which uses a file as the input
    1. Configuration name – select the configuration where the file resides (main is LSF, system is Landmark)
    2. Input file – the path to the file
    3. Parse by:
      1. Line – loop through each line
      2. Delimiter string – provide a character or string, the iterator will “split” on that string and loop through each item
      3. Length – use this for a fixed-length flat file
    4. Starting position – use this to determine which line the iterator should start on (so you could skip header rows if needed)
    5. Maximum read iterations – Use if you only want to read a certain number of lines/characters in a file
    6. Ignore trailing delimiter – will ignore the delimiter at the end of the line
    7. Accumulate output variables – Specifies whether records should be output into separate variables as they are parsed. If true (check box is selected), each record will be saved in the activity variable activityName_outputDataN, where activityName is the name of the activity and N is the record number.
  1. The second node, which uses a file as the input
    1. Configuration name – select the configuration where the file resides (main is LSF, system is Landmark)
    2. Input data – the data to read into the iterator
    3. Parse by:
      1. Line – loop through each line
      2. Delimiter string – provide a character or string, the iterator will “split” on that string and loop through each item
      3. Length – use this for a fixed-length flat file
    4. Starting position – use this to determine which character the iterator should start on
    5. Maximum read iterations – Use if you only want to read a certain number of lines/characters in a file
    6. Bytes to read – used for fixed width files
    7. Delimiter string – the string that splits each field of the record
    8. Ignore trailing delimiter – will ignore the delimiter at the end of the line
    9. Accumulate output variables – Specifies whether records should be output into separate variables as they are parsed. If true (check box is selected), each record will be saved in the activity variable activityName_outputDataN, where activityName is the name of the activity and N is the record number.

For most businesses today Enterprise Resource Planning (ERP) is likely the most important piece of technology that’ll make a part of how one runs their business. However, choosing the right ERP isn’t a simple task. Here’s a few questions to ask about your business to help you pick the right one.

  1. Does the software appeal to today’s workers?
  2. Is the software easy and efficient to modify and maintain?
  3. Does the software enable modular implementation?
  4. Can the software be implemented as a global, single-instance application?
  5. Is there a non-disruptive upgrade capability available?
  6. Can the software be extended as business demands change?
  7. Does the software provide different deployment options?
  8. Can you, as the customer, influence product development?
  9. Does the vendor’s R&D organisation include a workspace to drive disruptive innovation?
  10. Are you offered references to customers using the evaluated software package?

Being able to answer these questions in regards to how it will greatly effect your business will lead you to better deciding which ERP is best for your company.

For Full Article Click Here

 

Infor has reached an agreement to acquire Birst, Inc, a pioneer of cloud-native business intelligence (BI). The San Francisco-based company is a unique, comprehensive platform for sourcing, refining, and presenting standardized data insights at scale for driving business decisions. The Birst business intelligence (BI) platform connects the entire enterprise through a network of virtualized BI instances on-top of a shared common analytical fabric. The platform spans across enterprise resource planning forming a rich, simplified end-to-end BI suite in the cloud. In the last six years Infor has built one of the largest cloud companies in the world with 65 million users in more than 100 countries, investing nearly $3 billion in research and development to re-engineer industry specific applications for the cloud. This has generated double digit growth in cloud subscriptions. With a high mass of cloud subscribers and petabytes of critical data in the cloud, Birst provides Infor a single, elegant platform with a highly consumable user interface. Brad Peters, chairman and chief product officer said of the coming acquisiton, “Infor is the perfect home for Birst, providing the global scale and resources to accelerate our short-term growth and also a common long-term vision for the future of data-driven businesses using advanced business intelligence, artificial intelligence, and machine learning.”

 

For Full Article, Click Here

The IP Designer Trigger Node, located under the Control Menu Group, is used to trigger another IPA process or Service.  Once you drag the node to the design screen, the processes and services list will auto-populate in the node properties.  The configuration settings are just like setting up a trigger in Rich Client or the Infor Process Automation administrator web application.

  • Trigger Type, Process, and Work Title are required. The  indicates that a variable can be used for that value.

  • Use the Process Variables tab to pass variables from the current process into the one being triggered

 

 

 

 

The IP Designer Wait Node, located under the Control Menu Group, inserts a specified wait time into your Process.  The wait times can be units of days, hours, minutes, or seconds.  This can be used for approval flows, if you want approval notifications to be sent after a certain number of days.  This can also be used in flows that run commands which need a “sleep” time between runs.  You also have the option of setting up “variable” wait times.  This could be useful if the wait time varies based on some other condition that is evaluated in the Process.

Here is a configuration for a wait time of 5 days

Here is a configuration for a wait time on a variable

There may be a time where you need to update your WebSphere profile to use a later version of Java.  One indication of this would be if you are installing an app in WebSphere, and you come across the error “The major.minor version ‘51.0’ is too recent for this tool to understand.”  This means that your application expects a newer Java SDK.

To determine which SDK your application is currently using,

  1. Open <WAS_HOME>/profiles/<profile>/logs/startServer.log
  2. Find the last server start entry
  3. Make not of the Java version

To update the SDK used by your WebSphere profile,

  1. Open a command prompt as administrator
  2. Navigate to <WAS_HOME>/profiles/<profile>/bin
  3. Type bat –listAvailable (managesdk.sh for Unix) to list the Java SDKs that are available for this profile (note the name of the SDK that you want to use)
  4. Type bat –enableProfileAll –sdkname <the name you noted earlier> -enableServers
  5. Syncrhonize the WebSphere nodes
  6. Restart the WebSphere application server
  7. Check the startServer.log to see that the java version has changed

For example:

WebSphere Application Server, update java sdk version, The major.minor version ‘51.0’ is too recent for this tool to understand

While using Previous/Next on a record in Lawson portal, you may eventually stumble upon a pesky error message of:

Security search limit of X employees exceeded” (X being anywhere from 1-100+)

 Commonly this could happen when restricting user access via process level, department, etc.

What happens when you click next or previous while inquiring on employees is that Lawson is searching in blocks of records based on your specified search limit.

For example:

If the Employee Security Search limit is set to 10 and we click next to inquire on the next employee record in HR11.

Lawson searches the next 10 employee records to see if the user has access to them.  If they do not, you will get the error message: “Security search limit of 10 employees exceeded”.

When we get the error, we should be on employee record number 10 – meaning if we click next again, we will be on employee number 20 if we do not have access the next 10 records again.

 

Ideally we’d like to reduce clicking next 10+ times by increasing the search limit.

Solution:

HR00.1

Don’t forget to click CHANGE after adjusting Employee Search Limit

As seen above, changing the search limit to something higher like 100 or more can dramatically reduce the amount of clicks to get to the next record that the user has access to.

If we change it to 100 and the next employee record is #200, it will only take 2 NEXT clicks to get to that record.

Ciber and Infor announced an agreement on March 20, 2017 to sell Ciber’s Infor practice to Infor. This is the most significant event in recent years within Infor’s Lawson client base as Ciber been serving the lion’s share of the Lawson customer base for nearly 17 years. The decision comes on the heels of Ciber’s financial troubles in recent years, most notably the repayment of a $28.2 million loan to Wells Fargo due by the end of March 2017.

According to the Form 8-K filed with the SEC on March 20, 2017, the terms include a cash payment of $15M. In addition, Infor will assume certain liabilities associated with the purchase. Ciber CEO Michael Boustridge commented that the sale of the Infor practice “reflects a fundamental decision to hone our business to a focused IT staffing foundation with complementary integrated business consulting and application development management capabilities in a synergistic digital transformation offering” but in light of the financial troubles Ciber has been in and the fast approaching due date of the loan, it’s hard to see this as anything other than a financial necessity.

Boustridge also said in his statement that Ciber is “working to provide a seamless transition and great continuity and service to our affected customers and our employees.” As it stands today, the arrangement seems to be that all Ciber employees within the Infor practice will be absorbed by Infor within the next few months. When it comes to clients however no significant plan has been announced. As with any merger, there will be some transition pains and bumpiness to be expected but it’s hard to imagine how mid-flight projects and managed service customers are going to be transitioned. According to the SEC filling, a key component of the deal is the transition of Ciber’s top 25 customers (by 2016 revenue) and “at least 90% of all specified Business Employees (as defined in the Asset Purchase Agreement), and 100% of certain identified key Business Employees, accepting offers of employment with Infor.”

The March 20th press release presents more questions than it answers at this early stage, such as:

– How will clients who have active projects mid-flight be transitioned from one organization to another?

– How will Ciber and Infor transition their Managed Service Clients?

– Will such a transition be done by customer consent or as part of an automatic consent built into the agreement with the customers?

Only time will tell.

‘Tis the season for taxes! For many this entails longer work hours, but if you’re not careful, this season could entail ID theft. There’s many ways in which you could be scammed or hacked, even if you think you have a safe security system.  Tax payers should be carefully analyzing their practices to make sure that they don’t become an easy target for scammers. A few tips to help you from bring a target include:

  • DO make passwords long and strong
  • DO use direct deposit or refunds or a mailbox with a lock
  • DON’T authenticate your identity to anyone via the phone or online
  • DON’T put information on your social media that could make it easy to guess your security questions

Don’t forget, the deadline this year for taxes is April 18!

For Full Article Click Here

Big Data has contributed greatly to today’s business revolution. With that, there has also been an attempt to tackle the continuous process of assuring that the approporiate decision makers have the right data. This is all a part of Data socialization. Rather than trying to use a top-down approach to impose data-directives, embedding data analytics throughout an organization and having measurable effects can be much more beneficial. “Liking” and “sharing” quality ideas can help the right people who’ll use them to make crucial decisions. This would ensure that updates and edits can be brought to their attention. It would also gives way to data stewardship which would make privacy and compliance  lot less stressful.

For Full Article Click Here