Appleworks Speadsheet Randomly not saving data

I have a few small spreadsheets I've created that seem to be reverting and not retaining changes. Even save as created files are not saving. If I just add one line of data at a time and save it, it seems to retain it, but multiple lines are lost as if nothing was saved. It only seems to be happening in certain (small) files. Any suggestions appreciated.

Hi Yvan
Sorry to get back so late, but I think I've discovered the problem. I was just trying to save to my main hard drive. What I did was create a file link in Macjournal (an older version) to open the files in the same place I was keeping other data. I was using these links to open the files instead of the finder. Problem is, it seemed to be linking to an unchanged version of the file, so if I used the link to open it, the same unchanged file would open, not the one with the changes. Opening directly in the finder, instead of my own little idea solved the problem. Needless to say, I won't be using Macjournal as a file launcher anymore. Thanks.
John Alden

Similar Messages

  • ALV grid - not saving data withoutpressing 'Enter'.

    hi,
    I have an ALV grid (OO). I have written the code to update the final internal table in the method handle_data_changed.
    So If the user presses SAVE without hitting 'Enter' key, it is not saving the data .
    How can I handle this.
    Regards,
    Beena.

    hi,
    u can refresh it using method refresh_table_display.
    regards,
    janakiram.

  • Document not saving data

    Hi,
    as I already mentioned here:
    http://forums.adobe.com/thread/432254?tstart=0
      I hope somebody here will know. The form is not saving it´s data  in the process. I fill the form in the Assign task in the Workspace, but after submitting it, it´s empty.
    I am exporting the log, but the (correct from the schema) xml is empty (no data). Data connection is ok.
    Thanks for ANYsuggestions.
    Lukas

    Can you try to use a Document Form variable instead of a document variable.
    You can set the @document attribute  of the Document Form with your PDF using the following xPath /process_data/myDocForm/object/document = yourdocvar.
    Then use that Document Form varibale for you input and ouput data mapping.
    Jasmin

  • Adobe LiveCycle Form Not Saving Data

    I have designed dozens of Adobe LiveCycle forms and have extended rights (enable usage rights in adobe reader).  My problem is that sometimes the form is not saving the data for end users.  One of my end users even updated Adobe Reader, but still nothing is working and he is becoming increasingly frustrated.  Any other suggestions.

    Make sure all your fields have a binding set even if it is just their name.
    For instance, click on a field that isn't saving, in the Object palette, under the Binding tab make sure the Data Binding is set to Use Name.
    Hope that helps.
    Kyle

  • Not Saving data in some of the fields

    I am using Oracle Database 10g Express Edition Release 10.2.0.1.0 -
    Application Express 2.1.0.00.39.
    The form fields have Source Used: Always, replacing any existing value in session state.
    Source Type: Database Column
    I modified my form, I changed a form field from a Select List with Submit to a Text_Field(Always submit page when Enter pressed) this is when the problem started. I noticed that the data was not getting saved in the form or table.
    The session variables are not populated. It has a status of R.
    A while back, I discovered that the order of your form field and the display typeaffects the population of the field.
    If you have basic Select List with Submit text_field,Select List, etc. you are ok, but if you use Text_Field(Always submit page when Enter pressed) , then radiogroups, checkboxes , text_field, select list, etc. the fields will not get populated.
    What can I do to get a text_field to default to "No Witness' or accept the inputted value?
    I can get it to accept the Default, but if you modify it, then it does not save the changes.

    Hello,
    If you want the item to reflect the changes you made to its value, after submit, you need to use the “Only When …” option in the Item’s Source Used field. Otherwise, you need to retrieve the value from the database, using ARF. In all other cases it will be set to the default value (as the Source Used imply).
    Regards,
    Arie.

  • HT1414 i have just upgraded to iOS7 and when pdating my apps some have not saved data and others have. Why would this be and how do I get the data back?

    I have just upgraded to iOS7 and when I open my apps some have data saved and some (Eden, Survivalcraft) do not. My son is distraught that all his hard work has gone so does anyone know why this would be and how do I fix it please?

    Nevermind.  Problem solved.  They were there.  I just couldn't see them.

  • CRM_CUSTOMER_H_MAINTAIN_OW not saving data on Change - Display

    Hi All,
    I am using the win interaction centre in CRM 5.0.
    I have added a new tab and new fields to the tab that are stored in the CRMD_CUSTOMER_H table.
    When I save (click the Save button) the activity I call CRM_CUSTOMER_H_MAINTAIN_OW FM to save teh customer fields and this works perfect.
    The problem I have is saving the values when the user goes from Change to Display mode (Click the Display<->Change button).
    Ideally what I want is to flag to the interaction layer that a change has been made and get the usual prompt that "something has changed and do you want to save?".
    I pass everything to CRM_CUSTOMER_H_MAINTAIN_OW (as I do when saving the activity) but nothing is saved to CRMD_CUSTOMER_H).
    I have even tried CRM_ORDER_MAINTAIN (and CRM_ORDER_SAVE/ BAPI_TRANSACTION_COMMIT) and this does not save either...
    Has anyone had a similar situation and how did you overcome it?
    Many thanks
    Gary Hawkins

    Hello Gary,
    Today i've implemented ORDER_SAVE BADI, method PREPARE with the same task as you have.
    And it's working.
    code:
    data: lt_customer_h type crmt_customer_h_comt.
    data: ls_customer_h type crmt_customer_h_com.
    ls_customer_h-ZZFLD000003 = LV_YOUR_VARIABLE
    ls_customer_h-ref_guid = LV_HEADER_GUID
    append ls_customer_h to lt_customer_h.
    data: lt_input_fields     type crmt_input_field_tab.
    data: ls_input_field      type crmt_input_field.
    data: ls_input_field_name type crmt_input_field_names.
    ls_input_field_name-fieldname = 'ZZFLD000003'.
    insert ls_input_field_name into table ls_input_field-field_names.
    ls_input_field-objectname = gc_object_name-customer_h.
    ls_input_field-ref_guid = iv_guid.
    ls_input_field-ref_kind = gc_object_kind-orderadm_h.
    insert ls_input_field into table lt_input_fields.
    CALL FUNCTION 'CRM_ORDER_MAINTAIN'
       EXPORTING
         it_customer_h   = lt_customer_h
       CHANGING
         ct_input_fields = lt_input_fields.
    data: lt_cust_h   type crmt_customer_h_wrkt.
    CALL FUNCTION 'CRM_ORDER_READ'
       EXPORTING
         it_header_guid = lt_guids
       IMPORTING
         et_customer_h  = lt_cust_h.
    In my example, i saved LV_YOUR_VARIABLE into the field CRMD_CUSTOMER_H-ZZFLD000003 for the transaction guid LV_HEADER_GUID.
    If you are using your own program, don't forget to call CRM_ORDER_SAVE and BAPI_TRANSACTION_COMMIT afterwards. Clearing of the buffers can be done via CRM_ORDER_INITIALIZE.
    Hope it's not yet late.
    Best Regards, Dima

  • Custom tabular form for multi-row not saving data

    Ok, before anyone asks, yes, I did read the how-to:-)
    I have a custom tabular form, which I did cause I need to use popups and the popups that you can use in the wizard tabular form does not display the text but rather the value underneath it.
    It returns data rather nicely and when I go and update values I can tell it is changing the fields underneath. I put a process in that will display the values in text fields on the form (for one row only) and I see them changing from what is already there and with the proper values.
    However, when I do that the data that is displayed then gets reverted back to what it was previous to the update but reports that the process was successful.
    I have also tried to insert but that is basically doing the same thing. Can anyone guide me.
    SQL to generate the tablular form...
    SELECT x.sak_release_db
    , x.sak_object
    , x.sak_release
    , x.sak_participant
    , x.sak_csr
    FROM
    (SELECT htmldb_item.hidden(1,sak_release_db) sak_release_db
    , htmldb_item.popupkey_from_query(2, sak_object,
    'SELECT b.nam_schema||''.''||a.nam_technical as table_name , b.sak_object
    FROM system_object a
    , database_table b
    WHERE a.sak_object = b.sak_object') as sak_object
    , htmldb_item.hidden(4,sak_release) sak_release
    , htmldb_item.popupkey_from_query(5, sak_participant,
    'SELECT nam_first || '' '' || nam_last as name, sak_participant FROM co_participant') sak_participant
    , htmldb_item.popupkey_from_query(7, sak_csr,
    'SELECT external_id|| ''-''||id_split as co, sak_csr FROM co') sak_csr
    FROM release_db_xref
    UNION ALL
    SELECT htmldb_item.hidden(1,NULL) sak_release_db
    , htmldb_item.popupkey_from_query(2, NULL,
    'SELECT b.nam_schema||''.''||a.nam_technical as table_name , b.sak_object
    FROM system_object a
    , database_table b
    WHERE a.sak_object = b.sak_object') as sak_object
    , htmldb_item.hidden(4,NULL) sak_release
    , htmldb_item.popupkey_from_query(5, NULL,
    'SELECT nam_first || '' '' || nam_last as name, sak_participant FROM co_participant') sak_participant
    , htmldb_item.popupkey_from_query(7, NULL,
    'SELECT external_id|| ''-''||id_split as co, sak_csr FROM co') sak_csr
    FROM dual) x
    Process to verify that I have the correct global fields: (Type: PL/SQL anonymous block, Process Point: On Submit - After Computations and Validations)
    begin
    :P3_2 := replace(htmldb_application.g_f02(1),'%'||'null%',NULL);
    :P3_5 := replace(htmldb_application.g_f05(1),'%'||'null%',NULL);
    :P3_7 := replace(htmldb_application.g_f07(1),'%'||'null%',NULL);
    end;
    Process to do the insert/update. Note, I hardcoded the value in the where clause but I was originally using the global value for g_f01 (i also tried putting a commit in there for fun) (Type: PL/SQL anonymous block, Process Point: On Submit - After Computations and Validations):
    -- Update the RELEASE_DB_XREF table
    FOR i IN 1..htmldb_application.g_f01.count
    LOOP
    IF htmldb_application.g_f01(i) IS NOT NULL THEN
    UPDATE release_db_xref
    SET sak_object = replace(htmldb_application.g_f02(i),'%'||'null%',NULL)
    , sak_participant = replace(htmldb_application.g_f05(i),'%'||'null%',NULL)
    , sak_csr = replace(htmldb_application.g_f07(i),'%'||'null%',NULL)
    WHERE sak_release_db = 22;
    ELSE
    IF htmldb_application.g_f02(i) IS NOT NULL THEN
    INSERT INTO release_db_xref
    (sak_object
    ,sak_release
    ,sak_participant
    ,sak_csr)
    VALUES
    (replace(htmldb_application.g_f02(i),'%'||'null%',NULL)
    ,htmldb_application.g_f04(i)
    ,replace(htmldb_application.g_f05(i),'%'||'null%',NULL)
    ,replace(htmldb_application.g_f07(i),'%'||'null%',NULL));
    END IF;
    END IF;
    END LOOP;

    Florian,
    Checkboxes are different from other HTML form items. When you have a text box for example, there's always a value send to the server when submitting. Even if that value is NULL. When you have a checkbox however, you only get the value if the checkbox is checked. It's not posted to the server when it is not checked. That's the general behavior of HTML forms and not specific to Oracle HTML DB.
    When working with tabular forms in HTML DB, you can access your form values using the htmldb_application.g_f0x arrays. Now if you have for example 10 rows in your form, then you'll get ten elements in your array for text boxes, select lists, etc. For checkboxes however you'll only get as many elements as you have rows checked. If I read your update and insert code correctly, you're trying to use the checkbox arrays the same way you use the arrays based on other item types. My recommendation would be to use Yes/No select lists instead of checkboxes or at least use select lists initially to get it working and then work on properly processing the checkboxes.
    Some general information about working with checkboxes in tabuar forms can be found here:
    http://www.oracle.com/technology/products/database/htmldb/howtos/checkbox.html#CHECKBOX_IN_REPORT
    Hope this helps,
    Marc

  • COPY function on a Multiprovider - - Not saving data

    Hi,
    Im facing a wierd problem.
    Im tryin to run the COPY function on a Multiprovider.
    I've selected 2 fields as 'To be Changed' : 0INFOPROV and 0VTYPE. and 1 KF (ZACCINS) to be copied.
    I tried to run the PF through a Planning Sequence in 'Execute with Trace  Mode'. The result of which is shown below for 1 block.
    Series  Data  ChangeInd  ValueType ZACCINS Infoprovider
    1      Before      Unchanged 10           2,000.00  ZHR_R10
    1      After         Unchanged 10           2,000.00 ZHR_R10
    2      After          New          20           2,000.00 ZHR_R20
    3      Reference Data           10           2,000.00 ZHR_R10 .
    So far so good.
    Now I clicked on Save Plan data. Now when I try to view the Contents of the Target Cube (ZHR_R20), it does not display any data.
    Just to cross check, I have created a query on the Multiprovider and tried to call the same PF through the Analyzer. On click of the button, the system displays the "NEW" rows that were generated. Now, on clicking 'SAVE AREA', the newly generated rows disappear!!
    Again to cross check, I have deleted old requests in RSA1 for ZHR_R20 and tried to execute the function again wherein a new request was generated. On changing the Request to Green(Status OK),the  Added Records and TRANSFERED RECORDS are shown as 5.( the number of records in Source cube which im trying to copy = 5 in ZHR_R10).
    Have also checked the Fact table of ZHR_R20  but could not find any entries in the table... Not sure where the problem could be !!
    Regards
    Shyam
    System info as follows:
    SAP_BW     700     0013     SAPKW70013     SAP NetWeaver BI 7.0

    Hi Ravi,
    The parameters are set propely:
    InfoProvider: Staff Costs Actual; Value Type for Reporting: Actual - From Change
    InfoProvider: Staff Costs Plan; Value Type for Reporting: Plan - To Change .
    Can you pls explain why do you think the function was not executed properly.. Iam absolutely clueless with this behaviour ... I have been tryin many number of times but in vain. The behaviour is the same. Each time I execute the PF, the Transferred records and Added records count keep on increasing .. but with no contents in the cube... .
    Rgds
    Shyam

  • Adobe form not saving data.

    hi Experts,
    I am facing strange problems with Adobe forms.
    I am working on both Offline and online adobe forms.
    adobe form which i make does not allow to save data.
    I am using the Adobe liveCycle designer 7.1.
    The Adobe reader version is 7.08
    and service pack is SPS 11.
    I have used both the tutorials for offline and online adobe forms.
    Online Problem :-
    The project for online works fine and it also allows to save data(when i save the form on my PC).
    But when i create a new form on my machine it does not allow to save data.
    Really confuse what the problem is.
    I have also tried this.
    Copeid the XDP file from the Online tutorial project into my project
    if i use this work around the the problem is resolved. But i am no able to understand why the XDP CREATED on my machine does not work.
    Offline problem:-
    In this case i am not able to save data in the form at all.
    As the PDF created itself not allow to save data.
    Please help.
    Points would be awarded to helpful answers.
    Regards,
    Sanjyoti.

    Hi Satya & sanjyoti,
    I am facing a pecular problem in using Adobe forms.
    I am able to pass data from webdynpo application, to the Interactive form(using mappings, as mentioned by satya).
    But for the same form & WD application, i am not able to pass data from the Interactive Form, back to the WD application.
    My scenario is like this:
    I need to show a form, with some prefilled data, such as date, userID, etc. I populate the node in my WD application, & then call the form.
    The form displays the above prefilled data. Now the user has to fill the remaining fields & click on submit(Submit-to-sap button). The onsubmit property of the Interactive form is mapped to a onaction event, where WD tries to read the data entered by the user.
    The problem is that on clicking of the submit button in the form, the event is not getting called.
    If i use a button in the WD view itself, then the action gets called, but there is no data. In short, the data is NOT getting passed from Interactive form to WD application.
    Can you please help me out with this?
    Thanks,
    Hanoz

  • Not saving data after we raise an exception

    Hi,
    I extended continue button function in OTL - Timecard. If we throw any error in continue button, then after do the required modifications to the data and click on Save button , for the first time the save is not working. Then again click on save, the data is getting to the database.
    Any suggestions would be greatly appreciated.
    Thanks in advance
    Kalyani

    Hi,
    Please find the code in save
    if(sA != null && sA != "" && sA.equals("TimecardSaveForLater"))
    oapagecontext.writeDiagnostics(this,"am in save >>>>>>",6);
    oadbtransaction.putValue("CheckSave", "Y");
    long l = GlobalUtilities.getLongOrNullFromObject(oapagecontext.getParameter("TimecardId"));
    oapagecontext.writeDiagnostics(this,"am in save >>> timecard id.."+l,6);
    if(-1L == l)
    l = GlobalUtilities.getLongOrNullFromObject(oapagecontext.getParameter("Timecard_id"));
    oapagecontext.writeDiagnostics(this,"am in save >>>> timecard id.."+l,6);
    ValidationforZeroRowsVOImpl zeroVO = (ValidationforZeroRowsVOImpl)oaapplicationmodule.findViewObject("ValidationforZeroRowsVO");
    oapagecontext.writeDiagnostics(this,"second vo on click continue button.."+zeroVO,6);
    if(zeroVO == null)
    zeroVO = (ValidationforZeroRowsVOImpl)oaapplicationmodule.createViewObject("ValidationforZeroRowsVO", "sonata.oracle.apps.hxc.selfservice.timecard.server.ValidationforZeroRowsVO");
    zeroVO.setWhereClause(null);
    zeroVO.setWhereClauseParam(0,l);
    zeroVO.executeQuery();
    oapagecontext.writeDiagnostics(this,"second vo row count on click continue button.."+zeroVO.getRowCount(),6);
    }else
    zeroVO.setWhereClause(null);
    zeroVO.setWhereClauseParam(0,l);
    zeroVO.executeQuery();
    oapagecontext.writeDiagnostics(this,"second vo row count on click continue button with else.."+zeroVO.getRowCount(),6);
    oapagecontext.writeDiagnostics(this,"second vo row count on click continue button with else.."+zeroVO.getQuery(),6);
    ValidationforZeroRowsVORowImpl Zerorow = null;
    int fetchedRowCount = zeroVO.getFetchedRowCount();
    oapagecontext.writeDiagnostics(this,"fetchedRowCount>>>>fetchedRowCount.."+fetchedRowCount,6);
    RowSetIterator zeroIter = zeroVO.createRowSetIterator("zeroIter");
    String chkVal = "Delete";
    if(fetchedRowCount > 0)
    zeroIter.setRangeStart(0);
    zeroIter.setRangeSize(fetchedRowCount);
    for (int i = 0; i < fetchedRowCount; i++)
    oapagecontext.writeDiagnostics(this,"am in for loop ..",6);
    Zerorow = (ValidationforZeroRowsVORowImpl)zeroIter.getRowAtRangeIndex(i);
    if(Zerorow.getMeasure() != null)
    oracle.jbo.domain.Number primaryKey = Zerorow.getMeasure();
    oapagecontext.writeDiagnostics(this,"primaryKey>>>>primaryKey.."+primaryKey,6);
    oracle.jbo.domain.Number timeBuildingID = Zerorow.getTimeBuildingBlockId();
    oapagecontext.writeDiagnostics(this,"timeBuildingID>>>>timeBuildingID.."+timeBuildingID,6);
    int zero = 0;
    Number y = 0;
    String timcardID = Zerorow.getTimeBuildingBlockId().toString();
    oapagecontext.writeDiagnostics(this,"am in for loop with time card build id.."+timeBuildingID,6);
    if(primaryKey.compareTo(zero) == 0)
    oapagecontext.writeDiagnostics(this,"am in primarykey validation true..",6);
    OADBTransaction dbtrans = oaapplicationmodule.getOADBTransaction();
    String procedureStr = "BEGIN son_delete_zero_time(:1); END;";
    OracleCallableStatement callablestatement = (OracleCallableStatement)dbtrans.createCallableStatement(procedureStr, 1);
    try{
    oapagecontext.writeDiagnostics(this,"AM in delte before close..",6);
    callablestatement.setInt(1, Integer.parseInt(timcardID));
    callablestatement.execute();
    callablestatement.close();
    oapagecontext.writeDiagnostics(this,"AM in delte after close..",6);
    chkVal = "AfterDel";
    }catch(SQLException _sqle) {  try
    callablestatement.close();
    catch(Exception e) { }
    throw OAException.wrapperException(_sqle);}
    }oapagecontext.writeDiagnostics(this,"am in primarykey validation false..",6);
    }oapagecontext.writeDiagnostics(this," am in close iterator",6);
    //break; // only one possible selected row in this case
    }zeroIter.closeRowSetIterator();
    }

  • PDF Interactive Forms Not Saving Data in Preview

    Interactive PDF forms opened in Preview doesn't seem to save data you fill in when you save the document. Acrobat seems to save and retain the document without a problem. Anyone know what's going on?

    Adobe wants to keep you using only Adobe software so they have designed in incompatibilities with the OS. I don't know of any other PDF tool that can do fill-in forms. If you want to use fill-in forms, you'll have to print it using CUPS-PDF (I haven't tried this with Leopard yet). You could also use Skim to turn any PDF into a fill-in form.

  • Flex Mobile: PersistenceManager not saving data (only on some iPads)

    I have a function (save()) that saves a username after user login and a function (get()) that gets the username everytime the App is restarted so the user doesn't have to log back in and can work offline. This works on my iPad 2 and 3, but I have another iPad 3 that this does not work on. When the App is fully closed and reopened the "username" is not held onto. Is it my code or the device?
    Example:
    public var saveData:PersistenceManager = new PersistenceManager();
    public function save():void
    saveData.setProperty("username", txtUsername.text);
      saveData.save();
    public function get():void
      var username:String = null;
      if(saveData.getProperty("username"))
         //This comes back null on one iPad but not the others
      username = saveData.getProperty("username").toString();

  • Health app not saving data

    when I enter my data on the built in health app it doesn't save let it use to. I would enter my information close it and reopen it and everything will be gone.. Does anyone else have this problem

    EdHDC,
    I'm sorry that I don't have a fix for your issue, but I did want to mention that if you end up in a scenario where you get things working and find that you have data prior to your fix that doesn't automatically get imported in, we have released an app specifically for importing data into HealthKit / Health App.  It requires data in a CSV (comma separated value) format currently, but that is the format that most apps provide for their exported files.
    The app is called Health Importer and more information is available on the App Store at:  https://itunes.apple.com/us/app/health-importer/id930943780?ls=1&mt=8
    Hope it's a helpful tool for you or others who come across the post!

  • Visio 2010 - Shape Data Fields Are Not Saving

    I am having a problem with a number of shape data fields which are not saving data that has been entered into it, whether by entering it through the "shape data" or "define shape data" dialog boxes, or by editing the "shape
    sheet". 
    All data fields appear to save normally while file is open, it remains as entered.  However, when file is closed and later reopened select data fields do not retaining data correctly.  Some retain nothing (null), or revert back to a "default"
    value, see below for a couple examples:
    Rack Units:  Want to enter data as 1U, 2U, etc. ... in some cases it will save it as entered while in other cases it reverts to "1 RU", "2U", etc.
    Room:  Enter the data as I want it stored, most of the time it appears to come back empty, there are some shapes which will retain as entered.
    Comments:  Fails to retain any data
    I have looked at a number of reasons to explain why, whether the problems occur with stencils is supplied by Microsoft, a vendor, or were custom created.   Looked into whether it might have to do with a particular vendor's stencils/drawings
    but I have a number of Cisco drawings where some save those fields as entered while others do not.  I believe it could be a setting within the stencil preventing it from saving the data as entered, enabled in some cases and not in others.
    I have checked "Protection" under the "Developer" tab, but nothing appears to be set to prevent editing/storing data entered. 
    Is there some setting(s) or field(s) somewhere that I can look at to allow this data to be saved as entered?
    Is there a GLOBAL setting that can be set once within a file?
    Thank you in advance for your time to assist me in fixing these problems. Have a great day!
    MJ_NWE
    MJ

    >Can I build logic so that they can't fill in a field unless the previous field has been filled in?
    It's theoretically possible to do this (e.g. each field has an action
    of removing read-only on the next). It's considered extremely bad form
    design, because people don't always fill in fields in the order
    specified. If you watch people with a form they fill in their name,
    address, other easy stuff; then they go back for the harder stuff.
    They may want to save a form because one piece of information needs
    research.
    What you might like to consider is a large splash "FORM INCOMPLETE" in
    Red or whatever, which vanishes when all the fields are completed.
    Aandi Inston

Maybe you are looking for

  • A good friend from Japan asked me if I knew....

    ...what was happening to his iMac? He was a neighbor of mine in Hawaii, and I helped convince him to buy a Mac so I feel somewhat responsable for his hardware problems. I received this email from Japan recently, tell me does it sound like "Kernal Pan

  • Getting a client username

    Is it possible to have a jsp retrieve a clients username automatically (much like the java call System.getProperty("user.name"))? I know that I can use cookies for everything but my boss doesn't want to ever make a user log into the system. We are on

  • .mv4 upload to Weblog broke after 10.6 update.

    I had the Weblog working to accept .mv4 files via tips in George Cooks's "Tweaking Weblog", http://web.mac.com/cook5/iWeb/georgedotmac/Welcome.html. I modified the appropriate files and it was working fine. After the update I can only upload the stan

  • Add new customer  fields on Basic Data Header of Bid Invitations

    Add new fields on Basic Data of Header  of BID INVITATIONS  and other screens. I found many notices sap that it indicates that I can use badi BBP_CUF_BADI_2, both how does it? I understand that method  MODIFY_MODE_QUOT is due to implement because he

  • I need to display separate bar for totals at the end of the barchart.

    Hi All, My scenario is similar to the one described below http://siebel.ittoolbox.com/groups/technical-functional/siebel-analytics-l/displaying-grand-total-column-as-a-seperate-vertical-bar-in-a-bar-chart-report-3351958 I didn't understand how the co