Is it possible to join up-to-date program outside US (from Poland/Europe)

I've bought my macBook Pro two weeks ago from iSpot store in Poland. Is it possible to upgrade my OS to Lion for free?

Hey, see my answer there, same procedures but for your country. https://discussions.apple.com/thread/3193049

Similar Messages

  • Is it possible to detect change of date and/or resume from standby?

    Hallo you all,
    in our current project we have a java remote application and a server application connected via GPRS.
    Both client and server must have a system time sinchronized with a tolerance of maximum 15 minutes.
    The problem has been solved simply making a datetime check during login: server sends it's current datetime
    to client and then client make the time check. All right.
    The problem is that after login the user (on client app) is able to change the system time and then... the sinchronization is lost!!
    My first solution: I have a background thread that each 5 seconds make a time check: if in two consecutives checks
    the difference is greater that 15 mins then I assume the the user has changed the system datetime and I raise a non recoverable exception
    and the client aplication is closed.
    Problem: if the system goes in stand by (laptop or hand held device) then at resume I have a time difference that can be greather than 15 mins.
    Question: is there a way to understand if system wake up from stand by or if a system time has been changed?
    In my tests the case of system date change and the case of sysm resume from stand by are identical from point of view value of Java current date.
    I found no real to this question...
    Thanks in advance,
    Franco.

    It sounds like you're trying to synchronize multiple system clocks.
    Why not using an existing solution such as NTP for this?
    It sounds as if your application is trying to do many things at once.

  • Join two unrelated data sources

    Is it possible to join two unrelated data sourcesin OWB, if yes, how?
    The closest which comes to my mind is union (outer join) thru two proxy expressions with redundant column holders for reciprocal columns.
    But I am thinking, above would lead to excessive wastage.
    So is there a better way possible.
    Rgds,
    Deepak

    Deepak,
    I think there are 2 different things you are trying to achieve:
    1) With a grand total, something along the lines of:
    select emp1.empno
    , emp1.ename
    , count(emp2.empno) count_empno
    from emp1
    , emp2
    This query will retrieve a grant total, and because there is no relationship, you do not need a join condition. You do access the emp table twice.
    OWB would implement this like:
    select emp1.empno
    , emp1.ename
    , (select count(emp2.empno) from emp2) count_empno
    from emp1
    The other thing you seem to like to implement is a join on the customer_id, or similar for the simplified example, say on deptno in the emp table:
    select emp1.empno
    , emp1.ename
    , sum(emp2.sal) dept_sal_sum
    from emp1
    , emp2
    where emp1.deptno = emp2.deptno
    group by emp1.empno
    , emp1.ename -- this does not add anything, but...
    Again, the way OWB would implement this (something similar):
    select emp1.empno
    , emp1.ename
    , (select sum(emp2.sal)
    from emp2
    where emp2.deptno = emp1.deptno
    ) dept_sal_sum
    from emp1
    group by emp1.empno
    , emp1.ename -- this does not add anything, but...
    Anyway, so the way you would create this is by using the same source multiple times, include the aggregates and put in the join conditions appropriately.
    Hope this makes sense... and addresses the issue.
    Mark.

  • CV04N: Is it possible to JOIN TREX fulltext search with other data ?

    Dear DMS gurus.
    ...in CV04N.
    Is it possible to JOIN a TREX fulltext search with other data (e.g. document data, classification characteristics, object links,...) ?

    Dear Erik
    Thanks for the good piece of Information you have shared.
    Regarding the OSS note 1332745 it clearly says that
    "SAP PLM Consulting integrated the TREX technology into the central search components of SAP DMS.
    Searchable content:
    - Main DMS attributes (e.g. document number, status or descriptions)
    - Long texts
    - Classification Data
    - Originals (e.g. full text search on PDF, Excel or Word documents)
    - Customer-specific content (e.g. append fields of DRAW, own tables, ...)"
    In Think you should check this link
    "https://www.sdn.sap.com/irj/scn/wiki?path=/display/plmcs/sapPLMConsultingSolutionsII"

  • Possible to join multiple internal tables ?

    Is it possible to join internal tables like this:
    itab1:
    fields are matnr f1 f2
    itab2:
    fields are matnr f3 f4
    itab3:
    fields are matnr f5 f6
    required final-itab:
    fields are - matnr f1 f2 f3 f4 f5 f6
    (which are joined by matnr)
    Thanks.

    Ok, then we need to take all three ITABs and get all of the MATNRs into another internal table, then loop at this internal table and read the records for ITAB1, ITAB2, and ITAB3.
    data: begin of imatnr occurs 0,
          matnr type mara-matnr,
          end of imatnr.
    loop at itab1.
      imatnr-matnr = itab1-matnr.
      collect imatnr.
    endloop.
    loop at itab2.
      imatnr-matnr = itab2-matnr.
      collect imatnr.
    endloop.
    loop at itab3.
      imatnr-matnr = itab3-matnr.
      collect imatnr.
    endloop.
    Loop at imatnr.
    clear final_itab.
    final_itab-matnr = imatnr-matnr.
    clear itab1.
    read table itab1 with key matnr = imatnr-matnr.
    if sy-subrc = 0.
    final_itab-f1 = itab1-f1.
    final_itab-f2 = itab1-f2.
    endif.
    clear itab2.
    read table itab2 with key matnr = imatnr-matnr.
    if sy-subrc = 0.
    final_itab-f3 = itab2-f3.
    final_itab-f4 = itab2-f4.
    endif.
    clear itab3.
    read table itab3 with key matnr = imatnr-matnr.
    if sy-subrc = 0.
    final_itab-f5 = itab3-f5.
    final_itab-f6 = itab3-f6.
    endif.
    append final_itab.
    endloop.
    REgards,
    Rich Heilman

  • PREDICTION JOIN OPENQUERY against data source view does not work

    Hi,
     I am trying to follow the example in this link:
    http://technet.microsoft.com/en-us/library/ms132031.aspx
    to do a prediction join with a table defined in a data source view of our cube/mining structures.  No matter how I specify the table in the OPENQUERY statement I get: "OLE DB error: OLE DB or ODBC error: Invalid object name 'DataSourceView.dbo.TableName'.;
    42S02."  I've tried specifying the table name in 1, 2, and 3 parts, with and without the '[]' brackets but get the same error every time.  I thought something might be wrong with the table in the DSV so tried putting other tables in the query,
    but that produces the same error.  Any ideas on the problem?
    SELECT FLATTENED
            t.[Column1],
            t.[Column2],
            t.[Column3],
            PredictTimeSeries([ModelName].[Column3],5)
    From
      [ModelName]
    PREDICTION JOIN
      OPENQUERY([DataSourceView],
        'SELECT
            [Column1],
            [Column2],
            [Column3]
        FROM
          [DataSourceView].[dbo].[TableName]
        ') AS t
    ON
            [ModelName].[Column3] = t.[Column3]
    OLE DB error: OLE DB or ODBC error: Invalid object name 'R Staging.dbo.TestSet'.; 42S02."

    I want to be able to query a data source view table/named query.  This TechNet article seems to imply it is as simple as running the following in a DMX window:
         OPENQUERY ([MyDatasourceView],'select Column1 from DataSourceTable')
    I've also tried:
         select * from OPENQUERY ([MyDatasourceView],'select Column1 from DataSourceTable')
    Both result in:
        "Query (1, 1) Parser: The syntax for 'OPENQUERY' is incorrect."
    Can we query a DSV table from a DMX query directly with OPENQUERY, or does the OPENQUERY only work within a PREDICTION JOIN?  Seems like such a simple case for it not to work.
    Following the example in this article:
    http://technet.microsoft.com/en-us/library/ms132173.aspx

  • Is it possible to sync time capsule data to a external hard drive

    Is it possible to sync time capsule data to a external hard drive connected to time capsule via usb. (as an precaution just incase time capsule fails)
    Thanks

    Yes, if the USB drive has been previously formatted correctly in Mac OS Extended (Journaled) format.
    Open AirPort Utility - Click Manual Setup
    Click the Disks icon
    Click the Disks tab below the icon
    Click Archive
    Allow plenty of time for the copy process to occur. You will not be able to make Time Machine backups from your Mac until the Archive process has completed.

  • I recently lost my iphone 4 and have an iphone3 on loan until I get upgrade in Aug.  I want to sync my data - contacts most important  - from my itunes account...is this possible?  Is it possible to change the user ID on the borrowed phone to my ID?

    I recently lost my iphone 4 and have an iphone3 on loan until I get upgrade in Aug.  I want to sync my data - contacts most important  - from my itunes account...is this possible?  Is it possible to change the user ID on the borrowed phone to my ID?

    There are no contacts in itunes.
    Your contact should be on your computer in whatever program you have selected to sync.  Just sync them to the new one.
    Click Support at the top of this page, then click manuals
    Changing the itunes account on nthe iphone is covered there as is restoring the iphone as new or from backup.

  • In RSRT - Is it possible to check request wise data in RSRT only.

    Hi,
    In RSRT - Is it possible to check request wise data in RSRT only.
    Kindly advise me on the same.
    Thanks
    Bujji

    Saveen,
    Here is my problem.
    I have a infocube in which Material No and Base Unit are there.
    I have a DSO in which Material, (Alternate unit, Numerator and Denominator) which are associated to that material are there .
    I need to match the same material number from both infocube and DSO and load the associated Alternate unit, Numerator and denominator in the infocube.
    Since the infocube is non cumulative, I am not able to build Infoset.
    So I added the Infoobjects of (Alternate unit, Numerator and Denominator) to the cube.
    Now the cube has Material no, base unit-------For Both data is filled.
             and extra Alt unit, Numerator and Denominator- For these data empty.
    I need to load the alt unit Numerator and denominator from the DSO for which the Material no matches with the Infocube.
    I am not very good in explanation.Hope u understand. Pls adjust with the long text...
    Pls help me.
    Thanks.
    Guru

  • If possible can i show todays date on my mac book pro screen?

    if possible can i display todays date on my mac book pro's screen

    I use my Date&Time in the MenuBar to show day-of-the-week and time with AM/PM, and flashing time separator as a check against system hangs.
    If the Calendar application is showing in the Dock, it will display the number of today's date in its Icon. As far as I can tell, you do not need to have EVER run Calendar to have it automatically update its Icon from the default 17 to the current day-number.

  • Is it possible to sort folders by date that is written in the folders name? eg. folders are named 26 May 2011 and so on

    Hi,
    Question as in the topic: Is it possible to sort folders by date that is written in the folders name? eg. folders are named 26 May 2011 and so on
    Thanks
    Karol

    I sort mine 5.1.11, 5.2.11, etc. - that works (adding letters to the numerals does not work as well). Starting with the month will also work better because there are only 12 of them (rather than a repetition of days).

  • Is it possible to set an opening date for a password protected file

    Is it possible to set an opening date for a password protected file!
    I want to lock a folder and then have it open on a perticular date not just open with a password so that i am not tempted to open it. Is it possible?

    Yes. Go to the Settings app, and select safari. There will be a section called "Autofill", and you can enable it to save your passwords and auto-fill your personal information taken from the address book. Also, iOS automatically saves all Wi-Fi passwords, so there is no need to save it manually yourself.

  • Possible to Join Two Mono Tracks to Stereo, Or Change Panning of a Stereo?

    In the new Garage Band 11, is it possible to Join Two Mono Tracks to Stereo, or Change the Panning of a Stereo track, or split a stereo track into two mono files?
    Sometimes it would be convenient when I have a lot of tracks to combine two mono tracks into one stereo track to eliminate an additional track.
    Also, I find that I often want to change the panning of a stereo track to either make it wider, or merge the two channels, even reverse L&R. If no way to change the panning of a stereo track can a stereo track be split into two mono tracks to be panned differently?

    Woodwyn wrote:
    is it possible to Join Two Mono Tracks to Stereo
    only by exporting the two tracks
    or Change the Panning of a Stereo track
    you can pan a stereo track in every version of GB with the pan knob
    or split a stereo track into two mono files?
    indirectly:
    http://www.bulletsandbones.com/GB/GBFAQ.html#stereotomono
    (Let the page FULLY load. The link to your answer is at the top of your screen)
    want to change the panning of a stereo track to either make it wider, or merge the two channels
    that's different. no, you'd have to split the track into two mono files as described above.
    even reverse L&R.
    same answer

  • Is it possible using SQLite to collect data from an older SQL database?

    Is it possible using SQLite to collect data from an older SQL database? Where can I find a possible answer. Thanks in advance.

    There are 3rd-party tools (see comprehensive list at http://www.kenhamady.com/bookmarks.html) that provide extra pdf functionality on top of the pdf export from Crystal. 
    In the case of my Visual CUT software, you can use hidden formulas inside your Crystal report to generate form fields (pre-populated as well as empty) as part of the pdf export process.
    hth,
    ido

  • Is it possible to change a master data key ?

    Hi Experts,
    i'd like to know if it is possible in any way to change/update the key of a master data table.
    Reason: All of our projects have a certain nomenclature. Now I realized one project that does not follow that nomenclature and would like to change it accordingly (0PROJECT -> /BI0/PPROJECT).
    The connection to the cubes is through SIDs, therefore I cannot remove the current record in the master data table and create a new (the correct) one.
    I also cannot reload the cube after I possibly had changed the master data table.
    For me, the simpliest would be to just update the key portion in /Bi0/PPROJECT and I think modern database systems would allow this (we are running BI on top of DB2), but may be I'm wrong.
    I tried the update in the maintenance dialog in RSA1. Stupid enough it allows me to change the key and even the subsequent Save would work. However, by opening the table afterwards again, the old (worng) values are displayed again.
    Would someone know how this could work ?

    Hi,
    Are you trying to change the value  of a master data key for a particular record in the P table?
    if this is your requirement, then the answer is NO. i don't think so..changing it manually doesn't help you.
    I suggest you to load the same record from your source system with new master data key value and all other attributes with the same data as the old record.
    Now you will have two records in your P table( one with the old value and another with the new one)
    There is no harm in having the old record in your P table...deleting of any master data is risky and not appreciable ( but possible)
    You need to use this new master key value in your transaction loads which will intrun connect to the master data using SIDs
    By using the new value in your transaction loads, the old one will not visible in any of your reports...but will just sit in the P table with no use, which is still fine for you.
    However, to laod this new value (in both master and transaction data) you need to get in touch with the functional team.
    Modifying the data manually in BI/BW ( Unless there is an invalid data from source to PSA) will lead to inconsistencies and reconciliation issues. - NOT Advisable
    Regards,
    Sudheer
    Edited by: Sudheer Kumar Kurra on Jan 26, 2011 7:21 PM
    Edited by: Sudheer Kumar Kurra on Jan 26, 2011 7:24 PM
    Edited by: Sudheer Kumar Kurra on Jan 26, 2011 7:54 PM

Maybe you are looking for

  • Dynamic Creation of UI Elements

    Hi, Can anyone help me to create a DropDownByIndex and CheckBox dynamically in the Implementation tab of a View. Also I am not able to insert values into the dropdown. If someone send the code it would be very helpful Thanks Kalyan

  • Help about ESS/MSS - Deploy error and landscape question

    Hi. I read a lot of post about this topic, but I continue something confuse about them. I want to configure ESS and MSS. My landscape is: -  J2EE 7.0 with Portal 7.0 (2004s) in a server “A”. - ECC 5.0 ( with HR component SP05) in a server “B”. Server

  • Help on e/m cord

    Dear sir, iam having cisco 2821 router and VIC2-2E/M cord ,so plz give me some examples of configuration. Thanks&Regards srini

  • Implementing VC to old system

    Hi Everybody Is there anybody have experience in such case as below. - What should we take care of when we implement the variant configuration to the old system(SAP)       which has already run for years.      For instance: How about the current stoc

  • OSS note: 99422

    can anyone send me the OSS note: 99422 thanks [email protected]