*New Dates For* Upcoming Support Webinars & Info About Support

Dear Oracle Primavera Customers:
As of November 2009, the Oracle Primavera software support team has completed the migration and integration to Oracle Global Customer Support. This is an exciting time for the support organization, as we will now utilize and leverage the same tools and resources. Additionally, our clients will have one centralized location when contacting the support organization. We are sending this message to provide a brief reminder of how you can contact Oracle Support and where to go if you have questions.
Contacting Support
Please use your Oracle Support Identifier (SI) to contact Oracle Support either via the My Oracle Support portal or by telephone:
- [My Oracle Support |https://support.oracle.com/CSP/ui/flash.html]
- [Global Support Phone Numbers|http://www.oracle.com/support/contact.html]
Support Identifiers were sent to directly supported customers in October 2009. If you misplaced your SI or never received one, please call the [Oracle Support hotline|http://www.oracle.com/support/contact.html] .
If you contact Oracle Support by telephone, please note that Oracle's Customer Care team will take the call. The Customer Care team handles initial logging of all issues received by telephone, local language support and translation, exception handling, and handling of all non-technical questions and issues. The Customer Care team is available to handle all questions related to a customer's Support Identifier (SI) and can walk through the My Oracle Support registration process and logging of a new Service Request (SR), if needed.
Technical Service Requests logged by customers either directly via My Oracle Support or via the Customer Care team will be automatically routed to the appropriate Primavera Support Engineer for technical issue triage, analysis, and resolution. Once your request is assigned to an Engineer, you can speak directly to the Engineer regarding the status of your request by calling the [Oracle Support hotline |http://www.oracle.com/support/contact.html] and entering your service request number. Doing so will transfer your call directly to the Engineer working on your request.
Need Help?
•Please plan to attend one of our upcoming live Support webinars. This webinar will review the information you need to work effectively with Oracle Global Customer Support. Below are the details for both the conference call and web conference for the webinars in late March and on April 1, 2010.
[Primavera Webinar Conference Call Dial In Information |https://strtc.oracle.com/imtapp/app/imtdocvw.jsp?did=10274761&docToken=ZGlkPTEwMjc0NzYxJm1JRD02NDk3NDYyJmlzQ29udmVydGVkPXRydWUmaXNBcmNoaXZlPWZhbHNl]
Pass code for the web conference and conference call is Primavera
Web conference link is below each session date/time
Tuesday, March 30, 2010 11AM US Eastern Time
[https://strtc.oracle.com/imtapp/app/sch_mtg_details.uix?mID=6497462]
Wednesday, March 31, 2010 2PM US Eastern Time
[https://strtc.oracle.com/imtapp/app/sch_mtg_details.uix?mID=6497477]
Thursday, April 1, 2010 11AM US Eastern Time
[https://strtc.oracle.com/imtapp/app/sch_mtg_details.uix?mID=6497485]
- For questions about your Support Identifier (SI), issues with My Oracle Support and/or questions about how to use My Oracle Support, please contact Oracle Support Customer Care by calling the [Oracle Support Hotline|http://www.oracle.com/support/contact.html] .
- For questions about Oracle support processes, systems, the support model and/or training on My Oracle Support, please visit the [Primavera Welcome Center on My Oracle Support|https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&id=888813.1] .
We look forward to speaking with you at an upcoming Support webinar and assisting you with your continued success with Oracle Primavera applications.
Regards,
Oracle Primavera Customer Support

CREATE TABLE #Tickets (
TicketNo VARCHAR(4)
,DateUpdated DATETIME
GO
INSERT INTO #Tickets
VALUES (
'44BS'
,'2014-01-01'
INSERT INTO #Tickets
VALUES (
'44BS'
,'2014-01-05'
INSERT INTO #Tickets
VALUES (
'44BS'
,'2014-01-07'
INSERT INTO #Tickets
VALUES (
'32VT'
,'2014-01-03'
INSERT INTO #Tickets
VALUES (
'32VT'
,'2014-01-09'
INSERT INTO #Tickets
VALUES (
'32VT'
,'2014-01-11'
GO
GO
SELECT *
FROM #Tickets
GO
GO
CREATE TABLE #tempDist (
NRow INT
,TicketNo VARCHAR(4)
,MinDate DATETIME
,MaxDate DATETIME
GO
CREATE TABLE #tempUnUserdDate (
TicketNo VARCHAR(4)
,MissDate DATETIME
GO
INSERT INTO #tempDist
SELECT Row_Number() OVER (
ORDER BY TicketNo
) AS NROw
,TicketNo
,Min(DateUpdated) AS MinDate
,MAx(DateUpdated) AS MaxDate
FROM #Tickets
GROUP BY TicketNo
SELECT *
FROM #tempDist
GO
-- Get the number of rows in the looping table
DECLARE @RowCount INT
SET @RowCount = (
SELECT COUNT(TicketNo)
FROM #tempDist
-- Declare an iterator
DECLARE @I INT
-- Initialize the iterator
SET @I = 1
-- Loop through the rows of a table @myTable
WHILE (@I <= @RowCount)
BEGIN
--  Declare variables to hold the data which we get after looping each record
DECLARE @MyDate DATETIME
DECLARE @TicketNo VARCHAR(50)
,@MinDate DATETIME
,@MaxDate DATETIME
-- Get the data from table and set to variables
SELECT @TicketNo = TicketNo
,@MinDate = MinDate
,@MaxDate = MaxDate
FROM #tempDist
WHERE NRow = @I
SET @MyDate = @MinDate
WHILE @MaxDate > @MyDate
BEGIN
IF NOT EXISTS (
SELECT *
FROM #Tickets
WHERE TicketNo = @TicketNo
AND DateUpdated = @MyDate
BEGIN
INSERT INTO #tempUnUserdDate
VALUES (
@TicketNo
,@MyDate
END
SET @MyDate = dateadd(d, 1, @MyDate)
END
SET @I = @I + 1
END
GO
SELECT *
FROM #tempUnUserdDate
GO
GO
DROP TABLE #tickets
GO
DROP TABLE #tempDist
GO
DROP TABLE #tempUnUserdDate
Thanks, 
Shridhar J Joshi 
<If the post was helpful mark as 'Helpful' and if the post answered your query, mark as 'Answered'>

Similar Messages

  • HT4623 I cannot install my ipod to my computer. Says something about the device driver. I did not get it new either and so have no info about it. And I have never used one before and have no friends who have either. Can someone help me?

    I cannot install my ipod to my computer. Says something about the device driver. I did not get it new either and so have no info about it. And I have never used one before and have no friends who have either. Can someone help me?

    See
    iOS: Device not recognized in iTunes for Windows
    - I would start with
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    or              
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    However, after your remove the Apple software components also remove the iCloud Control Panel via Windows Programs and Features app in the Window Control Panel. Then reinstall all the Apple software components
    - New cable and different USB port
    - Run this and see if the results help with determine the cause
    iTunes for Windows: Device Sync Tests
    Also see:
    iPod not recognised by windows iTunes
    Troubleshooting issues with iTunes for Windows updates
    - Try on another computer to help determine if computer or iPod problem

  • Please help. I need to register a new itouch for my daughter but confused about apple id's and getting all her stuff transferred to the new itouch from the old one. Plus I want her to have her own apple Id

    My daughter has an old itouch, she uses my apple I'd. I just got her a new I touch, and want to register it, but give her her own apple Id. I just backed up or synced her old itouch to the computer and now I am setting up her new one. If I give her a new apple Id will she then loose all her apps and songs from her old itouch? Please help!! I thought it was supposed to say something like restore from back up or something like that? Maybe that is a next step after I give her her own apple id?

    https://register.apple.com/cgi-bin/WebObjects/GlobaliReg.woa [register an Apple Product]
    https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/wa/createAppleIdForIK B?localang=en_US&path=%2F%2Findex.jspa [create new apple id]
    You must be logged in to register an Apple Product
    Message was edited by: michael08081

  • Need info about Support Package Stack

    Hi,
    Can anyone tel me what are the Support package stack released in XI 3.0 and what are the modification in each SPS.
    Please send the related Docs if anyone has.
    Thanks&Regards
    Sreedivia

    hi,
    check the below link
    http://help.sap.com/saphelp_nw04/helpdata/en/46/e45ab9db8166bfe10000000a1553f7/frameset.htm
    regards
    kummari
    Edited by: kummari on Jul 28, 2008 11:40 AM

  • Quick Info about supported versions

    Hi Guys,
    could someone give me an update which B1 Versions and R/3 (or mySAP) Versions are currently supported by B1i. And if not yet, when will 2005A SP01 be supported.
    Thanks in advance.
    Regards,
    Georg

    Georg,
    Please take a look at the link to the SAP Note attached as this should help.
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/smb_searchnotes/display.htm?note_langu=E¬e_numm=976682.
    HTH,
    Eddy

  • Creating new Data Source Error - Database connection Failed

    Successfully installed and configured 11.1.1.3.0. Planning and Essbase dev.
    Went to Workspace > Administer > Classing Planning Administration > Manage Data Sources > Create Data Source.
    Entered all info about the application database , etc. Getting error "The database connection failed" (I was able to connect with no problem during the install)
    SQL server 2005 is on the same physical server.
    The diagnostic tool shows database connection passed for planning. A new database was created for the new application.
    The server event viewer shows these errors.
    "Login failed for user 'xxx-hyperion'. The user is not associated with a trusted SQL Server connection."
    Group Policy Error "The client-side extension could not apply computer policy settings for 'Default Domain Policy {xxx}' because it failed with error code '0x80070003 The system cannot find the path specified.' See trace file for more details. "
    The Group Policy client-side extension Group Policy Services failed to execute. Please look for any errors reported earlier by that extension.
    Any help is appreciated.

    Datasource for the application.
    I have created a sql db for this planning application (my datasource). See my first message for more details.
    When you create a new planning application, you need to associate it with a data source. Since this is a new install, I don't have any data sources available yet.
    So, "To create, edit or delete data sources, click Manage Data Source."
    This page lets you validate your connection to the database and essbase server. My essbase server connection validates! The database connection does not validate after I enter all the relevant information.
    SCREEN INFO BELOW
    Fields displayed with an asterisk (*) are mandatory.
    Data Source Name *:
    Data Source Description:
    Select Database Platform
    Microsoft SQL Server
    Application Database
    Server * :
    Port * :
    Database *:
    User *:
    Password *:
    Click "Validate Database Connection"
    ERROR ---> Database connection failed.
    So it does not let me create a data source for my new planning application, so I cannot create a new planning application.
    Thanks in advance.

  • Possible to get notifications for new Mastered for iTunes albums?

    I notice that every so often a new album appears in the Mastered for iTunes section of the iTunes store. Does anyone know if there's a way to somehow subscribe to automatically get email notifications when new albums are added?

    Thanks Jorma for sharing this central page for all Help and Support related info about Adobe Connect.
    I, with help from Connect Support team, manage this page. I shall also reach out to the broader Connect team internally. We will share regular updates on this page.
    You may also want to keep an eye on http://www.adobe.com/support/connect/downloads-updates.html#connect-patches page, where all new patch are posted.

  • Processed cube sees no changes, but new data have been inserted..

    Simple AdwWorks cube has time dimension with years range from 2000-th to 2007-th. Fact data exists for 2001-2006. 2000-th and 2007-th are empty.  Ok. 
    I'm insert new data to source fact table for 2001-th  and process the cube. All changes immediately reflect in measure value (it grows). But new data for 2000-th don't reflect in measure value growing .  Nevertheless, during cube processing
    SSAS sees new rows for both cases (the value grows), and sql profiler catches equal batches of commands for  2001-th and 2000-th. But measure value grows only for 2001-th.
    I've clear mdx-script - it contains now only calculate command. Now there is:
    a) select sum(measure value) on fact tables in source database reflect new rows  for both cases
    b) cube processing sees changes for both cases
    c) mdx-script is clear (there are no scopes, witch can set measure value to null )
    d) select [sales amount] for cube reflect this changes only for 2001-th, not for 2000-th
    Any suggestions?
    ===========
    One day later.. :)
    The problem seems as resolved, but... I don't know: is it tech and/or logic feature or bug..
    So, what is happened.. Simple mdx query:
    select [sales amount] on 0,
    [some date from 2000] on 1
    from [cube]
    gives null value for [sales amount], but for [some date from 2001] value is not empty. In database fact table both values (results of sum(salesamount) for both dates) are not empty. After research i found that there was one measure ([Temp]) in the [sales amount]
    measure group for which MeasureExpression was set to [sales amount]*[average rate] ([average rate] - measure from [Fact Currency Rate] measure group). Fact table for [Fact Currency Rate] measure group didn't contain data for 2000-th. I've insert it and - vualya
    - all work and for 2000-th now. Main question is: why ssas calculate MeasureExpression formulas for measures, which I'm not request in a query, and why ssas set requested by me value to null, if it does not depend from formula of MeasureExpression property
    of unrequested measure? Is it bug or "defense from fool"?. There is another sample of such strange ssas behaviour. I mean usage of UnaryOperatorColumn property. If it is set for any attribute of any dimension, then it influences on every query, even
    if this attribute not is a part of this query. For example
    select [sales amount] on 0
    from [cube]
    returns different results, which depends by setting of UnaryOperatorColumn for some dimension attribute.. What all it mean?

    Hi Tkolomiewts,
    I have the following questions, which will help me in better understanding of your issue :
    1) Is [sales amount], a base measure or calculated measure?
    2) Are you using the default Adventure works database? 
    Regarding
    your other question about unaryoperatorcolumn for some dimension attribute affecting the results, lets use the following query that you mentioned:
    select
    [sales amount] on 0
    from [cube]
    This
    query doesnt pick only the measure value, but also fetches the "All" attribute for the all the dimension attributes. Hence, if the UnaryOperatorColumn influences the All attribute's value, then it will affect the results of the query above.
    Regards,
    Muthukumaran

  • Query returns data from previous month. Need to have it return data for the entire year

    This is the part of the query that returns data by month:
    (YEAR(`rereport`.`market_reports_5`.start_date) = YEAR(CURRENT_DATE - INTERVAL 1 MONTH)AND MONTH(`rereport`.`market_reports_5`.start_date) = MONTH(CURRENT_DATE - INTERVAL 1 MONTH))
    How can I get it to return data for the year.
    TIY

    How about omitting the MONTH part:
    (YEAR(`rereport`.`market_reports_5`.start_date) = YEAR(CURRENT_DATE - INTERVAL 1 MONTH)
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • How to update (add new data in different tab) existing table from Excel

    i've an existing table, for instance User Profile table, it consists of few tab in the table which contains different data... recently i've added new tab to the existing table and i would like to upload a particular data for this new tab... is there any way to upload (insert new data for the tab on existing data) this particular data into the existing table from Excel file?
    could it be done by using lsmw?
    Edited by: Yeong Kang Liew on Apr 5, 2010 4:35 AM

    Check HELP on MODIFY & UPDATE statements.

  • Best Approach to Compare Current Data to New Data in a Record.

    Which is the best approach in comparing current data to new data for every single record before making updates?
    What I have is a table with 5,000 records that need to be updated every week with data from a data feed, but I dont want to update every single record week after week. I want to update only records with different data.
    I can think of these options:
    1) two cursors (one for current data and one for new)
    2) one cursor for new data and one varray for current data
    3) one cursor for new data and a select into for current data.
    Thanks for your help.

    I don't recommend it over merge, but in theory you could use a checksum (OWA_OPT_LOCK.checksum()) on the rows and if they differ then copy the new row into the destination table. Or you might be able to use rowscn to see if things have changed.
    Like I said, I don't know that I 'd take either approach over merge, but they are options.
    Gaff
    Edited by: Gaff on Feb 11, 2009 3:25 PM
    Actually, rowscn between 2 tables may not be an option. I know you can turn a rowscn into a time value so if that rowscn is derived from anything but the column values for the row that would foil that approach.

  • I got the new iPhone5 back in Dec, I hooked it up to my computer for the 1st time this wk.  It deleted all new data added since Dec (notes,contacts,texts,pics, info in apps) and reverted back to all my old data.  How can I retrieve all the lost data??

    I got the new iPhone5 back in Dec, I hooked it up to my computer for the 1st time this wk.  It deleted all new data added since Dec (notes,contacts,texts,pics, info added to apps) and reverted back to all my old data (literally uploaded all of my old texts and 1400 old pics and deleted anything new).  How can I retrieve all the lost data?? Please help!!

    SkyDaughter29 wrote:
    My current situation: I have soooo many texts on my iphone and I haven't deleted many because I need the information contained in them for future reference and for legal purposes.  I would really like to find a means and way to save them other than on the phone itself. I've done searches for various apps yet I'm not finding what I think I would need.  It appears Apple does not sync the texts between the iphone and my MacBook Pro.
    Try the computer apps PhoneView (Mac) or TouchCopy (Mac & PC):
    http://www.ecamm.com/mac/phoneview/
    http://www.wideanglesoftware.com/touchcopy/index.php
    Best of luck.

  • As we are having a problem explicit with Adobe Reader 11.0.07, we are interested in news and dates for coming updates to Adobe Reader. Can I find information about this anywhere ?

    As we are having a problem explicit with Adobe Reader 11.0.07, we are interested in news and dates for coming updates to Adobe Reader. Can I find information about this anywhere ?

    Hello Claus,
    you could have a look here: http://helpx.adobe.com/security/products/flash-player/apsb14-13.html  and in german language http://www.chip.de/downloads/Adobe-Reader_12998358.html
    In all These cases Google could be "your friend".
    Hans-Günter

  • HT2589 On new Ipod touch 5 In billing info we put in card info and it comes back saying for assistance contact itunes support and won't let us continue.  What do we do so we can continue?

    On new Ipod touch 5th, in billing info we put in card info and it comes back saying "For assistance contact itunes support" and it wont let us continue. what do we do so we can continue?

    Do what it told you to do.
    Contact itunes support

  • When are retirement dates for certification MCITP: Enterprise Desktop Support Technician on Windows 7 and MCITP: Enterprise Desktop Administrator on Windows 7?

    Hi,
    So what's the current situation with the MCIPT certifications in Windows 7?
    MCITP: Enterprise Desktop Support Technician on Windows 7
    MCITP: Enterprise Desktop Administrator on Windows 7
    The certifications had previously been scheduled to retire in July 31, 2013.
    Then that deadline was extended and they were due to retire in January 31, 2014
    Presently, the certifications are listed on the ever unhelpful Microsoft Learning website
    MCITP page and the
    windows certifications
    page.
    In typical Microsoft Learning unhelpfulness there is a bland, confusing and uninformative statement saying
    "Most MCITP certifications will be retired by July 31, 2014. Please check the
    retired certifications and
    retired exams pages for specific retirement dates."
    Naturally, Microsoft aren't being specific about which MCITP certifications are being retired.
    To be more obstructive and confusing, us poor learners are invited to check the retired certifications page, which only lists certifications that have already retired,  for information about when a certification
    will retire in the future. I have seen this done repeatedly in this forum and on borntolearn.mslearn.net in reply to questions about future certificate retirement, which is totally useless and perhaps deliberately deceptive, as the exam aren't
    being discontinued and there's no info about future certification retirement.
    There has previously been actual helpful information on the Microsoft learning webpages with statements explaining that whilst in a transistion between the older style MCITP and newer MCSA certification for Windows 7, that both certification titles will
    be awarded until x date, when the MCITP will be retired and the MCSA will be awarded only. I can't see anything like that on the site at the moment.
    I'd be most grateful if
    anyone can link me to a Microsoft press release / blog / webpage that announced the scrapping of the January 31, 2014 deadline (as I must of missed this announcement)
    anyone can give an update on the current Microsoft thinking about when this certificate will retire? Especially any links to announcements.
    are both MCSA and MCITP certifications still being awarded?
    advise what's the best way of staying up to date with multiple changes to exam and certification retirement announcement? (apart from borntolearn, which is awful and again, just directs back to the retired exams/certifications pages)
    Many thanks everybody!
    edit: formatting and spelling

    Why choose a near retiring credential ?  
    * Have ever you applied for a job with keyword requirements ?  Employers can be (and have been) insanely specific. (Then again that sort of gatekeeping for employment usually guarantees a fresh batch of pathological liars are your applicants, but I digress.)
    * Also could be on a time deadline, e.g. contract bid requires x number of people to be certified, CompTIA requirement deadline could be arriving, and so on.
    * Taking 2K08 exams when working in a 2K08 environment is probably easier than jumping into the next version without any access to it (other than building your own virtual servers or labs).
    My current employer uses 2K08 not 2K12.  There are also 2K03 servers still in production (eventually being phased out). 
    I don't know what the stats are today but (in 2012) 2K08 was leading over 2k12 in market share.  
    I thought that's what truly drives these exams' and certification's availability.

Maybe you are looking for

  • SIR PLZ HELP ME

    SIR..PLZ...HELP ME...MY I PHONE4 HAS BEEN stolen AND ITS switch off....CAN I GET BACK......PLZ ANS ME.......

  • How to pause script until

    i have a script that is used to convert avchd files to qt formats. it's got a problem, though, in that it moves from the currently converting file to the next file too quickly. i thought i'd solved this behaviour by including a routine that caused th

  • SMP 3.0 support for Windows Mobile 8

    Hi All,      Since KAPSEL is not directly supporting Windows Mobile 8, can use the below defined development paradigam? SMP 3.0 ==> OData based application ==> Cordova hybrid application ==> windows mobile 8 with native features access Also Does SMP3

  • Upgrading from 10.2 and 10.3.9

    My iMac has OS X 10.2 and my Powerbok has 10.3.9. Can I upgrade to 10.5 or do I need to install the previous versions?

  • Ajax call in portal

    Hi All, I am trying to make an AJAX call using XMLHTTPRequest object like this XmlReq.onreadystatechange = HandleResponse; myURL = "AjaxServerPage.aspx";                refreshURL = "<pt:url pt:href='"+ myURL + "'/>";       XmlReq.open( "GET", refres