Deletion selection in infoPackage setting

Hi, experts,
    I noticed two options of "selection Area" in deletion selection in infoPackage
    1.Same or More Comprehensive
    2.Overlapping
  who can tell me what the exactly difference between these two options? the help of them is quict same.
   in my case, one infoPackage setting  period: 1 ~ 8 and country is China. if another infoPackage with setting Period:8 and country is china. it should to delete data in old request with period 8 and country is china. right?  but in here, I think both setting is work in this case. then, how was the different usage of this option.
    Thanks in advance.

Let me see if i can help u there.
1. Same or More comprehansive:
Lets say that you ran job yesterday with selection conditions Period: 8 and Country:China.
If you run a job again today with conditions Period: 1 to 8 and Country: China.
The second load is more comprehensive than the first one. Then it'll delete the yesterday load.
2. Overlapping: Lets say yesteday u ran a load with conditions Period: 1 - 8 and Country: China
Today u ran a job again with conditions Period: 3-9 and Country: China. This will delete the yesterday load. If you have selections like this, and if u select the first option "same or more comprehansive", your yesterday load is not deleted.
Is it clear now? Or give me the exact scenario how your loads going to be, i'll see if i can come up with an answer

Similar Messages

  • How to delete selected row in table control

    Hi all,
    here is my coding for deleting selected row.
    But it is not working correctly.
    I am not able to delete seleced row.
    If i press delete button it automatically delete from beginning instead of selected rows.
    Can anyone can help me plz...
    CONTROLS rowdeleting TYPE TABLEVIEW USING SCREEN 100.
    TABLES zdetails.
    data : begin of itab occurs 0,
    NAME TYPE ZDETAILS-NAME,
    ADDRES TYPE ZDETAILS-ADDRES,
    CONTACTNO TYPE ZDETAILS-CONTACTNO,
    INIT TYPE C,
    end of itab .
    DATA OK_CODE LIKE SY-UCOMM.
    CALL SCREEN 100.
    MODULE STATUS_0100 OUTPUT.
    SET PF-STATUS 'BACK'.
    IF ITAB-INIT IS INITIAL.
    SELECT NAME ADDRES CONTACTNO FROM ZDETAILS
    INTO CORRESPONDING FIELDS OF TABLE ITAB.
    DESCRIBE TABLE ITAB LINES rowdeleting-LINES.
    ITAB-INIT = 'X'.
    ENDIF.
    ENDMODULE. " STATUS_0100 OUTPUT
    MODULE CHANGE_SDYN_CONN OUTPUT.
    READ TABLE itab INTO ZDETAILS INDEX rowdeleting-current_line.
    ENDMODULE. " CHANGE_SDYN_CONN OUTPUT
    MODULE READ_TABLE_CONTROL INPUT.
    IF ITAB-INIT = 'X' AND OK_CODE = 'DELETE'.
    DELETE ITAB index rowdeleting-current_line ."FROM ZDETAILS.
    DESCRIBE TABLE ITAB LINES rowdeleting-LINES.
    ENDIF.
    ENDMODULE. " READ_TABLE_CONTROL INPUT
    MODULE USER_COMMAND_0100 INPUT.
    CASE OK_CODE.
    WHEN 'BACK'.
    LEAVE PROGRAM.
    WHEN 'DELETE'.
    IF ITAB-INIT = 'X' AND OK_code = 'DELETE'.
    DELETE ITAB index rowdeleting-current_line .
    ENDIF.
    ENDCASE.
    ENDMODULE.
    regards ,
    ranjith.

    Hi,
    Check the following code:
    CONTROLS TABLE_CONTROL TYPE TABLEVIEW USING SCREEN 100.
    TABLES SDYN_SDW4.
    DATA SDYN_ITAB LIKE STANDARD TABLE OF SDYN_SDW4.
    DATA INIT.
    DATA OK_CODE LIKE SY-UCOMM.
    DATA SAVE_OK LIKE SY-UCOMM.
    DATA MARK.
    DATA  COL TYPE CXTAB_COLUMN.
    CALL SCREEN 100.
    *&      Module  STATUS_0100  OUTPUT
          text
    MODULE STATUS_0100 OUTPUT.
      SET PF-STATUS 'GRUND'.
      SET TITLEBAR '100'.
      IF INIT IS INITIAL.
    Datenbeschaffung
       SELECT CARRID CONNID CITYFROM AIRPFROM CITYTO AIRPTO DEPTIME ARRTIME
                DISTANCE DISTID
                FROM SPFLI
                INTO CORRESPONDING FIELDS OF TABLE SDYN_ITAB.
        DESCRIBE TABLE SDYN_ITAB LINES TABLE_CONTROL-LINES.
        INIT = 'X'.
      ENDIF.
    ENDMODULE.                             " STATUS_0100  OUTPUT
    *&      Module  FILL_TABLE_CONTROL  OUTPUT
          text
    MODULE CHANGE_SDYN_CONN OUTPUT.
    you can change the content of current table control line via
    sdyn_conn
    READ TABLE sdyn_itab INTO sdyn_conn INDEX table_control-current_line.
    ENDMODULE.                             " FILL_TABLE_CONTROL  OUTPUT
    *&      Module  READ_TABLE_CONTROL  INPUT
          text
    MODULE READ_TABLE_CONTROL INPUT.
    Check input values
      IF MARK = 'X' AND SAVE_OK = 'DELETE'.
        DELETE TABLE SDYN_ITAB FROM sdyn_sdw4.
        DESCRIBE TABLE SDYN_ITAB LINES TABLE_CONTROL-LINES.
      ENDIF.
    ENDMODULE.                             " READ_TABLE_CONTROL  INPUT
    *&      Module  USER_COMMAND_0100  INPUT
          text
    MODULE USER_COMMAND_0100 INPUT.
      SAVE_OK = OK_CODE.
      CLEAR OK_CODE.
      CASE SAVE_OK.
        WHEN 'SORT'.
          DATA: FLDNAME(100),HELP(100).
          READ TABLE TABLE_CONTROL-COLS INTO COL WITH KEY SELECTED = 'X'.
          SPLIT COL-SCREEN-NAME AT '-' INTO HELP FLDNAME.
          SORT SDYN_ITAB BY (FLDNAME).
      ENDCASE.
    ENDMODULE.                             " USER_COMMAND_0100  INPUT
    *&      Module  EXIT  INPUT
          text
    MODULE EXIT INPUT.
    LEAVE PROGRAM.
    ENDMODULE.                 " EXIT  INPUT
    Regards,
    Bhaskar

  • RE: Deleting Selected Messages

    Phil, you are using the Remove method of MessageList. Since MessageList is only a snapshot of the messages in the
    message DB, the messages won't get deleted from the DB. You can use the Item method of MessageList to get individual
    messages and subsequently call Delete on the Message object. Hope this solves your problem.
    Saurabh
    -----Original Message-----
    From: [email protected]
    [mailto:[email protected]]On Behalf Of
    [email protected]
    Sent: Wednesday, October 06, 2004 3:40 AM
    To: [email protected]
    Subject: Re: Deleting Selected Messages
    What do you mean when you say 'isn't working'? Are you receiving a
    specific error?
    Regards,
    Shane
    In article <v3KWc.4039$[email protected]>,
    [email protected] says...
    > How do delete selected messages from ClientState.SelectedMessage?
    >
    > Below is some sample code which isn't working
    >
    > Set SelMsgs = g_C3POManager.ClientState.SelectedMessages
    > do while SelMsgs.Count<>0
    >
    > ...processing
    >
    > SelMsgs.Remove 1
    > wend
    >
    > Thanks
    >
    > Phil.
    >

    Perhaps I am misunderstanding you, but in email view why would you be selecting more messages without a purpose of doing a specific action with those selected messages? Each message you select "flags" it for whatever you do next (move or delete them). Simply do not select the messages that you don't want deleted.
    -SM

  • How to change date selections at Infopackage data selections in production sys

    Hi All ,
    we are loading data into Infocube from datasource ,one process chain for delta init with data transfor  ,which has data selections at infopackage say 06.2014 and other process chain for delta which has same selections at infopackage . Now I want change this data selections  at Infopackage level .
    I Have tried to change these dates in data selections at infopackage level , tho I have changed and saved to future date at delta initial with data transfor ,it's keep coming back to 06.2014. Of course data selection at delta Infopackage level is faded .
    I Want to set future date with delta int with disturbing delta loads . How to do it please .
    regards
    hari

    Hi Ram,
    We will  load delta Intial with data transfer every weekend , and we run delta everyday , because we do delta init with data transfer with selections say ( 01.20011 to 12.2003 ) every weekend , hope I need to create new delta infopack  with new data selections say ( 01.2004 to 12.9999) only  to get update data in Infocube.
    Please correct me if I am wrong .
    Regards
    hari

  • Selections in Infopackage

    Hi All,
    I need to put selections in infopackage for "Material no." for multiple single values. (2700 materials)
    please suggest a way to do this kind of selection.
    Many thanks
    Tanu

    Hi Tanu ,
    1.You can dynamically put filters via OLAP var or ABAP routine .
    2.If values are in sequence (range ) then you can set the range in l_t_range-low  and l_t_range-high viA ABAP Routine .
    3.Better solution will be create around 27 infopackage with 100 selection in each and try to give range .
    4.OLAP var is a lso a good idea to set dynamic filter and easy if you are not very comfortable with ABAP.
    5.Can you please tell me what kind of filter values you want to put .So that accordingly filter can be decided for efficiency.
    6.One more possible solution is if material no values you don't want are less then put filter to exclude them .It will be easier .
    Let me know if you ned some help with this .
    Regards,
    Jaya Tiwari

  • Full Load  with deletion selections  in Data Mart

    Hi,
    I have a DataMart INFOCUBE “A” to INFOCUBE “B”, Full loads must be diary. But the infocube “A” have snapshot, by the zvalid characteristic (AAAA.MM) Eg. 2006.06.
    And the INFOCUBE “B” dosen’t have , it needs the last snapshot from INFOCUBE “A”.
    I am using a delete selection (“deleted request from infocube after update”) from the infopackage with “infosources are the same ” checked, “Datasources are the same” checked, “Source Systems are the same” checked, and with the “selections are” same or more comprehensive, and I develop a abap routine in the data selection of the characteristic zvalid to create the  year.month necessary for the extraction and i have other selection on 0project characteristic. But when beginning a new month, it do not delete the last request, it inserts the new one. ( even when  the “selections are” overlapping).
    Example that what I need:
    31.01.2006
    In the infocube A.
    0project| Zvalid |    amount
    PROJ1   |12.2005  |  300
    PROJ1   |01.2006  |100
    In the infocube B
    0project |Zvalid  |   amounT
    PROJ1|01.2006     |100
    01.02.2006
    In the infocube A.
    0project |Zvalid   |  amount
    PROJ1|12.2005  | 300
    PROJ1| 01.2006  | 100
    PROJ1| 02.2006  |  200
    In the infocube B
    0project |Zvalid   |  amount
    PROJ1 |02.2006     |    100
    What is the correct combination in the “deleted request from infocube after update”?
    I would appreciate yor help.
    Regars
    Victoria Leó

    Do you upload the cube from other sources too? Otherwise there is a flag in the InfoPackage that is called 'Delete entire content of data target'.
    It's under Data targets and you can change it if you select 'Select Data Targets'.
    Best regards
       Dirk

  • Deleting selected songs/picutes off i-Pod NANO (4gb).

    I am wondering if there is any possible way to delete songs off your i-Pod
    without deleting it all or reseting my i-Pod. As i only want to delete selected songs & pictures.
    Thank-you.

    *only want to delete selected songs......*
    Set the iPod to manual management, the content of iTunes and the iPod are not syncronised in this mode so the two can be different. You can directly access the content of the iPod and play it through iTunes, you can drag and drop whatever you want to the iPod from your library and you can delete from the iPod without deleting from iTunes: Managing content manually on iPod and iPhone
    Alternatively sync the iPod from a selected playlist. When your iPod is is set to sync selected playlists it automatically picks up any changes you made to that playlist in iTunes since you last connected. Anything you added to the playlist will be added to the iPod, anything you deleted from it will be deleted from the iPod. In other words the iTunes playlist and the iPod are kept "in sync".
    Open iTunes and create a playlist to update your iPod from, call it -My iPod for example (the dash will position it at the top of the playlists in Sources). Drag whatever content you want to have into the playlist. Now connect your iPod and when it appears in the Source list click on the iPod icon to bring up the preference tabs in the main pane. Go to the Music tab and choose Sync Music and the Selected playlists, artists and genres radio button. Choose the playlist you just made from the selection and click Apply. You can also sync from any existing playlists by choosing the same setting, you just need to make sure that the size of the playlists don't exceed the capacity of your iPod: Syncing Music to iPod
    *.....& pictures.*
    Remove the photo from the folder that you linked to when you set the preference "synchronize photos from" and update the iPod. For example, if the iPod is getting the pictures from the folder "My Pictures," remove or delete them from My Pictures and sync your iPod.
    Here's a simple "How To" on downloading and managing photos from a folder on your hard disk to an iPod:
    1 Create a folder on your hard drive to hold the photos you want on your iPod. Call it iPod Photos for example
    2 Drag the photos you want from your usual picture folder into the folder you just created
    2 Open iTunes, select your iPod in the iTunes Source list.
    3 Click the Photos tab and select “Synch photos from.”
    4 Choose “Choose Folder” from the pop-up menu and select the iPod photos folder you created.
    5 When you want to change what photos are on the iPod just add or remove the photos from the folder you have made and syncronise the the iPod

  • Deleting Selected Messages

    How do delete selected messages from ClientState.SelectedMessage?
    Below is some sample code which isn't working
    Set SelMsgs = g_C3POManager.ClientState.SelectedMessages
    do while SelMsgs.Count<>0
    ...processing
    SelMsgs.Remove 1
    wend
    Thanks
    Phil.

    What do you mean when you say 'isn't working'? Are you receiving a
    specific error?
    Regards,
    Shane
    In article <v3KWc.4039$[email protected]>,
    [email protected] says...
    > How do delete selected messages from ClientState.SelectedMessage?
    >
    > Below is some sample code which isn't working
    >
    > Set SelMsgs = g_C3POManager.ClientState.SelectedMessages
    > do while SelMsgs.Count<>0
    >
    > ...processing
    >
    > SelMsgs.Remove 1
    > wend
    >
    > Thanks
    >
    > Phil.
    >

  • Automatic task list delete selection when UD is  reject

    Dear Experts,
    I created calibration plan for Quality Istruments, for that assign equipment task list . At due date calibration order & inspection lot created. I sent the insturment to vender & some time it will be rejected fr vender side .We want to set delete selection automatically in task list header data when I made usage dicision as a rejected after come in factory.
    Regards,
    Avinash.

    hi
    Iam not sure ,just check with abaper whether it is possible with creating new function module.Try to create a Function module and assign the same in IMG for inspection lot completion for follow up action for usage decision and assign the same in the selected set
    regards
    thyagarajan

  • Completely delete SELECTED messages?

    In Mail 2.0.3, is there a way of completely deleting SElECTED messages from a mailbox? (In other words, I want to avoid the "two step" deletion process of first sending them to Mail's trash.)
    TIA
    Robert
    iMac DV 400 MHz Slot-loading CD-R   Mac OS X (10.4.2)  

    Ah! This wasn't clear in your first post, I understand now. What you want is a "Delete Immediately" command, in addition to the standard (configurable) "Delete" command, right?
    Well, AFAIK Mail does not have this. Probably the closer you can get is set up the account as described in my previous reply and move the messages you don't want to delete immediately to a custom mailbox folder instead of deleting them with Mail's Edit > Delete command (which would be used only for messages that you want to delete immediately). You can define a rule to permanently delete messages from that folder a specified amount of time after they were received or something like that. Maybe others know of a better approach.

  • How to do delete selection by week in Stock InfoCube (0RT_C36)

    Hi guys,
        I need to do a delete selection by week in Stock InfoCube (0RT_C36) but no time dimension is displayed to be deleted in the Deletion Selection criteria tab. Does Anybody know why this dimension is not displayed to do a delete selection by week? Is necessary do any set up in the system in order to do this deletion?
    Thanks in advanced for your help!
    Regards,
    Csar

    BLOCK LEVEL TRIGGER WHEN-MOUSE-CLICK:
    declare
    rec_num NUMBER:=:SYSTEM.TRIGGER_RECORD; -- record number where clicked
    begin
    if not user_selection.tProductIds.exists(rec_num) then -- not selected
    /* save record number */
    user_selection.tProductIds(rec_num):=rec_num;
    /* select item, if multiple item in record call set_item_instance_property as many as needed*/
    set_item_instance_property('FORTH_PAGE_BLOCK.DESCRIPTION',rec_num, VISUAL_ATTRIBUTE,'SELECTED_RECORD_VA');
    else
    user_selection.tProductIds.delete(rec_num); -- already selected, deselect item
    /* deselect item, if multiple item in record call set_item_instance_property as many as needed */
    set_item_instance_property('FORTH_PAGE_BLOCK.DESCRIPTION',rec_num, VISUAL_ATTRIBUTE,'NOT_SELECTED_RECORD_VA');      
    end if;
    end;
    where:
    PACKAGE user_selection IS
    type tSelectedItems is table of NUMBER
    index by binary_integer;
    END;
    when delete:
    declare
    i BINARY_INTEGER;
    begin
    if user_selection.tProductIds.COUNT=0 then return; end if;     
    i:=user_selection.tProductIds.FIRST;     
    loop
    go_record(user_selection.tProductIds(i));
    delete_record;
         exit when i=user_selection.tProductIds.LAST;
         i:=user_selection.tProductIds.NEXT(i);
    end loop;
    end;

  • Default sales org on selection screen using set and get parameter!!

    Hi,
    I need to default value on selection screen using SET n GET parameter...logic to be used should be:
    Sales Organisation:
    This field should be filled by default using the user parameter id VKO. (using sentence GET PARAMETER and SET PARAMETER)...
    Hope i need to write the code in initialisation and what shud b the content?
    Regards
    Gunjan

    hi,
    TABLES <table name>.
      SET PARAMETER ID VKO FIELD <tablename-fieldname>.
    call transaction 'zxx'.
    try this sample program,
    REPORT BOOKINGS NO STANDARD PAGE HEADING.
    TABLES SBOOK.
    START-OF-SELECTION.
      WRITE: 'Select a booking',
      SKIP.
    GET SBOOK.
      WRITE: SBOOK-CARRID, SBOOK-CONNID,
             SBOOK-FLDATE, SBOOK-BOOKID.
      HIDE:  SBOOK-CARRID, SBOOK-CONNID,
             SBOOK-FLDATE, SBOOK-BOOKID.
    AT LINE-SELECTION.
      SET PARAMETER ID: 'CAR' FIELD SBOOK-CARRID,
                        'CON' FIELD SBOOK-CONNID,
                        'DAY' FIELD SBOOK-FLDATE,
                        'BOK' FIELD SBOOK-BOOKID.
      CALL TRANSACTION 'BOOK'.
    regards,
    siva
    Message was edited by:
            Shan

  • My iphone's memory is near capacity from photo albums sync'ed with my mac and I haven't found out how to delete select albums without wiping the iphone.  Any suggestions??

    my iphone's memory is near capacity from photo albums sync'ed with my mac and I haven't found out how to delete select albums to free up memory without wiping the iphone.  Any suggestions??

    You do the opposite of how you got them on your phone, you unsync the pics using iTunes.

  • Routine for multiple selection in infopackage???

    hello guys
    I thought of creating one routine for Multiple selections aT Infopackage level....in Selections screen in infopackage,I found one option 'Use Conversion routine' with a check box and it is inactive.....Is it here I need to write my routine inorder to get multiple selection for a infoobject....or is it somehwhere else?How to activate thisoption?
    Thanks,
    Regards,
    S

    Hi,
    Conversion routines are used in the BI system so that the characteristic values (key) of an InfoObject can be displayed or used in a different format to how they are stored in the database. They can also be stored in the database in a different format to how they are in their original form, and supposedly different values can be consolidated into one.
    This will be there at info object level.
    Eg : ALPHA: Fills purely numeric fields from the left with zeroes (0).
    For multiple selections at info package , in data selection tab under type , u need to select 6 and write the code to select the value.When info package runs it takes the value from routine dynamically and extracts the data based on selection.
    Eg: There is a field FISCAL PERIOD For data selection, if u write the code to select current fiscal period. then whenever info package runs it extracts the data for current fiscal period from data source to PSA.
    Thanks,
    Joseph.

  • HT4623 I have an ipad3, iPhone3gs and iPhone5, my problem is my apple ID works all 3 devices but I need a second ID for the iPhone 5. How do I delete my ID and set up a new one for the iPhone5 but keeping my own apple ID for the iPad and iPhone 3GS

    I have an ipad3, iPhone3gs and iPhone5, my problem is my apple ID works all 3 devices but I need a second ID for the iPhone 5. How do I delete my ID and set up a new one for the iPhone5 but keeping my own apple ID for the iPad and iPhone 3GS.

    http://support.apple.com/kb/he37

Maybe you are looking for