Can't Select "Due Date"

I am having trouble with my iCal of not able to select my "due date". Normally, if you check the "due date" box, the date will appear. However my Mac doesn't seem to respond. What happened ? I've check with the retail shop in Kuala Lumpur and non of them seems to be able to help me.

Hi
Here is my requirement and query i am using for it -
I need a query which takes workgroup as parameter and displays all incidents / change tasks / service requests
which are in the process of resolving for more than 2 days . You can say Sysdate – due date > 2 , but if there
is any way we can filter it out further to display the ones which are being worked for more than 2 days will be more appropriate.
*Providing table, data...will be more hectic for me, kindly provide me answer with the given information.
Select  t.task_number "Task#",
        t.short_description "Description",
        t.state "State",
        op.est_actual_start_datetime "Start Date",
        op.est_deadline_datetime "Deadline Date",
        sg.name "Support Group",
        t.environment "Environment",
        p.name "Name"
from tsgdw_task@awhsncp1 t,
     tsgdw_operational_process@awhsncp1 op,
     tsgdw_support_group@awhsncp1 sg,
    tsgdw_person@awhsncp1 p
where sg.SUPPORT_GROUP_SEQ_ID in (SELECT sg2.SUPPORT_GROUP_SEQ_ID  FROM  tsgdw_support_group@awhsncp1 sg2
                         start with sg2.SEARCH_CODE = 'DBNONEC' --p_target_name
                         connect by nocycle prior sg2.SUPPORT_GROUP_SEQ_ID=sg2.PARENT_SUPPORT_GROUP_SEQ_ID)
and t.task_seq_id = op.task_seq_id
and sg.support_group_seq_id = op.support_group_seq_id
and op.assigned_person_seq_id = p.person_seq_id
--and op.est_actual_start_datetime between trunc(sysdate) - trunc(op.est_actual_end_datetime) > 2
and to_char(est_actual_start_datetime) < trunc(sysdate - 2)

Similar Messages

  • How can I select a date to view in Calendar while I am in month view?

    I am looking at month view in Calendar on my iPad. I touch a date. Intuitively, I expect that date to open up in Day or Week view, but it doesn't! On my iphone, it works just fine. Am I missing something?
    How can I select a date to view while in Month view and have it go to Day or Week view?
    Thanks for any help.

    I would try this:
    In Lr import one photo into a different folder that you can see in the list.
    Then in your OS (mac Finder / Win Explorer) move the photo to the folder that you cannot see.
    In Lr the photo will now appear with a question mark on its frame. Click directly on the question mark and select <Locate photo>. Navigate to the folder, open it, and click on the photo.
    Maybe this will help Lr to recognize the folder.
    If this doesn't help try renaming the folder in your OS.

  • Can't set due date for to do in iCal

    I'm not sure if I'm blind or not, but i can't seem to set a due date for my to-do events. There's an option to say that there is a due date, but all it does is that it bring the view to the current day and changes the icon to an alert icon.
    Is anyone else facing this problem?
    I'm using iCal Version 3.0.5 (1270).

    qwertyjem,
    Click on "due date" and define your requirements (day/month/year) ...if...you have set the preferences to match your requirements in System Preferences...>International>Formats>Region:/Dates/Times.
    ;~)

  • Can not select from data dictionary view from a procedure

    Hi,
    I wonder, which privilege is missing here:
    my schema has this roles and privs:
    GRANT CONNECT, RESOURCE TO cb ;
    GRANT CREATE SESSION TO cb ;
    GRANT SELECT_CATALOG_ROLE TO cb ;
    GRANT CREATE SYNONYM TO CB;
    GRANT CREATE VIEW TO CB;
    I create a procedure:
    create or replace procedure dd_test as
    begin
         dbms_output.enable(2000000);
         for r in (select table_name from sys.dba_tab_partitions     where owner = 'CB') loop
                   dbms_output.put_line(r.table_name);
         end loop;
    end;
    sho err
    4/38 PL/SQL: ORA-00942: table or view does not exist
    When I run the core statement form sql prompt, it works !
    so what privilege is missing here ???
    thanks for any hint, Lao De

    Hi,
    thanks for that reply, after doing that I can not select this DD-view from sql-prompt anymore (which I don't wonder ;-). Can you tell me, what idea you had behind that test ?
    I found another instance, where the procedure works and I will compare those privileges, but it's hard to sort out that complex structure of nested roles and sys_privs.
    How ever, I will update here, when I found the missing privilege.
    regards LaoDe

  • Can't select & copy data from inspect element's tab - network

    So, I'm trying to get a direct link to an image on website that deliberately tried to make it hard to get them.
    For example,
    http://www.heavy.com/games/2013/10/nycc-2013-best-video-game-cosplay-gallery/2/
    So, I see the direct link to an image in this page - but I can't select it nor copy it (ctrl + c)
    why??? What's the point of network tab in inspect element if you can't select anything there, except for what's in headers - but there's no link to the image there.

    If you are copying it a URL of image embed in HTML, double click on the link in
    '''SRC=" ----------- Double click here ----------------------- "'''
    then you will be inside the src section, you will be able to edit the link now
    '''select it '''> '''From right click '''menu > select '''copy'''
    or
    Press Control (Ctrl) + c on windows or linux (Command + C on mac)
    If the image is embedded using CSS, click on the Link and do the same as said above.

  • Can I select the data of the indexes?

    Hi everybody,
    Oracle storages indexes in index type segments as I know.
    Is it possible to see the data of these index segments like a table or view?
    So I would like to see not only the structue of it with:
    select * from dba_segments SG where SG.segment_name = ’index_name’
    I think something like this:
    For example if I have a table named Table1.
    (please don’t see the format of the rowid):
    Rowid....field1
    1_1.......AA
    1_2.......AB
    1_3.......BB
    and I have an index on field1 named ndx_t1_f1.
    Create index ndx_t1_f1 on Table1(field1);
    I would like to see something like this
    (if it is a simple Btree index like the ndx_t1_f1):
    Select * from some_schema.???ndx_t1_f1???
    Rowid..........ParentRowid..........ValuePrefix..........SolutionRowid
    2_1
    2_11............2_1.......................A
    2_12............2_1.......................B
    2_111..........2_11.....................AA......................1_1
    2_112..........2_11.....................AB......................1_2
    2_121..........2_12.....................BB......................1_3
    And if i run:
    select field1 from table1 where filed1 like 'B%'
    oracle can use ndx_t1_f1 index like this:
    2_1 -> 2_12 -> 2_121 -> BB
    Yes, I know, there are some promlems with this imagine, but is it possible, or is it a silly question?
    Thanx: lados.

    Hi,
    You asked: „Why do you want to do that?”
    Well, I have a table T with fields F1, F2, F3 ...
    If I run:
    select F2, T.* from T where F1=12345;
    the result is one record and the value of F2 is ‘A’.
    But if I run:
    select F2, F1 from T where F1=12345;
    the result is one record and the value of F2 is ‘B’.
    And this is the same record. Oppps!!!!!
    I think the cause of the problem is the next:
    I have an index on F1, F2 named ndx_T_F1_F2
    In the second case: oracle uses only the index blocks and no table blocks, because all asked data exists in the index blocks.
    In the first case: oracle uses the table blocks too, because I asked all field.
    And I think there is a corrupted data on the index.
    I created a new index on (F1,F2,F3), and I suggest to use this.
    select /*+index(T, ndx_T_F1_F2_F3)*/ T.F2 from T where F1=12345;
    the result is one record and the value of F2 is ‘A’.
    But what is strange, oracle didn’t realise this inconsistent situation.
    (It could be an earlier crash, I don’t know, I’m new at this workplace)
    I think, the problem can solve with recreating the index ndx_T_F1_F2.
    But it’s a very special situation for me, and I would like to see the corrupted data concretly with my eyes.
    I think, that
    Select * from some_schema.???ndx_t1_f1???
    would I see like a view, but it would based on procedures and not tables.
    It would be enough to me, because I only could see the data in the index.
    But it is impossible as you wrote, isn’t it?
    Thanx: lados.

  • How can I select the date in chronologi​cal order on my BB curve?

    This sounds like a crazily basic question but one I can't find the answer to. After merging to a new email system my Curve has jumbled up all emails with no order by date.
    I can't find ANYWHERE in the instructions or the machine to select viewing emails by date, newest first. Our IT people reckon it does this automatically, but not on mine!
    Anyone know how this can be re-set. Hopefully an easy solution out there somewhere.....

    Weird.  Do a simple reboot on the BlackBerry in this manner: With the BlackBerry device POWERED ON, remove the battery for a minute, and then reinsert the battery to reboot. A reboot in this manner is prescribed for most glitches and operating system errors, and you will lose no data on the device doing this.
    Now, do the appear correctly in chronological order?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Don't want to pollute my ipad how can I selectively transfer data from mac mini?

    I have had users on this computer that have downloaded questioanble resources. I have grandchildren and we like to play on my ipad I do not want any objectionalbe video on this ipad.  I also don't want to make my creative content available for duplication to a user who had hooked up their iphone.  I am attempting to start over with my ipad. I have tried to keep them off the main computer but I need safeguards since the user is opportunistic. They also have a better understanding and advantage I am however an administrator at least as much as much as my husband allows me. I believe this user could still manupulate via wireless or remote with her iphone. I want to stop her completely but I know to challenge this user completely would mean an esculation. I have seen my email with another adress attached . I sometimes put in the exact password and still find for a short period cannot get into e-mail an Apple password  might not work? Is there script I can see that would suggest a problem.

    Your situation is a little bit confusing to me, but I will give this a try. I hope that I fully understand what you are trying to do.
    There is no way that anyone can access your iPad wirelessly or remotely at all. It just is not possible to do that in iOS. Because of the sandboxed nature of the iOS, it will not allow that type of interaction. However, if your iPad has been "polluted" by another user or that user's content, you might want to totally erase the drive and start all over again, and not restore from a backup. Erase it and start all over again completely. You will still be able to download most if not all of your paid content again as long as you use the same Apple ID that you used to make the purchases.
    Settings>General>Reset>Erase all content and settings will totally wipe the iPad clean and you will have to activate the device all over again. Don't restore from the backup when you get to the point during the activation where you are prompted to do so.
    If you want to download all of your constant again, read this.
    Downloading past purchases from the App Store ... - Support - Apple
    Erasing your iPad and starting over again is pretty radical if you are not absolutely sure that this users has really sabotaged the device. Please make sure that you realize what you are doing, and if I am reading the situation incorrectly, please state that in your response.
    What you are saying about this user having access to your computer is certainly concerning and without knowing what the circumstances surrounding her ability to do so, I can only recommend that you discuss this situation with your husband and take steps to prevent her from using it, or at least from using it without you being there to observe.

  • A/R report u0096 Customer open items based on due date

    Hi all,
    Can anyone tell me if there is a standard report on AR side that gives me invoices due between certain dates, meaning I should be able to select due dates between 11/15/2006 and 11/30/2006 in the selection and the report should get me the customers with invoices that are due between the above dates for a company code.
    Thanks in advance
    Kumar

    Hi Kumar,
    there is no standard report which give you selection citeria to select range of due date. Since due date is calculated based on function module where it calculate Bline date+ terms of payment days.
    other std reports are:
    S_ALR_87012175 Open Items - Customer Due Date Forecast
    S_ALR_87012178 Customer Open Item Analysis by Balance of Overdue Items
    S_ALR_87012168 Due Date Analysis for Open Items
    Hope this helps.
    Please assign points as way to say thanks

  • In F-51 transaction was not posted,& due date field for advance payment VEN

    1.  In F-51 transaction was not posted. 
    In the above T-code I want to tranfer Invoice amount (RE) to special GL debit retention money payable the following error was throwing,
    Balancing Field "Profit Center" in the line item 001 not filled.
    2. For advance payments for vendors due date field is not appearing in document entry screen.  How   can I see due date field in document entry screen.
      In OB41 I changed the field status for posting key 29 in payment transations I made due date field required, but it is not appearing due date field in document entry screen, while posting transaction.
    Please advise on this.
    Regards

    Hi thru f-51 u cannot post the transaction here u can enter first line item and select process open item and post it and the base line date is already entered in invoice document based on that one the advance amount is adjusted u con't enter that base line date at the time of advance payment and also the payment terms are maintained in vendor master based on that on also due date is calculated i hope it will be helpful.

  • Changing due date in SP GL transaction

    Frnds
    I posted a down payment request with Due date, but i need to change that due date, actualli tried to do itin FBL1N, with the selection of Special GL transactiona and Noted items,
    i am able to pull the document, but when it chage it from display mode, Due date field is not being active.
    how cani change th due date?
    thanks

    Ravi
    in ob32
    Field Name is BSEG-ZFBDT - Baseline payment date
    Rule is valid for....
    Account type K- Vendor line items
    Transaction type --  it is blank
    company code--- it is blank
    Possibility of changing the field.
    Field can be changed ( it is ticked)
    Stipulation for changing
    Posting period not closed ( Not ticked)
    Line item not cleared ( It is ticked)
    Custome debit of vendor debit (not ticked)
    No invoice related credit memo ( it is ticked)
    No credi memo from down payment ( It is ticked)
    Above is the configuration.
    please have look at it and let me know the solution
    thanks

  • Customer Due Date Analyasis - Profit Centerwise

    Dear friends
    I need help in the following scenario.
    My client wants the Customer Due Date Analysis at Profit Center Level.
    Only  S_ALR_87012168 - Due Date Analysis for Open Items is available for Customer Ageing.
    Can we define one more report in report painter by including Profit Center as one more Characteristic?
    When I checked in Report Parameters, I found the Report Name : 0SAPDUEAN-01.
    Can we define one more report, by coping from this 0SAPDUEAN-01 and include Profit Center as one more Character?
    If so where Can I define this report in FI?
    Regards
    Kiran

    Hello,
    Note that if you are on classical GL, you cannot have profit center on vendor or customer line items.
    If you are on new GL and document splitting is active then you can have profit center on customer or vendor line items.
    The following example I have given is for customers.
    The only difference is in transaction codes. For customer you go to FDI1, for vendor you go to FKI1 (reports).
    For Customer you go to FDI4, for vendor you go to FKI4 for forms.
    Remaining all are the same.
    Go to transaction code FDI4
    Select Form Type RFFRRD20 Line item analysis
    Give your form name and description
    Structure (Two axis) - as defaulted
    Click on Create
    You will have lead column
    Delete the rows 2, 3 and 4
    Double click on column 1
    Enter the customer numbers from 1 to 999999
    First column double click (A)
    Slelect following values
    Due date analysis 1
    Days for net due date 0 to 30
    Give the short name, medium name and long text for the column.
    Repeat this step in next columns like 31 to 60, 61 to 90, 91 to 120 and 121 to 99999 days etc in other columns and select due date analysis 1. (B,C,D,E)
    Create one more column by way of formula. To create a new column you need to double click on blue line. Put formula add all five columns you have created above. (F = ABCDE)
    You prepare one more column with
    Due date analysis 2 (G)
    Now you prepare one more column add (F+G) = This will be total open items = over due and not due.
    Now go to FDI1 and prepare a report - assign the form created in FDI4 to the report.
    Characteristics you need to select are
    Account Type (Select Account Type as D for customers)
    Currency
    Customer
    Document Type
    Special G/L Ind
    Company Code
    Change the output types and options according to your requirement.
    Refer FDI2 and FDI3 for other standard reports created.
    Refer FDI5 and FDI6 for other standard forms created.
    Save your report and execute.
    Regards,
    Ravi

  • How to set the Due Date for action in GP

    Hi Experts,
    I am trying to set date for each and every action in GP. Please help me out for that. I have tried it through setting the due date in the action and in process also. But its not working. So, kindly give me step by step process.
    Steps which i have followed :
    1. Created an action
    2. selected Due date tab
    3. Unable to find the callable object to attach with the action.
    Can you please tell me where i am wrong?
    Regards,
    Nutan
    Edited by: nutan champia on Apr 1, 2008 11:25 AM

    Hi Experts,
    Please help me out.  I am using the Defining and configuring notification in the below mentioned link.
    http://help.sap.com/saphelp_nw70/helpdata/en/93/a45542f156be30e10000000a155106/frameset.htm.
    I am following the steps mentioned in the document but unable to proceed after selecting the Due date tab under the action/ process properties. Callable objects are not visible here. Whether I have to do some changes in the callable objects. Please guide.
    Regards,
    Nutan

  • How to use due date in credit management

    hi,
    i want to calculate my credits according to net due date
    how can i use due date in credit management?
    thank you

    Not sure what do you mean by "use due date in credit management". 
    If  you want to calculate due date per billing document, for example, for such as customer statement, you may use "BSID-ZFBDT + BSID-ZBD1T" (Baseline date + Cash disc day 1).

  • How to see (net due date + payment term's days) in fbl5n as a date

    hi experts.
    i need some informations about fbl5n fields
    i can see net due date and i can see terms of payment fields in the fbl5n but  if the invoice has a payment term (30 day additional etc) i want to see (net due date + payment term's extra days) . for example if the net due date is 01.06.2011 and payment term is extra 20 days  , how can i see 21.06.2011 in fbl5n or any other sceens?
    Edited by: Burak Akdasli on Jun 22, 2011 3:43 PM

    Hi
    I understand from ur question whats the billing date?
    If this is ur question, you can fetch it from sales order>item>billing tab.
    The logic u had mentioned is confusing be more specifc as to what scenario u are trying.
    Reward if it helped
    Chandru

Maybe you are looking for