Next upcoming expert day Looking forward to the next Expert Day any estimated date of the event

next upcoming expert day Looking forward to the next Expert Day any estimated date of the event
it‘s great to be able to post in the forum and obtain help
my gratitude and appreciation is certainly provided; may I inquire
as to any estimate Is there another
Upcoming Expert Day Event
Since the designated Expert Day is stated as the event has now concluded for
Expert Day in English (Consumer) - April 18-19, 2012
Hopefully before September
Thanks  
Respectfully

However if it is Sep I’ll gladly wait and that is still excellent the designated Expert Day’s are great
my gratitude and appreciation is certainly provided..

Similar Messages

  • I have iphone 5, after upgrading it to iOS7, front is working find unfortunately rear camera became blurred, what is the best way to fix this? Looking forward to the best solution of this problem.

    I have iphone 5, after upgrading it to iOS7, front is working find unfortunately rear camera became blurred, what is the best way to fix this? Looking forward to the best solution of this problem.

    WORKAROUND FOUND ! Download and install "Awesome Camera" app and take a picture with that app. After 1-2 seconds of standby, it will work. Then you can go back to default Camera app which would work again.Please let me know

  • Great! ipad was delivered 6 days before estimated date.

    Just wanna share.
    I have seen someone got headache about waiting for shipment.
    Mine just arrive this morning , 6 days before estimated date!
    I ordered ipad 3G 64Gb since 19th May.
    then , Apple showed estimated date.
    ship : 4th Jun
    deliver : 8th Jun
    OMG! that's very long wating.
    Luckily, My order status turned to "Prepared for shipment" on 28th May
    then, it started to ship on 30th May.
    And Apple send email "delivers 4th Jun"
    Moreiver,Fedex showed " delivers 3rd Jun" wow!
    Finally, I've got it on 2nd Jun!!!!
    Here is my tracking information from Fedex :
    Jun 2, 2010 11:51 AM
    Delivered
    WILLIAMSBURG, VA
    Jun 2, 2010 7:46 AM
    On FedEx vehicle for delivery
    HAMPTON, VA
    Jun 2, 2010 7:41 AM
    At local FedEx facility
    HAMPTON, VA
    Jun 2, 2010 6:24 AM
    At dest sort facility
    NORFOLK, VA
    Jun 2, 2010 5:05 AM
    Departed FedEx location
    INDIANAPOLIS, IN
    Jun 1, 2010 1:17 AM
    Arrived at FedEx location
    INDIANAPOLIS, IN
    May 31, 2010 3:32 PM
    Departed FedEx location
    ANCHORAGE, AK
    May 31, 2010 1:03 PM
    Int'l shipment release
    ANCHORAGE, AK
    May 31, 2010 12:24 PM
    Arrived at FedEx location
    ANCHORAGE, AK
    May 31, 2010 2:06 PM
    In transit
    LANTAU ISLAND HK
    May 31, 2010 9:58 AM
    Left FedEx origin facility
    SHENZHEN CN
    May 31, 2010 8:38 AM
    Picked up
    SHENZHEN CN
    Package received after FedEx cutoff
    May 30, 2010 4:27 AM
    Shipment information sent to FedEx
    good job! That's not bad.
    Thanks Apple , Fedex.

    Thats Great
    I had a similar thing I ordered mine on Monday I got it yesterday when it said it wouldn't be here till June 30th

  • General Comment - Looking forward to the new CC Sync

    I just read the blog announcing the pre-release of the revised CC sync utility and am looking forward to it... especially after what happened today with my SkyDrive account.
    This morning I began working on a Word 2013 document, autosaving every 10 minutes and randomly manually saving as well with a few keystrokes... and some 6 hours later the screen flickered, SkyDrive refreshed or something along that line, and all of the work I performed today disappeared and was not recoverable.
    The beta CC Sync that was released last year regularily created duplicate copies of files on my local drive and on the Adobe Cloud. At that time, I was somewhat annoyed by the redundancy, but after today, hope that feature will remain.
    After my loss today, I would much rather set aside a few moments to manually control the deletion of redundant files than dedicate an additional six hours to re-writing and re-editing everything that was lost in some upload mishap.

    I am sure most ALL the paying Creative Cloud subscribing customers are looking forward to actually using the advertised features that they have been paying for but have not been available for use. Maybe the "Coming Soon" has finally arrived months later and the silence will be broken. Rejoice CC users your payments were not in vain, you will soon be able to use the advertised features. Let's just hope the wait was worth it and the same issues that plague CC in general that are rampant for CC users as seen on the forum here don't creep into these features with there own reoccurring issues. One would think given the delay Adobe would hopefully get it right and it wont be yet another public beta that gets pulled as before.

  • Looking forward to the Note 5 ?

    http://galaxynote5edge.com
    I added the link above for Note junkies like myself, so you can read the news verbatim.
    If it works as good as it reads, holy cow, what an amazing phone!
    27 mp rotating camera. Risky, but finally a decent selfie.
    Octocore and 4 GB RAM.
    32 or 64 GB option with SD card and removable battery.
    4K display.
    S-pen with memory ( not sure how it will actually work yet )
    It is expected to run at least $900. Ouch. Maybe if I start saving now....

    FCC docs for the n920a
    https://apps.fcc.gov/oetcf/eas/reports/ViewExhibitReport.cfm?mode=Exhibits&RequestTimeout=500&calledFromFrame=N&application_id=mwR4cqRVAWnHaB1KVKTlKA%3D%3D&fcc_id=A3LSMN920A

  • Fiscal date DD-MON and year end looking forward

    Trying to figure out the best way to look forward to the new year and back to the old year when comparing sysdate to a table column fiscal that is formatted DD-MON. The process works perfectly during the year, since is uses current year when comparing data. But at the end of the year, we do not see anything past 12/31 or before 1/1 in a new year. Any ideas? I was thinking of declaring a couple of values and based on sysdate Sep, Oct, Nov, Dec to add 1 year to Fiscal months Jan, Feb, Mar, Apr so they appear as the next year and vice versa for the first months of a new year, subtract one year from the fiscals to indicate previous year. Has anyone worked on something like this in the past?

    Look in to this, i am substituting values for the year, so you will get idea.
    The fisccal date you have is month end all the time or it is all the dates?
    SQL> ed
    Wrote file afiedt.buf
      1  WITH T AS
      2    (SELECT '01-DEC' dt  FROM dual
      3     UNION ALL
      4    SELECT  '05-JUL'   FROM dual
      5     UNION ALL
      6    SELECT  '10-JAN'     FROM dual
      7     UNION ALL
      8    SELECT  '30-MAR'    FROM dual
      9     )
    10  --ens of data
    11  SELECT TO_DATE(dt||'-'||&y,'DD-MON-YYYY') fisc_date,
    12         TO_DATE(dt||'-'||&y,'DD-MON-YYYY')+180 NEW_DATE,
    13      ADD_MONTHS(TO_DATE(dt||'-'||&y,'DD-MON-YYYY'),6)
    14* FROM T
    SQL> /
    Enter value for y: 2008
    old  11: SELECT TO_DATE(dt||'-'||&y,'DD-MON-YYYY') fisc_date,
    new  11: SELECT TO_DATE(dt||'-'||2008,'DD-MON-YYYY') fisc_date,
    Enter value for y: 2008
    old  12:        TO_DATE(dt||'-'||&y,'DD-MON-YYYY')+180 NEW_DATE,
    new  12:        TO_DATE(dt||'-'||2008,'DD-MON-YYYY')+180 NEW_DATE,
    Enter value for y: 2008
    old  13:     ADD_MONTHS(TO_DATE(dt||'-'||&y,'DD-MON-YYYY'),6)
    new  13:     ADD_MONTHS(TO_DATE(dt||'-'||2008,'DD-MON-YYYY'),6)
    FISC_DATE NEW_DATE  ADD_MONTH
    01-DEC-08 30-MAY-09 01-JUN-09
    05-JUL-08 01-JAN-09 05-JAN-09
    10-JAN-08 08-JUL-08 10-JUL-08
    30-MAR-08 26-SEP-08 30-SEP-08

  • Is there any possibility to see full details about the event?

    ipad calendar:I have no chance to read the event location fully on my ipad. It is cut and finishes with "...", thus very important meeting  number cannot be seen. Is there any possibility to see full details about the event?

    Thanks for quick reply.
    Looks like opened the event. Here is a screen shot, I marked the cut numbers with red cirsles.

  • Why doesn't apple have a file of events that ties to the iCal program and the Address book file? By having that relationship it seems that you could call up all of the events tied to a customer while in the address book or likewise call up all of the even

    Why doesn't apple have a file of events that ties to the iCal program and the Address book file? By having that relationship it seems that you could call up all of the events tied to a customer while in the address book or likewise call up all of the events tied to a contact that was in the iCal program as a scheduled meeting. Even in the to do's you could easily look back at the events tied to an individual so as to bring yourself up to speed with what you were doing with the individual in mind.

        I definitely understand your concern and I apologize for all the frustration. Verizon Wireless has a strong customer commitment to delivering the best from our service and staff. I am disappointed to hear the service you received did not reflect this commitment.
    I definitely want to help get to the bottom of this and further assist you. Please reply to my direct message so I can access your account and further assist. I am sure we can get this resolved.
    JohnB_VZW
    Follow us on Twitter @VZWSupport

  • Looking forward N82's next update

    as a high-end phone specially in camera department they should update few things to produce even better picture like "face detection", "infinitive focus", "brightness". they can easily update these in this sofware version. hope they'll include this & looking forward for N82's next update...
    Nokia N82
    v 31.0.016
    The King of KINGS!

    However if it is Sep I’ll gladly wait and that is still excellent the designated Expert Day’s are great
    my gratitude and appreciation is certainly provided..

  • Looking forward to next rows

    hello everybody, i have a particular scenario that i want to solve with a query
    here is some sample data. note dates are not sorted in table. i put it here for readabaility reason
    WITH table1 AS
      SELECT 111 cid,  To_Date('1/31/2010','mm/dd/yyyy') dt, 'line' line,  345 pid   FROM dual UNION ALL
      SELECT 111 cid,  To_Date('2/1/2010','mm/dd/yyyy') dt,  'line2' line, 346 pid  FROM dual UNION all
      SELECT 111 cid,  To_Date('2/2/2010','mm/dd/yyyy') dt,  'line3' line, 347 pid  FROM dual UNION ALL
      SELECT 111 cid,  To_Date('2/3/2010','mm/dd/yyyy') dt,  'line4' line, 348 pid  FROM dual UNION ALL
      SELECT 111 cid,  To_Date('2/4/2010','mm/dd/yyyy') dt,   null   line, 349 pid FROM dual UNION ALL
      SELECT 111 cid,  To_Date('2/5/2010','mm/dd/yyyy') dt,  'line6' line, 340 pid  FROM dual UNION all
      SELECT 999 cid,  To_Date('2/28/2010','mm/dd/yyyy') dt, 'line7' line, 341 pid  FROM dual UNION ALL
      SELECT 999 cid,  To_Date('3/1/2010','mm/dd/yyyy') dt,  'line8' line, 342 pid  FROM dual UNION ALL
      SELECT 999 cid,  To_Date('3/2/2010','mm/dd/yyyy') dt,  'line9' line, 343 pid  FROM dual UNION ALL
      SELECT 999 cid,  To_Date('3/3/2010','mm/dd/yyyy') dt,  'line0' line, 344 pid FROM dual UNION ALL
      SELECT 999 cid,  To_Date('3/4/2010','mm/dd/yyyy') dt,  'line3' line, 345 pid  FROM dual UNION ALL
      SELECT 999 cid,  To_Date('3/5/2010','mm/dd/yyyy') dt,  'line2' line, 345 pid  FROM dual UNION ALL
      SELECT 444 cid,  To_Date('3/31/2010','mm/dd/yyyy') dt,  'line111' line, 346 pid  FROM dual UNION ALL
      SELECT 444 cid,  To_Date('4/1/2010','mm/dd/yyyy') dt,  'line112' line, 347 pid  FROM dual
    SELECT 555 cid,  To_Date('4/2/2010','mm/dd/yyyy') dt,  'line12' line, 247 pid  FROM duali want the following output.
    CID     DT            LINE     PID
    111     1/31/2010     null     345   --copy line column value from 4th day
    111     2/1/2010     line2     346
    111     2/2/2010     line3     347
    111     2/3/2010     line4     348
    111     2/4/2010     null     349
    111     2/5/2010     line6     340
    999     2/28/2010     line3     341    --copy line column value from 4th day
    999     3/1/2010     line8     342
    999     3/2/2010     line9     343
    999     3/3/2010     line0     344
    999     3/4/2010     line3     345
    999     3/5/2010     line2     345
    444     3/31/2010     line111     346
    444     4/1/2010     line112     347
    555     4/2/2010     line12     247here is how i get to this output. i want to get all month end dates for a particular id. then i want to look forward and get the values from the 4th day following
    the month end date. so for 1/31/2010, the 4th day is 2/4/2010. then i want to get the value from line column in the 4th row and copy that in the current row,
    in this case 1/31/2010 line column becomes null since 2/4/2010 has null value
    in the case of 444, 3/31 is month end but there is no 4th day to move forward, in this case just display the data.
    in the case of 555, there is no month end date so just display the rows for 555 and no need to move forward
    i try using last value analytic function but this function will skips row that are null which proceduce invalid result.
    if the 4th row we trying to copy from has null values then i want those null values as display in output above.
    also i am using oracle 9i 9.2 version and ignore null is not supported.
    can someone help me write a query that give above output? thanks alot

    Hi,
    You're right: repeating basically the same CASE expression 8 (or is it 2 + 8 = 10) times is not a very good idea.
    On each row of output, you want 8 columns from some row of the table: possibly the same row, possibly the 4th subsequent row. That sounds like a self-join. Think of joining a "base" row (containing the dt) to a "detail" row of the same table. When dt is the last day of the month, and there are at least 4 later rows, then the detail row will be the 4th later row. In all other cases, the detail row will be the same as the base row.
    How can we find the detail row for a given base row? The same way we found the appropriate line value before; only instead of getting tyhe value of line, we need something that will uniquely identify the detail row. If your table has a one-column primary key, you could return that, and use it in the join condition. In the query below, I assume that the combination (cid, dt) uniquely identifies each row.
    WITH     got_detail_dt     AS
         SELECT     cid, dt, line, pid
         ,     CASE
                  WHEN  dt = LAST_DAY (dt)
                  THEN  LEAD ( dt
                              , 4
                          , dt
                          ) OVER ( PARTITION BY  cid
                                          ORDER BY      dt
                  ELSE  dt
              END          AS detail_dt
         FROM    table1
    SELECT       b.cid
    ,       b.dt
    ,       d.line
    ,       d.pid
    FROM       got_detail_dt       b
    JOIN       got_detail_dt       d     ON     d.cid     = b.cid
                            AND      d.dt     = b.detail_dt
    ORDER BY  cid
    ,            dt
    ;Adding more columns to the report is now just a matter of adding more columns to both SELECT clauses. (Depending on what output you will accept, you might make that just the SELECT clause of the sub-query, and use d.* in the main SELECT clause.) At any rate, the addition columns will just be simple column names, not complicated CASE expressions.

  • I am getting old and looking forward to use I Pad as a Phone if possible through WIFI! I this possible? The screen is to small for me! If possible, with new I Watch taking calls, other uses through I Pad!

    Like I wrote on title, I am getting old and it is not easy to see E-mails, news etc. on a I phone! New I phone will not help me for the size.
    If possible, everything without calls, I would like to use I Pad as direct unit, and for calls through I Pad over WIFI all calls. If a call as Skype, I would like
    to use the I Pad as a monitor. Is this possible?
    I found on a side that there is a product for people for better hearing, which can be put into the ears, using WIFI with I Phone.
    If this product could be used also for I Pad as a Phone for hearing, and the I watch or I Pad as Microphone, it will be great for old Mac users.
    Is this possible with our system know?
    I am using Mac since Classic II! Would like to continue with the newest items with the possibility for old person with bad Eyes or Ears.
    Looking forward for a kind answer
    with regards
    Christian an old Mac user!

    Definitely No

  • How can I use a SCH-LC11 device in CHINA which bought from ebay. I am not Verizon customer but I prefer to using your 4G LTE Router . How can I get the unlock code? The device may have a bad ESN but I only use it in CHINA. Kindly looking forward your repl

    How can I use a SCH-LC11 device in CHINA which bought from ebay. I am not Verizon customer but I prefer to using your 4G LTE Router . How can I get the unlock code? The device may have a bad ESN but I only use it in CHINA. Kindly looking forward your reply. Thanks!

    It's good to read Antoniad's post.  It reassures me that I can use my new iPad as an international communication device which is the reason I purchased the thing.  However, I called Verizon today (my provider of cellular data) who told me that I can't just pop in a SIM card as you suggested.  He also said that he was from the "Pre-Pay" division of Verizon and he was certain that I couldn't do what I planned to do.  I was extremely disappointed as I had called Apple prior to buying the iPad and I read the algorhythm on the website for choosing an iPad before purchasing.  Those sources were quite specific and the information seemed clear.  I would be able to use my iPad to communicate through cellular connections while traveling on the road, literally, abroad.  I was told that I could pop in a data card wherever I was, just as you indicated in your message above, and voila I was good to go.  The Verizon rep definitively rained on that parade, but said that I might be able to do this if I have a "Post-Pay" account, a different area of Verizon.  I haven't had the chance to talk to this division yet, so I looked to Apple's Support for answers.  Maybe I will find out that I can use my iPad as an international communication device while traveling on the road afterall, however, it appears I may need a different type of account (Post-Pay), something I was never warned about. Can I switch to this kind of account?  I don't know.  I have to find out.  If you have any information about this issue, it would be good to share since I strongly suspect there are others who bought the iPad for the same purpose that I have.

  • Task not forwarded to the next level

    Dear All ,
    I am having an issue in SRM Shopping Cart approval workflow. The scenario is that the SC has to be approved at 3 levels and after getting approved at the first level the task does not get forwarded to the next level and its unable to fetch any , whereas there are users mainateined and i can see the approvers being fetched when I tried executing the BADI ( BBP_WFL_APPROV_BADI),unfortunately this is the isolated case as its working fine for all others. I guess this rules out oll other poosiblities of agent determination logic, task's agent assignment, swu_obuf , or swi1_rule. I am sure something is wrong with the user attributes but not able to zero to the root cause. Any help will be highly appreciated.
    regards
    C S Anand
    Edited by: Santosh Anand on Oct 1, 2010 8:11 AM

    Hi,
    Search this forum for answers: SAP SRM: Workflow & User/Vendor/Org Management
    Also, if you can replicate it on the dev environment.Change the WF-BATCH user temporary to dialog and place an external break-point in the badi implementation for WF-BATCH user.
    Now create a shopping cart and check in debugging what causes it to not retrieve agents.
    Kind regards, Rob Dielemans

  • HT4009 Purchasing gems on the clash of clans game.  It tells me to contact customer support   This happens a lot  and support takes the block off my account  and everything works fine. Looking forward to y'all resolving my issue   Ryan Hinger

    Purchasing gems on the clash of clans game.  It tells me to contact customer support   This happens a lot  and support takes the block off my account  and everything works fine. Looking forward to y'all resolving my issue   Ryan Hinger

    If you are getting a message to contact iTunes support then only they can help you (these are user-to-user forums, we won't know why you are getting the message) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • Looking forward to download Adobe After Effects CC from Creative Cloud Desktop Application. But why most of the apps appear to be in CS6?

    I installed the new copy of Adobe Creative Cloud Desktop Application, and looking forward to download Adobe After Effects CC. But why most of the apps appear to be in CS6? - Including AE. Only few appears to be CC.
    Thank you.

    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

Maybe you are looking for

  • How to call java code in xsl?

    I'm trying to call java code in xsl. I've not been able to do so so far....any help is greatly appreciated. Here's my xsl: <?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.1"           xmlns:xalan="htt

  • I can no longer get to word or other software on my computer. I hate firefox. I want google back. I want internet explore. I want word. I want my old compu

    Somehow i've gotten into firefox and cannot get out. I cannot use my other software. I hate firefox and want to stop it. I want to be able to get to my word, my folders and TO STOP FIREFOX. I can no longer can put my cursor in the corner and have opt

  • No tables after creating DWH tables

    Hi, After configering the DAC there are no tables created. The contents of the generate_clt log are as below. Schema will be created from the following containers: obiawarehouse Success! >>>>>>>>>>>>>>>>>>> and the content of the createwtables.log ==

  • Mouse problems after 11/29/05 Security Update?

    I installed the 11/29/2005 Security Update 2005-009 via Software Update. Right afterwards (even before the required reboot), I began having mouse oddities. The cursor disappears from the screen, or just stays there and doesn't move. Moving the mouse

  • Audio wave form in the viewer looks wrong

    hello everyone i taped a live jazz event and i had two xlr cables running from one camera to the board i now digitized and i am opening this clip in the viewer but it doesnt look like a normal audio wave. peaks are showing from top and bottom. Maybee