Inventory Management Non Cumulative Please Help

Hello BW Gurus.  My current client needs to report on average inventory for the last 12 months, but the material movements cube will only allow me to report on the average inventory for the last day of the current month. Can someone give me some pointers to help me figure out a solution. Also, will I be able to create an ods layer even though the cube has noncumulative key figures?

Hi,
I dont know the exact answer to your question. But see if this doc helps you..( hope you dont have it already)
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/0ea8a990-0201-0010-2796-fa9ae8691203
assign points if useful ***
Thanks,
Raj

Similar Messages

  • Inventory management: non-cumulatives VS. snapshots

    In the How to <i>Handle Inventory Management Scenarios in BW</i>, I read that (p. 2):
    - Inventory management with non-cumulative key figures is better when <i>"90 percent of all materials were moved 1 time in the month"</i>;
    - Inventory management with SnapShots is better when <i>"90 percent of all materials were moved 1 time in the month"</i>.
    I think the second sentence is not correct. But what can be the right number of movements to be considered?
    Thanks a lot,
    Davide

    Hi Ajay,
    so my next question is:
    Besides the time granularity needed (daily-level vs. monthly-level), is there a threshold for the number of movements, that could be used to choose one of the two models?
    I mean, if materials are moved on average e.g. less than 10 times per month, the non-cumulative architecture could be best one. While if there are more than 10 times per month, the snapshot architecture could be more appealing. In this example, 10 movements per month is the threshold.
    Cheers, Davide

  • Inventory Management (Non-cumulative values)

    Dear experts,
    I want to extract inventory data from 2LIS_03_BF.
    How do I have to configure the Key figures; for example: 0VALSTCKQTY. Is there a need to use Non-cumulative value with in- and outflow as in Content.
    Which other possibilities exist?
    After InfoObject config. - what are the exact next steps?
    Do I load data from the 3 DataSources 2LIS_03_BX, 2LIS_03_BF and 2LIS_03_UM into one DSO first and then into one cube or do I have to split?
    I dont want to use the BC data flow.
    Thanks for your advice.
    Patrick

    hi,
    Please search the Forum for this, this has been discussed many times.
    regards,
    Arvind.

  • How do you delete songs that you purchased through iTunes but don't show up when you connect the iphone to iTunes they don't show up in music when you click on "On this phone"? I have my phone setup to manually manage music. Please help.

    How do you delete songs that you purchased through iTunes but don't show up when you connect the iphone to iTunes? They don't show up in the music section when you click on "On this phone". Side Note: I have my phone setup to manually manage music. Please help.

    Hi, Mrs.Frankie57. 
    Thank you for visiting Apple Support Communities.
    If you want to delete a song from your iOS device on iOS 7, tap Songs, swipe the song from right to left, then tap Delete. The song is deleted from iPhone, but not from your iTunes library on your Mac or PC, or from iCloud.
    iPhone User Guide
    Cheers,
    Jason H.

  • Premere and After Effects are missing from Cloud Adobe Application Manager... please help ASAP

    Premere and After Effects are missing from Cloud Adobe Application Manager... please help ASAP

    Short and to the point: If they don't show up, your system doesn't support them. Refer to the Tech Specs on teh product pages and make up your mind...
    Mylenium

  • Inventory cube non cumulative KF displaying incorrectly.

    Hi
    I have created a inventory cube which is a copy of 0IC_C03, fed from a DSO which has the all the Material documents.
    I have intitialised using the BX extraxctor to the cube, then loading data from r/3 via the dso. Have MP on top of inventory and revaluation cube.
    Due to an error in the code logic i had to drop the cube and reload the data from the BX PSA and subsequently the DSO.
    my problem started then, the cumulative key figure have gone haywire ie they the balance display rubbish data. the data loaded into the cube is correct
    also if I delete the latest request and reload the request, then the  KF display correctly. strange!
    I also the same problem for value as i have a revaluation cube. the inventory values are wrong, when i do a list cube from the MP all is ok.
    i checked the validity slice rsdv, it is ok.
    i also only have 0calday as the non cumulative setting.
    Another thing i noticed was if filter the material by one plant then i get the correct value, if i try to display all plants then it all the balances go incorrect.
    also if i see the balances by month only the latest month is incorrect.
    if you need more info please feel free to ask.
    appreciate if some can propose a solution
    Lawrence
    Edited by: lcoelho on Oct 14, 2011 7:03 PM

    Hi Lawrence,
    SAP suggests to upload non-cumulatives NEVER from a DSO but from the PSA in parallel to DSO and Cube.
    Andreas

  • Inventory Program Part 6 - Please Help

    My last assignment is due in about two hours and I am completely lost. I have been trying to figure out how to add functionality to my JButtons all week.
    I have added the following buttons but they do not work: save, delete, modify, save, search, add.
    I also need to add a company logo. I hope someone can please help me understand.
    Here is my current code:
    public class DVD {
         protected int itemNum;     // item number
         protected String name;     // item name
         protected int unit;          // number of units of the item
         protected double price;     // price of each unit
         public DVD() {}          // Default constructor
         public DVD(int itemNum, String name, int unit, double price) {
              // Constructor with input
              this.itemNum = itemNum;
              this.name = name;
              this.unit = unit;
              this.price = price;
         // Getter and Setter methods
         public void setItemNum(int itemNum) {
              this.itemNum = itemNum;
         public int getItemNum() {
              return itemNum;
         public void setName(String name) {
              this.name = name;
         public String getName() {
              return name;
         public void setUnit(int unit) {
              this.unit = unit;
         public int getUnit() {
              return unit;
         public void setPrice(double price) {
              this.price = price;
         public double getPrice() {
              return price;
         // Get the value of the inventory
         public double calculateInventory() {
              return unit * price;
         // Get the value of all inventory
         public static double calculateEntireInventory(DVD [] prod) {
              double sum = 0;
              for (int i = 0; i < prod.length; i++)
                   sum += prod.getUnit() * prod[i].getPrice();
              return sum;
         // Sort inventory by name
         public static Movie [] sortInventory(Movie [] prod) {
         boolean doMore = true;
    while (doMore) {
    doMore = false; // last pass over array
    for (int i=0; i<prod.length-1; i++) {
    if (prod[i].getName().compareTo(prod[i+1].getName()) > 0) {
    Movie temp = prod[i]; prod[i] = prod[i+1]; prod[i+1] = temp;
    doMore = true;
         return prod;
    public class Movie extends DVD{
         //instant variable
         protected String dvdTitle;
    public Movie(int itemNum, String name, int unit, double price, String dvdTitle) {
         super(itemNum, name, unit, price);
         this.dvdTitle = dvdTitle;
    public String getdvdTitle() {
              return dvdTitle;
         // Get the value of the inventory
         public double calculateInventory(DVD[] dvd) {
              double sum = 0;
              for (int i = 0; i < dvd.length; i++)
                   sum += 0.05* dvd[i].getUnit() * dvd[i].getPrice();
              return sum;
    public double calculateRestockFee(){
         return price*0.05;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    import java.text.DecimalFormat;
    import javax.swing.Icon;
    import javax.swing.ImageIcon;
    public class Inventory extends JApplet {
         private JLabel itemNumLabel = new JLabel("Item Number: ");
         private JTextField itemNum = new JTextField();
         private JLabel itemNameLabel = new JLabel("Category: ");
         private JTextField itemName = new JTextField();
         private JLabel unitLabel = new JLabel("Number of Units: ");
         private JTextField unit = new JTextField();
         private JLabel priceLabel = new JLabel("Unit Price: ");
         private JTextField price = new JTextField();
         private JLabel dvdTitleLabel = new JLabel("DVD Title: ");
         private JTextField dvdTitle = new JTextField();
         private JLabel rfLabel = new JLabel("Restocking Fee");
         private JTextField rfValue = new JTextField();
         private JLabel inventoryLabel = new JLabel("Inventory value: ");
         private JTextField inventoryValue = new JTextField();
         private JLabel totalValue = new JLabel();
         private JButton previous = new JButton("Previous");
         private JButton next = new JButton("Next");
         private JButton last = new JButton("Last");
         private JButton first = new JButton("First");
         private JButton add = new JButton("Add");
         private JButton delete = new JButton("Delete");
         private JButton modify = new JButton("Modify");
         private JButton save = new JButton("Save");
         private JButton search = new JButton("Search");
         private JLabel totalInventory = new JLabel();
         private Movie[] DVDArray = null;
         private int current = 0;
         private int total = 0;
         class ButtonListener implements ActionListener {
              public void actionPerformed(ActionEvent e) {
                   JButton button = (JButton) e.getSource();
                   if (button == previous) current = (current + total - 1) % total;
                   if (button == next) current = (current + 1) % total;
                   if (button == last) current = (current = 5) % total;
                   if (button == first) current = (current =0) % total;
                   if (button == modify) itemName.setVisible(true);
         private void display() {
              Movie movie = DVDArray[current];
              DecimalFormat df=new DecimalFormat("$#.00");
              itemNum.setText(movie.getItemNum()+""); itemNum.setEditable(false);
              itemName.setText(movie.getName()); itemName.setEditable(false);
              unit.setText(movie.getUnit()+""); unit.setEditable(false);
              price.setText(df.format(movie.getPrice())); price.setEditable(false);
              dvdTitle.setText(movie.getdvdTitle()); dvdTitle.setEditable(false);
              rfValue.setText(df.format(movie.calculateRestockFee())); rfValue.setEditable(false);
              inventoryValue.setText(df.format(movie.calculateInventory())); inventoryValue.setEditable(false);
              totalValue.setText("The total inventory value is " + df.format(DVD.calculateEntireInventory(DVDArray)));
         final JLabel label; // logo
    //JLabel constructor for logo
    Icon logo = new ImageIcon("C:/logo.jpg"); // load logo
    label = new JLabel(logo); // create logo label
    label.setToolTipText("Company Logo"); // create tooltip
         public void init() {
              DVDArray = new Movie [6];
              // Add DVD items into the list
              DVDArray[0] = new Movie (15, "Action", 65,12.00,"Frequency");
              DVDArray[1]= new Movie(33, "Comedy", 12, 21.00, "Norbit");
              DVDArray[2] = new Movie(13, "Disney",33,14.00,"Flubber");
              DVDArray[3] = new Movie(22, "Drama", 48, 18.00,"Citizens Kane");
              DVDArray[4] = new Movie(47, "Horror", 42, 19.00,"Pycho");
              DVDArray[5] = new Movie(26, "Sci-Fi", 27, 26.00,"The Abyss");
    total = 6;
    current = 0;
    ButtonListener buttonListener = new ButtonListener();
    previous.addActionListener(buttonListener);
    next.addActionListener(buttonListener);
    last.addActionListener(buttonListener);
    first.addActionListener(buttonListener);
    add.addActionListener(buttonListener);
    delete.addActionListener(buttonListener);
    modify.addActionListener(buttonListener);
    save.addActionListener(buttonListener);
    search.addActionListener(buttonListener);
    JPanel up = new JPanel();
    up.setLayout(new GridLayout(7,2));
    up.add(itemNumLabel); up.add(itemNum);
    up.add(itemNameLabel); up.add(itemName);
    up.add(dvdTitleLabel); up.add(dvdTitle);
    up.add(unitLabel); up.add(unit);
    up.add(priceLabel); up.add(price);
    up.add(rfLabel); up.add(rfValue);
    up.add(inventoryLabel); up.add(inventoryValue);
    display();
    JPanel middle = new JPanel();
    middle.setLayout(new FlowLayout());
    middle.add(previous); middle.add(next);middle.add(last);middle.add(first);
    middle.add(add);middle.add(delete);middle.add(modify);middle.add(search);
    middle.add(save);
    JPanel down = new JPanel();
    down.setLayout(new BorderLayout());
    down.add(BorderLayout.CENTER, totalValue);
    JPanel all = new JPanel();
    all.setLayout(new BoxLayout(all, BoxLayout.Y_AXIS));
    all.add(up);
    all.add(down);
    all.add(middle);
    Container cp = getContentPane();
    cp.add(BorderLayout.NORTH, all);
    public static void main(String args []) {
    JApplet applet = new Inventory();
    JFrame frame = new JFrame("DVD Inventory");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setResizable(false);
    Container cp=frame.getContentPane();
    cp.add(applet);
    frame.setSize(600,330);
    applet.init();
    frame.setVisible(true);
    // Icon logo = new ImageIcon(getResource( "logo.gif" ) );
    } //end main
    } // end class Inventory                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Your code has some good spots and some bad spots or problems, and I'll try to hit on some of the more obvious problems (the ones that I can see immediately) so that you can try to fix it.
    1) Your DVD class overall looks pretty good until we get to the end. The method public static double calculateEntireInventory(DVD[] prod) shouldn't be part of the DVD class since it has nothing to do with an individual DVD (which is what this class is all about) and everything to do with a collection of DVDs. You should move this to another class, a non-GUI Inventory class.
    2) The method public static Movie[] sortInventory(Movie[] prod) also shouldn't be in your DVD class for the same reason as noted above, and also because it deals with Movie objects which are objects that descend from DVD. The parent really shouldn't have to depend on the child class to function, and leaving this in would likely break your code at some time or another. Again, put this in a non-GUI Inventory class. You probably should use a DVD parameter, not a Movie parameter. Another option is to have your DVD and Movie classes implement the Comparable interface, since if you do this, sorting any collection of these is a breeze by using Arrays.sort(...) or Collections.sort(...).
    3) Again (starting to sound like a broken record) the method public double calculateInventory(DVD[] dvd) shouldn't be part of the Movie class for the very same reasons noted above.
    4) You need to create a non-GUI Inventory class, shoot, you can call it NonGuiInventory if you'd like (though I'd call it Inventory and call the GUI class GuiInventory) that has all the important functionality that the GUI will display. This class holds a collection of DVDs (or Movies), has an int index that points to the current Movie of interest, has a next() method that advances this index and returns the next Movie in the collection (or the first if you're at the last), has a previous() method that does the opposite, has a first() method that sets the index to zero and returns the first Movie in the collection, a last() method that advances the index to the size of the collection - 1 and returns this Movie, and has a sort method that sorts the collection. You can even have add(Movie) and a remove(Movie) methods here. By separating this functionality from the GUI, you are able to simplify your task by dividing and conquering.
    5) Finally you can display all this with your InventoryGUI class that uses the above class as its model, displaying the current Movie that is pointed to by the Inventory's index, that when the next() method is called gets the Movie returned by it and displays it.
    Note that if you go this route, you'll need to do some major re-writes of the GUI class, but it will improve your program greatly.
    HTH and good luck

  • HT201303 How do I change the security question in my apple account, I could not find editing the security questions and answers in manage account portal Please help

    I have forgot my security questions and answers but I remeber my apple id and password. i couldn't make a purchase in mac app store without answering security questions. i could find a way to change the security questions in Manage account portal. Please help.

    Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities

  • Adobe Premeire Pro Installation Failed - Application Manager Corrupted.  Please help!

    Hello all,
    I just recently purchased a subscription license for Adobe Premeire Pro CS6, and tried to download it following the instructions in the confirmation e-mail.   After installing the application manager and downloading, extracting, and installing the program, I received the error message seen in the image below, "Installation Failed - Adobe Application Manager is corrupted and must be reinstalled".  
    So of course I googled it, and found that this was a pretty common problem, and found one site that recommended re-installing the AAM with the following link:
    http://helpx.adobe.com/creative-cloud/kb/download-error-403-launching-aam.html
    So I did that too.  In addition to restarting my computer, and also tried to download the program directly bypassing the AAM following the instructions on this page:
    http://prodesigntools.com/adobe-cs6-direct-download-links.html
    All of which was unsuccesful.   I've got a video for my Mom's 60th birthday that I HAVE to complete this weekend, and Adobe's support is closed on the weekends.  I didn't think installing something from a company like Adobe would be this difficult.  Makes me wish I had a Mac.    Can anyone PLEASE help me get Premeire (and Encore) downloaded and installed? 
    Any help would be hugely appreciated.   Thanks,
    Erik
    (Some basic tech info:  Windows 7 Home Premium x64, Mozilla Firefox, and a beast of a gaming rig that should be able to handle a simple Adobe installation)

    Hi Jeff,
    I am experiencing the same exact problem and am unable to resolve it.  I've called Tier 1 support (Indian Call Center), and went through all the steps that I have already done myself (as outlined above) with no luck.  I'm still getting the corruption error. 
    I am using Parallels Workstation Extreme and it is being installed on a Virtual Machine.  The "Extreme" part of Parallels Workstation allows me to assign a discrete graphics card to the VM.  This is uing Intel's vt-d technology for Directed IO.  You mentioned above that you had fired up an instance of Windows 7 64-bit and it worked just fine.  But for some reason, I am unable to duplicate the same success.  The case is now being escalated to "higher" support.  Here is my setup:
    - Parallels Workstation Extreme VM - Windows 7 64-bit
    - Subscription to Creative Cloud
    - Clean Install does not work
    - Not a part of any domain, just workgroup
    - Home PC, so it connects directly to a router and then to Cox (ISP)
    - Has direct assignment of a Network card, meaning the network card is not a bridged connection (the VM gets it's own NIC)
    - User account is already Administrator, but tried to "Run as administratot" with no luck.
    - After install on the clean Windows didn't work, tried using the Adobe Cleanup Tool - doesn't work either
    - Disabled all start up programs from msconfig - doesn't work
    - Verified that the (.exe) does work, but coping the same (.exe) to another computer and it works.
    I would really appreciate any advice that you may have!
    Thanks Jeff!
    Here is what I am seeing from the log:
    02/24/13 20:50:36:197 | [INFO] |  | UPDATER | CORE |  |  |  | 3296 | >>> Adobe Updater Log Begin >>>
    02/24/13 20:50:36:197 | [INFO] |  | UPDATER | CORE |  |  |  | 3296 | UpdaterCoreImpl::InitLogFile : Application Version 7.0.0.42
    02/24/13 20:50:36:197 | [INFO] |  | UPDATER | CORE |  |  |  | 3296 | UpdaterCoreImpl::InitLogFile : cmdline option --> -logFile = C:\Users\Administrator\AppData\Local\Adobe\AAMUpdater\1.0\aamu.log
    02/24/13 20:50:36:197 | [INFO] |  | UPDATER | CORE |  |  |  | 3296 | UpdaterCoreImpl::InitLogFile : cmdline option --> -logLevel = 2
    02/24/13 20:50:36:197 | [INFO] |  | UPDATER | CORE |  |  |  | 3296 | Stepped into << UCInitialize >> call
    02/24/13 20:50:36:214 | [INFO] |  | UPDATER | CORE |  |  |  | 3296 | UpdateTracker::CheckSignature(): Missing CSUTracker.xml. Checking if it is updater's first run..
    02/24/13 20:50:36:260 | [INFO] |  | UPDATER | CORE |  |  |  | 3296 | UCInitialize : AAM is launched via CCM.
    02/24/13 20:50:36:261 | [INFO] |  | UPDATER | CORE |  |  |  | 3296 | Stepped into << UCSetUpdateEnginePath >> call
    02/24/13 20:50:36:303 | [INFO] |  | UPDATER | CORE |  |  |  | 3296 | UCSetUpdateEnginePath : WARNING - Update engine executable signature is not valid = C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\..\CCM\..\UWA\Adobe Application Manager (Updater).exe
    02/24/13 20:50:36:303 | [INFO] |  | UPDATER | CORE |  |  |  | 3296 | Returning from << UCSetUpdateEnginePath >> call error = 26 retVal = 0
    02/24/13 20:50:36:303 | [INFO] |  | UPDATER | CORE |  |  |  | 3296 | UCInitialize: Failed to set update engine path
    02/24/13 20:50:36:303 | [INFO] |  | UPDATER | CORE |  |  |  | 3296 | Returning from << UCInitialize >> call error = 26 retVal = 1
    02/24/13 20:51:34:421 | [INFO] |  | UPDATER | CORE |  |  |  | 1392 | >>> Adobe Updater Log Begin >>>
    02/24/13 20:51:34:422 | [INFO] |  | UPDATER | CORE |  |  |  | 1392 | UpdaterCoreImpl::InitLogFile : Application Version 7.0.0.42
    02/24/13 20:51:34:422 | [INFO] |  | UPDATER | CORE |  |  |  | 1392 | UpdaterCoreImpl::InitLogFile : cmdline option --> -logFile = C:\Users\Administrator\AppData\Local\Adobe\AAMUpdater\1.0\aamu.log
    02/24/13 20:51:34:422 | [INFO] |  | UPDATER | CORE |  |  |  | 1392 | UpdaterCoreImpl::InitLogFile : cmdline option --> -logLevel = 2
    02/24/13 20:51:34:422 | [INFO] |  | UPDATER | CORE |  |  |  | 1392 | Stepped into << UCInitialize >> call
    02/24/13 20:51:34:445 | [INFO] |  | UPDATER | CORE |  |  |  | 1392 | UCInitialize : AAM is launched via CCM.
    02/24/13 20:51:34:446 | [INFO] |  | UPDATER | CORE |  |  |  | 1392 | Stepped into << UCSetUpdateEnginePath >> call
    02/24/13 20:51:34:496 | [INFO] |  | UPDATER | CORE |  |  |  | 1392 | UCSetUpdateEnginePath : WARNING - Update engine executable signature is not valid = C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\..\CCM\..\UWA\Adobe Application Manager (Updater).exe
    02/24/13 20:51:34:496 | [INFO] |  | UPDATER | CORE |  |  |  | 1392 | Returning from << UCSetUpdateEnginePath >> call error = 26 retVal = 0
    02/24/13 20:51:34:496 | [INFO] |  | UPDATER | CORE |  |  |  | 1392 | UCInitialize: Failed to set update engine path
    02/24/13 20:51:34:496 | [INFO] |  | UPDATER | CORE |  |  |  | 1392 | Returning from << UCInitialize >> call error = 26 retVal = 1

  • I need e6567c wireless test manager...please help..

     can u give me e6567c wireless test manage installer for my agilent 8960 e5515c test set??...please help...

    Hi Puto,
    Looks like the e6567c Wireless Test Manger is available from agilent on their website.
    E6567C cdma2000/IS-95/AMPS/1xEV-DO Wireless Test Manager
    http://www.home.agilent.com/agilent/product.jspx?pn=E6567C&NEWCCLC=USeng
    If your looking for the LabVIEW / CVI drivers for your instrument, those are available from us from our driver network.
    Agilent Technologies E1968A
    http://sine.ni.com/apps/utf8/niid_web_display.model_page?p_model_id=12100
    Hope that helps.
    Scott M.
    Applications Engineer
    National Instruments

  • Headphones detected when there is none? Please help!

    Hello!
    I am in search of major help. I have owned my iPod Touch for a while now, never had a problem with it until recently.
    I sometimes unplug the iPod's headphones because I wish to show something to someone.... however, although I have unplugged the headphones it still shows them as plugged in, and the speakers will not work.
    This is normally not such a big problem because I normally have my headphones plugged in. Nevertheless, it is very annoying.
    Please, help me! Your help is very appreciated.
    -Thanks!

    If you are brave you could try squirting some electrical contact cleaner in the jack and then quickly insert/remove/insert/remove the headphone plug.

  • Macbook white non startup - please help novice

    Please help - i've just bought my first mac and i'm already stuck .
    Everything was fine - it worked ok, but i turned it off and all I'm getting now is the spinning wheel on a grey screen - i've tried everything the manual suggests.
    please can someone help me?

    I just added this to my own thread, but I wanted to make sure you got it:
    If you just bought a new machine, I would suggest getting Apple phone help. I am far out of warranty, no Apple Care (bought it for the desktop, never used). One thing that is helping me is that I can access & manipulate my MacBook via my desktop iMac. I spent about 3 days checking out this discussion forum and trouble shooting prior to posting my conundrum. It sounds like starting up from the Install DVD and an Archive & Install are good places to start - anyone please correct me if I am wrong. Good luck!
    I'll keep an eye on your thread & try to help if I can. Stand Strong!

  • Xperia z1 (I think) non-responsive PLEASE HELP

    Hello...I hope someone can help me.
    I have read thru many of the fixes and tried them with no success. This is where I am at the moment
    Phone was plugged into wall charger overnight...no "charging" light
    Software was updated 3 days ago with no issues
    Power+up volume NOTHING (red light solid when connted to charger and flashed when not)
    Power + down volume Green light  for 10 sec, power up cycle then power down & greyish screen for 30 sec, power up cycle, vibrate and fade to black...For this, I waited 5 minutes then pressed power to turn on. Phone powered up and then shut down.
    Please help!

    Just keep it connected to wall socket for 2 hours,after that force shutdown(power button+vol up until the phone vibrates 3 times).Do not try to turn on the phone,leave it off.Download SUS and repair:
    http://www.sonymobile.com/gb/tools/update-service/
    All we have to decide is what to do with the time that is given to us - J.R.R. Tolkien

  • 8i Management Server Problem, Please Help???

    My Company has a plan to implement Oracle 8i Enterprise Server, so that I downloaded it from internet and installed in Windows NT. Everything work fine, I cound access database through DBA Studio, SQLPLUS etc. But I encoutered problem while using Management Server, Everytime when I start the service, it could successfully started, after 2 second, it automatically stop again.
    I have searched through the Windows 2000 Event Viewer, it display the following error:
    The service has terminated abnormally. See the file E:\Oracle\Ora81\sysman\log\OMS.log for details. (Event ID: 112)
    However, I could never find out he file OMS.log in the specified path.
    Could anybody be so kind to help me solve the problem??
    COuld you please send the reply to [email protected]
    Thank you very much in advance.

    Might ask them over here.
    http://answers.microsoft.com/en-us/protect
     http://www.microsoft.com/security/scanner/en-us/default.aspx
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.
    thanks for this ill take a look

  • I keep getting an error window about java since I updated to firefox 8, my tabs will flash, tabs will close and open in a new window, everything stops working, firefox is non responsive, please help

    Since I upgraded to firefox 8, I get this error window that pops up says something about java. My tabs flicker or flash, the tabs will close and open in a new window then everything stops. Then firefox does not respond. When I get this error message, I have to close all tabs wait a few seconds then open it back up it will work for a little while and then do the same thing. I have disabled plug-ins that I do not use, I have cleared my cache and cookies, I am not happy at all with this new version. I waited a while before updating. The first time I was going to update, firefox would not let me keep my anti-virus plug-in. PLEASE HELP

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

Maybe you are looking for

  • Flex 3 need help with panels in dynamic tabs

    I am building an app where the user can add tabs as needed.  Each tab will have 4 panels inside it.  I can't get my for loop to build the panels.  It keeps erroring out. So question is  1) How do I create these with a loop and 2) I am wanting to put

  • Smart sizing RDP file on Windows 7 Home Basic

    Hello there, on my Windows 7 home basic computer I don't have the option to chooze smart-sizing of my RDP files! Is there any way to solve this by for example changing settings somewhere? I am fairly untechincal, but I know that I will need to do sma

  • Retriving a blob after it was loaded by OLE container in forms 6i

    We had forms6i application which has loaded documents into a blob column in the database using OLE container. We are able to retrive the blob from the OLE container on the forms6i, However when we are trying to retrive the same blob using PL/sql into

  • HT203200 I am getting error from Itunes store, what does this mean?

    I am getting an error message from the Itunes Store.  The error: Ox80092013, what does this mean?  I cannot access my account.

  • Can I delete Mail and then reinstall?

    Am a new user with an iPad 2 and with Mail did a sync to bring in my Outlook contacts. Somehow it found some old contact folders too and now have a totally cluttered contacts list! Can I delete Mail and download it and start again? Thanks