Problem in mapping after migration from 3.x to 7.x infosource

HI Experts,
I have a problem while mapping the data source 2lis_03_bf to info cube 0ic_cs01.
we have a flow like this now after  migration done.
Datasource->transfer rules->infosource->transformation->info cube
Now we dont require infosource and its respetive transformation, we are going to map directly from data source to info cube.but we have routines available in info cube related transformation.i.e. coming from infosource to info cube .
I would like to create a new transformation directly from Datasource to info cube but all the source fields are not available in target cube. How to map them.do i have to map all the target fields or i have to map according to the transfer rules target fields. what is the funda to make a transformation and mapping the source and target fields.
Could anyone please through some light here..
Thanks much in advance.

sunil kumar wrote:
Hi,
>
> As said above convert transfer rules to transformations (right click on transfer rules -> additional prop -> create transformation)
>
> Then right click on datasource -> Migrate
>
> After doing this, your datasource will be linked to Infocube directly with one transformations automatically.
>
> Regards,
> Sunil
Hi Sunil & Sravan,
THanks for ur quick reply.As you said click on transfer rules and create transformation.As i can see in my system i have a transformation from data source to infosource .i.e. starting with RSDS_  and then another transformation from info source to info cube.i.e. starting with TRCS_  .  what i did was created a transformation by right click on info cube and by giving data source name as 2LIS_03_BF .this is a manual transformation i am mapping manually.Is this a correct way? Please tell me how to do it.
as i have to do this immediately.
Thanks in advance

Similar Messages

  • Problem with servlet after migrating from OC4J to WebLogic 10.3

    I come across a problem when I was migrating from jDev 11g TP4 to production version in that step also server got changed from OC4J to webLogic.
    I am running java http servlet along other jspx pages. When everything was on OC4J there was no problem whit security on this servlet ( servlet was under same authorization automatically, and I was able to create new application module on this servlet by createRootApplicationModule
    ) but when I changed to WebLogic 10.3 I come across a numerous problems. First one is solved i managed to put the servlet under same authorization as jspx pages by
    *<servlet>*
    *<servlet-name>report</servlet-name>*
    *<servlet-class>path.to.class</servlet-class>*
    *<security-role-ref>*
    *<role-name>name</role-name>*
    *<role-link>valid-users</role-link>*
    *</security-role-ref>*
    *</servlet>*
    but when I trying to create new application module I get JBO-30003 error which is Caused by:
    oracle.adf.share.security.ADFSecurityAuthenticationException: JAAS login error.
    Invalid null input: name
    Has anybody any idea what I am doing wrong?
    Thank you for your help, Rok Kogovšek

    for example:
    web.xml
    <security-role>
    <role-name>yourrole</role-name>
    </security-role>
    weblogic.xml
    <security-role-assignment>
    <role-name>yourrole</role-name>
    <principal-name>wlsuser</principal-name > <!-- wlsuser is define at wls console-->
    </security-role-assignment>

  • Problem with printing after migrating from 3.5 to 4.1

    Hello everyone,
    I'm currently working on an application that was recently migrated (by someone else) from Flex 3.5 to Flex 4.1 and I discovered the printing doesn't work properly anymore. So I tried to find out what the problem was and after many tries, I came to the conclusion that the problem was within the following line:
    printJob.addObject(myPrintView,FlexPrintJobScaleType.MATCH_WIDTH);
    (Of course "myPrintView" is not the real name used in the app but that's not important)
    I searched on the Internet and this line is supposed to work in 4.1, isn't it? However, the printed version cuts my PrintAdvancedDataGrid approximately in half. I tried to change the width property from myPrintView but the grid is still cut at the same place, its cells are just distorted.
    FYI, you can find a part of the code right here:
    var printJob:FlexPrintJob = new FlexPrintJob();
                        if (printJob.start()) {
         //A lot of code to build the print view
    myPrintView.width=1280;
    printJob.addObject(myPrintView,FlexPrintJobScaleType.MATCH_WIDTH);
    printJob.send();
    myPanel.removeChild(myPrintView);
    Any help would be appreciated.
    Regards,
    Gudril

    While looking for a solution on the Internet I found some people having troubles because of the structure of their AdvancedDataGrid. My problem doesn't come from any example I've seen but maybe it's still linked to that, so here's an AdvancedDataGrid that's being printed in my app:
                                                    <mx:PrintAdvancedDataGrid dataProvider="{dataRayon}" sortExpertMode="true" id="dataGridRayon" width="100%" itemClick="dispatchEvent(new KpiEvent(DATAGRID_RAYON_CLICK,event));" itemDoubleClick="dispatchEvent(new KpiEvent(DATAGRID_RAYON_CLICK,event));" creationComplete="resizeGridRayon();" >
                                                      <mx:columns>
                                                                <mx:AdvancedDataGridColumn id="rownumRayon"  width="25"  sortable="false" labelFunction="getRowNumRayon" fontWeight="bold"/>
                                                                <mx:AdvancedDataGridColumn id="rayonCoRgrp" textAlign="center" width="75" headerText="{resourceManager.getString('rentabilitePanel', 'CODE')}" dataField="co_rgrp_produits" />
                                                                <mx:AdvancedDataGridColumn textAlign="left" width="240" headerText="{resourceManager.getString('rentabilitePanel', 'SOUS_SECTEURS')}" dataField="libelle" id="hTDataGridRayon" />
                                                                <mx:AdvancedDataGridColumn id="rayonMeVenteHt" textAlign="right" width="100" headerText="{resourceManager.getString('rentabilitePanel', 'MONTANT_VENTE_HT')}" dataField="meVenteHt" formatter="{currencyFormatter}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'meVenteHt');}}"  />
                                                                <mx:AdvancedDataGridColumn id="rayonMargeAvtDem" textAlign="right" width="75" headerText="{resourceManager.getString('rentabilitePanel', 'MARGE_AVT_DEM')}" dataField="margeAvtDem" formatter="{currencyFormatter}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'margeAvtDem');}}"  />
                                                                <mx:AdvancedDataGridColumn id="rayonPMargeAvtDem" textAlign="right" width="80" headerText="{resourceManager.getString('rentabilitePanel', 'POUR_MARGE_AVT_DEM')}" dataField="margeAvtDemP" formatter="{pourcentageFormatterFloat}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'margeAvtDemP');}}"  />
                                                                <mx:AdvancedDataGridColumn id="rayonDemarqueHt" textAlign="right" width="100" headerText="{resourceManager.getString('rentabilitePanel', 'DEMARQUE_HT')}" dataField="demarque" formatter="{currencyFormatterFloat1Dec}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'demarque');}}"  />
                                                                <mx:AdvancedDataGridColumn id="rayonPDemarqueHt" textAlign="right" width="85" headerText="{resourceManager.getString('rentabilitePanel', 'POUR_DEMARQUE_HT')}" dataField="demarqueP"  formatter="{pourcentageFormatterFloat}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'demarqueP');}}"  />
                                                                <mx:AdvancedDataGridColumn id="rayonMargeAprDem" textAlign="right" width="100" headerText="{resourceManager.getString('rentabilitePanel', 'MARGE_APR_DEM')}" dataField="margeAprDem" formatter="{currencyFormatter}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'margeAprDem');}}"  />
                                                                <mx:AdvancedDataGridColumn id="rayonPMargeAprDem" textAlign="right" width="115" headerText="{resourceManager.getString('rentabilitePanel', 'POUR_MARGE_APR_DEM')}" dataField="margeAprDemP" formatter="{pourcentageFormatterFloat}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'margeAprDemP');}}"  />
                                                      </mx:columns>
                                            </mx:PrintAdvancedDataGrid>
    I also realised I wasn't very clear on the outcome of my doPrint() function. When I said the grid was cut in half, I was talking about half the columns not showing on the printed version, not half the rows. Actually even a column being cut in half. I hope these precisions made my problem a bit clearer and somebody will be able to help me in any way (even just hints).
    Thanks for your help.
    Regards,
    Gudril

  • Problem in Themes after Migrating from APEX 4.0 to 4.2

    Dear Friends,
    Recently we migrated from APEX 4.0 to 4.2. There were no errors during migration. But after migration we observed that any application with Simple Red (Theme No.1) and Scarlet (Theme 21) stopped working properly. i.e. Template button Red will not perform any task. Even changed the template of the button doesn't work.
    Can any one suggest steps to solve the problem?
    Thanks in Advance.
    Krunal

    Hi Prabodh,
    This is the error i am getting
    Timestamp: 11/30/2012 5:03:02 PM
    Error: TypeError: ((f.event.special[r.origType] || {}).handle || r.handler).apply is not a function
    Source File: http://testserver:8000/i/libraries/apex/minified/desktop_all.min.js?v=4.2.0.00.27
    Line: 3
    No i didn't modify any template.

  • Problem locating files after migration from PC to Mac

    I have just migrated files from my PC to my Mac.  I have logged into the new user account but I finder is telling me there are no files located in the new user.
    It also doesnt appear that a "user" folder has been created for the new user which may be the problem.
    Thanks

    Depending on how you migrated the files, your 'old' Windows account should have been created on your MBP.
    How did you migrate the files? Using Migration Assitant? Mac or PC version?
    Clinton

  • Problem with PK after migration from Access

    I converted an Access 2000 db to Oracle 8.1.7, and now Access is having trouble recognizing the correct primary key for one table.
    The actual primary key on the table is Column A, which is a number (an autonumber, in fact). On the Oracle side, this shows up as the PK. But when I go back to Access and link the table, a different column is identified as the PK! A TEXT column, no less! And I can't get Access to recognize the correct column as the PK, which is keeping me from loading data to that table. Has anyone else seen this happen? And maybe can offer some advice?
    I already dropped/rebuilt the PK on the Oracle side, that didn't help. And I've re-converted the database again, just to make sure there were no problems in the conversion.

    Found a workaround. I'll share it, in case anyone else experiences this:
    The PK and index looked FINE on the Oracle side, but what I had to do was this: I had to drop the unique index on the column that Access thought was the PK (I'll call it Column B). Then I dropped the PK and index on the actual PK (Column A). Then I re-created the PK and index on Column A. Voila! Access now knew that column A was the PK. Then I was able to re-create the unique index on column B, and Access didn't lose its way.

  • After Migrating from 10g to 11g Geeting problems with Guided navigations.

    After Migrating from 10g to 11g Geeting problems with Guided navigations and section navigations not working.
    And we are getting the following error <<odbc driver returned an error (SQLExecDirectW)>> where we have used navigations.
    In 10G we have Guided navigation Reports to display the Reports links and intermediate reports for conditionally displaying the Dashboard section(Reports) but after migrating to 11g Guided navigation reports and conditional reports are not working..
    We know that in 11g section navigation replaced with conditions and Guided navigation replaced with action link.. but
    do we need to recreate those reports in actions and condition or is there any work around avoid reworking.

    Hi Both,
    Thanks for the reply ...
    For Guided navigation we are getting like below error:
    Odbc driver returned an error (SQLExecDirectW).
    For Conditional dashboard section we are getting like below error:
    "saw.aViewsToRefresh = [];saw.aViewsToRefresh['d:dashboard~p:1egt6il5utl0uu8n~s:3jsmgfs3c1r4tn7c~n:condition'] = true;saw.aViewsToRefresh['d:dashboard~p:1egt6il5utl0uu8n~s:nos5q43jvjmi643b~n:condition'] = true;"

  • Problem with Java Native Type after Migration from 7.0 to 7.1

    Hi,
    after Migration from Netweaver 7.0 to Netweaver 7.1 I get following error:
    FileDownload 'FileDownload.data': Context attribute 'PrintSelectedView.PdfToDownload.resourceInputStream' has the Java native type 'com.sap.tc.webdynpro.progmodel.api.IWDInputStream' and cannot be bound to this property. Hint: Remove the binding or bind a context element matching the property's type.     
    What have I done wrong?
    How could I fix this problem?
    Best regards,
    Peter

    Hi,
    thanks, this solved the problem.
    Thank you.
    Best regards,
    Peter

  • Hotkey (Ctrl+B) is not working after migration from Forms 6i to 10g

    Dear Gurus,
    Need your help regarding the following problem:
    After migrating from Forms 6i to 10g (Rel 2), Ctrl+B (used to list the blocks in a form) hotkey is not working anymore (all other hotkeys are working fine). I've checked my FMRWEB.RES and it contains an entry for Ctrl+B:
    66 : 2 : "Ctrl+B" : 70 : "Block Menu"
    Additional Information:
    OS: AIX
    NLS_LANG = UTF8
    fmrweb_utf8.res also contains the same text for Ctrl+B as above.
    I tried to reproduce it on my Windows Machine (with NLS_LANG set to AMERICAN_AMERICA.WE8ISO8859P1) and its not working as well. I don't have right to put move files on AIX server but i can try anything (on my local system) suggested by the Oracle gurus.
    Best Regards,

    Dear Gerd,
    "are you sure, that it is the hotkey"
    Yes, i am dead sure. Since:
    (1) It was working fine in forms 6i
    (2) If you run a form and select Help => Keys, you will see Ctrl+B on the top of list
    The problem is its not taking into account the keys which i am defining in the file (although i am following the same procedure detailed on metalink.oracle.com).
    Regards

  • ZCC Login failed after Migration from 11.3.1 FRU1 to 11.3.2

    Hey,
    System: 6 Primary Server Sless 11 SP3
    LDAP: EDIR
    Primary: 11.3.2
    Sats: 11.3.1 FRU1
    After Migration from 11.3.1 FRU1 to 11.3.2
    i'll try to login in ZCC
    Message ZCC
    Error: Login Error: com.novell.zenworks.datamodel.exceptions.InternalD ataModelException: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: Certificates does not conform to algorithm constraints
    See the ZENworks Control Center log file (zcc.log) for the full stack trace.
    I tryed with default admin and see that the USERSource is not reachable.
    I take a look in the configuration / usersource and there is an Error like: Unable to read contexts. One or more of your connections don't support non-SSL.
    ZCC.log sayed
    [javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: Certificates does not conform to algorithm constraints] [] [com.novell.zenworks.datamodel.exceptions.InternalD ataModelException] [ZENServer]
    [DEBUG] [12/30/2014 09:54:02.417] [3547] [ZENServer] [72] [zenworks] [ZCC] [] [Form.java CSRF TOKEN:d1b804076c63e7393af1a72442ced4b5 for the PageId:authoritativeSourceDetails] [] [] [] [ZENServer]
    [DEBUG] [12/30/2014 09:54:03.144] [3547] [ZENServer] [85] [zenworks] [ZCC] [] [QuickTask build tasks called in createChildControls, normal flow before ajax] [] [] [] [ZENServer]
    [DEBUG] [12/30/2014 09:54:03.348] [3547] [ZENServer] [69] [zenworks] [ZCC] [] [com.novell.zenworks.datamodel.exceptions.InternalD ataModelException: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: Certificates does not conform to algorithm constraints
    at com.novell.zenworks.datamodel.services.Certificate ManagerImpl.getCertificates(CertificateManagerImpl .java:179)
    at com.novell.zenworks.datamodel.utils.ldap.LDAPUtil. validateCertificateExpiry(LDAPUtil.java:1162)
    at com.novell.zenworks.datamodel.utils.ldap.LDAPUtil. getLDAPConnectionInfo(LDAPUtil.java:774)
    at com.novell.zenworks.datamodel.utils.ldap.LDAPUtil. getLDAPConnectionInfo(LDAPUtil.java:559)
    at com.novell.zenworks.datamodel.utils.ldap.LDAPUtil. getLDAPConnectionInfo(LDAPUtil.java:386)
    at com.novell.zenworks.datamodel.utils.ldap.LDAPUtil. getLDAPConnectionInfo(LDAPUtil.java:359)
    at com.novell.zenworks.datamodel.utils.ldap.LDAPUtil. getLDAPConnectionInfo(LDAPUtil.java:325)
    at com.novell.zenworks.datamodel.utils.ldap.LDAPUtil. getLDAPConnectionInfo(LDAPUtil.java:311)
    at com.novell.zenworks.core.web.internal.UserSourceSt atusAJAX.getImageData(UserSourceStatusAJAX.java:77 )
    at com.novell.web.ajax.ImageAJAX.service(ImageAJAX.ja va:38)
    at com.novell.web.ajax.AJAXDataHandler.service(AJAXDa taHandler.java:40)
    at com.novell.web.AjaxServlet.serviceImpl(AjaxServlet .java:100)
    at com.novell.web.AjaxServlet.service(AjaxServlet.jav a:74)
    at com.novell.zenworks.fw.web.internal.ZENworksAjaxSe rvlet.service(ZENworksAjaxServlet.java:47)
    at javax.servlet.http.HttpServlet.service(HttpServlet .java:727)
    at org.apache.catalina.core.ApplicationFilterChain.in ternalDoFilter(ApplicationFilterChain.java:303)
    at org.apache.catalina.core.ApplicationFilterChain.do Filter(ApplicationFilterChain.java:208)
    at com.patchlink.sapphire.web.pages.vulnerability.ses sion.HibernateSessionFilter.doFilter(HibernateSess ionFilter.java:75)
    at org.apache.catalina.core.ApplicationFilterChain.in ternalDoFilter(ApplicationFilterChain.java:241)
    at org.apache.catalina.core.ApplicationFilterChain.do Filter(ApplicationFilterChain.java:208)
    at org.apache.catalina.core.StandardWrapperValve.invo ke(StandardWrapperValve.java:220)
    at org.apache.catalina.core.StandardContextValve.invo ke(StandardContextValve.java:122)
    at org.apache.catalina.authenticator.AuthenticatorBas e.invoke(AuthenticatorBase.java:501)
    at org.apache.catalina.core.StandardHostValve.invoke( StandardHostValve.java:171)
    at com.googlecode.psiprobe.Tomcat70AgentValve.invoke( Tomcat70AgentValve.java:39)
    at org.apache.catalina.valves.ErrorReportValve.invoke (ErrorReportValve.java:103)
    at org.apache.catalina.core.StandardEngineValve.invok e(StandardEngineValve.java:116)
    at com.novell.zenworks.tomcat.ZENRequestValve.invoke( ZENRequestValve.java:1346)
    at org.apache.catalina.connector.CoyoteAdapter.servic e(CoyoteAdapter.java:408)
    at org.apache.coyote.http11.AbstractHttp11Processor.p rocess(AbstractHttp11Processor.java:1070)
    at org.apache.coyote.AbstractProtocol$AbstractConnect ionHandler.process(AbstractProtocol.java:611)
    at org.apache.tomcat.util.net.JIoEndpoint$SocketProce ssor.run(JIoEndpoint.java:316)
    at java.util.concurrent.ThreadPoolExecutor.runWorker( ThreadPoolExecutor.java:1145)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run (ThreadPoolExecutor.java:615)
    at org.apache.tomcat.util.threads.TaskThread$Wrapping Runnable.run(TaskThread.java:61)
    at java.lang.Thread.run(Thread.java:745)
    Caused by: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: Certificates does not conform to algorithm constraints
    at sun.security.ssl.Alerts.getSSLException(Alerts.jav a:192)
    at sun.security.ssl.SSLSocketImpl.fatal(SSLSocketImpl .java:1884)
    at sun.security.ssl.Handshaker.fatalSE(Handshaker.jav a:276)
    at sun.security.ssl.Handshaker.fatalSE(Handshaker.jav a:270)
    at sun.security.ssl.ClientHandshaker.serverCertificat e(ClientHandshaker.java:1439)
    at sun.security.ssl.ClientHandshaker.processMessage(C lientHandshaker.java:209)
    at sun.security.ssl.Handshaker.processLoop(Handshaker .java:878)
    at sun.security.ssl.Handshaker.process_record(Handsha ker.java:814)
    at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocke tImpl.java:1016)
    at sun.security.ssl.SSLSocketImpl.performInitialHands hake(SSLSocketImpl.java:1312)
    at sun.security.ssl.SSLSocketImpl.startHandshake(SSLS ocketImpl.java:1339)
    at sun.security.ssl.SSLSocketImpl.startHandshake(SSLS ocketImpl.java:1323)
    at com.novell.zenworks.security.certificates.Certific ateUtility.getCertChain(CertificateUtility.java:12 1)
    at com.novell.zenworks.datamodel.services.Certificate ManagerImpl.getCertificates(CertificateManagerImpl .java:175)
    ... 35 more
    Caused by: java.security.cert.CertificateException: Certificates does not conform to algorithm constraints
    at sun.security.ssl.AbstractTrustManagerWrapper.check AlgorithmConstraints(SSLContextImpl.java:946)
    at sun.security.ssl.AbstractTrustManagerWrapper.check AdditionalTrust(SSLContextImpl.java:872)
    at sun.security.ssl.AbstractTrustManagerWrapper.check ServerTrusted(SSLContextImpl.java:814)
    at sun.security.ssl.ClientHandshaker.serverCertificat e(ClientHandshaker.java:1421)
    SR has been created.
    Any Tipps /Hints for me ?
    Thank You

    Originally Posted by robpet
    Should have said kind of the same problem...
    That was sort of my gut feelings so I checked our certificates beforehand and they are using certs with sha1 fingerprint. But we are not using SSL - our connections are made using port 389. And the communication status is green.
    But I cannot add SSL because it complains about "unable to obtain a valid certificate for SSL communication information. Please verify that the adress and port are correct and that the LDAP directory has been configured with a valid certificate.
    So I cannot understand why users cannot authenticate with zenagent.
    There's a TID about zcc login failures after 11.3 upgrade.
    https://www.novell.com/support/kb/doc.php?id=7014716
    We ran into the above.

  • Just got a new imac and my iwork software wont work. I have the serial numbers but after migrating from my old mac running OSX tiger it won't even give me that opportunity. I do not have any discs as this was downloaded. Help

    Just got a new imac and my iwork software wont work. I have the serial numbers but after migrating from my old mac running OSX tiger it won't even give me that opportunity. I do not have any discs as this was downloaded. Help

    Hi, hopefully you guys can help me out, I just
    purchased a G5 iMac to replace my aging dell desktop,
    and now i'm more or less completely os x dependant
    (I've had an ibook for a few months now). Anyway, I
    have a few questions:
    1. Does anyone know of a (free) mail notifier tool,
    that will alert me when I recieve new pop3 mail? I
    used to use AIM for this in windows
    The built in email program does sound an alert for new messages.
    2. Anyone know of a good (free, again) IRC client?
    iChat works well.
    3. I noticed earlier that my screen was flickering,
    it seems to have subsided for now, but is that normal
    to encounter in a new display? It wasn't really bad
    flicker, but I could see it.
    No idea.
    4. I leave my desktops on 24/7x365, will that be a
    problem with this iMac? Display shuts off of course
    after 30 mins
    You could set the iMac to go to sleep after non use. My Macs are
    always sleeping when not in use, waking them up takes seconds.
    Unlike windoze, never knew if it would be locked up or not.
    5. Should I get the extended warranty? I'm usually
    against them, but I am expecting this computer to
    last me at least 3 years (for $1300 it better!)
    before I upgrade, as I got that much out of a Dell
    and from what I understand, Mac's do not age nearly
    as fast as Windows pc's.
    It is well worth the cost. Never know what might happen. Also
    it is good insurance for future upgrades. I traded in my G4 tower
    purchased two years ago for 75% of what I paid for it. Apple care
    transfers, giving the buyer the remainder of your warranty.
    Thank you for any help,
    -Evan

  • Problem (FRM-40654) after migration to 9i

    Hi all!
    I have a problem with some 6i-forms after migration from 8 to 9i database:
    FRM-40654: data changed from an other user
    ->after inserting a dataset
    Is there an other transaction / commit behaviour?
    Many Regards,
    Oliver

    Is this a migration issue? "Data changed by another user"
    is also available in forms6i. This error is usually raised when you want to change some data which has already been changed by some body else since your last query.

  • Can only access emails through OWA after migration from exchange 2007 to 2013

    can only access emails through OWA after migration from exchange 2007 to 2013, in other words unable to access mails through outlook or from other Applications services.
    needed RCA ... plz help..

    Hi,
    From your description, you can send and receive messages only when you use OWA after migration from Exchange 2007 to Exchange 2013. If I have misunderstood your concern, please let me know.
    In your case, I recommend you create a new test mailbox in your Exchange 2013 and check if you can send and receive messages on Outlook. If yes, it is recommended to create a new profile to solve this issue.
    Hope this can be helpful to you.
    Best regards,
    Amy Wang
    TechNet Community Support

  • NQS ERROR:14025 NO FACT TABLE EXISTS -after migrating from 10g to 11g

    NQS ERROR:14025 NO FACT TABLE EXISTS AT THE REQUESTED LEVEL OF DETAIL in all the reports after migrating from 10g to 11g ...
    then we applied the patch (One-off Patch for Bug: 11850704) for the error <<NQS ERROR:14025 NO FACT TABLE EXISTS AT THE REQUESTED LEVEL OF DETAIL>>
    But after applying the above the above patch we are still getting the same error.
    but in the above patch instructions file - Post deployment instructions to create the Variable
    Post Install Instructions:
    - To revert to the 10g navigator behavior for handling conforming dimensions,
    you must set the following session variable via an init block in the RPD:
    NO_FORCE_TO_DETAIL_BIN=1
    The default value for the above variable is 0.
    - Restart all servers (Admin Server and all Managed Server(s))
    but we didn’t find the process to create the specified variable and Initialization block in the RPD
    Can you please suggest us how to go further.
    Our questions are:

    Hi
    Refer the below thread.
    obiee 11g non-conforming dimensions and nQSError 14025
    Might be help you/
    Thanks,
    satya

  • Mail "unexpectedly quits" after migration from snow leopard to new iMac running Mountain Lion

    Mail "unexpectedly quits" after migration from snow leopard time machine files to new iMac running Mountain Lion.  I can run connection doctor OK.  But the activity window is blank.   If you try to open message viewer window then mail program crashes.  Would really like to get my old emails back as the old imac is totally dead.  Thanks for any help. 

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left.
    Enter the name of the crashed application or process in the Filter text field. Post the messages from the time of the last crash, if any — the text, please, not a screenshot. 
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into a message.
    Important: Some private information, such as your name, may appear in the log. Edit it out by search-and-replace in a text editor before posting.
    Step 2
    Still in the Console window, look under User Diagnostic Reports for crash reports related to the process. The report name starts with the name of the crashed process, and ends with ".crash". Select the most recent report and post the entire contents — again, the text, not a screenshot. In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.) Please don’t post shutdownStall, spin, or hang logs — they're very long and not helpful.

Maybe you are looking for

  • How do I change andmisistrator on my mac that was previously password protected but no longer have password

    Can someone please assisst we are leasing a mac desktop whoever had it previously set themselves as administrator and then when they returned it they didn't take themselves off so now then company we leased it from has no idea what the password is an

  • Questions RE: Using System Recovery Discs on HP G71-358NR (Options?)

    I bought my HP G71-358NR Notebook in Dec 2009. It has Windows 7 Home Premium x32/x64 ). I am on my second hard drive (had to replace in Feb 2012), and I do have the HP System Recovery DVDs (there are 2 of them), and the HP Driver Recovery CD (1 disc)

  • Stored Procedure Output Issue in Query Template

    Hi, We have written a stored procedure which returns 3 outputs which are of type CLOB. Whenever we call the procedure from query template it gives an error Wrong number or type of parameters. It seems that we need to pass some variables which are of

  • Fe80.0000.0000 flapping

    Hi , I received many fe80.0000.0000 flapping on the switch. I can not find the mac fe80.0000.0000. Is it a normal mac address? How to resolve this problem? Dec 10 08:25:42: %SW_MATM-4-MACFLAP_NOTIF: Host fe80.0000.0000 in vlan 223 is flapping between

  • Write access

    I am using PSE 13 on a MAC OSX and when trying to save a photo after making changes I get the following message: Could not save IMG 2058 edited 1 jpg as write access was not granted.  I have never had this problem before and how do I fix it?