Cannot delete entries from custom Infostructure using OLIX

Hi,
I have created a custom info structure S970 for MRP. The data is being populated to this info structure using an ABAP program which reads from an excel file input by the user. Insert / Modify are used to write from itab to S970 in the program. The data is being read in file and written to S970 correctly. Version is specified by the user using a parameter like S970-VRSIO.
However, when I try to delete these entries using transaction OLIX, it does not show version or delete data. E.g., version is 002. In F4 help for field source version in OLIX, it is not showing version 002, only 000 - Actual data and A00, active version. If I input 002 manually and try to delete it gives me a message saying that deletion is successful. However, when viewing in SE11/SE16, S970 still shows all entries with version 002. Help is greatly appreciated, thanks.
Regards

Facing same issue here.. please some one help me how to solve this issue?

Similar Messages

  • How to delete entries from a itab using values in another itab?

    Hi All,
    I am having two internal tables itab1, itab2 with one common field. Also two tables contains some records, what i want is to delete the entries from itab1 which are not in itab2.
    Example:
    itab1                
    A B C
    1 a  b 
    2 z a
    3 e t
    4 d r
    itab2
    A D E
    1 s d
    3 f g
    After the deletion itab1 should only contain records 1 & 3.
    I know we can do this using loop and read, but i want to know if there is someother better way to do this...
    Thanks in advance...
    Regards
    Karthik D

    Hi Karthik,
    this code should do it.
    data : temp type sy-tabix.
    clear temp.
    loop at itab1.                          "if internal table with header line
    temp = sy-tabix.
    read table itab2 with key A = itab1-A.  
    if sy-subrc = 4.
    delete itab index temp.
    endif.
    endloop.
    *else if without header line
    data : temp type sy-tabix.
    clear temp.
    loop at itab1 into wa_itab1.                          "if internal table is without header line
    temp = sy-tabix.
    read table itab2 with key A = itab1_wa-A into wa_itab2.  
    if sy-subrc = 4.
    delete itab index temp.
    endif.
    endloop.

  • Deleting entries from custom tables....

    Hello,
    I have a custom table ZCUST (client dependent) from where I want to delete all entries. How do I achieve this ? There are two key fields in this table key1 and key2.
    Regards,
    Rajesh.

    Hi Rajesh,
    try this one...
    DATA: lt_add TYPE zadd OCCURS 0 WITH HEADER LINE.
    SELECT *
    FROM zadd
    INTO TABLE lt_add.
    DELETE zadd FROM TABLE lt_add.
    IF sy-subrc = 0.
      ULINE.
    ENDIF.
    Best regards,
    raam

  • All of a sudden, I cannot delete entries from mailbox?

    This AM I could delete unwanted messages from my e-mail - now I cannot delete messages. Any suggestions as to why or what to do?

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Delete entries from custom infotype overview screen

    Hi
    I have the requirement to delete few fields from overview screen(Screen 3000) from my custom infotype.
    Can I go to screen 3000, and CUT (delete) the fields which are not required? or any other procedure?
    Did anyone get similar requirement?
    Please help me in this regard.
    Thanks in advance.

    HI
    I tried hiding it with the help of code.
    Still not able to achieve the result.
    THe below is the code what I am using.
    Please check it and suggest me.
    if psyst-ioper EQ 'LIS0' or
        psyst-ioper EQ 'LIS1' or
        psyst-ioper EQ 'LIS9' .
         loop at SCREEN.
      if screen-name EQ '*P9009-ZWCADM' or screen-name = 'P9009-ZWCADM'.
        screen-active = 0.
        endif.
        MODIFY SCREEN.
      endloop.
      endif.
    Still able to see the fields on the screen.Not being hidden.

  • I have dragged 2 files to the trash bin but I cannot delete them from the trash bin. It keeps telling me these files are in use when they are not. How do I delete these files? One is a txt file and the other is an xls file

    I have dragged 2 files to the trash bin but I cannot delete them from the trash bin. It keeps telling me these files are in use when they are not. How do I delete these files? One is a txt file and the other is an xls file

    From the Finder menu select 'Secure Empty Trash'. If this or the suggestion above doesn't resolve the problem take a look at the various suggestions in this link:
    http://www.thexlab.com/faqs/trash.html

  • I am using iphone4s with iOS 7 and now I cannot delete applications from the home screen, when I double click the item it didn't shows the'x' button

    Hi,
    I am using iphone4s  &amp; now I updated with ios7 after that I cannot delete apps from home screen.  Earlier when we double click the apps  then it will wiggling &amp; 'x' button will appear now it isn't  so I need  solution for this
    Thanks,
    Binoy

    http://manuals.info.apple.com/MANUALS/1000/MA1565/en_US/iphone_user_guide.pdf

  • Cannot delete photos from  iphone 5 downloaded from pc.  Tried all solutions using Itunes and it doesn't delete them from iphone

    Cannot delete photos from iphone 5 downloaded from pc.  Tried the ITunes solution and it does not delete the photos.  Try a second time and Sync doesn't even start

    I see the photos tab and "My Pictures" folder shows.  Sync is unselected.  It asks if I want to delete the photos when I click on sync and I said yes but it didn't work.  It does seem that some photos are removed based on available storage left (decreases).  If I select individual folders, subfolders of "My Pictures" then hit Sync deselected Sync doesn't even start.

  • Delete entries from the table

    Hi folks,
    I have delete program to delete entries from a custom table and has only one feld in it.
    tables: ZABC
    selection-screen begin of block B1 with frame title text-110.
    select-options: P_KOSTL for ZABC-KOSTL.
    selection-screen end of block B1.
    delete from ZABC where KOSTL in P_KOSTL.
    Upon executing I am entering certain cost center ids on the selection screen to delete them from the table.It did not work.
    what is it I am missing?
    Thanks,
    SK

    Hi,
    Try this sample code..Replace ZABC with your table..
    TABLES: ZABC.
    selection-screen begin of block B1 with frame title text-110.
    select-options: P_KOSTL for ZABC-KOSTL.
    selection-screen end of block B1.
    START-OF-SELECTION.
    * Delete the records from the table.
    DELETE FROM ZABC where KOSTL IN P_KOSTL[ ].  " [] for the select-options.
    IF sy-subrc <> 0.
      ROLLBACK WORK.
    ELSE.
      COMMIT WORK.
    ENDIF.
    Thanks,
    Naren

  • Cannot delete files from my ipod shuffle!!!

    I am new to using an ipod and i cannot delete files from my ipod, on itunes, it only shows the license agreement where the ipod files are supposed to be and no matter how many times i uninstall and reinstall itunes and agree to the license agreement i can't access anything else. can anyone help me at all i feel like a complete idiot!

    Pressing return will get past this screen as there is a button at the bottom right of iTunes which you likely cannot see.
    Set your screen resolution to at least 1024x768 to see this button.

  • Is there any BAPI or function module  to delete entries from a table (VBAK)

    Hi Everybody,
    this is my first thread in SDN...
    my problem follows...
    A report is be created that selects all sales orders created by e-Sales that are more than 20 minutes old and still have a delivery block:
    tables:
    VBAK     sales document: header data
    selection fields:
    VBAK-LIFSK      &#8800;     <BLANK>
    VBAK-ERNAM     =     userID used by e-Sales / IVE
              (EP-BATCH / EAI-BATCH)
    VBAK-ERDAT      <=     Current system Date
    VBAK-ERZET     <=     Current system Time - 20 minutes
    These orders should be deleted from SAP system.
    This report should be scheduled to run regularly every 10 minutes.
    my doubt : is ther any BAPI or Function module to delete entries from a standard table...if no what is the way to delete the enteries from a std table...
    best replies will be rewarded....
    regards
    Reddy

    Hi Vasanth ,
    thanks for your reply.
    i tried in the same manner what u mentioned.
    but how to pass only one parameter to the functionmodule..
    here in this case we have to pass only update flag as 'D'..
    i did the same it giving dump..
    An exception occurred that is explained in detail below.                          
    The exception, which is assigned to class 'CX_SY_DYN_CALL_ILLEGAL_TYPE', was      
      not caught and                                                                   
    therefore caused a runtime error.                                                 
    The reason for the exception is:                                                  
    The call to the function module "BAPI_SALESORDER_CHANGE" is incorrect:                                                                               
    In the function module interface, you can specify only                            
    fields of a specific type and length under "ORDER_HEADER_INX".                    
    Although the currently specified field                                            
    "INT_ORDER_HEADER_INX" is the correct type, its length is incorrect.              
    my pgm :
    *& Report  YNEW_ORDER_DELETION
    REPORT  ynew_order_deletion.
    TABLES:vbak.
    PARAMETERS:
         p_lifsk LIKE vbak-lifsk DEFAULT '02'.
    SELECT-OPTIONS:
       s_lifsk FOR vbak-lifsk DEFAULT '10',
        s_ernam FOR vbak-ernam,
        s_erdat FOR vbak-erdat,"DEFAULT sy-datum.
        s_erzet FOR sy-uzeit.
    *PARAMETERS:
    p_erzet LIKE sy-uzeit.
       s_erdat like vbak-erdat,
       s_erzet like vbak-erzet.
    DATA:
       BEGIN OF int_final OCCURS 0,
            w_vbeln TYPE vbak-vbeln,
       END OF int_final.
    DATA:
      int_return LIKE bapiret2 OCCURS 0 WITH HEADER LINE.
    DATA: int_order_header_inx LIKE bapisditmx OCCURS 0 WITH HEADER LINE.
    DATA:
      wf_time TYPE sy-uzeit.
    INITIALIZATION.
      s_ernam-low = 'KULKARMA'.
      s_ernam-sign = 'I'.
      s_ernam-option = 'EQ'.
      APPEND s_ernam.
    s_ernam-low = 'EAI-BATCH'.
    s_ernam-sign = 'I'.
    s_ernam-option = 'EQ'.
    APPEND s_ernam.
    wf_time = sy-uzeit - 1200.
    p_erzet = sy-uzeit - 1200.
    p_erzet-low = wf_time.
    APPEND s_erzet.
      int_order_header_inx-updateflag = 'D'.
      APPEND int_order_header_inx.
    START-OF-SELECTION.
      SELECT vbeln FROM vbak
                       INTO TABLE int_final
                       WHERE lifsk EQ p_lifsk
                         AND ernam IN s_ernam
                         AND erdat IN s_erdat
                         AND erzet IN s_erzet.
      IF sy-subrc = 0.
        LOOP AT int_final.
          CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
            EXPORTING
              salesdocument         = int_final-w_vbeln
      ORDER_HEADER_IN             =
        order_header_inx            = int_order_header_inx
      SIMULATION                  =
      BEHAVE_WHEN_ERROR           = ' '
      INT_NUMBER_ASSIGNMENT       = ' '
      LOGIC_SWITCH                =
      NO_STATUS_BUF_INIT          = ' '
            TABLES
              return                      = int_return
      ORDER_ITEM_IN               =
      ORDER_ITEM_INX              =
      PARTNERS                    =
      PARTNERCHANGES              =
      PARTNERADDRESSES            =
      ORDER_CFGS_REF              =
      ORDER_CFGS_INST             =
      ORDER_CFGS_PART_OF          =
      ORDER_CFGS_VALUE            =
      ORDER_CFGS_BLOB             =
      ORDER_CFGS_VK               =
      ORDER_CFGS_REFINST          =
      SCHEDULE_LINES              =
      SCHEDULE_LINESX             =
      ORDER_TEXT                  =
      ORDER_KEYS                  =
      CONDITIONS_IN               =
      CONDITIONS_INX              =
      EXTENSIONIN                 =
        ENDLOOP.
        LOOP AT int_return.
          WRITE:/ int_return-type,
                  int_return-id,
                  int_return-number,
                  int_return-message.
        ENDLOOP.
      ENDIF.
    please help me ..its a very urgent issue to be solved...
    am waiting for ur reply...
    regards
    gangareddy

  • HT1386 I have double and triples of photo's on my iPad. Not all my pics but most of them. I was told that I screwed up in synching with iTunes when I initally set up. How in the **** do I get rid of all the dups? I cannot delete them from my iPad. HELP ME

    I have double and triples of photo's on my iPad. Not all my pics but most of them. I was told that I screwed up in synching with iTunes when I initally set up. How in the **** do I get rid of all the dups? I cannot delete them from my iPad. HELP ME!

    If the shows are in fact still on the pad, they will be found in the videos app, not the music or I tunes app.  Look there and see if they are still there.
    If you don't see them there, go to the searchlight screen ( farthest left home page) and type in the name of one of the shows.  If it is on the pad, hiding somewhere, this will find it.
    If they are not there, they should not be using up space.
    To get them back onto your pad, plug in and sync again.  Make sure you transfer purchases first.   Before you sync, take a look at the video tab in your I tunes, and check what you want and don't want synced.

  • Delete entries from Database table  t71inp1

    Hi,
    I want to Delete entries from Database table  t71inp1. Its a H R Table. I want to know the exact code.
    i saw the cide delete bkpf where usnam = p_name.
    Will it work the same here. Also.
    Please let me know.
    I hope to get reply from you soon.
    where should i write the code. i.e. Tcode SE38 and directly deeleting write the code.
    Please give me some inputs. I am new to H R ABAp
    Shivakumar K B
    919886920258

    hi
    You can write a program in se38.
    create a program.
    use delete from t71inp1 where<condition> command in it.

  • I cannot delete albums from iPhoto

    I cannot delete albums from iPhoto.any advice?

    Remember: we cannot see your machine. There are 9 different versions of iPhoto and they run on 8 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS.  So to get help you need to give as much information as you can. Basic things like :
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For instance: 'iPhoto won't export' is best explained by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted?
    - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.
    Posts that consist of "iPhoto doesn't work. Help" or "iPhoto won't print" or "Suddenly I have no photos!!!!!!!!!!" mean that any helper is simply guessing. More information means you get better assistance.

  • Recover deleted entries from ztable

    Hi
    is there any best method to recover the deleted entries from ztable?

    Hi Vahi,
    1. Find out the exact time when the data has been deleted.        
    2. Restore THE WHOLE DATABASE on any other server with MSSQL server
    running on that. You should not restore the database completely,  
    rather using "Point-in-time" recovery method. Appoint the time from
    the p.1 minus 5 minutes as the end point of the database recovery.
    Please refer to the note 193816 for more information.             
    3. Now the old content of the table ZRATE is there. You can       
    export the data and then import them into the produtive system.   
    Afterwards you can delete the restored database, it is not needed 
    anymore.                                                                               
    Thanks!
    Anusha

Maybe you are looking for

  • What's wrong with this mask?

    Hi, Since one cannot upload a PSD or TIF layered file with masks and all the Photoshops goodies here, I have found a way around. Please visit the following site: http://juandentphotoshopproblems.businesscatalyst.com     and press the button "Click to

  • Tif files

    I can't figure out why Preview will not open .tif files. I get a window saying that files may be damaged or Preview doesn't recognize the extension. However, these files open in my wife's pc, so there is no damage. From what I am understanding, Previ

  • Word document created by Workflows do not open

    We are using Sharepoint Online (2013 version) and sharepoint Designer 2013 We have a requirement by which we would like to update a 'Word template' with the metadata information from a Document Set.  A word document is created after the workflow exec

  • Recycle Bin and Core Dump

    Hi Friends, Why do we use core dump I mean "core_dump_dest" till now I didn't see any files in this particular destination. My 2nd Question is where is the Recycle Bin created and can we adjust the size of the recycle bin according to our requirement

  • My Mac Froze!

    Hey, my mac just froze for no apparent reason. Please look at this and let me know why this happened. (I was using excel): panic(cpu 0 caller 0x0019CAEF): Unresolved kernel trap (CPU 0, Type 14=page fault), registers: CR0: 0x80010033, CR2: 0xe00002e7