Login
Register
Search
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Forums
Infor / Lawson Platforms
S3 Systems Administration
BPM.ear file issues
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Zac Shields
Past 24 Hours:
1
Prev. 24 Hours:
1
Overall:
5210
People Online:
Visitors:
232
Members:
0
Total:
232
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
Infor / Lawson Platforms
S3 Systems Administration
BPM.ear file issues
Please
login
to post a reply.
19 Replies
1
Subscribed to this topic
27 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
Chris12
Veteran Member
Posts: 150
7/1/2014 8:30 PM
We have an issue with displaying the recsum.htm file.
As of this time, when we click on a workunit within an inbasket we receive the "Display Exec" error followed by the 4 steps to rebuild the ear file.
After rebuilding and redeploying the ear file, the workunits are missing from the inbaskets.
When we put back the original bpm.ear file the workunits are displayed again but we receive the "Display Exec" error. I was hoping someone came across this in the past and can asist.
Have been struggling with this one for sometime.
We are on 9.0.1.8 (UNIX) .....
Thanks for any advise. Chris
Derek
Basic Member
Posts: 9
7/2/2014 11:40 AM
I haven't had this problem, but I would check for differences between the recsum.htm in the $LAWDIR/bpm/inbasketexecs and the BPM.ear in WebSphere.
John Henley
Posts: 3353
7/2/2014 12:34 PM
Chris, it sounds like something in your process for inserting the recsum.htm and/or redeploying is corrupting the bpm.ear file.
What are the steps you are using? (I recommend using a script or batch file so that it consistent and repeatable)
You should put back the original bpm.ear file, and then go thru the steps again.
Also, you don't need to uninstall/install (i.e. "redeploy") the bpm.ear file, just use the "update" option in WebSphere.
Chris12
Veteran Member
Posts: 150
7/2/2014 1:00 PM
John ... Below are the steps, we used ... this one is odd
copy the bpm.war and bpm.ear to a temp location and the use addExecsToArchive.pl to add recsum.htm, then put bpm.ear and bpm.war back and deploy.
John Henley
Posts: 3353
7/2/2014 8:11 PM
When you redeploy bpm.ear, are you uninstalling/re-installing it? or using update?
Chris12
Veteran Member
Posts: 150
7/3/2014 11:17 AM
We first just tried re-deploying ..... after several attempts at this not working, we finally tried uninstalling and reinstalling .... same results ..
John Henley
Posts: 3353
7/3/2014 4:25 PM
When you copy the bpm.war and bpm.ear to a temp location, are you running addExecsToArchive.pl from the temp location?
In other words,
cd $GENDIR\assembly\components\
mkdir tmp
cd tmp
copy ..\ear\bpm.ear .
copy ..\war\bpm.war .
perl $GENDIR\bin\addExecsToArchive.pl %LAWDIR%\bpm\inbasketexecs\recsum.htm
copy bpm.ear ..\ear
copy bpm.war ..\war
del bpm.ear
del bpm.war
cd ..
rmdir tmp
John Henley
Posts: 3353
7/3/2014 4:26 PM
After you re-deploy, run /bpm/daservlet against the BPM server, and verify the hostname and port, etc. are correct...
Chris12
Veteran Member
Posts: 150
7/7/2014 11:48 AM
Let me check the daservlet .... Chris
Chris12
Veteran Member
Posts: 150
7/7/2014 7:12 PM
Hi John ... so when we build the new bpm.ear file and redeploy the ear file into WAS .... we then run a daservlet call .... the RMIHOSTNAME appears to change to an old host name ..... Any thoughts on where they is getting read from ???
John Henley
Posts: 3353
7/8/2014 10:48 AM
Most likely from LAWDIR/system/bpm.properties
John Henley
Posts: 3353
7/8/2014 10:54 AM
I ALWAYS include this extra step in the script/process for updating/deploying the displayexecs (again, the goal is to make it consistent and repeatable).
As part of your process, add this step after copying .ear/.war files and adding the execs, but BEFORE copying them back and deploying.
perl $GENDIR/bin/updateArchive.pl
e.g.
perl $GENDIR/bin/updateArchive.pl 16003 lawson.example.com
Chris12
Veteran Member
Posts: 150
7/8/2014 11:10 AM
I see .... Also do I always have it move the ear and war file back or can I redeploy from the temp directory?
John Henley
Posts: 3353
7/8/2014 11:48 AM
Theoretically you can redeploy from anywhere, including the temp directory. However, my recommended approach is to make a backup copy of $GENDIR/assembly/components/ear/bpm.ear and $GENDIR/assembly/components/war/bpm.war within those directories ($GENDIR/assembly/components/{ear|war}, copy bpm.ear / bpm.war files to temp location, make the changes, copy back to $GENDIR/assembly/components/{ear|war}, then deploy from $GENDIR/assembly/components...
That way you have both the backup/original as well as your "customized" versions in the same place.
Chris12
Veteran Member
Posts: 150
7/8/2014 5:11 PM
Hi John ... now I am getting No Requistions Exist for the Workunit variables .... better, atleast we are getting an error message.
We are trying to get someone to put in a new req for us .... then we can test again ... just wondering if you have seen this error before.
John Henley
Posts: 3353
7/8/2014 6:46 PM
Are you able to see the workunits in the /bpm admin site?
Have you verified that the workunits (in LOGAN) and the requisition (in your apps product line) are in fact actually there?
Are you looking at all of this in your test environment, or in a production environment?
If you're in a test environment, did you perhaps refresh the apps product line data but not the LOGAN product line data, and therefore they don't match?
Lastly, are you using the delivered recsum.htm, or are you trying to do something custom with it?
fred.kobos
Advanced Member
Posts: 27
7/8/2014 7:34 PM
when you redeploy the ear file to websphere it wipes out recsum in websphere. you need to add it back into websphere
fred.kobos
Advanced Member
Posts: 27
7/8/2014 7:39 PM
L:\QIBM\UserData\WebSphere\AppServer\V7\ND\profiles\LAWWAS7\installedApps\LAWSON02_LAWDMGR\BPM-P.ear\bpm.war\htmlinbasket\inbasket\execs
Chris12
Veteran Member
Posts: 150
7/10/2014 7:05 PM
Hi John, we finally got this thing fixed .... so what did the trick was including the step:
perl $GENDIR/bin/updateArchive.pl
e.g.
perl $GENDIR/bin/updateArchive.pl 16003 lawson.example.com
After performing that and redeploying the bpm.ear file we were able to generate a new req and see the inbasket
Thanks so much!!!!
John Henley
Posts: 3353
7/11/2014 3:11 PM
I noticed a long time ago that this was required if you ever change server names or ports, etc. So just to be safe, I routinely recommend adding updateArchive.pl (it does no harm) to the deployment steps when you are using addExecsToArchive.pl to update displayexecs.
Of course, this will all change when you go to LPA/IPA
Glad you got it fixed!
Make sure you "tell your friends" where you got a solution
Please
login
to post a reply.