Need immediate help on VBBE table

Hi Sd experts ,
We need to archive VBBE table records and i do not see any archiving object associated with it ? Does anyone know what is archiving object for this ?
Does anyone has anytime archived VBBE table ? and How you did ?
Thanks in advance.
thanks
Kiran

Dear Kiran,
VBBE is a database table for SD requirements. As soon as you have no open sales order quantities anymore the table will be empty. There is no sence to archive this table therefore.
I hope, this info helps you a little bit further.
Kind regards,
Akmal Vakhidov
Development Support IMS, SAP, Walldorf/Germany

Similar Messages

  • Please I need some help with a table

    Hi All
    I need some help with a table.
    My table needs to hold prices that the user can update.
    Also has a total of the column.
    my question is if the user adds in a new price how can i pick up the value they have just entered and then add it to the total which will be the last row in the table?
    I have a loop that gets all the values of the column, so I can get the total but it is when the user adds in a new value that I need some help with.
    I have tried using but as I need to set the toal with something like total
        totalTable.setValueAt(total, totalTable.getRowCount()-1,1); I end up with an infinite loop.
    Can any one please advise on some way I can get this to work ?
    Thanks for reading
    Craig

    Hi there camickr
    thanks for the help the other day
    this is my full code....
    package printing;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.print.*;
    import javax.swing.*;
    import javax.swing.table.*;
    import java.text.DecimalFormat;
    public class tablePanel
        extends JDialog  implements Printable {
      BorderLayout borderLayout1 = new BorderLayout();
      private boolean printing = false;
      private Dialog1 dialog;
      JPanel jPanel = new JPanel();
      JTable table;
      JScrollPane scrollPane1 = new JScrollPane();
      DefaultTableModel model;
      private String[] columnNames = {
      private Object[][] data;
      private String selectTotal;
      private double total;
      public tablePanel(Dialog1 dp) {
        dp = dialog;
        try {
          jbInit();
        catch (Exception exception) {
          exception.printStackTrace();
      public tablePanel() {
        try {
          jbInit();
        catch (Exception exception) {
          exception.printStackTrace();
      private void jbInit() throws Exception {
        jPanel.setLayout(borderLayout1);
        scrollPane1.setBounds(new Rectangle(260, 168, 0, 0));
        this.add(jPanel);
        jPanel.add(scrollPane1, java.awt.BorderLayout.CENTER);
        scrollPane1.getViewport().add(table);
        jPanel.setOpaque(true);
        newTable();
        addToModel();
        addRows();
        setTotal();
    public static void main(String[] args) {
      tablePanel tablePanel = new  tablePanel();
      tablePanel.pack();
      tablePanel.setVisible(true);
    public void setTotal() {
      total = 0;
      int i = table.getRowCount();
      for (i = 0; i < table.getRowCount(); i++) {
        String name = (String) table.getValueAt(i, 1);
        if (!"".equals(name)) {
          if (i != table.getRowCount() - 1) {
            double dt = Double.parseDouble(name);
            total = total + dt;
      String str = Double.toString(total);
      table.setValueAt(str, table.getRowCount() - 1, 1);
      super.repaint();
      public void newTable() {
        model = new DefaultTableModel(data, columnNames) {
        table = new JTable() {
          public Component prepareRenderer(TableCellRenderer renderer,
                                           int row, int col) {
            Component c = super.prepareRenderer(renderer, row, col);
            if (printing) {
              c.setBackground(getBackground());
            else {
              if (row % 2 == 1 && !isCellSelected(row, col)) {
                c.setBackground(getBackground());
              else {
                c.setBackground(new Color(227, 239, 250));
              if (isCellSelected(row, col)) {
                c.setBackground(new Color(190, 220, 250));
            return c;
        table.addMouseListener(new MouseAdapter() {
          public void mouseClicked(MouseEvent e) {
            if (e.getClickCount() == 2) {
            if (e.getClickCount() == 1) {
              if (table.getSelectedColumn() == 1) {
       table.setTableHeader(null);
        table.setModel(model);
        scrollPane1.getViewport().add(table);
        table.getColumnModel().getColumn(1).setCellRenderer(new TableRenderDollar());
      public void addToModel() {
        Object[] data = {
            "Price", "5800"};
        model.addRow(data);
      public void addRows() {
        int rows = 20;
        for (int i = 0; i < rows; i++) {
          Object[] data = {
          model.addRow(data);
      public void printOut() {
        PrinterJob pj = PrinterJob.getPrinterJob();
        pj.setPrintable(tablePanel.this);
        pj.printDialog();
        try {
          pj.print();
        catch (Exception PrintException) {}
      public int print(Graphics g, PageFormat pageFormat, int pageIndex) throws PrinterException {
        Graphics2D g2 = (Graphics2D) g;
        g2.setColor(Color.black);
        int fontHeight = g2.getFontMetrics().getHeight();
        int fontDesent = g2.getFontMetrics().getDescent();
        //leave room for page number
        double pageHeight = pageFormat.getImageableHeight() - fontHeight;
        double pageWidth =  pageFormat.getImageableWidth();
        double tableWidth = (double) table.getColumnModel().getTotalColumnWidth();
        double scale = 1;
        if (tableWidth >= pageWidth) {
          scale = pageWidth / tableWidth;
        double headerHeightOnPage = 16.0;
        //double headerHeightOnPage = table.getTableHeader().getHeight() * scale;
        //System.out.println("this is the hedder heigth   " + headerHeightOnPage);
        double tableWidthOnPage = tableWidth * scale;
        double oneRowHeight = (table.getRowHeight() +  table.getRowMargin()) * scale;
        int numRowsOnAPage = (int) ( (pageHeight - headerHeightOnPage) / oneRowHeight);
        double pageHeightForTable = oneRowHeight *numRowsOnAPage;
        int totalNumPages = (int) Math.ceil( ( (double) table.getRowCount()) / numRowsOnAPage);
        if (pageIndex >= totalNumPages) {
          return NO_SUCH_PAGE;
        g2.translate(pageFormat.getImageableX(), pageFormat.getImageableY());
    //bottom center
        g2.drawString("Page: " + (pageIndex + 1 + " of " + totalNumPages),  (int) pageWidth / 2 - 35, (int) (pageHeight + fontHeight - fontDesent));
        g2.translate(0f, headerHeightOnPage);
        g2.translate(0f, -pageIndex * pageHeightForTable);
        //If this piece of the table is smaller
        //than the size available,
        //clip to the appropriate bounds.
        if (pageIndex + 1 == totalNumPages) {
          int lastRowPrinted =
              numRowsOnAPage * pageIndex;
          int numRowsLeft =
              table.getRowCount()
              - lastRowPrinted;
          g2.setClip(0,
                     (int) (pageHeightForTable * pageIndex),
                     (int) Math.ceil(tableWidthOnPage),
                     (int) Math.ceil(oneRowHeight *
                                     numRowsLeft));
        //else clip to the entire area available.
        else {
          g2.setClip(0,
                     (int) (pageHeightForTable * pageIndex),
                     (int) Math.ceil(tableWidthOnPage),
                     (int) Math.ceil(pageHeightForTable));
        g2.scale(scale, scale);
        printing = true;
        try {
        table.paint(g2);
        finally {
          printing = false;
        //tableView.paint(g2);
        g2.scale(1 / scale, 1 / scale);
        g2.translate(0f, pageIndex * pageHeightForTable);
        g2.translate(0f, -headerHeightOnPage);
        g2.setClip(0, 0,
                   (int) Math.ceil(tableWidthOnPage),
                   (int) Math.ceil(headerHeightOnPage));
        g2.scale(scale, scale);
        //table.getTableHeader().paint(g2);
        //paint header at top
        return Printable.PAGE_EXISTS;
    class TableRenderDollar extends DefaultTableCellRenderer{
        public Component getTableCellRendererComponent(
          JTable table,
          Object value,
          boolean isSelected,
          boolean isFocused,
          int row, int column) {
            setHorizontalAlignment(SwingConstants.RIGHT);
          Component component = super.getTableCellRendererComponent(
            table,
            value,
            isSelected,
            isFocused,
            row,
            column);
            if( value == null || value .equals("")){
              ( (JLabel) component).setText("");
            }else{
              double number = 0.0;
              number = new Double(value.toString()).doubleValue();
              DecimalFormat df = new DecimalFormat(",##0.00");
              ( (JLabel) component).setText(df.format(number));
          return component;
    }

  • Need some help with the Table Function Operator

    I'm on OWB 10gR2 for Sun/Solaris 10 going against some 10gR2 DB's...
    I've been searching up and down trying to figure out how to make OWB use a Table Function (TF) which will JOIN with another table; allowing a column of the joined table to be a parameter in to the TF. I can't seem to get it to work. I'm able to get this to work in regular SQL, though. Here's the setup:
    -- Source Table:
    DROP TABLE "ZZZ_ROOM_MASTER_EX";
    CREATE TABLE "ZZZ_ROOM_MASTER_EX"
    ( "ID" NUMBER(8,0),
    "ROOM_NUMBER" VARCHAR2(200),
    "FEATURES" VARCHAR2(4000)
    -- Example Data:
    Insert into ZZZ_ROOM_MASTER_EX (ID,ROOM_NUMBER,FEATURES) values (1,'Room 1',null);
    Insert into ZZZ_ROOM_MASTER_EX (ID,ROOM_NUMBER,FEATURES) values (2,'Room 2',null);
    Insert into ZZZ_ROOM_MASTER_EX (ID,ROOM_NUMBER,FEATURES) values (3,'Room 3','1,1;2,3;');
    Insert into ZZZ_ROOM_MASTER_EX (ID,ROOM_NUMBER,FEATURES) values (4,'Room 4','5,2;5,4;');
    Insert into ZZZ_ROOM_MASTER_EX (ID,ROOM_NUMBER,FEATURES) values (5,'Room 5',' ');
    -- Destination Table:
    DROP TABLE "ZZZ_ROOM_FEATURES_EX";
    CREATE TABLE "ZZZ_ROOM_FEATURES_EX"
    ( "ROOM_NUMBER" VARCHAR2(200),
    "FEATUREID" NUMBER(8,0),
    "QUANTITY" NUMBER(8,0)
    -- Types for output table:
    CREATE OR REPLACE TYPE FK_Row_EX AS OBJECT
    ID NUMBER(8,0),
    QUANTITY NUMBER(8,0)
    CREATE OR REPLACE TYPE FK_Table_EX AS TABLE OF FK_Row_EX;
    -- Package Dec:
    CREATE OR REPLACE
    PACKAGE ZZZ_SANDBOX_EX IS
    FUNCTION UNFK(inputString VARCHAR2) RETURN FK_Table_EX;
    END ZZZ_SANDBOX_EX;
    -- Package Body:
    CREATE OR REPLACE
    PACKAGE BODY ZZZ_SANDBOX_EX IS
    FUNCTION UNFK(inputString VARCHAR2) RETURN FK_Table_EX
    AS
    RETURN_VALUE FK_Table_EX := FK_Table_EX();
    i NUMBER(8,0) := 0;
    BEGIN
    -- TODO: Put some real code in here that will actually read the
    -- input string, parse it out, and put data in to RETURN_VALUE
    WHILE(i < 3) LOOP
    RETURN_VALUE.EXTEND;
    RETURN_VALUE(RETURN_VALUE.LAST) := FK_Row_EX(4, 5);
    i := i + 1;
    END LOOP;
    RETURN RETURN_VALUE;
    END UNFK;
    END ZZZ_SANDBOX_EX;
    I've got a source system built by lazy DBA's and app developers who decided to store foreign keys for many-to-many relationships as delimited structures in driving tables. I need to build a generic table function to parse this data and return it as an actual table. In my example code, I don't actually have the parsing part written yet (I need to see how many different formats the source system uses first) so I just threw in some stub code to generate a few rows of 4's and 5's to return.
    I can get the data from my source table to my destination table using the following SQL statement:
    -- from source table joined with table function
    INSERT INTO ZZZ_ROOM_FEATURES_EX(
    ROOM_NUMBER,
    FEATUREID,
    QUANTITY)
    SELECT
    ZZZ_ROOM_MASTER_EX.ROOM_NUMBER,
    UNFK.ID,
    UNFK.QUANTITY
    FROM
    ZZZ_ROOM_MASTER_EX,
    TABLE(ZZZ_SANDBOX_EX.UNFK(ZZZ_ROOM_MASTER_EX.FEATURES)) UNFK
    Now, the big question is--how do I do this from OWB? I've tried several different variations of my function and settings in OWB to see if I can build a single SELECT statement which joins a regular table with a table function--but none of them seem to work, I end up getting SQL generated that won't compile because it doesn't see the source table right:
    INSERT
    /*+ APPEND PARALLEL("ZZZ_ROOM_FEATURES_EX") */
    INTO
    "ZZZ_ROOM_FEATURES_EX"
    ("ROOM_NUMBER",
    "FEATUREID",
    "QUANTITY")
    (SELECT
    "ZZZ_ROOM_MASTER_EX"."ROOM_NUMBER" "ROOM_NUMBER",
    "INGRP2"."ID" "ID_1",
    "INGRP2"."QUANTITY" "QUANTITY"
    FROM
    (SELECT
    "UNFK"."ID" "ID",
    "UNFK"."QUANTITY" "QUANTITY"
    FROM
    TABLE ( "ZZZ_SANDBOX_EX"."UNFK2" ("ZZZ_ROOM_MASTER_EX"."FEATURES")) "UNFK") "INGRP2",
    "ZZZ_ROOM_MASTER_EX" "ZZZ_ROOM_MASTER_EX"
    As you can see, it's trying to create a sub-query in the FROM clause--causing it to just ask for "ZZZ_ROOM_MASTER_EX"."FEATURES" as an input--which isn't available because it's outside of the sub-query!
    Is this some kind of bug with the code generator or am I doing something seriously wrong here? Any help will be greatly appreciated!

    Hello Everybody!
    Thank you for all your response!
    I had changes this work area into Internal table and changed the select query. PLease let me know if this causes any performance issues?
    I had created a Z table with the following fields :
    ZADS :
    MANDT
    VKORG
    ABGRU.
    I had written a select query as below :
    I had removed the select single and insted of using the Structure it_rej, I had changed it into Internal table 
    select vkorg abgru from ZADS into it_rej.
    Earlier :
    IT_REJ is a Work area:
    DATA : BEGIN OF IT_REJ,
    VKORG TYPE VBAK-VKORG,
    ABGRU TYPE VBAP-ABGRU,
    END OF IT_REJ.
    Now :
    DATA : BEGIN OF IT_REJ occurs 0,
    VKORG TYPE VBAK-VKORG,
    ABGRU TYPE VBAP-ABGRU,
    END OF IT_REJ.
    I guess this will fix the issue correct?
    PLease suggest!
    Regards,
    Developer.

  • Need Immediate help...importing issue

         I work for a video editing company and today out of the blue, Premiere Pro started to act funny, its auto cropping clips that I am importing. It used to import these files fine and now its cutting them in half, I have tried all the basic stuff...I sort of also work IT here so the (re-install, reboot, try different settings) have all been done. The fact is it was doing it fine the other day and now it is making my workflow for the day grind to a halt until I figure this out.
    Immediate help/suggestions would be greatly appreciated.
                                                This is how its importing                                                                                 This his how it plays in a media player
    -Chris

    Im using Adobe Premiere CS5.5
    I have all updates
    Using windows 7 Pro
    Intel Core i7 2600K CPU @ 3.4Ghz
    16GB of ram
    64 bit OS
    source footage is:
    WMV File
    640x480
    2000kbps data rate
    29 fps
    I get no error codes
    this occurs immediatley when I drop it into premiere, and in the timeline and when I export.
    Thank you

  • Need some help on CRM tables which have the details of the order created

    Hi,
    Can anyone help me in knowing the tables which stores the information of an order . I need to find the status, priority, category and the partner functions of a particular order. Is there any table which stores all these data.
    Thanks & Regards,
    Anuradha.P

    Hi Anuradha,
    basically you link  partner function of an order with view:
    CRMV_LINKPARTNER.
    In this view you can find :
    Guid of an order coming from CRMD_ORDERADM_H
    Guid of BP coming from BUT000,
    and <b>partner function</b> stored in field PARTNER_FCT.
    For sold-to-party you have to select 00000001.
    Concerning priority and category I suggest you investigating with "where used list", tool in which tables the data element is used.
    Then start from CRMD_ORDERADM_H or CRMD_ORDERADM_I , and with the guid go to CRMD_LINK.
    Extract the proper Guid set and try going into the table/s you select, previuosly.
    Regards,
    AndreA
    <b></b>

  • I downloaded something and now when I click on safari yahoo comes up instead of top sites and I really want top sites back it's easier and google as the search engine on the top bar helped a lot too!! Please answer quick need immediate HELP!!

    I Downloaded something onto my computer and now when I click onto safari yahoo pops up instead of top sites I know certain changes come along with downloading but if there is a way back to top sites and google as my search engine I need it!! I'm not one for change and I love the whole original display that the macs have to offer when you first get your mac so thats why I really want top sites back also it was great when your in and rush and so much easier!! Please HELP immediately this is urgent!!

    Identify and remove adware
    http://www.thesafemac.com/arg/
    or use Adware Removal Tool.
    http://www.thesafemac.com/art/

  • ***SOLVED*** Friends MSI P35 Neo has no video/post!!! Need IMMEDIATE Help!

    Ok, I have been working with computers for a LONG time.  My best friend and I built him a gaming rig.  He has a Intel Core 2 Quad 2.4ghz, a single Ati Radeon x850 Crossfire Edition, a Rosewell 550 watt power supply, and 2gb of ddr2 RAM (unknown brand...).  Today me and him decided to dust out his case and tidy up his cables to increase airflow (his brother did a bad job LOL).  Everything was working before.  Now everything is powering on: the fans/LEDs, gfx card fan, psu, hdd, dvd drive, etc, but the screen is blank and i get no post/bios.  Me and him went to the movies tonight to see Saw 5 , and I couldnt spend the night at his house to work on it.  He is EXTREMELY pissed at me and thinks I broke his whole rig.  I feel horrible.  I read the manual for his mobo and EVERYTHING is hooked up correctly.  I didnt do anything wrong.  I have been googling and heard a lot of issues with MSI mobos like this.  Please help me or my friend may never let me touch or look at his pc again.  BTW i am only 15 years old, but i truely know what i am talking about.  I know all the terms so dont feel that you have to go make it simple for my young mind hehe.  I have been working on computers for about 5+ years.  Im quite intelligent in this field.
    Help truely appreciated! 

    Quote from: kourosh on 26-October-08, 23:10:59
    i put my money on ram gone loose you may have to put the ram a few times before it works they can be funny and then naturally check the graphic card that may be loose too so double check all connection and cables  . i do not think it is cmos
    i dont think this is cmos at all.  it was fine before, and in other topics like this, reseting it has done nothing.  does ram effect things like this? already checked gfx card cables, they are in tightly. in need my friend to push down on his ram when he gets home and see if it helps.

  • Need urgent help on nested tables

    Everywhere i could find a single nested table but not two. Can anyone help me on how to access and assign multi nested tables ?
    Declare
    Type a is table of varchar2(1000);
    Type b is table of a;
    v_temp b;
    Begin
    How can i assign and access variable of v_temp ?
    Please help as i can find one level nested tables examples but not this type ?
    end;

    SQL> set serveroutput on
    SQL> Declare
      2  Type a is table of varchar2(1000);
      3  Type b is table of a;
      4  v_temp b := b();
      5  Begin
      6      v_temp.extend(2);
      7      v_temp(1) := a('A','B','C');
      8      v_temp(2) := a('1','2','3','4','5');
      9      for i in 1..v_temp.count loop
    10        for j in 1.. v_temp(i).count loop
    11          dbms_output.put_line('v_temp('||i||')('||j||') = '||v_temp(i)(j));
    12        end loop;
    13      end loop;
    14  End;
    15  /
    v_temp(1)(1) = A
    v_temp(1)(2) = B
    v_temp(1)(3) = C
    v_temp(2)(1) = 1
    v_temp(2)(2) = 2
    v_temp(2)(3) = 3
    v_temp(2)(4) = 4
    v_temp(2)(5) = 5
    PL/SQL procedure successfully completed.
    SQL> SY.

  • Display Aggregated  numbers for all the weeks – Need immediate help

    Requirement is , Get the case count (#of Cases), and Case Worked (“ #of worked Case”) and Number of Solution (“# of Solutioin”) for the next 5 weeks base on selected week
    Case detail has in “Case Fact”, Worked details has in “ Activity fact”, Solution details has in “Solution Fact” all the three are join base “Case Dimension” and “Date Dimemsion”
    User will select Monday of the week, Case count should display for the selected week but Case worked and # of deliveries should display for next 5 weeks for the 1 weeks Cases.
    just notes..# Of Case count should stay same (sleeted week) but remaining thing need to calculate base on Cases selected on 1 week..
    Currently I am calculating selected week + 4 week to get data but # Cases also getting incremented but it need to stay 1 week total any help??
    Expected report output..
         Week1     Week2     Week3     Week4     Week5
    # Cases      10     10     10     10     10
    # Cases Worked 2     3     5     5     8
    # of Solution     0     1     2     3     6
    Thanks in Advance.

    I had the same problem the other day--my totals were listed, but all the other categories under "History" (Last Workout, Recent Workouts and Personal Best) were empty.
    I figured everything was lost, but decided to plug my nano back into my MacBook and let it mount in iTunes, then unmount it. I checked the History again. The first time, nothing changed. So I plugged and mounted again. The second time after unmounting, I navigated to the History menu, and suddenly the nano screen displayed a "Loading History" and it slowly loaded all my workouts. A few minutes later, all the History data was available again.
    Try that--plug and unplug several times, being sure to allow the nano to properly mount in iTunes before unmounting--to see if you can get the history to load.
    (One more thing to note--my nano is set to NOT automatically sync with iTunes, as I prefer to manually manage my music. I don't know if this will make a difference in the handling of workout data, but figured I should mention it here just in case.)

  • I need immediate help!

    please can anybody help me with this line of code? i need to know eactly what the code is talking about.. its hard for me to know.. please i need explanation..
    the code is displayed below:
      Private Shared Sub Main()
                Application.EnableVisualStyles
                Application.SetCompatibleTextRenderingDefault(False)
                Dim queue As New MyQueue(Of String)(&H100000)
                Dim queue2 As New MyQueue(Of PageEntry)(&H100000)
                Dim form As New Form1(queue, queue2)
                Dim craiglistArray As Craiglist() = New Craiglist(5  - 1) {}
                Dim threadArray As Thread() = New Thread(5  - 1) {}
                Dim i As Integer
                For i = 0 To 5 - 1
                    craiglistArray(i) = New Craiglist
                    craiglistArray(i).init(queue, queue2, form)
                    threadArray(i) = New Thread(New ThreadStart(AddressOf craiglistArray(i).ExtractEmails))
                    threadArray(i).Start
                Next i

    please can anybody help me with this line of code? i need to know eactly what the code is talking about.. its hard for me to know.. please i need explanation..
    the code is displayed below:
      Private Shared Sub Main()
                Application.EnableVisualStyles
                Application.SetCompatibleTextRenderingDefault(False)
                Dim queue As New MyQueue(Of String)(&H100000)
                Dim queue2 As New MyQueue(Of PageEntry)(&H100000)
                Dim form As New Form1(queue, queue2)
                Dim craiglistArray As Craiglist() = New Craiglist(5  - 1) {}
                Dim threadArray As Thread() = New Thread(5  - 1) {}
                Dim i As Integer
                For i = 0 To 5 - 1
                    craiglistArray(i) = New Craiglist
                    craiglistArray(i).init(queue, queue2, form)
                    threadArray(i) = New Thread(New ThreadStart(AddressOf craiglistArray(i).ExtractEmails))
                    threadArray(i).Start
                Next i

  • *Need Immediate Help*: Aperture Olympus Raw Files

    I need help, is there a way to open Olympus Raw Files (.orf) in Aperture? I really need to get my camera's raw photos working!
    -Thanks

    There are a number of cameras that either were once supported by iPhoto or Aperture and now are not, or that are not supported yet. Apple support declined to provide a list of cameras iPhoto and Aperture were compatible with.
    If you use a Canon Digital Rebel, you'll be okay. Otherwise test the software with your camera before buying one or the other.
    If all else fails, Adobe Lightroom will, as far as I know, open any RAW image from any camera once it's converted to DNG-RAW with the free DNG converter. So, if you can't get RAW to work with Aperture or iPhoto, there is an alternative.
    iPhoto and Aperture are the only photo apps I've tried that will not import RAW of any kind from my Nikon 5700. Apple support had no fix.
    If anyone has one, I'd love to hear it.

  • Need immediate help with CS2

    Okay, yes...I know its old...but when you can't afford the new one, you have to use what you have!  I was sent to the adobe download site on Monday to download CS2 for windows. My activation won't work on my software because we have used it too many times.  So, I downloaded everything and followed the directions from the site.  I get going and then it says to INSERT DISC 2......I don't have disc2 because we downloaded it from the web.  Please help me get past this.  PLEASE!!

    Your old version doesn't work because the activation servers are shut down, not because it was activated too many times, and the download to which you were directed is a version (with a special serial number that you also need) that does not require activation. There should have been downloads for each disk you need and looking at the page I'm guessing you downloaded the suite package as the ID standalone has only one file. Try moving all the extracted files into a single folder. There is also a PDF of download and install directions you should read....

  • Flash Player with Firefox--Need immediate Help!

    I just came across a very odd problem happening with Firefox only.
    The video loads first time and plays, however if you click the next time it comes up saying cannot access/access denied, couldn't replicate in any other browser.
    Basically it works fine first time after clearing the cache in FF.
    it's odd, would need a resolution immediately.
    test:
    http://origin-akamai-aptimize-bhpb.dcs.avanade.com/home/Pages/default.aspx
    you should get a video link on the home itself.
    *in case u cannot access it please try out in sometime since we update it sometime.
    Here's a dump of the response headers being sent back from the server when the error occurs:
    HTTP/1.1 206 Partial content
    Content-Range bytes 2360334-23019698/23019699
    Connection Keep-Alive
    Content-Length 20659365
    Date Tue, 10 May 2011 02:18:39 GMT
    Content-Type text/html
    ETag "{A7A7C915-9283-4DF2-9725-A46F5115D333},1pub"
    Server Microsoft-IIS/7.5
    Cache-Control public, max-age=86400
    Last-Modified Mon, 09 May 2011 00:22:19 GMT
    Accept-Ranges bytes
    SPRequestGuid 4518b45e-7e5d-460f-bcb0-6b19a978d559
    X-Powered-By ASP.NET
    MicrosoftSharePointTeamServices 14.0.0.4762
    And here is the output when playback works properly:
    HTTP/1.1 200 OK
    Connection Keep-Alive
    Content-Length 35021264
    Date Mon, 09 May 2011 23:00:45 GMT
    Content-Type video/mp4
    Content-Encoding gzip
    ETag "{A7A7C915-9283-4DF2-9725-A46F5115D333},1pub"
    Server Microsoft-IIS/7.5
    Cache-Control public, max-age=86400
    Last-Modified Mon, 09 May 2011 00:22:19 GMT
    SPRequestGuid 3dcf64a9-9680-4b9c-b7db-b2cbff8b8c05
    X-Powered-By ASP.NET
    MicrosoftSharePointTeamServices 14.0.0.4762
    Vary Accept-Encoding
    I checked with the player developers as well, however
    I believe the error has to do with Flash's handling of partial content HTTP responses in Firefox.
    Please HELP!
    Regards,
    Dipanjan

    Download the Adobe Flash Player installer directly by clicking  the following link.  Flash Player Plug-in (All other browsers)
    Save the file - do not run it yet.
    Reboot. Then run the installer before opening any apps.

  • Need immediate help! QuickTime completely messed since system recovery!

    Our computer crashed due to a virus not too long ago. When we recovered the OS, QuickTime reverted to version 6, but 7 remained on the HD. I uninstalled 6, but 7 still doesn't work.
    Specifics:
    iTunes keeps encountering an error and needs to close whenever I open it.
    Every application using QT closes with an error and displays "Some of your QuickTime software is out-of-date," and clicking "Do It Now" causes another error.
    I cannot uninstall QuickTime. Everytime I try, the procedure rolls back and I get the message "Fatal error during installation."
    Help please!
    Edit: I uninstalled iTunes.

    That's not the solution; it's just a test, which shows that bad data in your home folder is interfering with Safari.
    Quit Safari and move the following items to the Trash:
    Library/Caches/com.apple.Safari
    Library/Caches/Metadata/Safari
    Try again. If Safari still doesn’t work, quit it again and move the following file to the Desktop:
    Library/Safari/Bookmarks.plist
    Then move the following items to the Trash (some may not exist):
    Library/Preferences/com.apple.Safari.LSSharedFileList.plist
    Library/Preferences/com.apple.Safari.plist
    Library/Preferences/com.apple.Safari.RSS.plist
    Library/Safari
    Try again. This time Safari should perform normally, but your settings will be lost. Select File > Import Bookmarks from the Safari menu bar. Import from the bookmarks file you moved to the Desktop. Recreate the rest of your Safari settings. You can then delete the old bookmarks file.

  • Zoom-in feature under Lion doesn't work properly, need immediate help

    Hey, I have a bad eyesight as a handicap and I completely rely on the zoom-in-function of my mac because it let's me easily access and see stuff I want.
    when upgrading to Lion yesterday the zoom feature first didn't work at all then it jus enabled me to zoom in but the zoom  sort of froze and my mouse could only move within the zoomed frame. I set it all to "follow the mouse" but it jsut doesn't work.
    the zoom-feature was one of the main reasons years ago I got a mac in the first place and now it's so frustrating. really, I need help!!! does anyone at Apple already know about the problem?

    B...I guess it's no secret, but there is a problem with the zoom feature, and it's somehow connected to the screensaver being active when the computer goes into sleep mode. There are 2 quick ways to work around this without having to log off or reboot all the time  !. Turn off your screen saver, and zoom should always be available to you. 2. If you need the screen saver, activate one of the hot corners in the screen saver selection area. When your machine refuses to zoom, activate the screensaver by using the hot corner for a few seconds. When you return to your desktop, the zoom will be working again. I works every time for me. Good Luck everybody and I'm sure this little hiccup will be fixed in a short time.

Maybe you are looking for

  • I want to attach an External drive to imac 10.6.8 usb 2  can I use usb3 what are options?

    I am trying to get an external hard drive for an Imac 27 10.6.8 and was told by seagate that there are no longer any usb2 drives, or firewire 800, I would have to buy a cradle sta123 to convert. My imac is a late 2009 (already extinct i guess) does a

  • PDF TO FLASH Keeping the size around 180kb

    Our company has lined up to produce a number of E-Brochures Quickly as opposed to our old method of inserting each individual image and copy and pasting the text from PDF, we have been looking for a way of converting page by page of a PDF file into a

  • How to restore an ipad thats locked

    Hi, i need some help unlocking and/or restoring my iPad.  I just bought it today and set a passcode on it.  I tried getting on it later and it kept telling me the passcode was incorrect.  My iPad is now disabled and when i hook it up to my computer i

  • Inapp purchases implementation

    Hi Team, I need transaction more then $1000/- from in-app purchase on my application for just upgrading some account level of user's. But unfortunately i am not able to create products for price more than $999.99/-  according to Price Tier. What will

  • Moving music folders without loosing covers and information

    I am using iTunes mainly to manage music on my iPhone and to edit album covers/song information of my MP3s. However, I am managing my music and music folders manually in a folder system that is not part of "iTunes Preferences -> Advanced -> iTunes Mu