BIAPPS how can we manually set both ETL start date and end date?

Dears experts,
how can we manually set both ETL start date and end date while conducting incremental load IN DAC?
Please advise me.
thanks,
Joe.

You can set those dates in the DAC system parameters tab. You should see lots of $$xxxxxx parameters.
If I may, I'd suggest you use the OBI Applications forum for questions on DAC.
Antonio
BExpert, Brazil

Similar Messages

  • I have 2 icloud accounts how can i see them both on my macbook and iphone

    I have 2 icloud accounts how can I see them both on my macbook and iphone?

    iCloud doesn't have anything to do with texts or phone calls. Those are both tied to your phone number and SIM, not to an iCloud account.

  • I've got two iTunes accounts with apps under each - how can I reconcile them both under one account and one email address?

    I've got two iTunes accounts with apps under each - how can I reconcile them both under one account and one email address?

    You cannot.
    Sorry.

  • How can change the font in the script output and the data grid ?

    How can change the font in the script output and the data grid in Sql Developer?

    You can't easily unless you have the latest version (2.1.1).
    If you do have this version then changing the font in the Tools/Preferences menu under the code editor/fonts section will also change the font of the data grid.
    For details of changing the fonts in an earlier version then see Sue's post below.
    http://sueharper.blogspot.com/2010/03/back-to-basics-changing-font-setting-in.html

  • How to create start date and end date

    Hi guys
    Need to create start date and end date as prompt in webi report.... how could it be possible please help me ...
    regards

    @Universe:
    Go to Condition/Filter:
    Definition: Date=@Prompt("Select Start Date",D,,mono/multi,free/constrained,...)
    OR @Select(Class\Object Date)=@Prompt("Select Start Date",D,,mono/multi,free/constrained,...)
    Parse it & Apply OK.
    Class/Object : If you have already object Date in any class already, use them.
    Follow the same for End date also.
    For both filters/prompts, check Apply on Universe
    @Report/Query:
    Drag [Date] object to Query filters section and in Operand say Prompt. Change text as Select Start Date & again drag [Date], this time say Select End Date.
    Hope it helps you alot.
    Gracias...!!

  • How Do I Filter a Report Using a Multi Select List Box and Specifying Date Between Begin Date and End Date

    Hope someone can help.  I have tried to find the best way to do this and can't seem to make sense of anything.  I'm using an Access 2013 Database and I have a report that is based on a query.  I've created a Report Criteria Form.  I
    need the user to be able to select multiple items in a list box and also to enter a Begin Date and End Date.  I then need my report to return only the records that meet all selected criteria.  It works fine with a ComboBox and 1 selection but can't
    get it to work with a List Box so they can select multiple items.  Any help is greatly appreciated while I still have hair left. 

    The query should return all records.
    Let's say you have the following controls on your report criteria form:
    txtStart: text box, formatted as a date.
    txtEnd: text box, formatted as a date.
    lbxMulti: multi-select list box.
    cmdOpenReport: command button used to open the report.
    The text boxes are used to filter the date/time field DateField, and the list box to filter the number field SomeField.
    The report to be opened is rptReport.
    The On Click event procedure for the command button could look like this:
    Private Sub cmdOpenReport_Click()
    Dim strWhere As String
    Dim strIn As String
    Dim varItm As Variant
    On Error GoTo ErrHandler
    If Not IsNull(Me.txtStart) Then
    strWhere = strWhere & " AND [DateField]>=#" & Format(Me.txtStart, "yyyy-mm-dd") & "#"
    End If
    If Not IsNull(Me.txtEnd) Then
    strWhere = strWhere & " AND [DateField]<=#" & Format(Me.txtEnd, "yyyy-mm-dd") & "#"
    End If
    For Each varItm In Me.lbxMulti.ItemsSelected
    strIn = strIn & "," & Me.lbxMulti.ItemData(varItm)
    Next varItm
    If strIn <> "" Then
    ' Remove initial comma
    strIn = Mid(strIn, 2)
    strWhere = strWhere & " AND [SomeField] In (" & strWhere & ")"
    End If
    If strWhere <> "" Then
    ' Remove initial " AND "
    strWhere = Mid(strWhere, 6)
    End If
    DoCmd.OpenReport ReportName:="rptMyReport", View:=acViewPreview, WhereCondition:=strWhere
    Exit Sub
    ErrHandler:
    If Err = 2501 Then
    ' Report cancelled - ignore
    Else
    MsgBox Err.Description, vbExclamation
    End If
    End Sub
    If SomeField is a text field instead of a number field, change the line
            strIn = strIn & "," & Me.lbxMulti.ItemData(varItm)
    to
            strIn = strIn & "," & Chr(34) & Me.lbxMulti.ItemData(varItm) & Chr(34)
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • How to display absence start date and end date in workflow notification?

    Hi,
    I would like to display the absence start date and end date at
    1) Subject of workflow email notification/worklist notification OR/AND
    2) Content of workflow email notification/worklist notification.
    Appreciate if anyone can advise on this as this information is very crucial to our client.
    Thank you.
    Regards,
    Shiau Chin, Teo

    1) Subject of workflow email notification/worklist notification OR/ANDyou have to customize the subject of notification message. You can find the message using following query.
    SELECT message_type, message_name
       FROM wf_notifications notif
      where notification_id = <your notification>;> 2) Content of workflow email notification/worklist notification.
    its already there I think.

  • How to get starting date and ending date of the given Fiscal Period

    Hi Friends,
    In my Selection screen parameter, I've Fiscal year and Period , I want to get the starting date and ending date with the Fiscal period.
    How to get and throught which FM.
    Pls advise.
    thanks&regards
    Sankar.

    Hello Sankar,
    Check the FM PERIOD_DAY_DETERMINE.
      DATA :
             l_periv     TYPE periv,
             l_blart     TYPE blart,
             l_fday     TYPE bkpf-budat,      "First day in period
             l_lday     TYPE bkpf-budat.      "Last day in period
    * Fetch the fiscal year variant from T001
      SELECT  SINGLE periv  INTO TABLE l_periv
      FROM t001
      WHERE bukrs EQ p_bukrs.
    * Get first day/last day
          CALL FUNCTION 'PERIOD_DAY_DETERMINE'
            EXPORTING
              i_gjahr              = p_gjahr
              i_monat              = p_monat
              i_periv              = l_periv
            IMPORTING
              e_fday               = l_fday
              e_lday               = l_lday
            EXCEPTIONS
              error_period         = 1
              error_period_version = 2
              firstday_not_defined = 3
              period_not_defined   = 4
              year_invalid         = 5
              OTHERS               = 6.
    Hope this helps.
    BR,
    Suhas
    Edited by: Suhas Saha on Jan 9, 2009 2:08 PM

  • How can I get the start date and end date of a certain week?

    Hello, in my java code, I can get the week ID , using
    org.joda.time.base.AbstractDateTime.getWeekOfWeekyear() , for example, this week is the 16th week of this year. And I want to get the start date(date of Monday) and end date(date of Sunday) of the week. Is there any method can supply such date value??thanks

    1 public Date getCurrentMonday(){
    2 Date monday = null;
    3 Calendar rightNow = Calendar.getInstance();
    4 int day = rightNow.get(Calendar.DAY_OF_WEEK);
    5 int distance = 0;
    6
    7
    8 if (day == Calendar.MONDAY)
    9 monday = rightNow.getTime();
    10 else
    11 {
    12 distance = day - Calendar.MONDAY;
    13 if (distance == -1)
    14 distance = 6;
    15
    16 monday = (Date) (rightNow.getTime());
    17 monday.setTime(monday.getTime() - 1000 *60 *60 *24 *(distance));
    18 }
    19 return monday;
    20 }

  • How to calculate first date and end date of this year in Query

    Hi Expert
    I want to calculate following dates with inputted date in query.
    I have no knowledge on ABAP and I just can create a query with simple logic.
    Could you teach me how to calculate following date?
    (If inputted date is April 12 2009)
    - First date of this year (Ex January 1 2009)
    - End date  of this year (Ex December 31 2009)
    - First date of last year (Ex January 1 2008)
    - End date of last year  (Ex December 31 2008)
    - First date of this month (Ex April 1 2009)
    Thank you!
    Take

    HR_JP_MONTH_BEGIN_END_DATE   use this FM to get the begin and end date of the Date you are passing. eg when u give input as 04/12/2009, it will return
    04/01/2009 as begin date
    04/30/2009 as end date
    pass the Year in this FM HR_E_GET_FISC_YEAR_DATES, you will get the Fiscal year Begin and End Dates
    Abh

  • How to get the current month starting date and ending date by default ?

    Hello Creators,
    This is my requirement, kindly do the needful, Please dont gimme any links i've no access for other sites, gimme the right solution.
    My Requirement :
    Creation Date (VBAK-ERDAT) - Select Option. By default, the program should run for the current Month ie between the starting and ending date of the current month when the program is run. Today the date is 18th using sy-datum we can bring the current date by calling it in the initialization event, but the requirement is it should not give me the current date, it should only give me the month starting date and the end date. Kindly help.
    Thanks in advance ...

    DATA: gv_datum LIKE vbak-erdat.
    SELECT-OPTIONS: so_date FOR gv_datum.
    INITIALIZATION.
      CALL FUNCTION 'HR_JP_MONTH_BEGIN_END_DATE'
        EXPORTING
          iv_date             = sy-datum
        IMPORTING
          ev_month_begin_date = so_date-low
          ev_month_end_date   = so_date-high.
      so_date-option = 'BT'.
      APPEND so_date.
    START-OF-SELECTION.
    Hope this solves the issue. Don't forget to be generous
    Cheers,
    Sougata.

  • How can I manually set the Camera Roll to start at an arbitrary image number, i.e., IMG_0553.JPG?

    I have an iPhone 4s, currently with iOS 5.1. I use it with my desktop computer which runs Windows Vista (and has the latest iTunes installed 10.6), and my laptop, which has Windows 7 and the latest iTunes. I use iCloud and Photo Stream primarily with the desktop computer.
    Since receiving the iPhone on launch day, (Nov...14?, 2011), I've had to "Set [it] up as new" twice, most recently this morning.
    After setting it up as new, the Camera Roll starts over with pictures at IMG_0001.JPG. That means, that, after my first picture after this latest reset, I'll have three pictures all initially named IMG_0001.JPG, and instead, I'll have IMG_0001.JPG, IMG_0001 (1).JPG, and IMG_0001 (3).JPG in my photo library. This robs me of the ability view my photos sorted by name, which is often the default sort order in my photo folders, and still see them chronologically. I can, of course, sort them by Date Created, but it would be more flexible if I could do either one.
    Therefore, I'd like to set Camera Roll to start numbering its photos starting with whatever the next number higher than all the rest in my library would be, in this case, IMG_0553.JPG.
    I can't just use Windows to go into the iPhone's Camera Roll and rename the first photo I take to be IMG_0533.JPG. The iPhone just doesn't allow tampering with the filename that way. Can I even count on Camera Roll to note the presence of the highest numbered file in its folder and then just name the next picture taken the next higher number?
    Since I have no reason to believe that I won't have to reset the phone again, I'd like for whatever method I find to be one that I can use to set the Camera Roll to start at whatever other number I need when the time comes.
    Suggestions welcome...
    I have an idea that I'm about to try...I'll report back if it succeeds...
    UPDATE: So what I tried to do was, with an empty Camera Roll, I uploaded a picture with the filename and number that I wanted (IMG_0533.JPG) into my Photo Stream, then saved that picture to my Camera Roll, hoping it would retain the file name, and then Camera Roll would just use the next number. That didn't work. It saved into Camera Roll as a brand spanking new IMG_0001.JPG.
    Message was edited by: Shadowhawk kTreva

    To bring the solution into this thread, here are the consolidated solution bits from the other thread:
    I installed i-Funbox and found the file referenced in that other thread ( iPHone / Raw File System / PhotoData / MISC / DCIM_APPLE.plist ).
    That file has a section that I'm replicating below that is the part that that original poster edited, and is the part that needs to be edited for my problem also:
              <key>DCIMLastFileNumber</key>
              <integer>5</integer>
    That other thread's original poster wanted his photos to start with 0001, so he set his "DCIMLastFileNumber" to 0.
    I wanted my next picture to be IMG_0553.JPG, so I edited my file's 5 to 552.
    I did that editing by first copying the file to my laptop (using the Copy To PC command), then opening it up in a text editor. I did the edit, then saved it.
    After that, I used i-Funbox' "Copy From PC" command to copy the edited file back to the same location, hoping that the program would take care of any permissions, etc.
    I had to do the Copy From PC twice.
    On the first try, it seemed to copy just fine, but, for whatever reason, the copied file was empty when I opened it for verification. But I tried again, and that seemed to work (opened for verification, and it was as expected).
    I then unplugged it, copied a picture from the Photo Stream to the Camera Roll, then plugged it into my laptop to verify the filename. It was exactly as I wanted: IMG_0533.JPG. Then, for fuller verification, I unplugged it, took a new picture, then replugged it in, and confirmed that the next pictures (I had HDR on) were IMG_0534.JPG and IMG_0535.JPG.
    ...and that's where I am. Nothing has crashed yet, too, which is all to the good ('course, I haven't done anything else with the phone yet).
    Fingers crossed!

  • How can you restore from both an iCloud backup AND an iTunes backup?

    In article HT5262 (linked below) iOS backups are covered. There is a section "When to use iCloud and iTunes Backup together". I understand how to do this and the reasons why. What I haven't been able to find is an explanation of how you would actually restore from both? I know how to restore from each, however, if I first restore from iCloud, how can I then proceed to restore from iTunes without overwriting my iCloud restore?
    http://support.apple.com/kb/HT5262

    Demo, thanks for the reply. What you wrote is exactly what I thought. I'm trying to figure out why Apple is putting out this article (see partial contents below). The implication is that you can restore from both or why back up some data to one and different data to the other:
    "When to use iCloud and iTunes Backup together
    For an extra level of backup for your data, you can use iCloud Backup and iTunes Backup together."
    Tip: If you are using iCloud and iTunes Backup together, and you simply want to speed up your iCloud Backup & Restore functions, you can save iCloud storage by turning off iCloud Backup for very large data types. For example, if you have a 15 GB Camera Roll on your iPhone, you may not wish to back it up to iCloud because it is already being manually backed up to iTunes. You can disable back up of any iCloud Backup item in Settings > iCloud > Storage & Backup > Manage Storage > Backups > Backup Options. After doing so, these items will only be backed up when you manually back up to iTunes.

  • After updating iPod to iOS 5.0, cannot get into Game Center with previous nickname. It says my nickname is already in use by another account.  Why did this happen and how can I fix this with my old nickname and its data?

    After updating iPod Touch to iOs 5.0, I cannot get into Game Center with previous nickname.  The screen says my nickname is already in use by another account.  Why did this happen and how can I fix this so I can still use the same nickname?

    Did you haveany problem with updating to iOS 5? It soundsl like the update did not correctly restore from the backup that iTunes mnakes as the fisr step of the update.

  • How can i get 2nd week starting date and ending date in a month?

    please help me to query this.
    thanks in advance

    Hi,
    I assume the second week start the next monday after the 1st of the current month. End of week is the next sunday.
    If a week start monday, the second week of december start the 5th and ending the 11th :
      1  select 8-to_char(to_date('01'||to_char(sysdate,'MMYYYY'),'DDMMYYYY'),'D')+1 first_day2w,
      2         15-to_char(to_date('01'||to_char(sysdate,'MMYYYY'),'DDMMYYYY'),'D') last_day2w
      3* from dual
    SQL> /
    FIRST_DAY2W LAST_DAY2W
              5         11If we take august, the second week start the 8th to end the 14th
      1  select 8-to_char(to_date('01082005','DDMMYYYY'),'D')+1 first_day2w,
      2         15-to_char(to_date('01082005','DDMMYYYY'),'D') last_day2w
      3* from dual
    SQL> /
    FIRST_DAY2W LAST_DAY2W
              8         14HTH,
    Nicolas.
    Note that my nls_territory = FRANCE.
    if you're in America, first day of week is sunday, and last is saturday :
      1* alter session set NLS_TERRITORY='AMERICA'
    SQL> /
    Session altered.
    SQL> ed
    Wrote file afiedt.buf
      1  select 8-to_char(to_date('01'||to_char(sysdate,'MMYYYY'),'DDMMYYYY'),'D')+1 first_day2w,
      2         15-to_char(to_date('01'||to_char(sysdate,'MMYYYY'),'DDMMYYYY'),'D') last_day2w
      3* from dual
    SQL> /
    FIRST_DAY2W LAST_DAY2W
              4         10
    SQL> Message was edited by:
    N. Gasparotto

Maybe you are looking for