Dimension Attribute not related to the key directly or indirectly.

I am running into an issue when trying to relate two fact tables to a dimension using two different attributes.  Due to the design of the tables I must join from my fact tables to intermediate tables in order to join to the dimension table.  The
problem is the fact tables use different intermediate tables to join to the final dimension table.
For example: FactTable1-->IT1-->DimensionTable<--IT2<--FactTable2
The  intermediate value from the first table is a foreign key to the dimension table and the intermediate value from the second table is also it's own foreign key to the dimension table.
Below is some test code to put my problem into SQL.  It's simple enough to join them together but I cannot for the life of me figure out how to properly set up the relationships between attributes in SSAS.
CREATE TABLE dbo.FactTest1(
FactTest1Id Int Identity,
IT1Id INT)
CREATE TABLE dbo.IT1(
IT1Id INT IDENTITY,
DimId1 INT)
CREATE TABLE dbo.Dim(
DimId INT IDENTITY,
DimId1 INT,
DimId2 INT,
Description VARCHAR(50))
CREATE TABLE dbo.IT2(
It2Id INT IDENTITY,
DimId2 INT)
CREATE TABLE dbo.FactTest2(
FactTest2Id Int Identity,
IT2Id INT)
INSERT dbo.FactTest1
SELECT 1
UNION
SELECT 2
UNION
SELECT 3
INSERT dbo.IT1
SELECT 10
UNION
SELECT 20
UNION
SELECT 30
INSERT dbo.FactTest2
SELECT 1
UNION
SELECT 2
UNION
SELECT 3
INSERT dbo.IT2
SELECT 40
UNION
SELECT 50
UNION
SELECT 60
INSERT dbo.Dim
SELECT 10,40, 'Atrribute1'
UNION
SELECT 20,50, 'Attribute2'
UNION
SELECT 30,60, 'Atrribute3'
SELECT *
FROM dbo.FactTest1 ft
JOIN dbo.IT1 it
ON ft.IT1Id = it.IT1Id
JOIN dbo.Dim dim
ON it.DimId1 = dim.DimId1
SELECT *
FROM dbo.FactTest2 ft
JOIN dbo.IT2 it
ON ft.IT2Id = it.IT2Id
JOIN dbo.Dim dim
ON it.DimId2 = dim.DimId2

It depends on the cardinality between the two Fact Tables and intermediate tables. If they are 1 to 1  relationships then you can simply create a view of the fact and intermediate table and then create a direct relationship to the dimension. A more
efficient solution would be to alter your ETL to just insert the appropriate dimension key directly into the fact table instead of using the intermediate ID.
You can join fact tables to dimensions at different levels of granularity. eg you could join one fact table to a date dimension at the day level and another at the month level. You just have to consider what you want to happen to the monthly data when viewed
at a daily level, you can either repeat the monthly value or display a blank or look at overriding the value with some sort of calculation.
If the relationship between the facts and intermediate tables is many to many then there is an excellent white paper called the "Many to Many Revolution" which shows all the different ways in which many to many relationships can be used in SSAS.
http://darren.gosbell.com - please mark correct answers

Similar Messages

  • REP-52005: The specified key userlogin does not exist in the key map file.

    Hi,
    I am using oracle 11g report server. I am getting the error of REP-52005: The specified key userlogin does not exist in the key map file.
    I updated the user_string in cgicmd.dat file. My cgicmd.dat file content is below
    ; OracleAS Reports Services                       ;
    ; CGICMD.DAT                                      ;
    ; Example CGICMD.DAT Mapping file                 ;
    ; Syntax: 
    ;      KEY : VALUE
    ; Where:
    ; KEY - the first argument of the rwservlet URL request (case sensitive).
    ; VALUE - command line parameters and/or special parameters.
    ; Keys can be referenced in the following ways:
    ;    1. Parameter on command line to the reports servlet
    ;          e.g. http://machine/servlet/rwservlet?KEY
    ;    2. Parameter on command line to a reports jsp
    ;          e.g. http://machine/mydir/myreport.jsp?KEY
    ;    3. Within a reports jsp - in the rw:report custom tag
    ;          e.g. <rw:report parameters="KEY">
    ; In addition to the Reports Server command line parameters, VALUE can include special parameters
    ; represented as "%X", where X identifies the parameter. Currently recognized special
    ; parameters:
    ;  %0 - %9 - 0..9 arguments from original rwservlet URL request. Note that %0 refers to the key itself.
    ;  %* - entire contents (all arguments) of original rwservlet URL request.
    ;  %D - request users to input database userid everytime they run the report.
    ;  %P - request for report parameter form in HTML format. It generates the PARAMFORM=HTML
    ;       construction on the first submission of the URL and PARAMFORM=NO upon parameter form submission.
    ; CGICMD.DAT Usage Notes
    ;   1. Multiple keys in this file MUST be separated by an EXTRA empty line.
    ;   2. Extra spaces are ignored. Multi-line entries allowed.
    ;   3. Lines starting with ";" character are treated as a comments.
    ;   4. Comments within a key or key value are NOT allowed.
    ;   5. NLS language support is provided and can be used (encoding should match the one
    ;      used in HTML request - no language conversion of any kind is attempted.
    ;   6. For %P special parameter, HTML format is by default mapped to the HTMLTABLE format in this release.
    ;      The HTML format in the future may be mapped to the HTMLCSS format.
    ;;;;;;;;;;;; Example Key Entries
    ;  Example 1:  Run a simple breakb report and output to HTML
    orqa: report=breakb.rdf destype=cache desformat=html server=repserver
    ; Example 2: prompt for userid the first time, then use database userid stored in the cookie subsequently.
    report_defaultid: report=breakb.rdf destype=cache desformat=html server=repserver
    ; Example 3: use %D to require user authentication every time
    report_secure: report=breakb.rdf destype=cache desformat=html server=repserver1 %D
    ; Example 4:  Take all arguments from URL and send it to the reports server
    run: %*
    ; Example 5:  Run breakb report with HTML parameter form.
    breakbparam : report=breakb.rdf destype=cache desformat=html server=repserver userid=scott/tiger@mydb %P
    ; Example 6: take all URL arguments, and also generate a HTML parameter form  
    runp: %* %P
    ; Example 7: Run an Express Report. Replace <MYHOST> with the name of the machine running the Express server. The
    ; builder on-line help explains the rest of the parameters (the /sl, st etc. etc.)
    express: report=my_expr_rep express_server="server=ncacn_ip_tcp:<MYHOST>/sl=1/st=1/ct=0/sv=1/" desformat=htmlcss userid=scott/tiger@mydb destype=cache server=repserver
    ;;;;;;;;;;;; Keys for Reports Demos
    ; Using default/in-process server.
    ; JSPs
    ;charthyperlink_ias: userid="scott/tiger@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=%DBHOSTNAME%)(PORT=%DBPORT%))(CONNECT_DATA=(SID=%DBSID%)))" %*
    ;charthyperlink_ids: userid=scott/tiger@ %*
    ;barcodeweb:         userid=oe
    ;parmformjsp:        userid=oe
    ;tutorial:           userid=oe
    ; Paper Reports
    ;xmldata:            userid=oe report=inventory_report.rdf destype=cache p_filelocation="http://%HOSTNAME%:%OC4JPORT%/reports/examples/xml_pds/scripts/" desformat=pdf
    ;barcodepaper:       userid=oe report=shippingmanifest.rdf destype=cache desformat=pdf
    ;distributionpaper:  userid=oe report=inventory_report_dist.rdf distribute=yes destination=exampledistribution.xml
    ;pdfenhancements:    userid=oe report=utf8test.rdf destype=cache desformat=pdf
    userlogin : userid=SYMFINBTOTEST@fin10r21 %*
    As in the above file i have added a key as userlogin at the end of the file. But the reports server does not take the key that i have given. I followed the same steps provided in oracle docs. I used "showmap" to check the cgicmd file that is used by the reports
    http://aspirevm8-17.aspiresys.com:9002/reports/rwservlet/showmap?server=bluQubeReportsAtLocalEnv&destype&userid=SYMFINBT…
    It shows me the content of the cgicmd.dat file and it also shows my updations. But in the "Parsed Map File Entries" it does not show my key value pair
    Parsed Map File Entries
    Return to Top
    Key Name
    Value
    runp
    %* %P
    breakbparam
    report=breakb.rdf destype=cache desformat=html server=repserver userid=scott@mydb %P
    report_defaultid
    report=breakb.rdf destype=cache desformat=html server=repserver
    run
    report_secure
    report=breakb.rdf destype=cache desformat=html server=repserver %D
    express
    report=my_expr_rep express_server="server=ncacn_ip_tcp:<MYHOST>/sl=1/st=1/ct=0/sv=1/" desformat=htmlcss userid=scott@mydb destype=cache server=repserver
    orqa
    report=breakb.rdf destype=cache desformat=html server=repserver
    Please help me to to make the key being populated here and being used by the reports server.
    Thanks,
    Priya

    uncomment #KEYPMAPFILE=CGICMD.DAT. remove the #
    then for development set
    reloadkeymap=yes (same file - rwservlet.properties).
    Now it should reload everytime. (otherwise for every change u need to restart oc4j_bi_forms)
    (For * production* may be you want to set reloadkeymap=no once all testing is done)
    see cgicmd.dat for many examples of using keymap file
    [ All Docs for all versions ]
    http://otn.oracle.com/documentation/reports.html
    [ Publishing reports to web - 10G ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [ Building reports - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [ Forms Reports Integration whitepaper 9i/10g ]
    9i - http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    10g - http://www.oracle.com/technology/products/forms/pdf/10g/frm10gsrw10g.pdf
    http://www.oracle.com/technology/products/forms/techlisting10g.html
    ---------------------------------------------------------------------------------

  • Processed Dimension IDs not saving in the backend server

    Hi Experts,
    After successfully processing dimensions, the newly added dimension IDs or the changed dimensions are not reflecting in the backend BI server. And naturally not in the Office client.
    I have checked logs in SLG1, couldnt find issue. Checked dumps, nothing particular found.
    Checked the .NET server as well, no problems.
    We are on SAP BPC 7.5 NW SP09.
    Any idea why this could be happening?
    Best Regards,
    Sayan

    Hi Sabine,
    I checked the log files earlier itself on the server but they didnot help. Last updates in the files were from November.
    What i have found today is, after i tried to process the dimensions for mutiple times, they finally got processed in the backend as well. I was checking in SM66, every time processes were triggered for BPC_ADMIN in the backend, when i started processing.
    But when i went to SLG1, there were entries with grey status (not processed) for same master data object and subobject 'master data update'. Since they are dialog process i could not any further entry from where i could find why they were not processing.
    Any idea? Thanks again for your patience with the responses
    Best Regards,
    Sayan

  • REP-52005: The specified key rep_drill does not exist in the key map file.

    Hi
    I am using Forms and reports version 11.1.1.4.0
    Weblogic 10.3
    I wanted to create a drilldown report
    I have modified the cgicmd.dat file in the below location
    C:\ORACLE\Middleware\user_projects\domains\CL2DOMAIN\config\fmwconfig\servers\WLS_REPORTS\applications\reports_11.1.1.2.0\configuration\cgicmd.dat
    by adding the below line to the end
    rep_drill: userid=JOE/JOE123@JOEDB server=rep_wls_reports_dsv-002_2inst desformat=pdf destype=cache paramform=no %*
    restarted the reports server
    In CUSTOMERS.RDF I have placed a link on the customer field using the below code
    SRW.SET_HYPERLINK_ATTRS('TARGET="_new"');
    SRW.SET_HYPERLINK('http://192.168.1.1:9002/reports/rwservlet?rep_drill+report='||'CUSTOMERS.rep+P_CUCODE='||CHR(39)||:CS_CUSTOMER||CHR(39));
    There are so many parameters passing to the report JOBS.RDF
    When I run the report and click on the link it gives me an error
    "REP-52005: The specified key rep_drill does not exist in the key map file."
    When I replace the rep_drill in the link with
    userid=JOE/JOE123@JOEDB+server=rep_wls_reports_dsv-002_2inst+desformat=pdf+destype=cache+paramform=no
    the report work perfect
    Can somebody help me please

    I said
    REPORTS_URL value:
    http://appserver4.rockefeller.edu:7777/reports/rwservlet?report=
    It looks like you did the following:
    REPORTS_URL value:
    http://appserver4.rockefeller.edu:7777/reports/rwservlet?report=test.rdf
    Try removing the test.rdf.
    Anton
    p.s. If you want some detailed help with integrating Apex and Reports, you can contact me offline here: http://concept2completion.net/c2/f?p=9876:20

  • 11gR2- REP-52005: The specified key userlogin does not exist in the key map file.

    hi,
    i am getting this error "REP-52005: The specified key userlogin does not exist in the key map file." when running report using url
    http://myserver.com/reports/rwservlet?userlogin&report_server&report=myreport.jsp....
    i have added the key mapping entry in cgicmd.dat file with the name userlogin
    as
    userlogin: userid=scott/tiger@devdb %*
    report_server: server=cluster_reports %*
    but still this error,

    uncomment #KEYPMAPFILE=CGICMD.DAT. remove the #
    then for development set
    reloadkeymap=yes (same file - rwservlet.properties).
    Now it should reload everytime. (otherwise for every change u need to restart oc4j_bi_forms)
    (For * production* may be you want to set reloadkeymap=no once all testing is done)
    see cgicmd.dat for many examples of using keymap file
    [ All Docs for all versions ]
    http://otn.oracle.com/documentation/reports.html
    [ Publishing reports to web - 10G ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [ Building reports - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [ Forms Reports Integration whitepaper 9i/10g ]
    9i - http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    10g - http://www.oracle.com/technology/products/forms/pdf/10g/frm10gsrw10g.pdf
    http://www.oracle.com/technology/products/forms/techlisting10g.html
    ---------------------------------------------------------------------------------

  • REP-52005: The specified key replabel does not exist in the key map file.

    Hi,
    I am using oracle 11g report server. I am getting the error of REP-52005: The specified key replabel does not exist in the key map file.
    I updated the user_string in cgicmd.dat file but of no use. Plese kindly help me on the same.

    uncomment #KEYPMAPFILE=CGICMD.DAT. remove the #
    then for development set
    reloadkeymap=yes (same file - rwservlet.properties).
    Now it should reload everytime. (otherwise for every change u need to restart oc4j_bi_forms)
    (For * production* may be you want to set reloadkeymap=no once all testing is done)
    see cgicmd.dat for many examples of using keymap file
    [ All Docs for all versions ]
    http://otn.oracle.com/documentation/reports.html
    [ Publishing reports to web - 10G ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [ Building reports - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [ Forms Reports Integration whitepaper 9i/10g ]
    9i - http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    10g - http://www.oracle.com/technology/products/forms/pdf/10g/frm10gsrw10g.pdf
    http://www.oracle.com/technology/products/forms/techlisting10g.html
    ---------------------------------------------------------------------------------

  • Convert a catalog form PSE 7 to PSE 13 : Conversion works, but images are not related to the catalog anymore so you have to connect each single picture !!! How can I get the right relation automatically ?

    My images are not related to the converted catalog, only preview works, tags and other information is given, but the (network) path to the original images is missing and is substituted by a local path with c:\. How can I solve the problem automatically ?

    I actually need to apply this to at least a couple different layouts. Two exampled below (The outlined boxes are text areas, the black boxes where the product images will go.)
    I prefer InDesign5, but I have 6 too.

  • SSAS Date Dimension attribute not displaying all members when browsed singly

    I have an SSAS Cube database that holds data from 2009 to 2013 (5 years)
    There is a Date Dimension in the database which holds a "Calender Period" Hierarchy with the attributes CalenderYear >> Quarter >> MonthYear >> Day .
    I am connecting to the cube via Microsot EXCEL
    Whenever i try to browse this hierarchy alone in the spread sheet, the first attribute as per the hierarchy shown above i.e. Calender Year does not display all the members, that is confusing the users to assume that the cube is not processed with the latest
    data, which is not the case. However as soon as i try to browse any measure with this dimension, the data automatically shows for the latest dates of 2013 as per the expectations.
    The perspective that is selected while connecting to the Cube in this case is the one that is by default the one including all the Cube Objects.
    Whenever i try to browse the same cube for the same Dimension Hierarchy but in a separate user perspective i get the latest three Calender Years i.e. 2011,2012 and 2013 but not the complete years 2009 to 2013.
    When i was browsing this earlier by the original base perspective (which has all the cube objects visible) the Calender Years displayed were 2009,2010,2011&2012 but not 2013 which should be there.
    I checked the base view in the DB that is used to create this Dimension, that is fetching the complete data for 2009 to 2013.
    I have also verified that this issue is still there if i try to browse the cube from the SSMS.
    Can anyone help me to get all the years from 2009 to 2013 (the years for which my cube has data) become visible as soon as i drop it alone into the Spreadsheet?
    Thanks 
    Suvrat

    Thanks for your response Muthukumaran.
    I did not know about this default measure property of the SSAS cube, it would be nice if you could also tell me how to check which is the default measure for a cube.
    I understand your point that if a particular measure group does not have data for a year then that particular year will be skipped as per the default excel settings, which when disabled allowed all the years to be displayed, but in that case every time the
    users connect to the cube via excel, they will have to configure this property.
    I would like to share the way i resolved this issue:
    I went ahead and simply did a Process Full for the Date dimension. The years started to display by default as per the expectations. Now after observing this change, as per my understanding I believe this issue was due to the CACHE of the cube not being updated
    for the date dimension. As after each incremental load of the DWH we processed the cube & while processing the cube the dimensions were set for a Process Update and the Measure Groups were set for a Process Full. This caused this issue, and we could resolve
    this once the Date Dimension was processed full.
    Thanks
    Suvrat Rai

  • Site not going in the right direction?

    Good day all!
    Got a little problem! Hear's one of my sites>
    http://www.winterslippers.com
    go hear all looks to be ok right? NO! There is spoused to be some
    flash elements on the home page! So this is what is spoused to
    happen! You type in the addie and you get taken right hear!>
    http://www.winterslippers.com/Library
    and if you go hear you'll see the flash elements working just fine!
    Now I know this is the issue because there is another 15 sites
    related to us and our server went through a bit of an update and
    after this happened whenever we type in another of our url's we get
    taken to "www.blablabla.com/
    Library" and all the flash works fine for the them apart
    from two sites the one I've talked about here and another.
    Why not just ask our server for help I hear you all screem at
    your moitors??
    Well they are very good at fixing the problems I throw at
    them... but they can take a very long time to get back to me. So
    far I've been waiting two weeks for a replay.
    So if anyone could point me in the right direction that would
    be just super douper great (bit weird!)
    Thanks all!!

    >>>spoused
    supposed
    >>>addie
    URL
    >>>moitors
    monitors
    corse i cud be wrong
    Jo
    "Walt F. Schaefer" <[email protected]> wrote in
    message
    news:f1am9g$tv$[email protected]..
    >>>spoused
    >>>addie
    >>>moitors
    >
    > HUH?
    > --
    >
    > Walt
    >
    >
    > "satrop" <[email protected]> wrote in
    message
    > news:f1ahng$oh7$[email protected]..
    >> Good day all!
    >>
    >> Got a little problem! Hear's one of my sites>
    >>
    http://www.winterslippers.com
    go
    >> hear all looks to be ok right? NO! There is spoused
    to be some flash
    >> elements
    >> on the home page! So this is what is spoused to
    happen! You type in the
    >> addie
    >> and you get taken right hear!>
    http://www.winterslippers.com/Library
    and
    >> if you
    >> go hear you'll see the flash elements working just
    fine! Now I know this
    >> is the
    >> issue because there is another 15 sites related to
    us and our server went
    >> through a bit of an update and after this happened
    whenever we type in
    >> another
    >> of our url's we get taken to "www.blablabla.com/
    Library" and all
    >> the
    >> flash works fine for the them apart from two sites
    the one I've talked
    >> about
    >> here and another.
    >>
    >> Why not just ask our server for help I hear you all
    screem at your
    >> moitors??
    >>
    >> Well they are very good at fixing the problems I
    throw at them... but
    >> they can
    >> take a very long time to get back to me. So far I've
    been waiting two
    >> weeks for
    >> a replay.
    >>
    >> So if anyone could point me in the right direction
    that would be just
    >> super
    >> douper great (bit weird!)
    >>
    >> Thanks all!!
    >>
    >
    >

  • Keyfigure display attribute not visible in the report

    Hi,
    I am facing a problem. I have <b>keyfigures as display attributes</b> in my master infoobject. Earlier I was able to see those <b>display keyfigure attributes</b> in my query and was able to use them in it. After that, few changes were done to the master infoobject (addition of few attributes and deletion of few - but none of them were what I was using). Now after the change, when I open the query in design mode, it gives me error saying that it can't access those attributes (only keyfigure display attributes) and repairs the query (removes those attributes). All the other attributes are visible.
    I have already tried rsrv for the master infoobject (corrected the error) and rsrt for the query. After that also it doesn't solve the problem.
    What could be the reason? Any pointers would be highly appreciated.
    Thanks,
    Saket

    Hi,
    Display keyfigure attributes are visible in the reports because I was using and running them in the reports before the change in that particular master infoobject. Only, keyfigures maintained as attributes can't be made navigational (hence can't be used for drilldown). Its only after the change, there is this error.
    I had also checked the authorization for Keyfigure earlier, which I have. Therefore its not the problem.
    Thanks for the help anyways! Any more pointers? Btw, I am working on BW3.5.
    Thanks,
    Saket

  • Attributes not deleted int the Connector View

    when an attribute is deleted in the data source, the corresponding attibute is not deleted in the connector view.
    For example :
    when a mailforwardingaddress attribute is deleted in the datasource entry, it remains visible in the connector view.
    Config :
    The UTC uses an attribute flow including mailforwardingaddress,
    updates are made only from datasource to CV.
    no default values, no filter.
    Thanks for any help.
    Best regards,
    Vincent MAZARD
    [email protected]

    MEtadir is not attributes owned but entries owned: to do so, you must create a new AF where the criteria is %operation% = DeleteFromCVtoMV and in flow, you choose attributes you want to see deleted
    hope it helps

  • How do i transpose midi notes but maintain the key?

    I'd like to take a midi track and shift it up to the next mode (ie, ii instead of I) while following the key. What is the simplest way to do this? In other words, I'd like to "transpose" but maintain the key. C-E-G would become D-F-A (not D-F#-A, as just transposing would do). I see there's a "Diatonic Insert" for the Score mode, but I'd like "Diatonic Edit" or something like that.
    Using Logic 8.
    Thanks in advance for any tips, and I apologize if I missed this answer somewhere in the forum already.

    I found a contentious discussion from Feb 2010 that seemed to suggest this was not an available feature ("and why would you need it??!! Just play it again!!"). But if anyone knows a way, I'd be grateful.
    For now I've just ended up dragging the notes up and then manually adjusting in Score mode the errant notes that went out of key.

  • HT4623 my phone has a message that the iphone is disbled connect to itunes. I try and the message said you must unlock your phone.but the phone will not bring up the key board for me to put the  code in. what do i do?

    Iphone has a message on it that said iphone is disable connect to itune. i try but it said that you must unlock your phone. but the iphone will not let me bring up the keypad so i can put the code in to unlock it, it has the message iphone disable connect to itune. what can i do?

    Make sure you have the Current Version of iTunes Installed on your computer
    iTunes free download from www.itunes.com/download
    Then See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...  Be sure to Follow ALL the Steps...
    Take your time... Pay particular attention to Steps 3 and 4.
    After you have Recovered your Device...
    Re-Sync your Content or Restore from the most recent Backup...
    Restore from Backup  >  http://support.apple.com/kb/ht1766
    Note.  Once the Device is asking to be Restored with iTunes... it is too late to save anything... and you must continue with the Recovery...

  • Please let me know how to see the details related to the Key figure used

    Hi,
    Basic key figure BHSL-I belonging to the table GLPCT is used in the one of the reports created using the Report Painter.
    Please let me know how to see the details of the BHSL-I key figure.
    Details I am looking for is, how the field BHSL-I is getting populated I mean from which field/fields combinations and what is the formulae involved in the calculation of the key figure.
    Please let me know if any documentation exists about the key figures.
    Thanks in Advance.
    Madhuri.

    What model year is it? If older than a 2011 model, and even some early 2011 models, you will need the original install discs that came with it.
    If older than a 2011 model then you use the Online Internet Recovery system to erase the drive, format it Mac Extended and then reinstall OS X.
    To access that online recovery system at startup hold down the Command + Option/Alt + r key and keep them held down until you see a globe on the screen.

  • Iphone 5s, Wifi grayed and not related to the control center swipe

    Since yesterday my Iphone 5s stopped working with wifi, it grayed out. I could set it on in the control center, but it doesn't turn it on in the settings.
    After sometime it got back to work in the settings, but even when its on there, the relation with the control center is gone, I can turn it on or off there that nothing happens 
    What can I do??
    Thanks

    Have you tried resetting the phone? Press the sleep/wake button and the Home button together and hold them down until the Apple logo appears on the screen (10-15 secs), then let the two buttons go and allow phone to finish restarting. Then go into Settings/Wi-Fi and set it on, then check Control Center.

Maybe you are looking for

  • Apex 3.2 group select list

    Hi, I just want share this if you are still in older version of Apex and you use jQuery. I did made "plugin" for grouped select list See sample here http://actionet.homelinux.net/htmldb/f?p=100:86 Plugin source ;(function(){ jQuery.fn.htmldbLovOptGrp

  • No v9 properties toolbar access except in last document opened

    Has anyone else noticed this in v9.0 or 9.1 of acrobat? You want to change the properties of an object such as the text format in a comment/markup text box and, even though you can select the text, "No current selection" is reported where the propert

  • Shipping TAB not appearing in PO for users

    Hi Friends, We are having a strange problem. We have 3 users. --> When one of them is manually creating a PO SHIPPING TAB is coming. When he is copying one PO without SHIPPING TAB to another PO then also SHIPPING TAB is coming. --> When another user

  • Any recommendation on an e-mail program for Windows for iCloud?

    I love Mail on my iMac, but need a another option for iCloud on my PC too.  I'm not fond of Windows Live Mail program.  Any other ideas out there? Thx!

  • CIAC 4.1 installation - not able to deploy "SC_Services_4-1.xml" package

    I'm doing a fresh installation of CIAC 4.1, installed CPSC and also finished importing/deploying portal pages and done with Rex Adapter installation. While deploying service package 'SC_Services_4-1.xml', it's just not finishing the deployment in spi