New records not saved

there are 3 main data block in a form. Block A is master of block B(multiple row block) while B is master of C(multiple row block).
Initially, I enter 1 row in A, 1 row in B and 3 rows in C. So, 5 records are saved. Anyway, when I execute the form later... and want to insert another row in B and another 3 rows in C. These new records are not saved.
Can anybody help me on this ?
Thanks,
Shu Wen

Howdy Howard (and others) -
I was hoping someone would have an answer without generating an example, but I hi-jacked the demo and came up with one:
http://apex.oracle.com/pls/apex/f?p=70849:9:16222360984434:::::
Workspace: DenverScott
UserName: Test_User
P/W: Test123
Page: 9
Recreate Problem: Change the checkbox value of an item under OnChange and OnClick and press "Submit", only OnChange items actually change.
On this report, the two columns "OnChange" and "OnClick" are the focus. They are both simple check boxes and basically have the same settings. They both call an empty javascript function "test_me(this)" when clicked. Difference is, the MRU works for the "OnChange" column, updates are applied. You can change the "Onclick" column and submit all you want and it does nothing.
If you remove the event for OnClick="test_me(this);" from the "OnClick" column, the submit/updates work just fine.
(If anyone changes the demo, please return to prior state for others to examine)
Thanks,
Scott

Similar Messages

  • How to write the new records not with existing records.

    hi,
    I have a script.If i execute the script it writes the records.but its writing with the exisiting records.It writes not only the new records but also the old records.
    for eg: the exisiting records are:
    1111115-2,USD,DINESH,1,1,,,,9,,,,123456184001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111116-2,USD,DINESH,1,1,,,,9,,,,123456184001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111117-2,USD,DINESH,1,1,,,,9,,,,123456184001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111118-2,USD,DINESH,1,1,,,,9,,,,123456184001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111119-2,USD,DINESH,1,1,,,,9,,,,123456184001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    but now what happend is the new records such as
    1111116-2,USD,DINESHBABU,1,1,,,,9,,,,123456184003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111117-2,USD,DINESHBABU,1,1,,,,9,,,,123456184003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111118-2,USD,DINESHBABU,1,1,,,,9,,,,123456184003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111119-2,USD,DINESHBABU,1,1,,,,9,,,,123456184003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    it gets appended with the old existing records,
    1111117-2,USD,DINESH,1,1,,,,9,,,,123456184001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111118-2,USD,DINESH,1,1,,,,9,,,,123456184001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111119-2,USD,DINESH,1,1,,,,9,,,,123456184001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111113-2,USD,DINESHBABU,1,1,,,,9,,,,123456184003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111114-2,USD,DINESHBABU,1,1,,,,9,,,,123456184003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111115-2,USD,DINESHBABU,1,1,,,,9,,,,123456184003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111116-2,USD,DINESHBABU,1,1,,,,9,,,,123456184003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111117-2,USD,DINESHBABU,1,1,,,,9,,,,123456184003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111118-2,USD,DINESHBABU,1,1,,,,9,,,,123456184003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111119-2,USD,DINESHBABU,1,1,,,,9,,,,123456184003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    there will be some problem happens when we are going to upload a bulk data of say 25000 records.if its gonna update 20000 records,rest 5000 records i have to do it in next step,if this is going to happen then the first 20000 records will be displayed forever.because it have the capacity to write 20000 records.thenext 500 records will not be written.so there is a chance of redundancy.how to avoid this redundancy while running this script
    my script is
    create or replace procedure input_tables(table1 in varchar2)
    is
    str varchar2(32767);
    cnt number(2);
    cursor c1(tname in varchar2)
    is
    select column_name
    from all_tab_columns
    where table_name = tname
    order by column_id;
    rec c1%rowtype;
    begin
    cnt:= 1;
    str:= 'declare '||
    'cursor c2 '||
    'is '||
    'select ';
    open c1(table1);
    loop
    fetch c1 into rec;
    exit when c1%notfound;
    if cnt = 1 then -- Added New
    str:= str||rec.column_name; -- Added New
    cnt:= cnt + 1; -- Added New
    else -- Added New
    str:= str||'||'',''||'||rec.column_name; -- Added New
    end if; -- Added New
    end loop;
    close c1;
    str:= str||' SRC from '||table1||';'||
    ' r2 c2%rowtype;'||
    ' ft UTL_FILE.file_type;'||
    ' str2 varchar2(200);'|| --Added New
    ' begin '||
    ' ft := UTL_FILE.fopen(''SAMPLE'',''OUTPUT.csv'',''w'');'||
    ' for r2 in c2'||
    ' loop '||
    ' UTL_FILE.put_line(ft,r2.SRC);'||
    ' end loop;'||
    ' UTL_FILE.fclose(ft);'||
    ' end;';
    execute immediate(str);
    end;
    thanks,
    Ratheesh.

    Hi!
    U can check the following script --
    create or replace procedure input_tables(table1 in varchar2,start_col in number,last_col in number)
    is
         str varchar2(32767);
         cnt number(2);
         cursor c1(tname in varchar2)
         is
           select column_name
           from all_tab_columns
           where table_name = tname
           order by column_id;
         rec c1%rowtype;
    begin
         cnt:= 1;
         str:= 'declare '||
         'cursor c2 '||
         'is '||
         'select ';
         open c1(table1);
         loop
              fetch c1 into rec;
              exit when c1%notfound;
                   if cnt = 1 then -- Added New
                        str:= str||rec.column_name; -- Added New
                        cnt:= cnt + 1; -- Added New
                   else -- Added New
                        str:= str||'||'',''||'||rec.column_name; -- Added New
                   end if; -- Added New
         end loop;
         close c1;
         str:= str||' SRC from '||table1||
         ' where rownum between '||start_col||' and '||last_col||';'|| -- Added New
         ' r2 c2%rowtype;'||
         ' ft UTL_FILE.file_type;'||
         ' str2 varchar2(200);'|| --Added New
         ' begin '||
         ' ft := UTL_FILE.fopen(''SAMPLE'',''OUTPUT.csv'',''w'');'||
         ' for r2 in c2'||
         ' loop '||
         ' UTL_FILE.put_line(ft,r2.SRC);'||
         ' end loop;'||
         ' UTL_FILE.fclose(ft);'||
         ' end;';
         execute immediate(str);
    end;
    / To print first ten rows --
    exec input_tables('EMP',1,10);  --first 10 rowsTo print next remain rows --
    exec input_tables('EMP',11,15);N.B: No tested....
    Regrads.
    Satyaki De.

  • Mail App - New Accounts not saving

    Im creating new accounts, but once I close the Mail app they are not saving (I can see the account while I have Mail open, but once I close it they dissapear from both the Mail app mail folders and the Accounts/Settings).
    This is the error Im getting in the Console
    2/20/14 10:35:46.376 AM Mail[482]: Error writing to /Users/javiergonzalez/Library/Mail/V2/[email protected]@pop.bizmail.yahoo.com/.mboxCache.plist: Error Domain=NSCocoaErrorDomain Code=513 "You don’t have permission to save the file “.mboxCache.plist” in the folder “[email protected]@pop.bizmail.yahoo.com”." UserInfo=0x600000a60600 {NSFilePath=/Users/javiergonzalez/Library/Mail/V2/[email protected]@pop.bizmail.yahoo.com/.mboxCache.plist, NSUnderlyingError=0x60000084c060 "The operation couldn’t be completed. Permission denied"}
    2/20/14 10:35:46.399 AM Mail[482]: Error writing to /Users/javiergonzalez/Library/Mail/V2/Mailboxes/.mboxCache.plist: Error Domain=NSCocoaErrorDomain Code=513 "You don’t have permission to save the file “.mboxCache.plist” in the folder “Mailboxes”." UserInfo=0x600000a720c0 {NSFilePath=/Users/javiergonzalez/Library/Mail/V2/Mailboxes/.mboxCache.plist, NSUnderlyingError=0x600000855cf0 "The operation couldn’t be completed. Permission denied"}
    2/20/14 10:36:16.135 AM Mail[482]: Error writing to /Users/javiergonzalez/Library/Mail/V2/Mailboxes/.mboxCache.plist: Error Domain=NSCocoaErrorDomain Code=513 "You don’t have permission to save the file “.mboxCache.plist” in the folder “Mailboxes”." UserInfo=0x608001273080 {NSFilePath=/Users/javiergonzalez/Library/Mail/V2/Mailboxes/.mboxCache.plist, NSUnderlyingError=0x60800044d830 "The operation couldn’t be completed. Permission denied"}
    2/20/14 10:36:16.137 AM Mail[482]: Error writing to /Users/javiergonzalez/Library/Mail/V2/[email protected]@pop.bizmail.yahoo.com/.mboxCache.plist: Error Domain=NSCocoaErrorDomain Code=513 "You don’t have permission to save the file “.mboxCache.plist” in the folder “[email protected]@pop.bizmail.yahoo.com”." UserInfo=0x600001262280 {NSFilePath=/Users/javiergonzalez/Library/Mail/V2/[email protected]@pop.bizmail.yahoo.com/.mboxCache.plist, NSUnderlyingError=0x600000241020 "The operation couldn’t be completed. Permission denied"}
    2/20/14 10:36:23.725 AM Mail[487]: Error writing to /Users/javiergonzalez/Library/Mail/V2/Mailboxes/.mboxCache.plist: Error Domain=NSCocoaErrorDomain Code=513 "You don’t have permission to save the file “.mboxCache.plist” in the folder “Mailboxes”." UserInfo=0x60000086a340 {NSFilePath=/Users/javiergonzalez/Library/Mail/V2/Mailboxes/.mboxCache.plist, NSUnderlyingError=0x6000008448f0 "The operation couldn’t be completed. Permission denied"}
    2/20/14 10:36:23.726 AM Mail[487]: Error writing to /Users/javiergonzalez/Library/Mail/V2/[email protected]@pop.bizmail.yahoo.com/.mboxCache.plist: Error Domain=NSCocoaErrorDomain Code=513 "You don’t have permission to save the file “.mboxCache.plist” in the folder “[email protected]@pop.bizmail.yahoo.com”." UserInfo=0x60000086a580 {NSFilePath=/Users/javiergonzalez/Library/Mail/V2/[email protected]@pop.bizmail.yahoo.com/.mboxCache.plist, NSUnderlyingError=0x600000653410 "The operation couldn’t be completed. Permission denied"}
    I have verified permissions via Disk Utility, but that hasnt helped.
    Any ideas?

    I have fixed it! All I did was to select "replace all information in iPhone from Maill" and worked.

  • Insert Record not saving values

    Hi,
    I am extremely new to Dreamweaver. I am using MX2004.
    I am trying to work with a remote database that I created in
    MySQL and I am using PHP.
    I created a PHP page added my form, added my input fields,
    and used the Insert Record wizard to get to my database on the
    server. I also went to the columns section and where it says
    ‘Fieldname’ Does Not Get a Value. I went and chose my
    value from the drop-down Value box. It now says
    ‘Fieldname’ Gets Value From
    ‘FORM.Fieldname’ as ‘Text’ I have done that
    for all the columns that I am asking the users to fill in including
    the fields that are NOT NULL.
    The problem is once I test it, it is not putting the data in
    the database. When I go back and look at my columns in the Insert
    Record Server Behaviors, many of my columns have reverted to
    ‘Fieldname’ Does Not Get a Value.
    For some reason my values are not being saved.
    Can someone help with this?
    Thanks,
    Socaprice

    Thanks Mike. I've sloghtly modified my question and reposted
    here:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=12&catid=263&threadid =1322354&enterthread=y
    Do you have any thoughts on this?
    Cheers,
    Roger.

  • Infotype records not saving when action is performed.

    Hello all-
    We have an action named: personnel information changes which is having Infotype 0002, 0006, 0105 to show up one after the other.
    When we perform the action and click on save, its saving the data and moving to next infotype, but after the action is completed, the infotype records in PA20 or the table pa0002, pa0006 etc does not contain any data.
    Please advice!
    The employee is having a reference personnel number.
    Thanks,
    Chakri.

    Hi Chakri,
    Go to SPRO> Personnel Management>Personnel Administration--> Customizing Procedure -->Actions --> Define Infogroups and then click the Infogroup.
    Give your action number "same used for Personnel Information Changes"
    Check the following items,
    1. check the Reference User Group... is it similar to your required one?
    2. Check the "operation" column....it should be COP, INS or MOD.
    Please check it ...hopefully it will work...Award points if you think so....
    Regards
    Rao

  • BDC...record not saved.

    Hi gurus,
    All records except last one saved while running bdc....
    what can be the problem....
    Thanks and regards,
    Md.

    might be u did not captured last record properly

  • Result recording not saved

    Hi,
       PP QM Gurus,
       I m doing result recording for a insoection lot. Once i have saved valuated, locked and saved the results for same results only. When for other results i go through QE12 system is showing me all blanks results. The results which i have recorded before are also appearing blank. Why this is happning. Please help me out.
    Thanks and Regards,
    Harriesh.

    Hi,
    Normally if the result is recorded and the processing status is 5, it should not happen. Just for confirmation, Could you please tell me whether you are checking for the same inspection point and the Characteristic filter is "Closed characteristics"?
    Regards,
    Srinivas.D

  • New albums not saving

    I've had difficulty with iPhoto 09. The program has been acting inconsistently and crashes when I try to close it or just when moving between albums. I've created a new album, moved a bunch of pictures into it, then after iPhoto closes, the album is not there anymore. Also, some but not all of my changes to several events have disappeared. For example, I move some photos from one event into another, and then after I reopen the program after a crash, the photos are back in their original spot. Why is this happening? There should be automatic saving as soon as the photos have been moved. Is anyone else seeing this?

    Click on the Finder icon in your dock.
    Click on the Home icon on the left hand side on the sidebar.
    __You can also go to the menu at the very top of the computer screen that says "Go" and choose "Home" from there.
    Double-click on the Library folder.
    Cheers!

  • Firefox 4.0 new bookmarks not saved

    Been using FireFox 4.0.1 since it was released. Works fine until I noticed a few days ago that it suddenly stopped saving new bookmarks. I typically drag the url by it's icon over to the folder I want it to reside in...I have quite a few. It worked fine last week, apparently, since I see some recent bookmarks. But I've now tried two times to save a group of pages, one at a time, i n the same folder. And the next day they are gone!

    If you have problems with importing the IE Favorites in Firefox then export the Favorites in IE to an HTML file and import that file in the Firefox Bookmarks Manager.
    * Export the favorites in IE to an HTML file (bookmarks.html): File > Import and Export
    * Import the HTML file in Firefox: Bookmarks > Organize Bookmarks > Import & Backup > Import HTML: From File
    See also:
    * http://kb.mozillazine.org/Import_bookmarks ("Import from another browser" and "Import from file")

  • Obmenu - new menu not saved

    obmenu has been working fine, while adding/removing items like firefox, nautilus, etc..
    However, new menus are not showing up. I've tried rebooting, doesn't work. Anybody know why?

    The same happens to me, I have it installed on two machines. My laptop has openbox and also gnome installed, and in there it works flawlessly, but in the desktop, where I only have openbox it only works when adding stuff to the menu categories that came as default, whenever I try to create a new one or to rearrange the order of the categories it fails to load. I have tried to modify the menus by directly editing the menu.xml fle, and still the problem persists. If I remove the menu.xml it reconfigures to the default menu, i've tried modifiying that one by replacing its xml code to the one I need and still the same problem applies!!! (I just did a copy paste of my menu.xml to the one it creates by default).
    Does anyone have a clue?
    Thanks a lot!

  • Bookmarks &history disappeared - cannot import/restore,new bookmarks not saved

    My bookmarks & history have completely disappeared. Organiser completely empty. When I try 'Import:restore' and choose a date, message tells me cannot process file! When I try to bookmark an open page, it doesn't get added to bookmarks list. I am running Firefox 3.6.3 on XP. Please reply in words of one syllable as I'm not an expert on inner workings of Firefox.

    See http://kb.mozillazine.org/Unable_to_process_the_backup_file_-_Firefox

  • Updating field when new records saved.

    Hi,
    I was wondering if there are any suggestions on updating a picklist field when a new record is saved (as field updates only work for modified records).
    We recently created a custom Probability % field that is tied to both the Sales Stage and another custom picklist field called "Business Type" (has two options - New or Existing). The Probability % field is updated based on a simple workflow that says if Sales Stage = x and Business Type = y, then Probability % = z.
    For example, if the Sales Stage is = to "Validation" and the Business Type is = to "New", the Prob. % will be 5. If the Sales Stage is = to "Validation" and the Business Type is = to "Existing", the Prob. % will be 10... (just so you get the idea).
    Since the workflow is tied to modified records, the new records keep missing the Probability % field.
    Any suggestions on how we can get those newly created records have an updated Prob. % field would be helpful.
    Thanks in advance!

    Thanks for the response, Min.
    1) I've thought about the post default value, but the problem we encounter is that the user might not create an Opportunity in the very first sales stage- is there a way to place a default in the Prob. % field depending on the sales stage the record is created with?
    2) I thought fields could only be updated when modified records saved - it isn't an option with the "new record is saved". Is there a workaround? I'm still quite new at this, so any help on how I can create a workaround would be great!
    Thanks again.

  • Problem with inserting new records in Oracle Forms

    Hi Friends,
    I am a new user to Oracle Forms and I need a help from you people. The problem is as follows:
    I have a data block in which I can display a number of records. In this data block the user will be able to edit the fields if no child records are found in another table. I have used when-new-record-instance to attain this scenario. All are text items. One item licensee_id which is made invisible by setting the property in property palette and required=no ( as this is the primary key of the table). Also the audit columns are made invisible.
    The code for it is as follows:
    DECLARE
         v_alert_button NUMBER;
         v_cnt                          NUMBER;
    BEGIN
         SELECT COUNT (*)
    INTO v_cnt
    FROM id_rev_contracts
    WHERE licensee_id = :ID_REV_LICENSEES.licensee_id;
    IF v_cnt > 0 THEN
    set_item_property('ID_REV_LICENSEES.LICENSEE_NAME', UPDATE_ALLOWED, PROPERTY_FALSE);
    ELSE
         set_item_property('ID_REV_LICENSEES.LICENSEE_NAME', UPDATE_ALLOWED, PROPERTY_TRUE);
         -- set_item_property('ID_REV_LICENSEES.LICENSEE_NAME', INSERT_ALLOWED, PROPERTY_TRUE);
    END IF;
    END;
    Now in this data block I should also be able to insert new records and for the same I have used PRE-INSERT trigger and the code for it is as follows:
    DECLARE
         v_alert_button NUMBER;
    CURSOR v_licensee_id IS SELECT id_rev_licensees_s.NEXTVAL FROM dual;
    BEGIN
    OPEN v_licensee_id;
    FETCH v_licensee_id INTO :id_rev_licensees.licensee_id;
    CLOSE v_licensee_id;
    IF :id_rev_licensees.licensee_id IS NULL THEN
    Message('Error Generating Next v_licensee_id');
    RAISE Form_Trigger_Failure;
    END IF;
    :ID_REV_LICENSEES.created_by := :GLOBAL.g_login_name;
    :ID_REV_LICENSEES.last_updated_by := :GLOBAL.g_login_name;
    :ID_REV_LICENSEES.create_date := SYSDATE;
    :ID_REV_LICENSEES.last_update_date := SYSDATE;
    EXCEPTION
    WHEN form_trigger_failure
    THEN
    RAISE form_trigger_failure;
    WHEN OTHERS
    THEN
    v_alert_button :=
    msgbox ('ERROR in Pre-Insert - ' || SQLERRM, 'STOP', 'Contact IST');
    RAISE form_trigger_failure;
    END;
    Every thing is compiling fine but at the run time when I am trying to insert a new record I am receiving the following error:
    FRM-40508:ORACLE error:unable to insert record
    I also think the pre-insert record is not firing at the time of inserting a new record and saving it. So I request you to please delve into this problem and suggest me how to overcome this problem. Code snippets would do more help for me. If you need any other things from me please let me know. I will see if I could be of any help in that concern because I may not be able to send the entire form as it is.
    Thanks and regards,
    Vamsi K Gummadi.

    first of all
    pre-insert fires after the implicit/explicit commit/commit_form is issued and before the real insert is submitted to the db.
    i would suggest to remove the error handling part for the moment
    because i believe you might be getting "ora-xxxx cannot insert null"
    and also make visible the primary column to check if the pre-insert is executed.
    it would be better to make visible for a while the not null columns of the table/block
    i suppose that the block is insert allowed and you are using table as the source of the block and not any procedures or something...

  • Cannot add new records through VC form when consuming IP write back query

    I have created a planning application in IP and created a Form in VC (CE 7.1). I am not able to create new records in VC Form and save it back to the cube like the traditional excel form on IP does. I have attached a document with every step that i did as a screen shot in designing my model. The writing back of data using the Form works if i have preexisting data in the planning cube and if i am only changing the values of the existing data records it works great. I could consume the planning functions that i created and they work well within VC. But if i want to create new records in a empty planning cube it gives me error unlike planning in excel analyser lets me save it back to the cube. I have tested the same query in Excel Analyser and created new records and saved it back in the cube. Any help on this is greatly appreciated.
    [http://www.mediafire.com/?sharekey=f1bc9aa662da6a86d956df2962098fcbe04e75f6e8ebb871]
    Thanks.
    Edited by: BI GUYS on Sep 28, 2009 2:00 PM

    Hi PradeeP,
    1. The BI Query itself has to support the entries of new lines. This is described in note 1149346.
    However, if the Query allows entering new lines in the BEx Analyzer, then this prerequisite is fulfilled.
    2. In the BI Query wizard in VC in the u201CChoose Presentationsu201D step, you have to include  the key presentation for the characteristics.
    If 1 and 2 are fulfilled and you still have the problem, it is strange...
    Does the problem also occur if you create new records in a cube that already shows some data in the table view?
    Regards,
    Talia

  • Generate the primary key  automatically while records are saved

    Hi experts,
    I need to generate the primary key of a custom table automatically when a new record is saved. Pleas help asap. Urgent.

    Hi Rob and vikas,
       Thanks for your answers . Both of the solutions you mentioned were syntactically correct and activated but they are not populating the numbers.In case of Rob's soultion  I guess I am not able to catch the return number. I am giving the code below. So Please look into it,
    FORM gen_manu_siteid .
    data : number type zsiteid value 155.
    CALL FUNCTION 'NUMBER_GET_NEXT'
      EXPORTING
        NR_RANGE_NR                   = '02'
        OBJECT                        = 'zmanusite'
        QUANTITY                      = '1'
      SUBOBJECT                     = ' '
      TOYEAR                        = '0000'
      IGNORE_BUFFER                 = ' '
      IMPORTING
        NUMBER                        = number
      QUANTITY                      =
      RETURNCODE                    =
    EXCEPTIONS
      INTERVAL_NOT_FOUND            = 1
      NUMBER_RANGE_NOT_INTERN       = 2
      OBJECT_NOT_FOUND              = 3
      QUANTITY_IS_0                 = 4
      QUANTITY_IS_NOT_1             = 5
      INTERVAL_OVERFLOW             = 6
      BUFFER_OVERFLOW               = 7
      OTHERS                        = 8
    *IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    *ENDIF.
    ztblqm_sqm-zsiteid = number .
    ENDFORM.                    " gen_manu_siteid
    When this did not work. i tried Vikas's soution and the code i used for this is
    FORM gen_manu_siteid .
    data : w_count like ztblqm_sqm-zsiteid,
           e_wa like ztblqm_sqm occurs 0 with header line.
    select max( zsiteid ) from ztblqm_sqm into w_count .
    w_count = w_count + 1.
    e_wa-zsiteid = w_count.
    modify ztblqm_sqm  from e_wa.
    ENDFORM.                    " gen_manu_siteid
    Please look into this and give me a solution.
    NB: I have tried them at the event 01 include.

Maybe you are looking for

  • Sometimes the volume bar doesn't show up on the ipad

    Hello, I was wondering if anyone could help me with a problem I am having. One day out of the blue the sound on my wife's iPad stoped working for music or videos. The speakers still worked for ringers but not anything else, so I know that the speaker

  • PSE 11 - MacOX 10.7.5  -MORE-Printer and Profiles Not Working Correctly for first print

    As suggested by adobe support contacted Epson.   What I expected no help.  Since it works ok with PSE10, PSE 9, CS5 it could not be their problem.  However PSE 11 have changed something in the sequence of events. I then downloaded a trial version of

  • Blank Screen (Dark)

    Hi, I have a Satellite M35X-S329. Somebody gave me this computer. When I turned the power on, I could hear a spiining sound briefly about 5 seconds, no beep and then it stops. Nothing shows on the screen. Does anybody know what's the problem? Or what

  • Permission denied on the RedHat 6.2

    Hi, I have created the Oracle e Dba group. I have installed OAS 4.x e WebDB 2.x for Linux. I have always the error PERMISSION DENIED when I run a command (for example: tnsping, genclntsh, .....) and therefore I can not complete the installation becau

  • Detailed Documentation for Interactive Forms

    Hi,    I need a detailed documentation about Interactive Forms and how to use the transaction sfp Thanks. Regards, Muhammad