BSO storage in essbase 9.x system

Hi techies,
I am very happy to see all again.
I am working on BSo cube of 9.x system
My question is
1. Write back option is available in BSO cube?? if it is please let me know the process??
Thanks in advance.

It depends what you are trying to achieve you have not really given much information, just a one liner exam type question.
Another two examples of products being able to write back data are Smart View and Web Analysis.
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • Can we handle physical data storage through SAP Record Management System

    Dear Experts,
    how can we use Record Management system for handling the process involved in physical storage
    of records ( like files, documents, boxes, x-rays etc) their retrievals, destruction etc.
    Same as that how to handle space management, allocate space to store physical storage, retrieve the available spaces etc.
    Any hint or reference  to implement these requirements through Record Management System will be very useful.

    Closing ..

  • Dimension Number of BSO Application on Essbase

    Hi,
    I'm new in Essbase and I should review an existent BSO application to improve its performance.
    This application has an outline with 5 dimensions, Measure (Account), Period (Time), KPI, Recalculated Market and Organizational Structure. These dimensions have respectively 58,36,4,38 and 5264 total members. I did Measure and Period dimension as Dense dimensions and the others as Sparse Dimension. In this way I will have a block size of 16,3 KB ((58*36)*8) and a number of block of 800128 blocks (5264*38*4).
    This is possible or this organization could create me some problems on performance?
    Should I use ASO application for this? I've read that for financial application with a few dimension BSO applications are good. The application that I discuss before is a financial application of a bank.
    Could someone tell me if the BSO usage is correct?
    Thanks
    Annalisa

    896648 wrote:
    Hi,
    I'm new in Essbase and I should review an existent BSO application to improve its performance.Sorry just out of interest if you don't have much experience with essbase why have you been asked to perform a review to improve the databases performance?
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Essbase migration from system 7.x to 11.x system

    Hi,
    Please i need help !
    I want to migrate the essbase applications from 7.x system to 11.x system not by using the wizard.
    Just i want to do it using the batch script in windows environment.
    Please send the script with one example.
    Thanks in advance.

    Hi,
    If you want to batch it up then you will can use Maxl to create the v11 app / db.
    If you have security/filters you want to export then it is possible with maxl though you will have to play around with the format. All the maxl statements are available in the [tech ref|http://download.oracle.com/docs/cd/E12825_01/epm.111/esb_techref/launch.htm] so have a read. If that is too much of struggle then you could have a look at using the [advanced security manager|http://www.appliedolap.com/free-tools/advanced-security-manager] tool as that may help.
    You will also be able to export / import the data using Maxl.
    As for the database objects (otl,csc,rep,rul..) you can use windows command line to copy them.
    I am not going to provide the script to do it as with a little reading of the tech ref you should be able to develop a script yourself, if you get stuck then there always help here to guide you on your way.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Essbase unix file system best practice

    Is there such thing in essbase as storing files in different file system to avoid i/o contention? Like for example in Oracle, it is best practice to store index files and data files indifferent location to avoid i/o contention. If everything in essbase server is stored under one file directory structure as it is now, then the unix team is afraid that there may run into performance issue. Can you please share your thought?
    Thanks

    In an environment with many users (200+) or those with planning apps where users can run large long-running rules I would recommend you separate the application on separate volume groups if possible, each volume group having multiple spindles available.
    The alternative to planning for load up front would be to analyze the load during peak times -- although I've had mixed results in getting the server/disk SME's to assist in these kind of efforts.
    Some more advanced things to worry about is on journaling filesystems where they share a common cache for all disks within a VG.
    Regards,
    -John

  • Problem with BSO - ASO partitions (Essbase 9.3.1)

    Hi there,
    Is it possible to create a BSO partition on top of four ASO cubes when using member set functions in the partition definition (e.g. @GENMBRS or @LEVMBRS)?
    I have tried that but always get an “overlapping partitions” error, although the partition members are not defined overlapped. The cellcount does match.
    Appreciate any hints.
    Thanks in advance.

    Obviously this won't resolve your entire problem, but just to answer the first question you can definitely use e.g. @GENMBRS successfully in the partition definitions for a single BSO cube over multiple ASO cubes in 9.3.1.

  • Data storage in Essbase

    Hi Experts,
    Could you please guide me how the non numeric data is stored in Essbase (which is not metadata). Ex: Dates, Text Etc...
    Thanks
    N Kumar

    Traditionally, we learned that Essbase could not store text. This is because of the way the database engine is optimized for financial data. This is still true, although in version 11, Oracle has added the ability to store “typed measures,” which means dates or enumerated strings. This is nice, but an enumerated string must be defined and stored in a separate relational database. With the Store Text In Essbase Add-In, you store the string directly in Essbase. The disadvantage of this add-in, however, is that it is limited in the size of strings it can store without spanning multiple members (see the “Sample” workbook tab in the Excel sheet for examples.)
    If you think of the doubles that are stored in Essbase as strings instead of numbers, you can see that they are composed from the Arabic numerical symbols 0123456789. This is their symbol set. In the Latin alphabet we use in English, there are 26 letters, or symbols. Combining lower and uppercase letters, the Arabic numerals, and a few punctuation characters, we get 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ., - The Store Text In Essbase add-in simply compresses a string encoded in one symbol set (e.g., the Latin alphabet) into the smaller symbol set that Essbase is able to store. That process is reversed to read the stored string back out of the database. The add-in uses two functions, one to compress the string (doubleFromString) and one to decompress it (stringFromDouble.) Here is their definition:
    Function doubleFromString(ByVal strIn As String, ByVal strSymbols As String)
    Function stringFromDouble(ByVal dblInTotal As Double, ByVal strSymbols As String)
    It is only possible to store 8 characters in the symbol set above per outline member, so a string longer than 8 must be chopped into pieces that are stored across multiple outline members (see the “Sample” workbook tab for examples.)
    For more info visit:
    http://code.google.com/p/store-text-in-essbase/
    Cheers...!!!

  • Data Storage in Essbase -- Non Numeric

    Hi Experts,
    Could you please guide me how the non numeric data is stored in Essbase (which is not metadata). Ex: Dates, Text Etc...
    It it Essbase first convert date format into numeric and then store or something else???
    Thanks
    N Kumar

    From version 11, Essbase provides some support for text and date measures natively.
    Text measures allow a predefined set of text values to be mapped to a predefined set of numeric values - there is no native support for loading 'free text'. The text measure 'mappings' are stored in the Essbase outline (.otl), but for both text and date cases the value itself is stored numerically, like any other data cell.
    You can also use formats to convert numeric values to text when reporting. Again, Essbase 'really' only stores data as numbers.
    Check out the following page from the latest Database Administrators Guide, which covers all these topics: http://download.oracle.com/docs/cd/E17236_01/epm.1112/esb_dbag/frameset.htm?dtypmeas.html
    Edited by: TimG on Jul 8, 2010 5:30 AM
    John got there before me. Still, follow the link to the DBAG!

  • Adding a network storage link to a wireless system

    Please bear with me...I'm a neophyte about this stuff...
    We use a linksys WRT54G wireless router in our home. We use that same router for some work-related stuff. In an attempt to help us better share files - and also access files from afar - someone gave us a Linksys NSLU2 Network Storage Link. I plugged a simple jump drive into the back of the NSLU2 for storage
    It's my understanding that I should be able to hook the NSLU2 up to the wireless router and access the files on that jump drive, both from home and from the web. But the NSLU2 came without instructions (it was just donated by a friend) and I don't know how to make it work. So far, all I've done is plug the jump drive into the back of the NSLU2, plug the NSLU2 into the wall, and connect the NSLU2 to the Wireless router (WRT54G) using an ethernet cable and hooking it into the #2 slot on the back of the router.
    Does anyone know what steps I need to take so that computers at my house can access it? And what I need to do to access it remotely?
    Any thoughts greatly appreciated!

    There are several PDF documents (manuals, how-to's) and some ZIP (compressed ) files -- likely the install software. one of those zips is over 85MB, so it's probably the software that's on the disk.
    Your friend didn't give you the software/manual?
    There's a 24-hour tech support number dedicated to that device. 1800-326-7114.
    [email protected]
    Is your local network in the 192.168.1.xx subnet?
    Your device may work if you try to connect to:
    192.168.1.77
    Did you download the manual?
    (Flash Drive needs to be inserted in Disk -2- port

  • Windows Server 2008 R2 only detect USB storage drives if I restart the system

    Hi, I have a Windows Server 2008 R2 with an weird behaviour. I cannot connect any USB drive (not USB external hard disk neither pendrives). Windows device manager detects the device as
    Mass Storage Device, but with a yellow exclamation sign. The exact error code is:
    The device cannot start.
    However, if I restart the machine keeping the USB disk plugged, the hard disk (or pendrive) is correctly detected and usable.
    I've tried:
    Update mass storage driver.
    Review HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\usbstor "Start"
    and is 3 (I think is right)
    I've tried with different usb hard disks that are working in other PCs.
    I've tried with large (>1TB) disks and small (8GB) pendrives.
    I've tried all available USB ports, front and back, with same behaviour.
    Always I get a yellow exclamation  (Device cannot start) and if I restart the computer the device is working perfectly.
    Can someone help me?
    Thanks in advance
    Edit: Here is the log of connecting a Kingstone USB 8GB pendrive
    >>> [Device Install (Hardware initiated) - USB\VID_0930&PID_6544\C860008863DBCE801A0B24B4]
    >>> Section start 2015/01/09 09:35:49.342
    ump: Creating Install Process: DrvInst.exe 09:35:49.498
    ndv: Retrieving device info...
    ndv: Setting device parameters...
    ndv: Searching Driver Store and Device Path...
    dvi: {Build Driver List} 09:35:49.966
    dvi: Searching for hardware ID(s):
    dvi: usb\vid_0930&pid_6544&rev_0100
    dvi: usb\vid_0930&pid_6544
    dvi: Searching for compatible ID(s):
    dvi: usb\class_08&subclass_06&prot_50
    dvi: usb\class_08&subclass_06
    dvi: usb\class_08
    cpy: Policy is set to make all digital signatures equal.
    dvi: Enumerating INFs from path list 'C:\Windows\inf'
    inf: Opened PNF: 'C:\Windows\System32\DriverStore\FileRepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf' ([strings.0c0a])
    dvi: Created Driver Node:
    dvi: HardwareID - USB\Class_08&SubClass_06&Prot_50
    dvi: InfName - C:\Windows\System32\DriverStore\FileRepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf
    dvi: DevDesc - Dispositivo de almacenamiento USB
    dvi: DrvDesc - Dispositivo de almacenamiento USB
    dvi: Provider - Microsoft
    dvi: Mfg - Dispositivo de almacenamiento USB compatible
    dvi: ModelsSec - Generic.NTamd64
    dvi: InstallSec - USBSTOR_BULK
    dvi: ActualSec - USBSTOR_BULK.NT
    dvi: Rank - 0x00ff2000
    dvi: Signer - Microsoft Windows
    dvi: Signer Score - INBOX
    dvi: DrvDate - 06/21/2006
    dvi: Version - 6.1.7601.17577
    inf: Searched 1 potential matches in published INF directory
    inf: Searched 36 INFs in directory: 'C:\Windows\inf'
    dvi: {Build Driver List - exit(0x00000000)} 09:35:51.900
    ndv: Selecting best match from Driver Store (including Device Path)...
    dvi: {DIF_SELECTBESTCOMPATDRV} 09:35:51.900
    dvi: No class installer for 'DataTraveler 2.0'
    dvi: No CoInstallers found
    dvi: Default installer: Enter 09:35:51.900
    dvi: {Select Best Driver}
    dvi: Selected driver installs from section [USBSTOR_BULK] in 'c:\windows\system32\driverstore\filerepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf'.
    dvi: Class GUID of device changed to: {36fc9e60-c465-11cf-8056-444553540000}.
    dvi: Set selected driver complete.
    dvi: Selected:
    dvi: Description - [Dispositivo de almacenamiento USB]
    dvi: InfFile - [c:\windows\system32\driverstore\filerepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf]
    dvi: Section - [USBSTOR_BULK]
    dvi: Signer - [Microsoft Windows]
    dvi: Rank - [0x00ff2000]
    dvi: {Select Best Driver - exit(0x00000000)}
    dvi: Default installer: Exit
    dvi: {DIF_SELECTBESTCOMPATDRV - exit(0x00000000)} 09:35:51.916
    inf: {SetupCopyOEMInf: C:\Windows\INF\usbstor.inf} 09:35:51.931
    inf: Driver Store location: C:\Windows\System32\DriverStore\FileRepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf
    inf: Published Inf Path: C:\Windows\INF\usbstor.inf
    inf: {SetupCopyOEMInf exit (0x00000050)} 09:35:51.931
    dvi: Searching for hardware ID(s):
    dvi: usb\vid_0930&pid_6544&rev_0100
    dvi: usb\vid_0930&pid_6544
    dvi: Searching for compatible ID(s):
    dvi: usb\class_08&subclass_06&prot_50
    dvi: usb\class_08&subclass_06
    dvi: usb\class_08
    inf: Opened PNF: 'C:\Windows\System32\DriverStore\FileRepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf' ([strings.0c0a])
    dvi: Selected driver installs from section [USBSTOR_BULK] in 'c:\windows\system32\driverstore\filerepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf'.
    dvi: Class GUID of device changed to: {36fc9e60-c465-11cf-8056-444553540000}.
    dvi: Set selected driver complete.
    ndv: Driver selected, now performing install...
    ndv: {Core Device Install} 09:35:51.947
    inf: Opened PNF: 'C:\Windows\INF\usbstor.inf' ([strings.0c0a])
    inf: Opened PNF: 'C:\Windows\INF\usbstor.inf' ([strings.0c0a])
    dvi: {DIF_ALLOW_INSTALL} 09:35:52.259
    dvi: No class installer for 'Dispositivo de almacenamiento USB'
    dvi: No CoInstallers found
    dvi: Default installer: Enter 09:35:52.259
    dvi: Default installer: Exit
    dvi: {DIF_ALLOW_INSTALL - exit(0xe000020e)} 09:35:52.259
    ndv: Installing files...
    dvi: {DIF_INSTALLDEVICEFILES} 09:35:52.306
    dvi: No class installer for 'Dispositivo de almacenamiento USB'
    dvi: Default installer: Enter 09:35:52.306
    dvi: {Install FILES}
    inf: Opened PNF: 'c:\windows\system32\driverstore\filerepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf' ([strings.0c0a])
    inf: {Install Inf Section [USBSTOR_BULK.NT]}
    inf: CopyFiles=USBSTOR.CopyList (usbstor.inf line 173)
    flq: CopyFiles from an inbox inf.
    cpy: Open PnpLockdownPolicy: Err=2. This is OK. Use LockDownPolicyDefault
    flq: QueueSingleCopy...
    flq: Inf : 'c:\windows\system32\driverstore\filerepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf'
    flq: SourceInf: 'c:\windows\system32\driverstore\filerepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf'
    flq: SourceSection: [sourcedisksfiles]
    flq: Source root path based on SourceInf
    flq: SourceRootPath: 'C:\Windows\System32\DriverStore\FileRepository\usbstor.inf_amd64_neutral_26b33263a639795d'
    flq: {FILE_QUEUE_COPY}
    flq: CopyStyle - 0x09000000
    flq: {FILE_QUEUE_COPY}
    flq: CopyStyle - 0x09000000
    flq: SourceRootPath - 'C:\Windows\System32\DriverStore\FileRepository\usbstor.inf_amd64_neutral_26b33263a639795d'
    flq: SourceFilename - 'USBSTOR.SYS'
    flq: TargetDirectory- 'C:\Windows\system32\drivers'
    flq: TargetFilename - 'USBSTOR.SYS'
    flq: SourceDesc - 'windows cd'
    flq: {FILE_QUEUE_COPY exit(0x00000000)}
    flq: {FILE_QUEUE_COPY exit(0x00000000)}
    inf: {Install Inf Section [USBSTOR_BULK.NT] exit (0x00000000)}
    dvi: Processing co-installer registration section [USBSTOR_BULK.NT.CoInstallers].
    inf: {Install Inf Section [USBSTOR_BULK.NT.CoInstallers]}
    inf: {Install Inf Section [USBSTOR_BULK.NT.CoInstallers] exit (0x00000000)}
    dvi: Co-installers registered.
    dvi: {Install INTERFACES}
    dvi: Installing section [USBSTOR_BULK.NT.Interfaces]
    dvi: {Install INTERFACES exit 00000000}
    dvi: {Install FILES exit (0x00000000)}
    dvi: Default installer: Exit
    dvi: {DIF_INSTALLDEVICEFILES - exit(0x00000000)} 09:35:52.384
    ndv: Pruning file queue...
    dvi: {_SCAN_FILE_QUEUE}
    flq: ScanQ flags=620
    flq: SPQ_SCAN_PRUNE_COPY_QUEUE
    flq: SPQ_SCAN_FILE_COMPARISON
    flq: SPQ_SCAN_ACTIVATE_DRP
    flq: ScanQ number of copy nodes=1
    flq: File 'C:\Windows\system32\drivers\USBSTOR.SYS' pruned from copy.
    sig: Using catalog 'C:\Windows\system32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\Package_3_for_KB982018~31bf3856ad364e35~amd64~~6.1.3.2.cat'.
    cpy: DrpSetRegFileProt 'C:\Windows\system32\drivers\USBSTOR.SYS' Status=0 Class=Inbox Windows protected
    flq: ScanQ action=200 DoPruning=32
    flq: ScanQ end Validity flags=620 CopyNodes=0
    dvi: {_SCAN_FILE_QUEUE exit(0, 0x00000000)}
    ndv: Committing file queue...
    flq: {_commit_file_queue}
    flq: CommitQ DelNodes=0 RenNodes=0 CopyNodes=0
    flq: CommitQ early exit: No nodes are queued
    flq: {_commit_file_queue exit OK}
    ndv: Registering CoInstallers...
    dvi: {DIF_REGISTER_COINSTALLERS} 09:35:54.037
    dvi: No class installer for 'Dispositivo de almacenamiento USB'
    dvi: Default installer: Enter 09:35:54.069
    inf: Opened PNF: 'c:\windows\system32\driverstore\filerepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf' ([strings.0c0a])
    inf: {Install Inf Section [USBSTOR_BULK.NT.CoInstallers]}
    inf: {Install Inf Section [USBSTOR_BULK.NT.CoInstallers] exit (0x00000000)}
    dvi: Co-installers registered.
    dvi: Default installer: Exit
    dvi: {DIF_REGISTER_COINSTALLERS - exit(0x00000000)} 09:35:54.100
    ndv: Installing interfaces...
    dvi: {DIF_INSTALLINTERFACES} 09:35:54.100
    dvi: No class installer for 'Dispositivo de almacenamiento USB'
    dvi: No CoInstallers found
    dvi: Default installer: Enter 09:35:54.100
    dvi: {Install INTERFACES}
    inf: Opened PNF: 'c:\windows\system32\driverstore\filerepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf' ([strings.0c0a])
    dvi: Installing section [USBSTOR_BULK.NT.Interfaces]
    dvi: {Install INTERFACES exit 00000000}
    dvi: Default installer: Exit
    dvi: {DIF_INSTALLINTERFACES - exit(0x00000000)} 09:35:54.100
    ndv: Installing device...
    dvi: {DIF_INSTALLDEVICE} 09:35:54.100
    dvi: No class installer for 'Dispositivo de almacenamiento USB'
    dvi: Default installer: Enter 09:35:54.100
    dvi: {Install DEVICE}
    inf: Opened PNF: 'c:\windows\system32\driverstore\filerepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf' ([strings.0c0a])
    dvi: Processing Registry/Property directives...
    inf: {Install Inf Section [USBSTOR_BULK.NT]}
    inf: AddReg=USBSTOR_BULK.AddReg (usbstor.inf line 174)
    inf: {Install Inf Section [USBSTOR_BULK.NT] exit (0x00000000)}
    inf: {Install Inf Section [USBSTOR_BULK.NT.Hw]}
    inf: Empty section
    inf: {Install Inf Section [USBSTOR_BULK.NT.Hw] exit (0x00000000)}
    dvi: {Writing Device Properties}
    dvi: Provider name=Microsoft
    dvi: DriverDate 06/21/2006
    dvi: DriverVersion=6.1.7601.17577
    dvi: Class name=USB
    dvi: Manufacturer=Dispositivo de almacenamiento USB compatible
    dvi: Matching DeviceID=usb\class_08&subclass_06&prot_50
    dvi: Strong Name=usbstor.inf:Generic.NTamd64:USBSTOR_BULK:6.1.7601.17577:usb\class_08&subclass_06&prot_50
    dvi: {Writing Device Properties - Complete}
    inf: {Install Inf Section [USBSTOR_BULK.NT.Services]}
    inf: Addservice=USBSTOR,0x00000002,USBSTOR.AddService (usbstor.inf line 177)
    inf: ServiceType=1 (usbstor.inf line 234)
    inf: StartType=3 (usbstor.inf line 235)
    inf: ErrorControl=1 (usbstor.inf line 236)
    inf: ServiceBinary=C:\Windows\system32\DRIVERS\USBSTOR.SYS (usbstor.inf line 237)
    inf: DisplayName="Controlador de dispositivo de almacenamiento USB" (usbstor.inf line 233)
    dvi: Add Service: Modified existing service 'USBSTOR'.
    inf: AddReg=DeviceSpecific (usbstor.inf line 238)
    inf: {Install Inf Section [USBSTOR_BULK.NT.Services] exit(0x00000000)}
    dvi: Updated reflected section names for: usbstor.inf
    dvi: {Install DEVICE exit (0x00000000)}
    dvi: Writing common driver property settings.
    dvi: DriverDescription=Dispositivo de almacenamiento USB
    dvi: DeviceDisplayName=Dispositivo de almacenamiento USB
    dvi: Install Device: Restarting device. 09:35:54.537
    dvi: Install Device: Restarting device completed. 09:35:57.625
    !!! dvi: Device not started: Device has problem: 0x0a: CM_PROB_FAILED_START.
    dvi: Default installer: Exit
    dvi: {DIF_INSTALLDEVICE - exit(0x00000000)} 09:35:57.641
    dvi: {DIF_NEWDEVICEWIZARD_FINISHINSTALL} 09:35:57.641
    dvi: No class installer for 'Dispositivo de almacenamiento USB'
    dvi: Default installer: Enter 09:35:57.641
    dvi: Default installer: Exit
    dvi: {DIF_NEWDEVICEWIZARD_FINISHINSTALL - exit(0xe000020e)} 09:35:57.657
    ndv: Device install status=0x00000000
    ndv: Performing device install final cleanup...
    ! ndv: Queueing up error report since device has a PnP problem...
    ndv: {Core Device Install - exit(0x00000000)} 09:35:59.201
    ump: Server install process exited with code 0x00000000 09:35:59.232
    <<< Section end 2015/01/09 09:35:59.279
    <<< [Exit status: SUCCESS]

    I tried, but windows says that the best driver is alredy installed.
    Now I've just tried to delete (uninstall) absolutly all devices under Universal Serial Bus Controller
    (host controllers, root hubs, etc) into Device Manager, and then I've click on
    Scan for hardware changes to force reinstall of all USB drivers. After that I've connected my USB external hard disk and has been correctly recognized and its working. However I don't know if when I'll restar the server and connect a new one usb device
    it will continue working or not. I'll try later, because this is a production server.
    I've tried for drivers into HP site to update or reinstall, but there isn't any driver for motherboard or USB controller. It's an HP ML350 G6.

  • WM::system is not placing the stock another storage bin

    hi friends
         system is not check fill the stock to another bin ..system is placing the stock in same bin...what are the cofiguration required?
    with regards
    dinesh
    Edited by: code acess on Jun 15, 2011 10:47 AM
    Edited by: code acess on Jun 15, 2011 10:48 AM

    hi SAP FC
                       Iam using putaway strategy is "L" ..storage is determing in the system ..every thing is working fine except placing  stock to another bin
    with regards
    dinesh
    Edited by: code acess on Jun 15, 2011 11:18 AM

  • System not abel to find storage bin .

    hI All ,
    I am trying to do goods reciept in storage locatrion which is warehouse managed.
    required storage type indicator is assigned to material master .
    Storage type config is :
    Putaway strategy : I (addition to existing stock)
    Mixed storage:X     (Mixed storage without limitations)
    Addn to stock:X     (Addition to existing stock permitted.)
    ENough storage bins are created in system.
    When i am tryng to do GR , system not abel to find the storage bin .
    note: Each bin is having some stock of some other material. But we have "Mixed storage" indicator on. so it should not have given error.
    Also if i create a new empty bin , then system pulls that bin in storage bin search to put the stock there.
    Please guide why system is not abel to find correct storage bin. Is there any OSS note to be applied here .
    Regards
    Rohit Chavan

    With addition to stock strategy, SAP is looking for a bin having stock of the same material. If that is not the case then it switches to strategy "next empty bin".
    Mixed storage is not allowed in this strategy.
    http://help.sap.com/erp2005_ehp_05/helpdata/EN/c6/f8449d4afa11d182b90000e829fbfe/frameset.htm

  • System setup if a storage location is using both HU and WM

    Hello,
    We are using Handling Unit in the inventory in one of our
    storage location, and this storage location is also WM activated (i.e. tied to
    a WM), is there any setup and configuration require for this storage location?
    Or anything which I need to watch out for?
    Regards,
    tuff

    * You need to activate storage unit management for the storage types you have in your WM under this Storage Location.
    * You need to ave a partner location (without HUM) assigned to be able to unpack/pack goods in WM.
    * You need to get the number ranges the same for HU and SU.
    * You need to assign external number to SU (pick SU number from HU number)
    * You cannot have negative stock in your storage types with SU/HU (except for the interim ones)
    * HU and SU are very handy in warehouse, they contain all the info about the quant(s) inside the SU/HU
    * In SU/HU you have already batch, quantity, stock category etc.so if you scan the SU/HU you don't need to specify any of that info, it is taken from the quant(s)
    * In process of putaway, you first need to pack your goods in HUs to ba able to create a putaway TO (in LT03)
    * In internal warehouse processes it is easy to use HU/SU
    * During picking, you can assign a HU to the delivery, then pick everything to that HU
    * Many more, you can find more info on SU/HU here:
    Handling Unit (HU) - Warehouse Structure - SAP Library
    Storage Unit Management - Warehouse Management System (WMS) - SAP Library
    To customize all that, you need o follow the basic HUM customizing steps:
    SPRO IMG => Logistics - General => Handling Unit Management
    And WM customizing of storage unit number range:
    OLML (Logistics Execution) => Warehouse Management => Master Data => Define Number Ranges

  • Storage is currently unavailable on ZFS in Exalogic system

    We have two ZFS storage server on this Exalogic system. One seems fine, but on the other, I am getting the following message, once I click "shares":
    Storage is currently unavailable on this appliance. It may be unconfigured, or the storage pool may be faulted.
    They are supposed to be clustered.
    my 2nd question is, why "zpool" command is not working on these two storage servers. only menu driven commands are working, for instance, once you log into it, only the following subcommands are available:
    configuration
    maintenance
    raw
    analytics
    status
    shares
    Can anybody please share some ideas?
    Thanks

    Same here. I'm getting it on lots of HD versions of channels, like TLC HD and Bravo HD. Nothing seems to work to fix it. Not very happy.

  • How do I get started using Essbase?

    Hi all,
    I'm a newbie to Essbase, and Business Intelligence. I went to a training/demo in March but have just done my first install to try it out for myself. (I'm a Java developer by training.)
    So, I've installed Hyperion EPM 11.1.1.1 on my Windows XP desktop. I installed Foundation Services, Essbase, Web Analysis, and Workspace with the intention of creating some drillable reports and/or graphs on some client that I recently used for OBIEE Dashboards.
    Please help either with the below errors or any other resources that can get me started (examples, walkthroughs, blogs, etc.).
    Thanks, Mark
    Connecting to my Administration Server with EAS:
    Administration Server: localhost
    Username: admin
    Password: password
    Server Error:
    Could not connect to Administration Server
    Connecting to/starting the Essbase server:
    EPM System Diagnostic:
    FAILED Essbase server Essbase Server startup check using Maxl command
    Error: Result: Unable to connect Essbase Server using MAXL command. Please check that essbase server is running.
    Recommended Action: Check Essbase Server is started
    Start EPM System:
    C:\Hyperion\products>REM eis
    C:\Hyperion\products>net start "Hyperion Integration Services"
    The requested service has already been started.
    More help is available by typing NET HELPMSG 2182.
    C:\Hyperion\products>REM EssbaseStudio
    C:\Hyperion\products>C:\Hyperion\products\Essbase\EssbaseStudio\Server\startServ
    er.bat
    C:\Hyperion\products>setlocal
    C:\Hyperion\products>set CONFIGTOOL_HOME="C:\Hyperion\common\config\9.5.0.0"
    C:\Hyperion\products>call ""C:\Hyperion\common\config\9.5.0.0"\setJavaRuntime.ba
    t"
    Logging configuration file is not found. Expected filename is C:\Hyperion\produc
    ts\.\server.properties
    Log file location is:
    C:\Hyperion\logs\esbstudio\server.log
    17:01:36 11/24/08 INFO Starting up
    17:01:36 11/24/08 INFO Oracle Essbase Studio Server. Version 11.1.1.1.00, Bui
    ld 114, October 7 2008
    17:01:38 11/24/08 (system) WARNING Failed to load driver for sap
    17:01:38 11/24/08 (system) WARNING Failed to load driver for mysql
    17:01:38 11/24/08 (system) SEVERE Cannot load Netezza connector
    17:01:38 11/24/08 (system) WARNING Failed to load driver for netezza
    17:01:38 11/24/08 (system) SEVERE Cannot establish connection to Oracle server
    17:01:38 11/24/08 (system) SEVERE Cannot establish connection to Oracle server
    17:01:38 11/24/08 (system) SEVERE Cannot initialize catalog storage. Make sure
    that server.properties has correct information
    -------------- Exception --------------
    com.hyperion.cp.catalog.exceptions.CatalogInitializationException: catalog.Ca
    talogInitializationException.StorageInitializationFailure
    at com.hyperion.cp.catalog.storage.StorageFactory.getStorageInstance(Sto
    rageFactory.java:155)
    at com.hyperion.cp.catalog.transaction.TransactionManager.initialize(Tra
    nsactionManager.java:64)
    at com.hyperion.cp.catalog.Catalog.initialize(Catalog.java:98)
    at com.hyperion.cp.catalog.Catalog.initialize(Catalog.java:156)
    at com.hyperion.cp.catalog.Catalog.<init>(Catalog.java:85)
    at com.hyperion.cp.catalog.Catalog.<clinit>(Catalog.java:73)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Unknown Source)
    at com.hyperion.cp.catalog.CatalogInitializer.run(CatalogInitializer.jav
    a:54)
    at com.hyperion.cp.server.RequestListener$SystemTask.run(RequestListener
    .java:1302)
    at com.hyperion.cp.server.RequestListener.runSystemTask(RequestListener.
    java:167)
    at com.hyperion.cp.server.RequestListener.<init>(RequestListener.java:12
    9)
    at com.hyperion.cp.server.ServerMain.main(ServerMain.java:202)
    Caused by: java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Sou
    rce)
    at java.lang.reflect.Constructor.newInstance(Unknown Source)
    at com.hyperion.cp.catalog.storage.StorageFactory.getStorageInstance(Sto
    rageFactory.java:149)
    ... 12 more
    Caused by: com.hyperion.cp.catalog.exceptions.CatalogInitializationException: No
    table EPMUSER.CP_NONE_TRANSACTIONS found
    at com.hyperion.cp.catalog.storage.StorageEngine.validateSignature(Stora
    geEngine.java:193)
    at com.hyperion.cp.catalog.storage.StorageEngine.<init>(StorageEngine.ja
    va:87)
    at com.hyperion.cp.catalog.storage.SQLStorageEngine.<init>(SQLStorageEng
    ine.java:20)
    ... 17 more
    ----------------------------------------

    Check to see if Essbase and EAS are services. If they are, are they started? You can also start them in foreground. For EAS, go to Start->programs->Hyperion->Adminstrative servives-> start server. It should start up a tomcat window.
    Typically, you have to start Essbase once in foreground. (Go to start->Hyperion->Essbase->Essbase and click it. IT will want the company info, admin user id and password.

Maybe you are looking for