844-NOGALIS (844-664-2547)
Nogalis, Inc.
  • Link to Facebook
  • Link to X
  • Link to LinkedIn
  • Link to Mail
  • Company
    • News, Events and Articles
    • About Us
  • Products
    • Infor Lawson Data Archive
    • PeopleSoft Data Archive
    • Oracle Data Archive
  • Services
    • Infor Lawson Support
    • Infor Lawson / CloudSuite Consulting
  • Education & Training
  • Support
  • Contact Us
  • Click to open the search input field Click to open the search input field Search
  • Menu Menu

Archive for category: Articles

You are here: Home1 / News, Events and Articles2 / Articles

UPDATED: Submitting ACA (Affordable Care Act) to IRS

Articles, News

There is an easier method with additional options to Submit ACA to the IRS. We’ve posted articles in 2016 before, but here’s the latest walk through.

 

UPDATED: Submitting ACA (Affordable Care Act) to IRS.

Once you have done all your Infor work to create your files for submitting to IRS, the steps below will help you get your file submitted successfully. The final files are generated when you run the BN299.

Download the schema package from the IRS website: Schema Package – IRS

Follow instructions on validating the files generated from Infor. See attached KB from Infor View Attachment

Example of file names:

1094C_Request_XXXXX_YYYYMMDDXXXXXXXXXXZ.xml

1094C_Request_XXXXX_YYYYMMDDXXXXXXXXXXZ-Manifest.xml

An XML Reader Application is needed to validate the files. Altova XMLSpy application is a good program to use for this. Follow the steps in the above KB article to validate the files.

Once you make the changes that are noted in the XML Validator you will need to update the Checksum value in the Manifest.xml

Checksum verifies the integrity of the file. Windows has a pre-installed utility called CertUtil. HashAlgorithm choices: MD2 MD4 MD5 SHA1 SHA256 SHA384 SHA512. For our example, we are using SHA256 since our file generated with that from BN299.

From the command prompt:

  1. Browse to the location where your files
  2. Type CertUtil –hashfile <path to XML filename> <HashAlgorithm>
  3. Press Enter
  4. Example:

The generated hash value should be placed in the ChecksumAugmentationNum tag in the Manifest.xml (remove spaces)

You also will need to make sure the AttachmentByteSizeNum is correct. This can change when you make changes to the file.

See attached KB from Infor for details. View Attachment

  1. Locate the Forms XML File.
  2. Right click on the file, select Properties
  3. Locate the Manifest XML File.
  4. Right click and open using Wordpad
  5. Find <p4:AttachmentByteSizeNum> entry
  6. Replace the existing byte size entry with the byte size found in the Forms XML File properties.
    In this example: Change Manifest Size: 4522 to match Forms XML File size: 4598
  7. Save update

And we’re done!

03/20/2018
https://www.nogalis.com/wp-content/uploads/2016/07/Submitting-ACA-Affordable-Care-Act-to-IRS.jpg 665 732 Angeli Menta https://www.nogalis.com/wp-content/uploads/2013/04/logo-with-slogan-good.png Angeli Menta2018-03-20 11:28:182019-05-08 15:52:25UPDATED: Submitting ACA (Affordable Care Act) to IRS

Certificate chaining error

Articles, News

During an LSF outage, we checked the latest logs and saw security_authen.log was updated. It showed a number of errors that a certificate was not trusted. We checked the trusted certificates and saw that the certificate and related certificates were all trusted. So why was the error returned?

Scroll further down the log list to ladb.log. You may see that there is a GEN failed message. Verify that the GEN database really is available by connecting to it directly with a database utility like SQL Studio. Then verify that the gen database connection info is correct in LAWDIR\gen\MICROSOFT. If you are using SERVICENAME to lookup the password, you may want to test commenting out the service name and including the id/password in the file and secure the file. Restart the server and test the portal.

 

SECURITY_AUTHEN.LOG

Caused by: java.security.cert.CertPathValidatorException: The certificate issued by CN=PKIROOT-01-CA is not trusted; internal cause is:

java.security.cert.CertPathValidatorException: Certificate chaining error

at com.ibm.security.cert.BasicChecker.<init>(BasicChecker.java:111)

at com.ibm.security.cert.PKIXCertPathValidatorImpl.engineValidate(PKIXCertPathValidatorImpl.java:199)

at java.security.cert.CertPathValidator.validate(CertPathValidator.java:278)

at com.ibm.jsse2.util.f.a(f.java:14)

… 68 more

Caused by: java.security.cert.CertPathValidatorException: Certificate chaining error

at com.ibm.security.cert.CertPathUtil.findIssuer(CertPathUtil.java:316)

at com.ibm.security.cert.BasicChecker.<init>(BasicChecker.java:108)

… 71 more

 

LADB.LOG
DBDataAreaFactory_1 Create of kind “GEN” failed.
java.lang.UnsatisfiedLinkError: com/lawson/rdtec
h/db/api/DBJni.jniTsDBConnect(I)Ljava/lang/Integer;
DBDataAreaFactory_1 Create of kind “GEN” failed.java.lang.UnsatisfiedLinkError: com/lawson/rdtech/db/api/DBJni.jniTsDBConnect(I)Ljava/lang/Integer;

 

MICROSOFT
#LAWGATENAME=msfdb2000
DBSERVER=lawdbserver
DBNAME=LAWGEN
#SERVICENAME=DBGEN
LOGINNAME=lawson
PASSWORD=lkaj7fde#%&hdsw
SCHEMA=dbo
FILEGROUPS=FALSE
#DEBUG=TRUE

 

PORTAL

03/13/2018
https://www.nogalis.com/wp-content/uploads/2018/03/Certificate-chaining-error.jpg 545 600 Angeli Menta https://www.nogalis.com/wp-content/uploads/2013/04/logo-with-slogan-good.png Angeli Menta2018-03-13 08:57:352019-05-08 15:53:50Certificate chaining error

Modify column data type without dropping table

Articles, News

“String or binary data would be truncated.”

This is a common error if you’re trying to update a field with more data than it allows, e.g. trying to update a char(30) field with a 50 character string.

 

If you try to modify the column data type you’ll get a new error:

“The changes you made require the following tables to be dropped and re-created”. This might be an inconvenience for you.

Easy fix:  Go to Tools >> Options >> Select Designer and Uncheck >> “Prevent saving changes that require table re-creation”

 

And you’re DONE!  Modify the data type and run your update query.

03/08/2018
https://www.nogalis.com/wp-content/uploads/2018/03/Modify-column-data-type-without-dropping-table-e1520538401440.jpg 545 599 Angeli Menta https://www.nogalis.com/wp-content/uploads/2013/04/logo-with-slogan-good.png Angeli Menta2018-03-08 11:47:522019-05-08 15:53:17Modify column data type without dropping table

How to Fix Lawson Backoffice Publish Issue

Articles, News

How to Fix Lawson Backoffice Publish Issue

This is a simple fix but sometimes hard to determine even if you’ve reviewed the Infor documentation.

So first lets make sure your FTP settings are setup correctly:

Lets assume you already published your report in LBI, for us we are doing CU201 for testing:

We run the job again so it will publish automatically via backoffice:

Problem:

The broadcast.csv and published.csv shows the CU201 report being transferred but the Instance is NOT being created.

Solution:

Give your Lawson Backoffice user write/read access to the LSF %LAWDIR% directory as well as FTP access to \Lawsonprod_Apps which most have setup already.

Results:

You should now see the instance created when you run the same CU201 job:

03/01/2018
https://www.nogalis.com/wp-content/uploads/2018/02/How-to-Fix-Lawson-Backoffice-Publish-Issue.jpg 545 600 Angeli Menta https://www.nogalis.com/wp-content/uploads/2013/04/logo-with-slogan-good.png Angeli Menta2018-03-01 09:16:382019-05-20 13:11:53How to Fix Lawson Backoffice Publish Issue

Bad File Status

Articles, News

We noticed our jobs are failing after refreshing our productline. The job log is showing a bad file status error.   

This particular error was caused by windows permissions not being inherited.  Even though the owner of the applications directory was correct, it was not the owner of the files and folders underneath it. This was resolved by setting the owner in the advanced security settings of the folder properties and running icacls to reset permissions on the files.

——————————————————————————–

User: domain\lawson                     Job: PR140           Queue: **********

——————————————————————————–

BEGIN:  Job Submitted:  Wed Feb 14 09:22:06 2018

Step  1:  PR140 Started. . . . . .:  Wed Feb 14 09:22:06 2018

Token Command. . . . . .:  C:\LSFDEV\law\dev\obj\PR140.gnt

Executable Command . . .:  C:\COBOL\bin64\run.exe C:\LSFDEV\law\dev\obj\PR140.gnt dev NT00000004 PR140 1

Process ID . . . . . . .:  4008

Running as Account . . .:  domain\lawson              

Program Messages:

** Creating .prt and .dtl files

Bad File Status 3 7 On File PRPAYRPTEN-FILE

Elapsed Time . . . . . .:  00:00:00

ERROR:    Stopped On Exit 1.

Elapsed Time:  00:00:01

END:    Job Ended:  Wed Feb 14 09:22:07 2018

02/27/2018
https://www.nogalis.com/wp-content/uploads/2018/02/Bad-File-Status.jpg 545 600 Angeli Menta https://www.nogalis.com/wp-content/uploads/2013/04/logo-with-slogan-good.png Angeli Menta2018-02-27 09:19:422019-05-20 13:12:58Bad File Status

Creating a better Employee Self-Service Screen in v10

Articles, News

Many v10 Employee Self-Service (ESS) users don’t particularly like the bookmarks bar compared to v9.

A simple fix for this is to make simple modifications to the ESS portal role.

To make this portal role truly a employee self-service screen, limit it further as shown below:

Make sure you also set your product line in options and enable it.  Here are the option settings we use:

Once done, this is what your ESS only users will see:

There is much more to play with here and it is not limited to ESS only, but this is a simple modification.  Enjoy!

02/20/2018
https://www.nogalis.com/wp-content/uploads/2018/02/Creating-a-better-employee-self-service-screen-in-v10-e1518820800419.jpg 545 595 Angeli Menta https://www.nogalis.com/wp-content/uploads/2013/04/logo-with-slogan-good.png Angeli Menta2018-02-20 07:52:432019-05-20 13:14:46Creating a better Employee Self-Service Screen in v10

How Can I Personalize a Form?

Articles, News

From the Landmark Rich Client, forms can be changed under Options – Personalize in the menu.  Fields on a form can be renamed or changed in color or style.  They can be hidden, marked as display only, or as required.  In this example, the field “Last Employment ID Assigned” is highlighted in bold red with a shortened name.   Once Personalize is selected, Form Personalization shows Actions and Fields at the top.  Actions will allow restrictions for a specific condition.  In this case, click on the “Last Employment ID Assigned” and then click Fields in the upper right.  Select the Label tab to change the style, color, and text.  Once the changes are made, the window is closed and the Form Personalization is Saved in the upper right.  The changes are then seen immediately without restarting the client.  To undo the changes, return to Options – Personalize in the menu, and click Reset in the upper right.

02/15/2018
https://www.nogalis.com/wp-content/uploads/2018/02/How-Can-I-Personalize-a-Form.png.jpg 545 600 Angeli Menta https://www.nogalis.com/wp-content/uploads/2013/04/logo-with-slogan-good.png Angeli Menta2018-02-15 11:05:202019-05-20 13:15:11How Can I Personalize a Form?

Why is PR299 failing?

Articles, News

PR299 may not be creating the EFW2 file from a security violation.  The job log can provide more details.  The log in this example shows that it is trying to use cnvtape to create the EFW2 file.  Cnvtape may not be in a security class or even defined in the environment.  Tokendef can be used to add the utility to the list of environment executables in security.  Once the token is available, a rule to grant all access to cnvtape can be added to a  security class like AllENVAccess.  Ensure the class is on a role for the user running the job.  After adding this permission, the PR299 can run to completion.

 

Job log

 

tokendef

 

Security Administrator

02/06/2018
https://www.nogalis.com/wp-content/uploads/2018/01/Why-is-PR299-failing.png.jpg 545 600 Angeli Menta https://www.nogalis.com/wp-content/uploads/2013/04/logo-with-slogan-good.png Angeli Menta2018-02-06 14:21:432019-05-20 13:16:34Why is PR299 failing?

How can I turn off security in Landmark?

Articles, News

Enabling or disabling security can be done in Authorization Activation through Security System Management.  This can be accessed from the landmark validation url’s or from within the rich client.  The validation page can typically be found at D:\LMKDEV\gen_ValidationURLs.htm where D:\LMKDEV is the landmark installation folder.  Opening the htm in a web browser will list the link for Security System Management.

https://landmark.domain.com/SecuritySystemManagement/page/SecuritySystemManagement?csk.gen=true

From the Security System Management screen, select Authorization Activation in the upper right of the menu. It will return a list of productlines.  Double clicking a productline (or Actions – Open from the menu) will return the Security Activation screen.  The screen shows Security Status as a parameter with values to allow All Access, No Access, Process Rules.  Select All Access to turn off the security rules and save the change.  Select Process Rules to again enable security restrictions.

 

01/22/2018
https://www.nogalis.com/wp-content/uploads/2018/01/How-can-I-turn-off-security-in-Landmark.png-e1516650687979.jpg 544 596 Angeli Menta https://www.nogalis.com/wp-content/uploads/2013/04/logo-with-slogan-good.png Angeli Menta2018-01-22 11:51:492019-05-20 13:20:04How can I turn off security in Landmark?

How to update your TaxLocator version for BSI TaxFactory 10

Articles, News
  1. Download the TaxLocator bulletin from mybsiconnect
    1. Log into mybsi
    2. Choose product
    3. Select TaxLocator Data
    4. Select the appropriate Locator Bulletin
    5. Download the pkg file
  2. Log into your company’s BSI TaxFactory URL
  3. Go to System Tools > Database Load
  4. Browse to the pkg file you downloaded
  5. Click Upload
  6. Select load all files
  7. Click Process

New locator package is updated

BEFORE

AFTER

  1. Validate the TaxLocator in Lawson
    1. Log into LID
    2. Navigate to lapm <PDL> prtf
    3. Click the TaxLocator buttons

 

01/09/2018
https://www.nogalis.com/wp-content/uploads/2018/01/How-to-update-your-TaxLocator-version-for-BSI-TaxFactory-10-e1515470970666.jpg 545 594 Angeli Menta https://www.nogalis.com/wp-content/uploads/2013/04/logo-with-slogan-good.png Angeli Menta2018-01-09 08:39:182019-05-20 13:21:37How to update your TaxLocator version for BSI TaxFactory 10
Page 109 of 117«‹107108109110111›»

LEGACY ERP DATA ARCHIVE SOLUTION



Discover how our clients are leveraging AWS services to archive their Legacy ERP data and provide ubiquitous access to users via a light-weight, secure, and read-only web interface. Secure, Fast, Reliable, and Cost Effective. That is the promise of APIX. Follow the link below to find out more and book a discovery call with our data archive specialist.

BOOK DEMO

© Copyright - Nogalis, Inc. 2024
  • Legal
  • Privacy
  • Contact Us
Scroll to top Scroll to top Scroll to top