otmfaqForumsBlogsRegister
FAQMembers ListCalendarToday's PostsSearch


 Subscribe Blogs:RSS
 Subscribe Forums:RSS
 Follow New Posts:Twitter
OTMFAQ Home
OTMFAQ Blogs
OTMFAQ Forums
OTM Wiki

OTM SIG
OTM Wiki
MavenWire


Order Processing Shipment planning and order processing - including data requirements, line items, ship units, order bases and order releases.

Reply
 
Submit Tools LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old September 21st, 2009, 09:44
Junior Member
 
Join Date: Aug 2009
Posts: 1
Groans: 0
Groaned at 0 Times in 0 Posts
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
apanchan is on a distinguished road
Post Unable to create a new order base

I am trying to create an Order BAse in OTM 6.0, however when 'New' button is pressed, it give error like 'An undefined error has occured, Please try again later' On clicking Fix error button, issue does not get resolved.

Can anyone please help here?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old September 23rd, 2009, 00:08
Member and Blogger
 
Join Date: Oct 2007
Location: Netherlands
Posts: 209
Groans: 0
Groaned at 2 Times in 1 Post
Thanks: 18
Thanked 31 Times in 28 Posts
Rep Power: 3
LourensGlog is on a distinguished road
Send a message via AIM to LourensGlog Send a message via Yahoo to LourensGlog
Re: Unable to create a new order base

Sounds like an installation error.
Does everything else work okay?
__________________

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old September 29th, 2009, 09:00
Junior Member
 
Join Date: Nov 2008
Posts: 5
Groans: 0
Groaned at 0 Times in 0 Posts
Thanks: 1
Thanked 0 Times in 0 Posts
Rep Power: 0
BirgitHannover is on a distinguished road
Re: Unable to create a new order base

I have the same problem.

I also cannot create locations and Service Provider, I cannot edit locations already in OTM available.

We have made an uprade from 5.5 to 6.0.

Thanke you for any support.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old October 8th, 2009, 20:26
chrisplough's Avatar
Site Moderator
 
Join Date: Jun 2006
Location: West Chester, PA
Posts: 1,167
Blog Entries: 8
Groans: 0
Groaned at 1 Time in 1 Post
Thanks: 143
Thanked 258 Times in 161 Posts
Rep Power: 10
chrisplough is a jewel in the roughchrisplough is a jewel in the roughchrisplough is a jewel in the rough
Send a message via AIM to chrisplough
Re: Unable to create a new order base

FYI - these errors are typically tracked down to the installation of the 3rd party JAR files that OTM requires post-install. Please ensure that you've followed the steps to download and install these library files, so that OTM will function.

--Chris
__________________
Chris Plough
MavenWire

www.MavenWire.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old December 21st, 2009, 23:54
Member
 
Join Date: Dec 2009
Posts: 32
Groans: 0
Groaned at 0 Times in 0 Posts
Thanks: 3
Thanked 1 Time in 1 Post
Rep Power: 0
sreedharpuppali is on a distinguished road
Re: Unable to create a new order base

Looks like I am also hitting the same error. Can you please give me more details on this Chris. What type of 3rd Party Jar we are talking about.

Sreedhar Puppali
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old December 22nd, 2009, 12:17
Senior Member and Blogger
 
Join Date: Nov 2007
Location: Drexel Hill, PA
Posts: 378
Groans: 0
Groaned at 0 Times in 0 Posts
Thanks: 0
Thanked 67 Times in 63 Posts
Rep Power: 3
nick.polites will become famous soon enough
Re: Unable to create a new order base

Quote:
Originally Posted by sreedharpuppali View Post
Looks like I am also hitting the same error. Can you please give me more details on this Chris. What type of 3rd Party Jar we are talking about.

Sreedhar Puppali

They are in the release notes and are also mentioned at the end of the installation for the 3rd party jars. There are also a few database scripts that need to be executed manually to get new orders, shipments etc working.

Note 800895.1 Problems Creating Locations, Order Releases and Service Providers in New OTM 6.0 Installations

Go to directory gc3/glog/oracle/script8
Log in as GLOGOWNER using sqlplus and issue following SQL commands

alter table DISTANCE_SERVICE_TIME modify DISTANCE_VALUE_UOM_CODE NULL;
alter table LOCATION_ROLE_PROFILE modify VAR_HANDLING_WEIGHT_UOM_CODE NULL;
alter table OB_SU_RELEASE_INSTRUCTION modify SEQUENCE_NO NULL;
alter table ORDER_RELEASE modify TOTAL_DECLARED_VALUE NULL;
alter table ORDER_RELEASE modify TOTAL_DECLARED_VALUE_BASE NULL;
alter table ORDER_RELEASE modify TOTAL_DECLARED_VALUE_GID NULL;
alter table ORDER_RELEASE_LINE modify BILLED_QUANTITY_UOM_CODE NULL;
alter table RATE_SERVICE_SPEED modify MIN_DRIVE_TIME_UOM_CODE NULL;
alter table SHIPMENT modify TOTAL_DECLARED_VALUE NULL;
alter table SHIPMENT modify TOTAL_DECLARED_VALUE_BASE NULL;
alter table SHIPMENT modify TOTAL_DECLARED_VALUE_GID NULL;
alter table SHIP_GROUP modify MARKED_FOR_PURGE NULL;
alter table SKU modify MARKED_FOR_PURGE NULL;
alter table SS_STATUS_HISTORY modify PARTITION_KEY NULL;
alter table VISIBILITY_EVENT modify EVENT_DATE NULL;
alter table VISIBILITY_EVENT modify VISIBILITY_EVENT_TYPE_GID NULL;

@recompile_invalid_objects.sql;
exit;

Go to directory gc3/glog/oracle
Log in as GLOGOWNER using sqlplus and issue following SQL commands
@insert_security_roles.sql;
exit;
__________________
MavenWire Hosting Admin
www.mavenwire.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old December 22nd, 2009, 17:23
Member
 
Join Date: Dec 2009
Posts: 32
Groans: 0
Groaned at 0 Times in 0 Posts
Thanks: 3
Thanked 1 Time in 1 Post
Rep Power: 0
sreedharpuppali is on a distinguished road
Re: Unable to create a new order base

All those table columns are already NULL. Do we still need to run those again.

Thank you -Sreedhar
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old December 22nd, 2009, 17:26
Senior Member and Blogger
 
Join Date: Nov 2007
Location: Drexel Hill, PA
Posts: 378
Groans: 0
Groaned at 0 Times in 0 Posts
Thanks: 0
Thanked 67 Times in 63 Posts
Rep Power: 3
nick.polites will become famous soon enough
Re: Unable to create a new order base

It won't hurt to re-run these...if they are already set then they should error out. If they do then you have some other issue. You'll want to check the glog.exception.log and the weblogic console.log for more information as to what may be causing the problem.
__________________
MavenWire Hosting Admin
www.mavenwire.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old December 23rd, 2009, 21:37
Member
 
Join Date: Dec 2009
Posts: 32
Groans: 0
Groaned at 0 Times in 0 Posts
Thanks: 3
Thanked 1 Time in 1 Post
Rep Power: 0
sreedharpuppali is on a distinguished road
Re: Unable to create a new order base

This was the fix.. Some readme says.. fix only when you have issue. .but we have to do upfront to fix it...
. Rename the following files on the Web server:

$OTM/glog/gc3webapp/WEB-INF/lib/standard.jar => standard.jar.orig
$OTM/glog/gc3webapp/WEB-INF/lib/3rdparty/standard.jar => standard.jar.orig
$OTM/glog/gc3webapp/WEB-INF/lib/3rdparty/saxpath.jar => saxpath.jar.orig (*)
$OTM/glog/gc3webapp/WEB-INF/lib/3rdparty/jaxen-full.jar => jaxen-full.jar.orig (*)

where $OTM is the root directory where Oracle Transportation Management was installed.

(*) these files will not exist on newer Oracle Transportation Management installations

2. Download the following file into a temporary directory:

a. http://flavio.tordini.org/download/s...-jaxen-1.1.jar

Note: If your browser downloads this as a .zip file, do NOT unzip it; simply rename it as directed in the next step.

3. Rename the file to standard.jar and copy it to the following directories on the Web server only:

$OTM/glog/gc3webapp/WEB-INF/lib
$OTM/glog/gc3webapp/WEB-INF/lib/3rdparty

where $OTM is the root directory where Oracle Transportation Management was installed.

4. Download the following file into a temporary directory:

a. http://dist.codehaus.org/jaxen/distr...axen-1.1.1.zip

5. Unzip jaxen-1.1.1.zip using a Zip utility such as WinZip and locate the following files:

a. jaxen-1.1.1/jaxen-1.1.1.jar

6. Rename the file to jaxen-full.jar and copy it to the following directory on the Web server only:

$OTM/glog/gc3webapp/WEB-INF/lib/3rdparty

where $OTM is the root directory where Oracle Transportation Management was installed.

7. On Linux, Solaris, HP-UX and AIX, change the permissions on the files (in BOTH directories) to -rwxr-xr-x on the Web server:

$ chmod 755 standard.jar jaxen-full.jar

8. On Linux, Solaris, HP-UX and AIX, change the owner of the files (in BOTH directories) to the user used to install Oracle Transportation Management (e.g. otm60) on the Web server:

$ chown otm60 standard.jar jaxen-full.jar
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
The Following User Says Thank You to sreedharpuppali For This Useful Post:
chrisplough (January 25th, 2010)
Reply


Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Archiving Of Data Other Than Shipment / Order Release / Order Base / Items ianlo Database Administration 10 March 4th, 2010 08:36
Unable to Create Bill - Sell Shipment using Automation Agent enjoyOTM Settlement 6 January 8th, 2010 06:13
How to View allocated costs on Order Base or Order Release Lines? vsevs Settlement 1 June 8th, 2009 08:36
Want to create an url on the Order Base integration to the ORDER BASE LINES swaussie Branding, Screen Sets, XSL/CSS and Translations 0 March 28th, 2008 11:21
Creating Shipments automatically by grouping order releases of single order base neoandr Order Processing 5 February 26th, 2008 08:57



All times are GMT. The time now is 07:02.
Copyright © 2006-2009, Open Book Solutions LLC. All rights reserved.


Inactive Reminders By Icora Web Design

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40