What are the solutions offered to handle length based or mill products?

We are on 11.5.10. Current version treats beams as each, we have 30 feet beams, 20 feet beams etc.
We do not want to set-up different items for each length of beam.
We need ability to tell we have 10 pieces of 26 feet beams in inventory.
Currently we can only tell we have 260 feet of beams.
Current solution treats it discretley. We need ability to sell length based items, receive length based items, do inventory management based on length based items.
a) What are the solutions offered by Oracle in latest releases for Length based products or for Mill products.
b) If there are any solutions offered by Oracle to handle length based or mill products, can these be back ported to Oracle 11.5.10?

At the time of entering orders, item inquiry, receiving, inventory transfers etc...You can enter the lot attributes during receiving because you create a new lot number.
On Item onhand inquiry, you can enter lot context and lot attributes to limit your search to specific lots.
You may have to write personalizations on other screens.
Hope this helps,
Sandeep Gandhi

Similar Messages

  • What are the solutions offered by Oracle to handle length based products

    We are on 11.5.10. Current version treats beams as each, we have 30 feet beams, 20 feet beams etc.
    We do not want to set-up different items for each length of beam.
    We need ability to tell we have 10 pieces of 26 feet beams in inventory.
    Currently we can only tell we have 260 feet of beams.
    Current solution treats it discretley. We need ability to sell length based items, receive length based items, do inventory management based on length based items.
    a) What are the solutions offered by Oracle in latest releases for Length based products or for Mill products.
    b) If there are any solutions offered by Oracle to handle length based or mill products, can these be back ported to Oracle 11.5.10?

    Please do not create duplicate posts across the forums -- What are the solutions offered to handle length based or mill products?

  • Any solutions offered by Oracle to handle length based or mill products?

    We are on 11.5.10. Current version treats beams as each, we have 30 feet beams, 20 feet beams etc.
    We do not want to set-up different items for each length of beam.
    We need ability to tell we have 10 pieces of 26 feet beams in inventory.
    Currently we can only tell we have 260 feet of beams.
    Current solution treats it discretley. We need ability to sell length based items, receive length based items, do inventory management based on length based items.
    a) What are the solutions offered by Oracle in latest releases for Length based products or for Mill products.
    b) If there are any solutions offered by Oracle to handle length based or mill products, can these be back ported to Oracle 11.5.10?

    Please do not create duplicate posts across the forums -- What are the solutions offered to handle length based or mill products?

  • HDR Pro Merge dialog box does not appear. The layer disappear. What are the solutions?

    HDR Pro Merge dialog box does not appear.
    The layer disappear. What are the solutions?

    Hi Noel,
    Actually, I just checked my scratch disk available space and it says ot is over 1.7 TB!!  I am only using the C drive as my scratch drive, as that is my only drive.  Anyway, I appreciate your help! Still will not function properly.  Maybe I should try reinstalling Photoshop.
    Cheers,
    Russ

  • What are the sensitive places to handle in devlopment of LSMW

    hi
    What are the sensitive places to handle in devlopment of LSMW
    thanks

    At the time of entering orders, item inquiry, receiving, inventory transfers etc...You can enter the lot attributes during receiving because you create a new lot number.
    On Item onhand inquiry, you can enter lot context and lot attributes to limit your search to specific lots.
    You may have to write personalizations on other screens.
    Hope this helps,
    Sandeep Gandhi

  • What are the different ways to handle deadlocks?

    Hi,
    May I know what are the ways to solve a deadlock problem?
    Currently, I have the following code to catch the exception:
    catch (XmlException ex)
                   try
                        ex.printStackTrace();
                        txn.abort();
                   } catch (DatabaseException DbEx)
                        System.err.println("txn abort failed.");
                   }and the resulting error is:
    com.sleepycat.dbxml.XmlException: Error: DB_LOCK_DEADLOCK: Locker killed to resolve a deadlock, errcode = DATABASE_ERROR
    Any other more efficient way to handle deadlock?
    Or better ways to prevent deadlock from happening?
    I am using this environment config
    EnvironmentConfig envConf = new EnvironmentConfig();
                   envConf.setAllowCreate(true); // If the environment does not exits,
                   // create it.
                   envConf.setInitializeCache(true); // Turn on the shared memory
                   // region.
                   // envConf.setCacheSize(25 * 1024 * 1024); // 25MB cache
                   envConf.setInitializeLocking(true); // Turn on the locking
                   // subsystem.
                   envConf.setInitializeLogging(true); // Turn on the logging
                   // subsystem.
                   envConf.setTransactional(true); // Turn on the transactional
                   // subsystem.
                   // envConf.setRunRecovery(true); //Turn on run recovery
                   // envConf.setTxnNoSync(true); // Cause BDB XML to not synchronously
                   // force any log data to disk upon transaction commit
                   envConf.setLogInMemory(true); // specify in-memory logging
                   envConf.setLogBufferSize(60 * 1024 * 1024); // set logging size.
                   // envConf.setTxnWriteNoSync(true); //method. This causes logging
                   // data to be synchronously written to the OS's file system buffers
                   // upon transaction commit.
                   // envConf.setThreaded(true); //default by Java that threaded = true
                   // envConf.setMultiversion(true);
                   envConf.setLockDetectMode(LockDetectMode.DEFAULT); // Reject a
                   // random lock
                   // requestThanks in advance for any help!
    :)

    Hi Vyacheslav,
    here is the code:
    package ag;
    import com.sleepycat.db.DatabaseException;
    import com.sleepycat.db.Environment;
    import com.sleepycat.db.EnvironmentConfig;
    import com.sleepycat.db.LockDetectMode;
    import com.sleepycat.dbxml.XmlContainerConfig;
    import com.sleepycat.dbxml.XmlDocumentConfig;
    import com.sleepycat.dbxml.XmlException;
    import com.sleepycat.dbxml.XmlManager;
    import com.sleepycat.dbxml.XmlContainer;
    import com.sleepycat.dbxml.XmlDocument;
    import com.sleepycat.dbxml.XmlManagerConfig;
    import com.sleepycat.dbxml.XmlTransaction;
    import com.sleepycat.dbxml.XmlUpdateContext;
    import inter.DBInterface;
    import java.io.*;
    import java.util.Properties;
    import cp.CheckPointer;
    public class SaveMessageinDB implements DBInterface
         Environment myEnv;
         XmlManager myManager;
         XmlContainer myContainer;
         XmlTransaction txn;
         XmlContainerConfig cconfig;
         Properties properties;
         // CheckPointer cp;
         int Counter;
         public SaveMessageinDB()
              try
                   properties = new Properties();
                   properties.load(ClassLoader
                             .getSystemResourceAsStream("Aggregator.properties"));
                   setXmlEnvrionment();
                   setXmlManager();
                   setXmlContainer();
                   // cp = new CheckPointer(myEnv);
                   // cp.start();
                   // System.out.println("Checkpointer started....");
                   Counter = 0;
              } catch (Exception ex)
                   ex.printStackTrace();
         public void saveMessage(String docName, String content) throws Exception
              addXMLDocument(docName, content);
         public void setXmlEnvrionment()
              try
                   File envHome = new File(properties.getProperty("DATABASE_LOCATION"));
                   EnvironmentConfig envConf = new EnvironmentConfig();
                   envConf.setAllowCreate(true); // If the environment does not exits,
                   // create it.
                   envConf.setInitializeCache(true); // Turn on the shared memory
                   // region.
                   envConf.setCacheSize(100 * 1024 * 1024); // 100MB cache
                   envConf.setInitializeLocking(true); // Turn on the locking
                   // subsystem.
                   envConf.setInitializeLogging(true); // Turn on the logging
                   // subsystem.
                   envConf.setTransactional(true); // Turn on the transactional
                   // subsystem.
                   // envConf.setRunRecovery(true); // Turn on run recovery
                   // envConf.setTxnNoSync(true); // Cause BDB XML to not synchronously
                   // force any log data to disk upon transaction commit
                   envConf.setLogInMemory(true); // specify in-memory logging
                   envConf.setLogBufferSize(60 * 1024 * 1024); // set logging size.
                   // envConf.setTxnWriteNoSync(true);
                   // This causes logging
                   // data to be synchronously written to the OS's file system buffers
                   // upon transaction commit.
                   envConf.setMultiversion(true); //Turn on snapshot isolation
                   envConf.setLockDetectMode(LockDetectMode.DEFAULT); // Reject a
                   // random lock
                   // request
                   // myEnv = new Environment(envHome, null); //To adopt Environment
                   // already set by others
                   myEnv = new Environment(envHome, envConf);
                   System.out.println("Environment created...");
              } catch (Exception ex)
                   ex.printStackTrace();
         // All BDB XML programs require an XmlManager instance.
         // Create it from the DB Environment, but do not adopt the
         // Environment
         public void setXmlManager()
              try
                   XmlManagerConfig mconfig = new XmlManagerConfig();
                   mconfig.setAllowAutoOpen(true);
                   mconfig.setAdoptEnvironment(true);
                   mconfig.setAllowExternalAccess(true);
                   myManager = new XmlManager(myEnv, mconfig);
                   // myManager = new XmlManager (mconfig);
                   System.out.println("Manager created...");
              } catch (Exception ex)
                   ex.printStackTrace();
         public void setXmlContainer()
              try
                   cconfig = new XmlContainerConfig();
                   cconfig.setNodeContainer(true);
                   cconfig.setIndexNodes(true);
                   cconfig.setTransactional(true); // set transaction need an
                   // cconfig.setAllowValidation(false);
                   // environment
                   // cconfig.setReadUncommitted(true); // This container allow
                   // uncommitted read (able to read dirty data and not set a deadlock
                   // cconfig.setMultiversion(true);
                   myContainer = myManager.openContainer(properties
                             .getProperty("DATABASE_LOCATION")
                             + properties.getProperty("CONTAINER_NAME"), cconfig);
                   System.out.println("Container Opened...");
              } catch (XmlException XmlE)
                   try
                        myContainer = myManager.createContainer(properties
                                  .getProperty("DATABASE_LOCATION")
                                  + properties.getProperty("CONTAINER_NAME"), cconfig);
                        System.out.println("Container Created...");
                   } catch (Exception e)
                        e.printStackTrace();
              } catch (Exception ex)
                   ex.printStackTrace();
         public void addXMLDocument(String docName, String content)
              try
                   txn = myManager.createTransaction(); // no need to create
                   // transaction. auto commit
                   // by the environment
                   XmlDocumentConfig docConfig = new XmlDocumentConfig();
                   docConfig.setGenerateName(true);
                   docConfig.setWellFormedOnly(true);
                   myContainer.putDocument(txn, docName, content, docConfig);
                   // commit the Transaction
                   txn.commit();
                   System.out.println("documents added.....");
                   Counter++;
                   System.out.println("Document no: " + Counter);
                   txn.delete();
              } catch (XmlException ex)
                   try
                        System.out.println("Occuring in addXMLDocument");
                        ex.printStackTrace();
                        txn.abort();
                   } catch (DatabaseException DbEx)
                        System.err.println("txn abort failed.");
         public void cleanup()
              try
                   if (myContainer != null)
                        myContainer.close();
                   if (myManager != null)
                        myManager.close();
                   if (myEnv != null)
                        System.out.println("All cleaned up done..in sm");
                        myEnv.close();
              } catch (Exception e)
                   // ignore exceptions in cleanup
    }Thanks!

  • My iPhone 4 turns off (crashes) after accesing any apps, It work fine when plugged to charger. I tried all troubleshooting steps suggested by Apple but it doesn't work. What could be the problem and what are the solutions?

    My iPhone 4 turns off (crashes) after accesing any apps, It work fine when plugged to charger (power supply). I tried all troubleshooting steps suggested by Apple but it doesn't work. I backed up my phone. I restored it several times. Even I re-installed iphone software. Also I restored it as a new iphone but doesn't work. What could be the problem and what are the availble solutions?

    We can't know if there's a "fixture" because we can't examine your phone.  But Apple can.  Make a Genius Bar appointment and get your phone evaluated.

  • What limitations are you finding in FormsCentral? What are the solutions?

    1. There's no way to reduce the height of the fields.
    2. There's limited formatting options. This form has more formatting options
    than FormsCentral. No Styles, Bullets, numbering, etc.
    3. When in Design mode, there is no way to increase the view. If you are
    using a small font to increase the content per page, you cannot read what you
    are typing.
    4. There's no “What You See Is What You Get” (WYSIWYG). The formatting in
    FormsCentral changes when you save it to PDF. The pagination is different.
    Three columns become 2 columns.
    5. Is there a more robust version of FormsCentral with a higher upgrade?

    1) As you mention in 3, you can change the field height by changing the font size.  Field height is directly tied to font size.  If you are looking for finer field size control you might want to look at Adobe Acrobat Pro XI or Adobe Designer.
    2) This is correct. If greater formatting is required Adobe offers other forms solutions (Adobe Designer and Adobe Acrobat Pro). 
    3) I implore you to add this issue to out "Feature Request" form at https://adobeformscentral.com/?f=XnF-KJVCovcEVQz9tZHYPQ
    4) FormsCentral has 2 views that a page can be presented as.  The default is Web View which gives a representation of how the page will appear as a HTML file.  The other view is Page View.  Page View will present the form as it will appear on a printed page (or as a pdf file).  There are differences.  For instance, in web view a page can go on and on and on.  In Page view the same form will have page breaks inserted so that the contents will fit on a printed page (conforming to the page layout settings).  To make a pdf form layout the way you like it is recommended that you design the form while in Page View.
    5) The difference between the Free FormsCentral and Paid FormsCentral is in the number of forms you are allowed to create (and keep active) and the number of responses supported.
    I hope this information is helpful.
    -Jeff Canepa

  • What are the courses offered by Pebble Hills University ?

    Hi i am Mzondi Lungu staying in Us and heard a lot about Pebble Hills University  but not sure  which courses are offered by the University ?
    so anybody suggest ?
    Mzondi Lungu

    I am wondering why you asking this question here. 
    You can go to http://pebblehills.edu/ and ask these in contact us.

  • What are the solution to solve a problem with Adobe Flash Player

    I am encountering a problem with the update service with the flash player program
    Description
    Faulting Application Path:          C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    Problem signature
    Problem Event Name:          APPCRASH
    Application Name:          FlashPlayerUpdateService.exe
    Application Version:          11.6.602.180
    Application Timestamp:          51a4ab8c
    Fault Module Name:          ntdll.dll
    Fault Module Version:          6.1.7601.17725
    Fault Module Timestamp:          4ec49b8f
    Exception Code:          c0000005
    Exception Offset:          0002e243
    OS Version:          6.1.7601.2.1.0.256.48
    Locale ID:          4105
    Additional Information 1:          0a9e
    Additional Information 2:          0a9e372d3b4ad19135b953a78882e789
    Additional Information 3:          0a9e
    Additional Information 4:          0a9e372d3b4ad19135b953a78882e789
    this is the details from the reliability report i will give more info if someone can help me with my problem i have been having this problem for two weeks i am annoyed because i have been going from tech support to tech support and i have browsed my files did a mem scan, did a sytem files scan, did updates to microsoft and other related programs to see if that would help nada nothing worked so i am hoping some else can help me please

    Upgrade your browser to Firefox 8 and try
    * getfirefox.com

  • What are the main causes of slowdown (long term)?

    I've had my MacBook for about 3½ years now, and it's starting to slow down. (Hardware specs are in sig.)
    Yup, I know it's normal. It's happened with every computer I've owned, regardless of platform.
    *_WHAT I CURRENTLY DO ABOUT IT_*
    I routinely run Maintenance (http://www.titanium.free.fr/pgs2/english/maintenance.html), a free app that—yep, you guessed it!—performs maintenance on your Mac. It uses a mix of maintenance scripts that are built-in to OS X (OS X runs them silently, but this allows them to be run on demand), and some of its own methods for cleaning a Mac to keep it running smoothly.
    I've found that Maintenance does help—I definitely recommend it!—but the older my MacBook has become, it seems the less Maintenance can do to mitigate the slowdown that comes with age.
    *_MY CURRENT BELIEF_*
    I don't think it's because the hardware is old by today's standards, because in my experience if you reformat any machine it will operate significantly faster, even after restoring all of the software that was removed by the format.
    I've become increasingly suspicious about the hard drive's free space's effect on a system's performance. I've always known that it has a noticeable effect—less swap space for virtual memory—but I'm beginning to wonder if the effect of a mostly-full hard drive is much more than I have previously imagined. Just a feeling.
    *_MY QUESTIONS_*
    *#1: What are the leading causes of slowdown (long term)?*
    *#2: What are the solutions to each of the above problems?*
    • acknowledging that there may not be a solution to every problem, and
    • some solutions may solve a problem “more completely” than others
    Edited for clarity by Tony R.

    • I was under the impression that Disk Utility's “Repair Disk” would fix all non-permissions-related errors (other than physical damage, obviously). If they can be fixed by a backup-reformat-restore, then I take it they are software (filesystem) based problems. If so, why can't software solve the problem without a reformat?
    Disk utility can and does repair permissions and basic disk errors. However it does not rebuild directory data.
    • How exactly do directory structure errors happen, and what other consequences do they have (if any)?
    The article on alsofts website should help
    What is directory damage?
    It is worth noting that in the future when Mac OS X support the ZFS disk format directory damage will be a thing of the past.
    however as you said
    Yep, I'm at 11.2% free disk space. Thanks for the info!
    I think this is your main issue. Try moving your itunes and movie to an external drive then see how your mac performs.
    Also a good way to reclaim some space is to delete all the language localisations you dont use. It is amazing that iWeb alone can install a few 100megs of foreign language templates that you will never use.
    I used to use Mike Bombich's delocalizer to do this but that app is not longer available so I use monolingual now.
    edit, as you have macbook you are lucky in that it is really straightforward to install a bigger internal hard drive.
    You can now get 5000GB 2.5 inch sata hard drives. You could take out the old drive hook that up to a usb to sata cable, install a bigger hard drive. then connnect the usb cable to your mac. Then boot from your Leopard Disk then use disk utility clone your old drive onto your new drive.
    Message was edited by: Tim Haigh

  • What are the best practices for exception handling in n-tier applications?

    What are the best practices for exception handling in n-tier applications?
    The application is a fat client based on MVVM pattern with .NET framework.

    What are the best practices for exception handling in n-tier applications?
    The application is a fat client based on MVVM pattern with
    .NET framework.
    That would be to catch all exceptions at a single point in the n-tier solution, log it and create user friendly messages displayed to the user. 

  • What are the standard Solutions available for Complaints Management in CRM?

    Dear all,
    What are the standard solutions available in SAP CRM to receive and process complaints through Customer Interaction Center.
    Our requirement is to receive and register complaints from contact center and process them by integrating back end ECC and BIW systems.
    As per my understanding we can not integrate ECC transactions in CASE Management while CASES are being created through Interaction Center.
    Please help me to map the following requirement successfully into SAP.
    How to register the complaint through Interaction Center?
    How this complaint information is communicated in back end ECC system?
    How to track the status and solution of the complaint available in back end ECC system?
    How the complaints are stored in ECC system?
    After creation of a complaint, can we trigger an automatic email on back end ECC system user with all complaint relevant data?
    Kindly help me to understand the process.
    Best regards,
    Raghu ram.

    You can analyse this [link |http://help.sap.com/saphelp_crm60/helpdata/en/68/691976cd2ef845a4e62437a82b67df/frameset.htm]for more information. Additionaly the tree hierarchy links contain some process flows where it explains you briefly the big picture of the process, in standard SAP CRM Complaint Manaagement Scenario.
    BR,
    Cenk Sezgin

  • Values are not getting updated in 'stocks App' in my i4 phone.  What is the solution?

    values are not getting updated in 'stocks App' in my i4 phone.  What is the solution?

    you have encountered activation lock.  Read iCloud: Activation Lock

  • My iSight is not working on my Macbook Pro. What are the possible problems and solutions?

    My iSight is not working on my Macbook Pro. What are the possible problems and solutions?

    Hello Douglas,
    Thank you for the details of the issue you are experiencing with the built-in iSight camera on your MacBook Pro.  I recommend the following steps for this issue:
    Important: Follow these instructions in order. Test the camera between steps to see if the issue is resolved.
    Built-in iSight cameras
    These steps are for iSight cameras that are built into a computer, such as the iMac G5 (iSight) or later, the MacBook, or MacBook Pro.
    See if the issue is application-specific.
    Try another application (iSight works with applications like iChat, PhotoBooth, and iMovie HD 6) to see if the iSight camera exhibits the same behavior in all applications. If it only happens in one application, try reinstalling that application.
    See if the issue is user-specific.
    Test your iSight camera in another user account. If the issue only occurs in one user, the issue would be isolated to user settings.
    Find out if the computer recognizes the iSight
    Check System Profiler (in the Utilities folder, inside the Applications folder). Under the USB header, check to see if the iSight camera is detected.
    Reset SMC or PMU
    Reset your computer's SMC or PMU, and then check System Profiler again. (SMC reset instructions for iMac G5 (iSight), Intel-based iMacs; PMU reset instructions for MacBook and MacBook Pro.)
    If your built-in iSight camera is still not behaving correctly after trying all these steps, you may need to contact Apple or an Apple-Authorized Service Provider for service.
    You can find the full article here:
    How to Troubleshoot iSight
    http://support.apple.com/kb/ht2090
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

Maybe you are looking for

  • To it being stolen it tells me it nees restoring and when i try i get cant be restored error -1  please help me

    After recieving my iphone 3gs back from the police due to it being stolen ( yeah they got it back)  it tells me it needs to be restored but when i do it says cant be restored with error -1   can anyone please help me  Im so hapy to have it back but n

  • IMac shuts down when starting up

    Hi there Wireless keyboard batts ran out, iMac didn't recognise keyboard any longer. Turned iMac off to restart, but only made it to the start up screen with apple logo, then everything shuts down. Can hear clicking noises, and the disc drive trying

  • Infotype header the format

    hello, As you know in the infotype header the format name that the screen shows is diferent for USA:            Last Name  , Name for MEX version :   Name , Last Name I need both to have the same format (Name , Last Name) Is that posible? Best Regard

  • Je ne peux plus synchroniser les chansons de mon ordinateur sur mon Ipod

    Je ne peux plus synchroniser les chansons que j'ai sur Itunes à mon Ipod Touch 4ieme generation.

  • Mail sounds silent

    This is a problem I have on only one machine, but it's the one where I need the most timely notification. I am greeted by silence when new mail arrives, despite having a default new mail sound, and many others using mail Rules. It matters not whether