Delat with date selection ranage

I have a delta running for CCA data.  The original Init was run for
[ 1/2005 - 7/2008 ] and now the deltas are forced to use the same selection.  (or so it seems).
If I want to change the delta to include [ 1/2005 - INFINITY ] can I just do a re-init without data for [ 1/2005 - ' ' ]?
If I do this do I need to wait for when users are out of the system?  Do I need to do any tasks in R/3?

Hi Will,
Think of using the selection till 2099.
As the date is in Future that is 08/2008.. in this if u change the existing selection from 20005 to 2099 then u need to drain the Delta queue first as u are going to change the selections of the init here. And also u need to make sure that there shud not be any posting between the period from deleting the existing flag and then maintaining the new Init-without data transfer.
So there are chances of loosing the data here..  so we have one more option is that..
u can think of maintaining the new init for ur DS with new selection as 08/2008 to 12/2099.. so that there will be two delta loads will be loading ur targets every day.. and u can see 2 entries in the Delta queue as well.
Just thinking of the second option...
If u are thinking about the first option u have drain the Delta queue by extracting the data into BW. and also u need to take the downtime for atleast few minutes so that u wont loose any records.
Thanks
Assign points if this helps

Similar Messages

  • Problem with data selection when inserted through textarea

    hi there,
    i am inserting data from textarea into a database field
    and then displaying the inserted data it is displaying properly but as a continuous string
    i want to display it as it was inserted with new line
    like if i have inserted through <textarea>
    hello
    all
    there
    it is displaying like
    hello all there
    i want to display as it was
    i have three pages as given below and my database field is varchar (using oracle 9i)
    1.first.html
    <html>
    <body>
    <form method="post" action="insert.jsp">
    <textarea name="text">
    </textarea>
    <input type="submit"></input>
    </form>
    </body>
    </html>2.insert.jsp
    <%@ page import = "java.io.*"%>
    <%@ page import="java.sql.*" %>
    <%!
    String txt;
    %>
    <%
          Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         Connection con =DriverManager.getConnection("jdbc:odbc:ods","scott","tiger");
         txt= request.getParameter("text");
         out.println(txt);
         PreparedStatement ps = con.prepareStatement("insert into text values('"+txt+"')");
         ps.executeUpdate();
         out.println("values inserted successfully");
    %>3.display.jsp
    <%@ page import = "java.io.*"%>
    <%@ page import="java.sql.*" %>
    <%
          Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         Connection con =DriverManager.getConnection("jdbc:odbc:ods","scott","tiger");
         PreparedStatement ps = con.prepareStatement("select * from text");
         ResultSet rs=ps.executeQuery();
         while(rs.next())
         out.println(rs.getString(1));
    %>thanx & regards
    sweety

    This is a feature of HTML. Its the way it is supposed to work.
    If you view source on your generated jsp page, you should see the html exactly mirrors what you typed in the text area
    If you don't want it acting this way then either
    1 - put it in a text area again
    2 - put <pre> tags around what you want do display unformatted
    or
    3 - Change all new lines to <br> in the html
    This is what you want in the html:
    <pre>
    Mulitple
      line
    Data
    </pre>

  • KE5Z report with date selection

    Good afternoon,
    Is there a standard COPA report that would allow me to report the information available on KE5Z with a dynamic selection to select a date range
    I have tried using FBL3N but it does not contain either the product codes (output & input) nor the quantities confirmed
    thanks in advance for your help
    Laurent

    Hi
    By default the KE5Z offers to select the Line items by Posting period
    However, inside the KE5Z, when the output is displayed, you can inlcude column POSTING DATE and filter your List to display what you want
    You can create a Layout - SAVE IT and specify this layout in the KE5Z before executing the report
    OR
    Last option is to create a ZKE5Z copying the standrad program and built the logic you want based on dates instead of Period
    br, Ajay M

  • Problem with data selection (F4 help) in Enterprise Portel

    Hi,
    I have a field Sales Org. there is a data under this Object like No. Organization.
    But my Problem is this will display all records (under F4 help) like sales Office No. along with the Sales Org.
    (This Sales off is attribute of Sales Org)
    User wants only Sales Org data in that selection. This Sales Org is reference object os Org Unit.
    How can i get only Org data in F4 Help?
    Please tell me if any body knows.
    Regards,
    Madhu
    Edited by: MadhuSudhana Boya on Jun 30, 2009 2:12 PM

    Once you click on F4 help of sales org, you can go to settings and see, if any attribute is added into the selection of sales org. If you are seeing sales office along with the sales org in the selection screen, I am sure that sales office is added from the list of attributes.
    To disable it, remove the sales office from the "displayed attribute" list and close the dialog box.
    Now you and your user should see only sales org values.
    - Danny

  • Populating a matrix cell with data selected from a picker

    Dear All,
    I am new to SAP Bussiness one, please let me know how to get the selected data from a picker in to a matrix cell. I have warehouse code and warehouse name in the picker. I want the user selected warehouse code in the matrix cell
    Below is my code But I am not getting the selected code in the matrix cell
    I am adding the datasource as below
    oUserDataSource = oForm.DataSources.UserDataSources.Add("UDCFL", SAPbouiCOM.BoDataType.dt_SHORT_TEXT)
    Then I am adding the choose  list  as below
    Private Sub AddChooseFromList()
            Try
                Dim oCFLs As SAPbouiCOM.ChooseFromListCollection
                Dim oCons As SAPbouiCOM.Conditions
                Dim oCon As SAPbouiCOM.Condition
                oCFLs = oForm.ChooseFromLists
                Dim oCFL As SAPbouiCOM.ChooseFromList
                Dim oCFLCreationParams As SAPbouiCOM.ChooseFromListCreationParams
                oCFLCreationParams = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_ChooseFromListCreationParams)
                ' Adding 2 CFL, one for the button and one for the edit text.
                oCFLCreationParams.MultiSelection = False
                oCFLCreationParams.ObjectType = "64"
                oCFLCreationParams.UniqueID = "CFL1"
                oCFL = oCFLs.Add(oCFLCreationParams)                
            Catch
                MsgBox(Err.Description)
            End Try
        End Sub
    *Then I am binding the data as below to the matrix column*
    oColumn = oColumns.Item("colToWhs")
            oColumn.DataBind.SetBound(True, "", "UDCFL")
            oColumn.ChooseFromListUID = "CFL1"
    Then in the event i have added the  below code.
                        Dim oDataTable As SAPbouiCOM.DataTable
                        oDataTable = oCFLEvento.SelectedObjects
                        Dim val As String
                        Try
                            val = oDataTable.GetValue(0, 0)
                        Catch ex As Exception
                        End Try
                        oForm.DataSources.UserDataSources.Item("UDCFL").Value = val
                       End If
    But the code is not getting populated in the matrix cell. Please let me know at the earliest
    Thanx in Advance

    sOLVED

  • Void check with date selection

    Greetings experts -
    My customer created a check in January, it is now March, and they want to void it as of February.  Is there a way to "trick" the system as to what the current date is so I can void the check as of February?
    I tried changing my windows date/time on the local computer and tried logging in with no luck.
    Thanks in advance,
    Aaron

    It had to do with the cash account balance.  I think I can just void as of the cancellation date and make reversing entries.
    I am now getting a message when I try to void the check though stating -Transaction is associated with system reconciliations which cannot be automatically canceled.
    What do I have to do in order to void the check?

  • Javascript - Working with Dates, Selection Boxes & Pro-Rated Amounts to Calculate Costs

    Hi, I'm looking for some help. I'm new to Javascript and working off my limited knowledge. Below are three (3) items I need help figuring out.
    ---JavaScript 1: Today---
    I have a Document Level Javascript that gets the current date and automatically enters it into a field. Below is the example:
    var f = this.getField("Today");f.value = util.printd("mm/dd/yyyy", new Date());
    Problem: Each time I open the PDF, the date gets updated.
    Need: I would like for the date to only be updated if the field is blank (empty).
    ---JavaScript 2: Registration Fee---
    On this same form (application) I would like to calculate TWO costs. The first cost is mandatory registration cost, however the amount is prorated based on the month the application is filled out. Below is the pro-rated amounts based on the remaining months in the year:
    Months Remaining     Fee
              12                       $15.00
              11                       $13.75
              10                       $12.50
              9                         $11.25
              8                         $10.00
              7                         $8.75
              6                         $7.50
              5                         $6.25
              4                         $5.00
              3                         $3.75
              2                         $2.50
              1                         $1.25
    Note: The cost per month is $1.25. You are required to pay for the current month plus any remaining months.
    So let's assume that you fill the application out in May 15th (05/18/2013). There are eight (8) months remaining in the year [May - Dec], so the pro-rated cost is $10.00 (See chart above).
    For this calculation, I need to create a Document Level Javascript that would get the date from the field we used above called "Today" and calculate the "Registration Fee" based on the pro-rated amount. Then I would enter the cost into two fields (Dollars & Cents) as "10 00". (See below).
    Form Example: $ [Text Field - Combo 2 characters] . [Text Field - Combo 2 characters] ---> "$ 10 . 00"
    ---JavaScript 3: Subscription Fee---
    The next fee is an optional fee for a magazine subscription. On the form, the user will check a box (Named: "Subscription") if they want to subscribe to this magazine. This is similar to the example above in that the costs is based on a pro-rated amount. Below is the pro-rated amounts based on the remaining months in the year:
    Months Remaining               Fee
              12                       $12.00
              11                       $11.00
              10                       $10.00
              9                         $9.00
              8                         $8.00
              7                         $7.00
              6                         $6.00
              5                         $5.00
              4                         $4.00
              3                         $3.00
              2                         $2.00
              1                         $0.00
    Note: The cost per month is $1.00. Unlike the previous example, you are ONLY required to pay for the remaining months.
    So let's assume that you fill the application out in May 15th (05/18/2013). There are eight (7) months remaining in the year [Jun - Dec], so the pro-rated cost is $7.00 (See chart above).
    For this calculation, I need to create a Document Level Javascript: If the user checks a box (Named: "Subscription") requesting the subscription, then get the date from the field we used above called "Today" and calculate the "Subscription Fee" based on the pro-rated amount. I would enter the cost into two fields (Dollars & Cents) as "10 00". (Same as above).
    Thanks,
    Stephen

    Two questions:
    1. For "function calculateRegistrationFee", how do I format the return value into 2 parts in order to populate the different fields below. Let's use this example, see screen shot below:
    2. For "function calculateSubscriptionFee", how do I format the return value into 2 parts (like question 1) & adjust for check box variable. If the user checks a box (named: "Subscription") requesting the subscription, then calculate cost. Else cost is $0.00. See screen shot:
    Thanks,
    Stephen

  • Unable to change date selections in data selection tab

    Hi experts,
    I'm new here, i scheduled the init load with date selections in the data selection tab, i successfully loaded the data and now i want to go for the delta but i'm unable to delete the date selection in the data selection tab. what problem is this.
    can we load the data with the same selections in delta update ? how can we delete the date selections
    orelse nothing happens even if there is a selection in the data selection tab? the date is a past one.
    help me out plz
    regards

    delta loads copy the selections from the init load.
    Often while scheduling delta loads u will see a message 'selections copied from the last init load'.
    cheers,
    Vishvesh
    Message was edited by: Vishvesh

  • Date selection error BI4 infoView

    Hello community,
    I’m facing a problem here and I am looking for your help
    After migration to BI 4 I faced a problem with date selection prompt (In infoView) when I open or refresh a report.
    For example, If I select 02/02/2013 00:00:00, the system change the input to 01/02/2013 23:00:00.
    This is very urgent please help me

    This is a bug in 4.1 which is logged with ADAPT01710199
    Check the note below
    930605 - BI4.1 - The time stamp in the prompt is changing every time on refreshing the report in HTML Mode of WebI Report
    Following are the fixes for Business Intelligence Platform 4.1
    BI 4.1 SP01 Patch05
    BI 4.1 SP02 Patch01
    BI 4.1 SP03
    BI 4.1 SP03 Patch1
    BI 4.1 SP04
    For a possible workaround, the Java Application server hosting BI Launchpad can be set to run using the UTC timezone to prevent time offsets in the prompt.

  • How to go about multiple inclination with different data selection in Delta

    We have to copy large amount of data ( more than 42lak of recodes) selectivly from on ODS to other ODS. in delata load ( BW 3.5 enverioment)
    I thought of loading data in slices through delta loading with selection condition.
    step 1> Do The initialization with selection condition as for calyear =2001 ( Init without data transfer )
    step 2> Take the delta load .. it will take all delta record with same selection
    step 3> Now I want to do Initialization with selection condition as for calyear =2002
    step 4> take the delta now it will take delta for year 2001 and 2002 both Right ?
    Here what problem I am facing.. while doing 2nd time initialization it prompt me to delete the last  initialization request form scheduler menu.
    if i delete the last request .. will it take the delta  for previous initialization selection  and new initialization selection. ?
    Please advice how to go about multiple inclination with different data selection in delta loading.
    Looking forward your reply.

    Hi,
    step 1> Do The initialization with selection condition as for calyear =2001 ( Init without data transfer )
    step 2> Take the delta load .. it will take all delta record with same selection
    step 3> Now I want to do Initialization with selection condition as for calyear =2002
    step 4> take the delta now it will take delta for year 2001 and 2002 both Right ?
    You are correct with this scenario normally. The message you mentioned normally comes up when you open a infopackage and don't change the selection first or in case you have overlapping selections with an already done init.
    regards
    Siggi

  • Update data from ODS to ODS with infopackage selection

    Hi,
    I am trying to update data from one ODS to another ODS with selection criteria in InfoPackage which is created manually.For Full load I can give selection criteria in InfoPackage. When I initialize data Selection is greyed out even selections for Full load exists. Please advise me how to give selections for delta loads from ODS to ODS loads.
    Thanks in advance.
    Ram

    Once you started an ODS as destination in FULL mode from a DS you cannot get back.
    So if you want to update from ODS to ODS using Change Log but considering only some data records you could create an Update Routine with a Start Routine that DELETES undesired records (e.g. DELETE DATA_PACKAGE WHERE ...) and then start an Init-Delta Loading.
    Hope it helps
    GFV

  • How can I partition an external hard drive with data in it? When I select the drive, the partition option is grayed out.

    I am having a problem partitioning an external hard drive with data in it. 
    When I select the partition, everything is grayed out.  I can't add a a partition for some reason.  When I asked this question to other people, they told me to select my partition "io" to do it from there.
    As you can see, I can't seem to partition it form there either.  I ran the Verify Disk utility but the volume came out okay.
    Any ideas as to what the problem would be?
    Thanks!
    Luis

    Select the main hard drive entry (topmost one.) Click on the Partition tab. Shrink the existing partition by grabbing the sizing gadget in the bottom right corner and pushing up until you free up enough space for your second partition. Be sure you do not shrink to less than the space currently occupied by your files. Click on the Add[+] button to create a new partition in the free space. Click on the Apply button and wait until the partitioning is completed.

  • Dynamic LOV with dates and selected default value

    Hello,
    I have a dynamic lov with dates. Query looks like this:
    select distinct concat(to_char(b.send_day_time,'YYYY.MM.DD HH24'),':00') display_value, to_char(b.send_day_time,'YYYY.MM.DD HH24') return_value
    from ...
    No I want to select a specific date as the default value. I put the following code for the default value:
    declare
    begin
    return to_char ('2008.02.19 10:00');
    end;
    But it doesn't work.The date (string) exists in the lov but it is not selected.
    Can someone tell me where the problem is?
    Thx in advance.
    Greetings,
    hamburger

    Hi hamburger,
    As return value you specified to_char(b.send_day_time,'YYYY.MM.DD HH24'),
    so your default value should be like to_char('2008.02.19 10'). Also pay attention to select the "Default Value Type".
    Hope this helps.
    chrissy

  • Clean-up all data that did not match with the selection.

    Hi Everyone,
    In my requirement I need to  Clean-up all data that did not match with the selection from my internal table lt_cdpos.....in this case wat can i use like.'Refresh' or ' Clear' or 'DELETE ADJACENT DUPLICATES FROM lt_cdpos'.
    Pls suggest me...

    Hi Meenakshi
    Try  delete lt_cdpos where kunnr  NE KUNNR (from selection screen) .
    Before Checking <condition> make sure both comparing field type match with each other.
    You can use FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT' for append leading zeros in compare condition before comparing kunnr from selection screen
    Regards
    Parveen

  • 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

Maybe you are looking for