Problem with OC4J:: not able to deploy map

hello
i have downloaded the OC4J stand alone.
Then i have run the oc4j START Script- it is running.
then went to browser and runhttp://localhost:8888/mapviewer to access its functions.
oracle application server MAP VIEWER starts and home page opens..
but I AM NOT ABLE TO ACTUALLY DEPLOY THE MAP??
i have also installed the demo database given in mvdemo.zip.
But actally i dont know how to link it to map viewer??
PLEASE HELP!!!!

http://localhost:8888/mapviewer/fsmc/tutorial/setup.html
contains a set of instructions to set up the mapviewer metadata and data sources once you've loaded the mvdemo.dmp data into a database.
Have you tried that?

Similar Messages

  • Not able to deploy mapping from one schema location to another

    When I am trying to deploy a mapping from a source schema to another target schema, i am not able to do so even though the deployment of the connector is also successfull.
    Can somebody help in this regards.
    Thanks.

    Hi,
    did you grant the select permission of the objects from your source location to the target user? You must do this direct on the database because you cannot do this with the owb.
    Regards,
    Detlef

  • Ajx problem with jsp .not able to show  ajax response data in table rows

    hi evryone
    i m new to ajax .i m not able solve this problem .pls help if anyone understood my problem
    probelm scenario is like this:
    take a example of shopping page where a field amount changes every time (time interval) ,the amount data is coming from database .ok...
    this i m trying to do with ajax and want to display the value in table rows one by one ..but response whihc i m getting is different .....same value is diaplying in evry rows .which i dont want
    the output it coming now is:like this
    item amount
    item 1 20
    item2 20
    item 3 20
    i want like thi s
    item amount
    item 1 20
    item2 30
    item 3 40
    even in database the value is 20,30,40
    here is the code of two jsp page
    one is ajaxitem_amount.jsp
    <%
    try
    stmt3 = con.createStatement();
    String itemQ="select item_ref_id,quantity from item_master where shop_ref_id="+shopid+" and (status is null or status<>'w') order by item_ref_id";
    //out.println(railQ);
    rs_details=stmt3.executeQuery(itemQ);
    while(rs_details.next())
    item2 = rs_details.getInt("ITEM_REF_ID");
    v.add(new Integer(item2));
    String aString = Integer.toString(item2);
    itemids.add(aString);
    Enumeration enum = v.elements();
    for (j=0; j<v.size(); j++)
    //out.println("v[" + j + "] = " + v.elementAt(j));
    sql3="select max(shop_amount) from shop_floor_temp where item_ref_id="+v.elementAt(j);
    rs_bid=stmt3.executeQuery(sql3);
    if(rs_price.next())
    last_price=rs_price.getDouble(1);
    if(last_price != 0)
    lprice= last_price;
    else
    lprice=1;
    out.print("<response>");
    out.print(lprice+"|");
    out.print("</response>");
    out.print("\n");
    catch(Exception ex)
    out.print("ERROR"+ex);
    // out.println("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
    _another is main shopping
    <td bgcolor="#C5B9AB" width="10%" align="center">
    <strong><font face="Verdana" size="2">Last price</font></strong>
    int tabrowcounter=0;
    while(rs_details.next())//some query
    tabrowcounter++;
    //*some more data is displayed here one by one all are working instead of this which i am calling from another page ajaxitem_amount.jsp page*
    <td bgcolor='<%=colorjava%>' width="50%" align="center">
    <div id="responseimage<%=tabrowcounter%>"></div>
    <div id="responseOutput<%=tabrowcounter%>"></div>
    <SCRIPT LANGUAGE="JavaScript">
    function createXHR<%=tabrowcounter%>()
    try { return new XMLHttpRequest(); } catch(e) {}
    try { return new ActiveXObject("Msxml2.XMLHTTP.6.0"); } catch (e) {}
    try { return new ActiveXObject("Msxml2.XMLHTTP.3.0"); } catch (e) {}
    try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) {}
    try { return new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {}
    alert("XMLHttpRequest not supported");
    return null;
    function sendRequest<%=tabrowcounter%>()
    document.getElementById('responseimage<%=tabrowcounter%>').innerHTML ="<IMG SRC='load.gif'> ";
    document.getElementById('responseimage<%=tabrowcounter%>').style.display = 'block';
    document.getElementById('responseOutput<%=tabrowcounter%>').style.display = 'none'
    var url="ajaxauct_floor.jsp";
    var xhr = createXHR<%=tabrowcounter%>();
    if (xhr)
    xhr.open("get",url,true);
    xhr.onreadystatechange = function()
    handleResponse<%=tabrowcounter%>(xhr);
    xhr.send(null);
    function handleResponse<%=tabrowcounter%>(xhr)
    if (xhr.readyState == 4 && xhr.status == 200)
    try
    var data = xhr.responseText.split("|");
    //document.write(data);
    //updatePage<%=tabrowcounter%>(xhr.responseText);
    //document.write(xhr.responseText);
    setTimeout('sendRequest<%=tabrowcounter%>()',10000);
    for(var x=0;x<data.length-1;x++)
    //alert(data);
    document.getElementById('responseOutput<%=tabrowcounter%>').innerHTML = data[x];
    document.getElementById('responseimage<%=tabrowcounter%>').style.display = 'none'; // HIDE
    document.getElementById('responseOutput<%=tabrowcounter%>').style.display = 'block'
    //document.getElementById('responseOutput<%=tabrowcounter%>').innerHTML = data[0];
    //document.getElementById('responseOutput<%=tabrowcounter%>').innerHTML = data[0];
    catch(e)
    alert('1 '+e)
    sendRequest<%=tabrowcounter%>();
    </SCRIPT>
    </td>
    </tr></table>
    if anyone have understood my problem pls help me .i have tried lot but not working .anyone genius here ?thnak you

    thanks baluc
    thanks for correcting me and giving me a good advice .anyway i m trying make you understand once again ...
    if you have understood this time please do reply .else i m sorry for placing wrong question ....
    hi everyone
    I m new to Ajax .I m not able solve this problem .pals help if anyone understood my problem
    problem scenario is like this:
    take a example of shopping page where a field amount changes every time (time interval) ,the amount field* (this data is coming from database )
    this I m trying to do with Ajax and want to display the value in table rows one by one ..But response which I m getting is different.....same value is displaying in every rows .which I don't want
    The output it coming now is: like this
    item amount
    item 1 20
    item2 20
    item 3 20
    I want like this s
    item amount
    item 1 20
    item2 30
    item 3 40
    even in database the value is 20,30,40
    here is the code of jsp page
    one page is ajaxitemamount.jsp_*
    <%
    try
    stmt3 = con.createStatement();
    String itemQ="select item_ref_id,quantity from item_master where shop_ref_id="+shopid+" and (status is null or status<>'w') order by item_ref_id";
    //out.println(railQ);
    rs_details=stmt3.executeQuery(itemQ);
    while(rs_details.next())
    item2 = rs_details.getInt("ITEM_REF_ID");
    v.add(new Integer(item2));
    String aString = Integer.toString(item2);
    itemids.add(aString);
    Enumeration enum = v.elements();
    for (j=0; j<v.size(); j++)
    //out.println("v[" + j + "] = " + v.elementAt(j));
    sql3="select max(shop_amount) from shop_floor_temp where item_ref_id="+v.elementAt(j);
    rs_bid=stmt3.executeQuery(sql3);
    if(rs_price.next())
    last_price=rs_price.getDouble(1);
    if(last_price != 0)
    lprice= last_price;
    else
    lprice=1;
    out.print("<response>");
    out.print(lprice+"|");
    out.print("</response>");
    out.print("\n");
    catch(Exception ex)
    out.print("ERROR"+ex);
    // out.println("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
    another is main shopping page page 2*
    <td bgcolor="#C5B9AB" width="10%" align="center">
    <strong><font face="Verdana" size="2">Last price</font></strong>
    int tabrowcounter=0;
    while(rs_details.next())//some query
    tabrowcounter++;
    <td bgcolor='<%=colorjava%>' width="50%" align="center">
    <div id="responseimage<%=tabrowcounter%>"></div>
    <div id="responseOutput<%=tabrowcounter%>"></div>
    <SCRIPT LANGUAGE="JavaScript">
    function createXHR<%=tabrowcounter%>()
    try { return new XMLHttpRequest(); } catch(e) {}
    try { return new ActiveXObject("Msxml2.XMLHTTP.6.0"); } catch (e) {}
    try { return new ActiveXObject("Msxml2.XMLHTTP.3.0"); } catch (e) {}
    try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) {}
    try { return new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {}
    alert("XMLHttpRequest not supported");
    return null;
    function sendRequest<%=tabrowcounter%>()
    document.getElementById('responseimage<%=tabrowcounter%>').innerHTML ="<IMG SRC='load.gif'> ";
    document.getElementById('responseimage<%=tabrowcounter%>').style.display = 'block';
    document.getElementById('responseOutput<%=tabrowcounter%>').style.display = 'none'
    var url="ajaxauct_floor.jsp";
    var xhr = createXHR<%=tabrowcounter%>();
    if (xhr)
    xhr.open("get",url,true);
    xhr.onreadystatechange = function()
    handleResponse<%=tabrowcounter%>(xhr);
    xhr.send(null);
    function handleResponse<%=tabrowcounter%>(xhr)
    if (xhr.readyState == 4 && xhr.status == 200)
    try
    var data = xhr.responseText.split("|");
    //document.write(data);
    //updatePage<%=tabrowcounter%>(xhr.responseText);
    //document.write(xhr.responseText);
    setTimeout('sendRequest<%=tabrowcounter%>()',10000);
    for(var x=0;x<data.length-1;x++)
    //alert(data);
    document.getElementById('responseOutput<%=tabrowcounter%>').innerHTML = data[x];
    document.getElementById('responseimage<%=tabrowcounter%>').style.display = 'none'; // HIDE
    document.getElementById('responseOutput<%=tabrowcounter%>').style.display = 'block'
    //document.getElementById('responseOutput<%=tabrowcounter%>').innerHTML = data[0];
    //document.getElementById('responseOutput<%=tabrowcounter%>').innerHTML = data[0];
    catch(e)
    alert('1 '+e)
    sendRequest<%=tabrowcounter%>();
    </SCRIPT>
    </td>
    </tr></table>
    if anyone have understood my problem please help me .i have tried lot but not working .anyone genius here ?thank you

  • Problem with applet , Not able to detect class file

    Hello friends,
    I have a swing/applet class file, and i am trying to integrate it with Tomcat webapps
    My HTMl code goes like this...........
    <APPLET ALIGN="CENTER"
                   CODEBASE="/../../classes/org/jgraph/"
                   CODE="SimpleGraph.class"
                   WIDTH="800" HEIGHT="500">
                   </APPLET>
    My classes are found inside the code base URL............
    CODEBASE="/../../classes/org/jgraph/"
    My folder structure is like below.....in which "SimpleGraph.class" is found
    D:\June5WF\Archicentro\web\WEB-INF\classes\org\jgraph\SimpleGraph.class
    My HTML resides in the following directory structure...
    D:\June5WF\Archicentro\web\WEB-INF\jsp\secure\admin\ramesh.jsp
    But When I run the JSP page .... I am Getting Class not found exception..........
    Please can anyone tell me how to solve this problem....
    I have spent 4 hrs in this......PLZ help me out.....

    Hi,
    I did not mean file object. I meant workbook object. The problem is that I can not see from your code how do you get that OLE object reference. It should be something like this
    GET PROPERTY OF h_excel 'ActiveWorkbook' = h_workbook.
    CALL METHOD OF h_workbook 'SAVEAS' EXPORTING #1 = l_file
    Regards

  • Problems with iMessage – not able to log in

    I am having some extreme difficulty with iMessage. This morning, it was being unresponsive and saying that the contacts i was messaging were "not registered with imessage" even though they are. I was logged out and now it will not allow me to log back into my account. I am able to input my ID and password but within seconds of logging in, something pops up and says "could not sign in to iMessage. the server encountered an error processing registration. Please try again later."
    Does anyone know how to handle this?
    Thanks,
    clubas

    I am having some extreme difficulty with iMessage. This morning, it was being unresponsive and saying that the contacts i was messaging were "not registered with imessage" even though they are. I was logged out and now it will not allow me to log back into my account. I am able to input my ID and password but within seconds of logging in, something pops up and says "could not sign in to iMessage. the server encountered an error processing registration. Please try again later."
    Does anyone know how to handle this?
    Thanks,
    clubas

  • Not able to deploy axis2 web service on oc4j 10g server

    Not able to deploy axis2 web service on oc4j 10g server, getting internal server every time I click on services link....
    Edited by: 974237 on Nov 30, 2012 4:17 AM

    Not able to deploy axis2 web service on oc4j 10g server, getting internal server every time I click on services link....
    Edited by: 974237 on Nov 30, 2012 4:17 AM

  • Not able to deploy MDM Enrichment Controller.

    Hi Guys,
    I am not able to deploy the MDM Enrichment controller, i get ServerDeploymentException. I tried Deploying using the JSPM tool.
    I doubt whether is it due to the mismatch is SP level of my MDM server and the Netweaver installation.
    MDM version is MDM 7.1 SP02
    Netweaver is Netweaver 7.1 SP05.
    Thanks in advance.
    Regards,
    ryprasanna

    Hi Experts,
    Please see below for the error log I am getting in JSPM while deploying MDM_ENRICHMENT_CONTROLLER_02_59.sca:
    Details message(s):
    Software component MDM_ENRICHMENT_CONTROLLER deployment messages:
    Deployment of archive
    CTSINSAPNW7\sapmnt\trans\EPS\in\MDM_ENRICHMENT_CONTROLLER_02_59.sca for component sap.com/MDM_ENRICHMENT_CONTROLLER aborted Detailed message: 1. Contains Aborted deployment component: sdu id: sap.com_tcmdmenrichmentui sdu file path: D:\usr\sap\CE7\J04\j2ee\cluster\server0\.\temp\tcbldeploy_controller\archives\163\MDM_ENRICHMENT_CONTROLLER_02_59_sca1292490917366\DEPLOYARCHIVES\tcmdmenrichmentui.sda version status: NEW deployment status: Aborted description: 1. [ERROR CODE DPL.DS.6193] Error while ; nested exception is: com.sap.engine.services.deploy.exceptions.ServerDeploymentException: [ERROR CODE DPL.DS.5082] Exception while validating application sap.com/tcmdmenrichmentui. No one of the [developmentserver, com.sap.security.login-modules] containers, which processed it, returned deployed component names. The registered containers in this moment were [CTCContainer, com.sap.security.ume, developmentserver, com.sap.security.login-modules, app_libraries_container, Cache Configuration Upload, servlet_jsp, dbcontentcontainer, connector, Cluster File System, JMSConnector, MigrationContainer, Monitoring Configurator, dbschemacontainer, appclient, orpersistence, PortalRuntimeContainer, SAP-EU-GP, JDBCConnector, EJBContainer, metamodelrepository, webservices_container, schedulercontainer, ConfigurationsContainer, Content Container]. Possible reasons : 1.An AS Java service, which is providing a container, is stopped or not deployed. 2.The containers, which processed it, are not implemented correct. They deployed or started initially the application, but didn't return deployed components in the application deployment info. Deployment of archive
    CTSINSAPNW7\sapmnt\trans\EPS\in\MDM_ENRICHMENT_CONTROLLER_02_59.sca --> tcmdmenrichmentcontroller.sda for component sap.com/tcmdmenrichmentcontroller is rejected because deployment of other component it depends on is rejected Detailed message: 1. Aborted deployment archive: sdu id: sap.com_tcmdmenrichmentui contained in software archive: sdu id: sap.com_MDM_ENRICHMENT_CONTROLLER Deployment of archive
    CTSINSAPNW7\sapmnt\trans\EPS\in\MDM_ENRICHMENT_CONTROLLER_02_59.sca --> tcmdmenrichmentui.sda for component sap.com/tcmdmenrichmentui aborted Detailed message: 1. [ERROR CODE DPL.DS.6193] Error while ; nested exception is: com.sap.engine.services.deploy.exceptions.ServerDeploymentException: [ERROR CODE DPL.DS.5082] Exception while validating application sap.com/tcmdmenrichmentui. No one of the [developmentserver, com.sap.security.login-modules] containers, which processed it, returned deployed component names. The registered containers in this moment were [CTCContainer, com.sap.security.ume, developmentserver, com.sap.security.login-modules, app_libraries_container, Cache Configuration Upload, servlet_jsp, dbcontentcontainer, connector, Cluster File System, JMSConnector, MigrationContainer, Monitoring Configurator, dbschemacontainer, appclient, orpersistence, PortalRuntimeContainer, SAP-EU-GP, JDBCConnector, EJBContainer, metamodelrepository, webservices_container, schedulercontainer, ConfigurationsContainer, Content Container]. Possible reasons : 1.An AS Java service, which is providing a container, is stopped or not deployed. 2.The containers, which processed it, are not implemented correct. They deployed or started initially the application, but didn't return deployed components in the application deployment info. Deployment of archive
    CTSINSAPNW7\sapmnt\trans\EPS\in\MDM_ENRICHMENT_CONTROLLER_02_59.sca --> tcmdmenrichmentsimulatoradapter.sda for component sap.com/tcmdmenrichmentsimulatoradapter is rejected because deployment of other component it depends on is rejected Detailed message: 1. Aborted deployment archive: sdu id: sap.com_tcmdmenrichmentui contained in software archive: sdu id: sap.com_MDM_ENRICHMENT_CONTROLLER Deployment of archive
    CTSINSAPNW7\sapmnt\trans\EPS\in\MDM_ENRICHMENT_CONTROLLER_02_59.sca --> tcmdmenrichmentws.sda for component sap.com/tcmdmenrichmentws is rejected because deployment of other component it depends on is rejected Detailed message: 1. Aborted deployment archive: sdu id: sap.com_tcmdmenrichmentui contained in software archive: sdu id: sap.com_MDM_ENRICHMENT_CONTROLLER Deployment of archive
    CTSINSAPNW7\sapmnt\trans\EPS\in\MDM_ENRICHMENT_CONTROLLER_02_59.sca --> tcmdmenrichmentsimulatorsrvc.sda for component sap.com/tcmdmenrichmentsimulatorsrvc is rejected because deployment of other component it depends on is rejected Detailed message: 1. Aborted deployment archive: sdu id: sap.com_tcmdmenrichmentui contained in software archive: sdu id: sap.com_MDM_ENRICHMENT_CONTROLLER Deployment of archive
    CTSINSAPNW7\sapmnt\trans\EPS\in\MDM_ENRICHMENT_CONTROLLER_02_59.sca --> tcmdmenrichmentejbear.sda for component sap.com/tcmdmenrichmentejbear is rejected because deployment of other component it depends on is rejected Detailed message: 1. Aborted deployment archive: sdu id: sap.com_tcmdmenrichmentui contained in software archive: sdu id: sap.com_MDM_ENRICHMENT_CONTROLLER Deployment of archive
    CTSINSAPNW7\sapmnt\trans\EPS\in\MDM_ENRICHMENT_CONTROLLER_02_59.sca --> tcmdmenrichmentwsproxy.sda for component sap.com/tcmdmenrichmentwsproxy is rejected because deployment of other component it depends on is rejected Detailed message: 1. Aborted deployment archive: sdu id: sap.com_tcmdmenrichmentui contained in software archive: sdu id: sap.com_MDM_ENRICHMENT_CONTROLLER Deployment of archive
    CTSINSAPNW7\sapmnt\trans\EPS\in\MDM_ENRICHMENT_CONTROLLER_02_59.sca --> tcmdmenrichmentsimulatorsrvc_proxy.sda for component sap.com/tcmdmenrichmentsimulatorsrvc_proxy is rejected because deployment of other component it depends on is rejected Detailed message: 1. Aborted deployment archive: sdu id: sap.com_tcmdmenrichment~ui contained in software archive: sdu id: sap.com_MDM_ENRICHMENT_CONTROLLER See Deploy Controller log D:\usr\sap\CE7\J04\j2ee\JSPM\log\log_2010_12_16_14_43_32\deploy_2010-12-16_14-45-14.log for details. 
    Overall deployment messages: Deployment finished with error.

  • Not able to DEPLOY an application

    Hi,
    i am not able to deploy one particular application onto one particular WAS.
    the same is deploying and running fine on other servers...
    Following is the deployment error i got.
    can anyone suggest what can be done.... ??
    Points will be awarded for helpful answers...
    regards,
    -Amol Gupta
    Jan 28, 2008 4:55:52 PM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] ERROR:
    [003]Deployment aborted
    Settings
    SDM host : wipro-ep7
    SDM port : 50018
    URL to deploy : file:/C:/DOCUME1/amolg/LOCALS1/Temp/temp4267bp.comexmplproducts_lds_create.ear
    Result
    => deployment aborted : file:/C:/DOCUME1/amolg/LOCALS1/Temp/temp4267bp.comexmplproducts_lds_create.ear
    Aborted: development component 'exmpl/products_lds_create'/'bp.com'/'LOKAL'/'0.2008.01.28.16.53.17'/'0':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Cannot deploy application bp.com/exmpl~products_lds_create.. Reason: Clusterwide exception: Error setting configuration during deployment.; nested exception is: com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Error setting configuration during deployment.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment exception : The deployment of at least one item aborted

    we had exactly the same exception:
    com.sap.engine.frame.core.configuration.NameAlreadyExistsException
    we could not see the name listed in the "undeploy" list of the SDM,  the problem was caused when we got a disconnection before the deploy finished
    may be sounds simple but we just restarted SDM and the application was visible to be undeployed.
    just be sure to select the application of the tag <display-name> of your application.xml.
    or open the file
    temp4267bp.comexmplproducts_lds_create.ear
    and look directly for the names of the applications u must undeploy.
    good luck.
    Edited by: Carlos  Aguilar on Jan 31, 2009 1:48 AM

  • SCCM not able to deploy update ms14-008

    Hi Team, I am deploying software update with SCCM 2012 but I found one of them not able to deploy, it seems that it is only downloadable from MS download ctr and it is executable file. 
    https://technet.microsoft.com/library/security/ms14-008
    any advice how can I use sccm software update to deploy it instead of extracting a msi and don't know what collection to be target for deployment?
    thanks!
    Thanks and best regards, -- KF

    I don't think MS14-008 is published via WSUS. Hence there is a chance that it's not available in SCCM !
    What I can see : That convinces me 
    1. Nothing published in Microsoft Update Catalog website http://catalog.update.microsoft.com/v7/site/Search.aspx?q=ms14-008
    2. Nothing mentioned about WSUS and ConfigMgr in the linke https://technet.microsoft.com/en-us/library/security/ms14-008.aspx Detection
    and Deployment Tools and Guidance section !
    Anoop C Nair (My Blog www.AnoopCNair.com)
    - Twitter @anoopmannur -
    FaceBook Forum For SCCM

  • When I plug in my ipod to my laptop instead of my desktop, nothing pops up to sync my ipod. Has anyone had a problem with itunes not recognizing an ipod?

    When I plug in my ipod to my laptop instead of my desktop, nothing pops up to sync it. Has anone had any problems with itunes not recognizing an ipod?

    Hi sarahdavis0_o,
    Welcome to the Apple Support Communities!
    If neither your iPod or iPhone are being recognized by iTunes when connected, I would recommend the steps in the following article.
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    Have a great day,
    Joe

  • HT5312 So I have a problem with iTunes not letting me download anything without first responding to some security questions which I don't remember setting up, how can fix it? Oh, and it won't let me reset the questions either!

    So I have a problem with iTunes not letting me download anything without first responding to some security questions which I don't remember setting up, how can fix it? Oh, and it won't let me reset the questions either!

    If you mean that you aren't getting the reset link, then from the page that you posted from :
    Note: The option to send an email to reset your security questions and answers will not be available if a rescue email address is not provided. You will need to contact iTunes Store support in order to do so. 
    You can contact iTunes Support in your country via this page : http://support.apple.com/kb/HT5699
    When they've been reset you can then use the steps half-way down the HT5312 page that you posted from to add a rescue email address for potential future use

  • We have version 10.5.8 photoshop CS3 for Mac. How do we fix a problem with photoshop not resizing dpi? For example we resized a 72 dpi image to 200 dpi, when we do a pdf analysis it read as 344 dpi.

    We have version 10.5.8 photoshop CS3 for Mac. How do we fix a problem with photoshop not resizing dpi? For example we resized a 72 dpi image to 200 dpi, when we do a pdf analysis it read as 344 dpi.

    Sounds like it's a problem with the Acrobat settings. Did you set them to the same resolution?

  • Not able to deploy portal projects

    Hi all,
    I am trying to deploy .net iviews on the portal but I am not able to deploy it. Its giving time out error. Neither I am able to view any .net iviews that were already deployed on the portal. Can anyone help me on this issue.
    rgds

    Messages in lig file...
    #1.5#0002B3D56632003D0000001D000013480003F58C333224DF#1114407432890#com.sap.portal.portal#sap.com/irj#com.sap.portal.portal#Administrator#316##iGateSAP_J2E_9772450#Administrator#0234d570b54811d9a80a0002b3d56632#SAPEngine_Application_Thread[impl:3]_10##0#0#Error#1#/System/Server#Java###Exception ID:01:37_25/04/05_0007_9772450
    [EXCEPTION]
    #1#com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Portal Component
    Component : PortalApplication4.PortalComponent1
    Component class : com.sap.portal.dotnet.framework.iViewProcessorComponent
    User : Administrator
    at com.sapportals.portal.prt.core.PortalRequestManager.handlePortalComponentException(PortalRequestManager.java:969)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:343)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
    at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:646)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
    at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:232)
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:153)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:385)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:263)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:340)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:318)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:821)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:239)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:147)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
    at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    Caused by: java.lang.RuntimeException: .NET server is not running
    at com.sap.portal.dotnet.framework.iViewProcessorService.ProcessRequest(iViewProcessorService.java:219)
    at com.sap.portal.dotnet.framework.iViewProcessorComponent.doContent(iViewProcessorComponent.java:16)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    ... 29 more
    #1.5#0002B3D56632004D0000001B000013480003F58C34912FC4#1114407455875#com.sap.portal.portal#sap.com/irj#com.sap.portal.portal#Administrator#316##iGateSAP_J2E_9772450#Administrator#0234d570b54811d9a80a0002b3d56632#SAPEngine_Application_Thread[impl:3]_29##0#0#Error#1#/System/Server#Java###Exception ID:01:37_25/04/05_0008_9772450
    [EXCEPTION]
    #1#com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Portal Component
    Component : PortalApplication5.PortalComponent1
    Component class : com.sap.portal.dotnet.framework.iViewProcessorComponent
    User : Administrator
    at com.sapportals.portal.prt.core.PortalRequestManager.handlePortalComponentException(PortalRequestManager.java:969)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:343)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
    at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:646)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
    at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:232)
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:153)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:385)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:263)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:340)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:318)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:821)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:239)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:147)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
    at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    Caused by: java.lang.RuntimeException: .NET server is not running
    at com.sap.portal.dotnet.framework.iViewProcessorService.ProcessRequest(iViewProcessorService.java:219)
    at com.sap.portal.dotnet.framework.iViewProcessorComponent.doContent(iViewProcessorComponent.java:16)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    ... 29 more
    #1#com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Portal Component
    Component : PortalApplication1.PortalComponent1
    Component class : com.sap.portal.dotnet.framework.iViewProcessorComponent
    User : Administrator
    at com.sapportals.portal.prt.core.PortalRequestManager.handlePortalComponentException(PortalRequestManager.java:969)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:343)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
    at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:646)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
    at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:232)
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:153)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:385)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:263)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:340)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:318)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:821)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:239)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:147)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
    at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    Caused by: java.lang.RuntimeException: .NET server is not running
    at com.sap.portal.dotnet.framework.iViewProcessorService.ProcessRequest(iViewProcessorService.java:219)
    at com.sap.portal.dotnet.framework.iViewProcessorComponent.doContent(iViewProcessorComponent.java:16)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    ... 29 more
    Someone pls help.

  • RFIDITVCL : problem with variation notes

    Hi Experts,
    I have implemented the sapnote 1639418 "RFIDITVCL: 3000 Euro Communication additional changes", but I have a problem with variation notes related to specific invoices in same year...the user guide in the note says that they are clubbed together and the total is compared with the limit...I think that the report doesn't function in this case (my case is higher 25000u20AC) and so my documents aren't in the list....
    Do you have the same problem??
    Thank you
    Best regards
    Angela

    Dear Angela,
    I have the same problem. The program looks at field BSEG-REBZG.
    However this field is empty in our case.
    We create our debit and credit memo's with reference to the original sales order.
    Who knows a solution?
    Roelie

  • I have ongoing problems with "application not responding" in various programmes, ie Word, Excel, Illustrator, Photoshop, iPhoto etc. I recently subscribed to CC but the problem still persists. Any advice please?

    I have ongoing problems with "application not responding" in various programmes, ie Word, Excel, Illustrator, Photoshop, iPhoto etc. I recently subscribed to CC but the problem still persists. Any advice please? This applies to my iMac and my macbook air! I'm using OSX Version 10.9.3

    Hi Shauneenb,
    Welcome to the Apple Support Communities!
    If you are having issues with multiple applications becoming unresponsive I would suggest the steps in the following article, including starting in safe mode.
    OS X Mavericks: If an app freezes or quits unexpectedly
    http://support.apple.com/kb/PH13975
    I hope this helps,   
    -Joe

Maybe you are looking for