Version while AppStore upload

Since Application loader 2.9, when uploading an app, you now get an error message, if the public version doesn't match the version in Info.plist.
Usually I decided to set the public version to the value we are using in our project management tool – adding a "-build" for the AdobeDPS version (like 3.0.57-27 for a V27 app).
I also get a mail from iTunes:
Version Mismatch - Neither CFBundleVersion ['3.2.3.59.87970'] nor CFBundleShortVersionString ['1.0.59'] in the Info.plist match the version of the app set in iTunes Connect ['3.0.57-27'].
This doesn't seem to affect a succesful release of the app, still I was wondering, when it will be possible to set the marketing version in DPS App Builder manually. At the moment, it is only possible to do that via support. Does anyone know of any plans to that feature?
Thanks,
Richard

We have no plans to add a way to control the marketing version via App Builder. The vast majority of our customers do not need to change it and it can lead to lots of problems if it gets incorrectly updated.
Our KB article on the warning from iTunes is at http://helpx.adobe.com/digital-publishing-suite/kb/internal-modify-marketing-build-version .html.
Neil

Similar Messages

  • I am getting this error while file uploading

    Hi!
    I am getting this error while file uploading,I can't find any solution.
    SRVE0026E: [Servlet Error]-[org.apache.commons.fileupload.FileUpload: method setSizeMax(I)V not found]: javax.servlet.ServletException: org.apache.commons.fileupload.FileUpload: method setSizeMax(I)V not found
    at com.honeywell.sdm.base.controller.SDMActionServlet.service(SDMActionServlet.java:75)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
    at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
    at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
    at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
    at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
    at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
    at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:983)
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:564)
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:200)
    at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:119)
    at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:276)
    at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
    at com.ibm.ws.webcontainer.cache.invocation.CacheableInvocationContext.invoke(CacheableInvocationContext.java:116)
    at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:186)
    at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
    at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
    at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:618)
    at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:439)
    at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:672)
    Please help me.I have attached the bean,action ,jsp pages
    uploadInfo.jsp
    <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
    <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
    <html:html>
    <HEAD>
    <script>
    function submitting(){
    document.uploadForm.operation.value = "uploadOrgAdj";
    document.uploadForm.action = "/uploadRecAction.do";
    document.uploadForm.submit();
    </script>
    </HEAD>
    <body>
    <html:form action="/uploadRecAction" method="post" enctype="multipart/form-data">
    Select the .xls File to upload data
    <html:file property="fileName"></html:file>
    <html:hidden property="operation" value=""/>
    <html:button property="btn" value="Submit" onclick="submitting()"></html:button>
    </html:form>
    </body>
    </html:html>
    uploadAdjForm :
    import javax.servlet.http.HttpServletRequest;
    import org.apache.struts.action.ActionError;
    import org.apache.struts.action.ActionErrors;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionMapping;
    import org.apache.struts.upload.FormFile;
    public class uploadAdjForm extends ActionForm{
    private FormFile fileName;
    * @return
    public FormFile getFileName() {
    System.out.println("getFileName"+fileName);
    return fileName;
    * @param string
    public void setFileName(FormFile string) {
    System.out.println("setileNmame"+string);
    fileName = string;
    Action:
    public class uploadFinancialAdjAction extends DispatchAction{
    public org.apache.struts.action.ActionForward uploadOrgAdj(org.apache.struts.action.ActionMapping mapping, org.apache.struts.action.ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws Exception {
    String sForward = "UploadInfo";
    HttpSession session = request.getSession();
    String sStartIndex = null;
    String sEndIndex = null;
    try
    uploadFinancialAdjForm UploadForm=(uploadFinancialAdjForm)form;
    System.out.println(UploadForm.getFileName().getContentType().toString());
    String file=UploadForm.getFileName().toString();
    uploadFinancialAdjManager businessManager = new uploadFinancialAdjManager();
    ArrayList fileName = new ArrayList(); fileName = businessManager.getOrgAdjDetails(file);
    boolean isMultipart = FileUpload.isMultipartContent(request);
    if(isMultipart){
    // Create a new file upload handler
    DiskFileUpload upload = new DiskFileUpload();
    // Parse the request
    List items = upload.parseRequest(request);
    //Process the uploaded items
    Iterator iter = items.iterator();
    while (iter.hasNext()) {
    FileItem item = (FileItem) iter.next();
    if (item.isFormField()) {
    //processFormField(item);
    if(item.getFieldName().equalsIgnoreCase("txtStartIndex")){
    sStartIndex = item.getString();
    else if(item.getFieldName().equalsIgnoreCase("txtEndIndex")){
    sEndIndex = item.getString();
    uploadFinancialAdjForm UploadForm=(uploadFinancialAdjForm)form;
    String file=UploadForm.getFileName().toString();
    uploadFinancialAdjManager businessManager = new uploadFinancialAdjManager();
    ArrayList fileName = new ArrayList();
    fileName = businessManager.getOrgAdjDetails(file);
    }else{
    if(item.getName()!=null && !item.getName().toUpperCase().endsWith(".XLS")){
    throw new Exception("Please browse an excel file and Upload");
    session.setAttribute("fileItem",item);
    }//end of while
    session.setAttribute("startIndex",sStartIndex);
    session.setAttribute("endIndex",sEndIndex);
    request.setAttribute("FileUploadStatus","true");
    else{
    throw new Exception("Error:Form is not multipart");
    catch(Exception e)
    System.out.println(e);
    return mapping.findForward(sForward);
    }

    Plz answer for my question

  • Getting error while file uploading in struts

    Hi!
    I am getting this error while file uploading,I can't find any solution.
    SRVE0026E: [Servlet Error]-[org.apache.commons.fileupload.FileUpload: method setSizeMax&#40;I&#41;V not found]: javax.servlet.ServletException: org.apache.commons.fileupload.FileUpload: method setSizeMax(I)V not found
         at com.honeywell.sdm.base.controller.SDMActionServlet.service(SDMActionServlet.java:75)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
         at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
         at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
         at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
         at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:983)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:564)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:200)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:119)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:276)
         at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
         at com.ibm.ws.webcontainer.cache.invocation.CacheableInvocationContext.invoke(CacheableInvocationContext.java:116)
         at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:186)
         at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
         at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
         at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:618)
         at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:439)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:672)
    Please help me.I have attached the bean,action ,jsp pages
    uploadInfo.jsp
    <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
    <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
    <html:html>
    <HEAD>
    <script>
    function submitting(){
    document.uploadForm.operation.value = "uploadOrgAdj";
    document.uploadForm.action = "/uploadRecAction.do";
    document.uploadForm.submit();
    </script>
    </HEAD>
    <body>
    <html:form action="/uploadRecAction" method="post" enctype="multipart/form-data">
    <b>Select the .xls File to upload data </b>
    <html:file property="fileName"></html:file>
    <html:hidden property="operation" value=""/>
    <html:button property="btn" value="Submit" onclick="submitting()"></html:button>
    </html:form>
    </body>
    </html:html>
    uploadAdjForm :
    import javax.servlet.http.HttpServletRequest;
    import org.apache.struts.action.ActionError;
    import org.apache.struts.action.ActionErrors;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionMapping;
    import org.apache.struts.upload.FormFile;
    public class uploadAdjForm extends ActionForm{
         private FormFile fileName;
              * @return
              public FormFile getFileName() {
                   System.out.println("getFileName"+fileName);
                   return fileName;
              * @param string
              public void setFileName(FormFile string) {
                   System.out.println("setileNmame"+string);
                   fileName = string;
    Action:
    public class uploadFinancialAdjAction extends DispatchAction{     
         public org.apache.struts.action.ActionForward uploadOrgAdj(org.apache.struts.action.ActionMapping mapping, org.apache.struts.action.ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws Exception {
              String sForward = "UploadInfo";               
              HttpSession session = request.getSession();          
              String sStartIndex = null;
              String sEndIndex = null;
    try
         uploadFinancialAdjForm UploadForm=(uploadFinancialAdjForm)form;
         System.out.println(UploadForm.getFileName().getContentType().toString());
         String file=UploadForm.getFileName().toString();     
    uploadFinancialAdjManager businessManager = new uploadFinancialAdjManager();
         ArrayList fileName = new ArrayList();                                   fileName = businessManager.getOrgAdjDetails(file);
              boolean isMultipart = FileUpload.isMultipartContent(request);
              if(isMultipart){
              // Create a new file upload handler
              DiskFileUpload upload = new DiskFileUpload();
              // Parse the request
              List items = upload.parseRequest(request);
              //Process the uploaded items
              Iterator iter = items.iterator();
              while (iter.hasNext()) {
                   FileItem item = (FileItem) iter.next();
                   if (item.isFormField()) {          
              //processFormField(item);
              if(item.getFieldName().equalsIgnoreCase("txtStartIndex")){          
                   sStartIndex = item.getString();          
              else if(item.getFieldName().equalsIgnoreCase("txtEndIndex")){
                             sEndIndex = item.getString();          
    uploadFinancialAdjForm UploadForm=(uploadFinancialAdjForm)form;
                             String file=UploadForm.getFileName().toString();               
              uploadFinancialAdjManager businessManager = new uploadFinancialAdjManager();
                             ArrayList fileName = new ArrayList();
                             fileName = businessManager.getOrgAdjDetails(file);
              }else{
                   if(item.getName()!=null && !item.getName().toUpperCase().endsWith(".XLS")){
              throw new Exception("Please browse an excel file and Upload");
              session.setAttribute("fileItem",item);
              }//end of while
              session.setAttribute("startIndex",sStartIndex);
              session.setAttribute("endIndex",sEndIndex);
              request.setAttribute("FileUploadStatus","true");
              else{
              throw new Exception("Error:Form is not multipart");
    catch(Exception e)
         System.out.println(e);
         return mapping.findForward(sForward);
    }

    ORA-06512: at "PREPRD.OIM_SP_RECONARCHIVAL", line 722
    ORA-00942: table or view does not exist
    ORA-01031: insufficient privileges
    (1) Check whether the OIM_SP_RECONARCHIVAL table or view exists or not...
    (2) If it exists, check whether the DEV_OIM user has enough privilege to view this table or not...
    If not, give it all privilege by login as sys as sysdba
    GRANT ALL PRIVILEGES TO DEV_OIM;
    COMMIT;

  • HT4759 Hello .. I've been subscribed for ic;oud for 20$ per year and I found it useless for many reasons: that I can not disconnect my mobile while the uploading process and it takes long time for uploading my data .. Its not a reliable system that's why

    Hello .. I've been subscribed for ic;oud for 20$ per year and I found it useless for many reasons: that I can not disconnect my mobile while the uploading process and it takes long time for uploading my data .. Its not a reliable system that's why I need to deactivate the space service and take my money back .. Thanks

    The "issues" you've raised are nothing to do with the iCloud service.
    No service that uploads data allows you to disconnect the device you are uploading from while uploading data. Doing so would prevent the upload from completing. It is a basic requirement for any uploading service that you remain connected to it for uploading to be possible.
    The time it takes to upload data to iCloud is entirely dependent on how fast your Internet connection is, and how much data you are uploading. Both of these things are completely out of Apple's control. Whichever upload service you use will be affected by the speed of your Internet connection.

  • Hi we have apple credentials for downloading OS and creating Provisioning profiles. Now we are trying to upgrade the Mac OS 10.7.3 version. do we need should buy this version from appStore. or can it be download from the apple site for free?  Many thanks

    Hi we have apple credentials for downloading OS and creating Provisioning profiles. Now we are trying to upgrade the Mac OS 10.7.3 version. do we need should buy this version from appStore. or can it be download from the apple site for free?  Many thanks in advance!

    Whether you need to buy Mac OS X 10.7.3 depends on what version of OS X you have now.
    If you have OS X 10.6.x or lower it is a paid upgrade from the Mac AppStore.
    If you have OS X 10.7.x it is a free upgrade you get using Software Update on your Mac.

  • Issues when purchasing english version while abroad?

    I am currently overseas in Denmark and am trying to purchase the student edition of the Creative Cloud membership. Everytime I log in and right before I enter my student verification (name of school), there is an error message reading:
    We're sorry, but we're having trouble processing your order. Please come back and try again later or call us at +1 800-585-0774. If you're not in North America, you can look up a local number here.
    Is this because I am trying to download the english version while I am in Denmark? Any other thoughts? This has happened now 5 or 6 times on several occasions. I don't want to call the number because it would cost me an arm and a leg.
    Thanks.

    Yes, the Adobe site does geo tracking based on IP and wil lattempt to forward to the revgional sales pages. If a phone call is out of the question, try a web chat. They should be able to generate a direct link and handle your details.
    Mylenium

  • Versioning and WEBUI Upload

    I notice that it is possible to upload a versioned file using the WEBUI despite it not being currently checked out. By looking at the History you get the comment 'new version via MultiPart Upload' (browse option) or 'ContentResolver Checkin comment!!' (drag and drop).
    I imagine this may be something to do with the restrictions of FTP but this would seem to render the check in/out facility almost useless, as any number of users can drop in new versions of files at any time without first checking them out.
    Can you confirm if this is a bug or is it an already known feature with plans to fix in a forthcoming release?
    I am on a Windows 98 client, Solaris 2.6/Oracle 8.1.7 server with iFS 1.1.6.0.0.
    Thanks
    Chris

    Chris, this is expected functionality. I'm assuming that you users have the ability to update the document. In SMB, due to the vagarites of the M/S SMB Command set, we cannot tell when a user copy takes place whether this is a deliberate action by the user or the result of some application such as MS-Word 95/97 making a copy of a document as part of some checkpoint operation. Consequently in SMB we do not allow automatic versioning.
    With FTP and HTTP automatic versioning is supported if a document in not checked out, and if the user uploading the document has the ability to update the earlier version of the document.
    null

  • BOM Version in cFolders - Upload PDX

    Hello Experts,
    When we create BOM using "Upload PDX Package" in cFolders, then  system creates only one version.
    When we create BOM in cFolders by exporting it from SAP R3 system, then system creates two versions.
    Why there is different behaviour of cFolders while creating BOM with above two functionalities?
    Any comments/answer is welcome.
    Thank you,
    Yogesh Pande

    Hi,
    If your file name contains space, the file will not be uploaded into cFolder. Try a file  without containing any space in name. Ther is a note available at service.sap.com, Once you implement this note your problem wille gone.
    regards,
    T T Subudhi

  • Programmabruch beim Rendern (upload zu blurb Fotobuch); error while renderimg (upload to blurb photo book)

    ich versuche nun schon mehr als 10 mal ein Fotobuch hochzuladen (240 Seiten).
    Beim ersten Schritt, dem rendern, wird jedoch an unterschieldlichen Stellen, der Programmablauf mit einer Fehlermeldung:
    "Beim Erstellen des Buchs ist ein Fehler aufgetreten.
    Das Buch konnte nicht erstellt werden, da das Foto "xx.dng" nicht gerendert werden konnte."
    Das Buch enthält ca. 800 dng-Bilder. Alle updates WIndows und Lightroom 5.7 wurden durchgeführt. Ebenso habe ich alle Bilder vorab als 1:1 Vorschauen erstellt.
    Die Festplatte ist auch defragmentiert. Alle weiteren Prtogramme sind geschlossen.
    Anmerkung: das update auf 5.7 könnte eine Verbesserung gebracht haben, da nun der Fehler erst bei Seite 46 aufgetreten ist (war vorher meist früher).
    Diese Problematik hatte ich auch schon bei früheren Version, jedoch habe ich das Buch dann nach mehreren Versuchen doch fertiggebracht!
    Ich denke, dass in dem "Buch-Modul" grundsätzlich ein Bug ist, der sporadisch auftritt. Das rendern in allen anderen Programmteilen erfolgt ohne Probleme!
    Wer hat einen Tipp? Leider ist bei Adobe kein Support (Tel.) direkt zu erhalten!?
    English question:
    Mistake (rendern) while upload too blurb (photo book)
    now I try to upload already more than 10 times a photo book (240 sides).
    Nevertheless, with the first step, rendern, becomes an error message at different pages, the program expiry with:
    "With the construction of the book a mistake has appeared.
    The book could not be provided, because the photo 'xx.dng' could not rendered.'
    The book contains approx. 800 dng pictures. All updates of Windows and Lightroom 5.7 was done. Also I have provided all pictures to begin with as 1:1 previews.
    The hard disk is also defragmentated. All other pogrammes are closed.
    Remark: the updates to 5.7 could have brought an improvement, because now the mistake has appeared after page 46 (was mostly early before).
    I had these problems also already with earlier version, nevertheless, I have finished the book after several attempts!
    I think that in the 'book module' basically a bug is which appears as sporadic. Rendern in all other program parts works without problems!
    Who has a tip? Unfortunately, no support (phone) can be received @ Adobe directly!?

  • OSA - ERROR while downloading \ uploading appraisal template

    Hello!
    May be some of you came across the same problem: when appraisal template using object Q as reference object for VB or VC is being uploading into the other client it is copied with error. The relationship 607 between objects is not ceated in the other client, so the object is not correct. Is it a standard solution
    Thanks Ekaterina

    Hello, once more!
    I am inclined to think that lack of relationship  607 between objects VB and Q while uploading appraisal template into other client is due to a programm error but we failed to find relativa SAP Note, may be someone came across the problem?

  • Error while Role Upload

    Hello,
    We have Enterprise Portal connected to the Backend SRM System and while trying to do a Role Upload from SRM to Portal ,I get the following error as below:
    com.sap.portal.pcd.rolemigration.RoleMigrationConnectionException: Connection Failed: Nested Exception. Physical connection was not initialized. - message at com.sap.portal.pcd.rolemigration.util.Connector.callFunction(System,en,userid,TWPN_GET_URL,SERVICE_TABLE,{ENABLE_LOGGING= , ROLENAME=<Rolename>OBJECT_ID=00000102}): Connection not available for system ''Connection Failed: Nested Exception. Physical connection was not initialized. at com.sap.portal.pcd.rolemigration.util.Connector.callFunction(Connector.java:114) at com.sap.portal.pcd.rolemigration.RoleMigrationObject.migrate(RoleMigrationObject.java:1328) at com.sap.portal.pcd.rolemigration.RoleMigrationObject.doDependentObjects(RoleMigrationObject.java:4974) at com.sap.portal.pcd.rolemigration.RoleMigrationObject.save(RoleMigrationObject.java:4734) at com.sap.portal.pcd.rolemigration.RoleMigrationObject.save(RoleMigrationObject.java:4303) at com.sap.portal.pcd.rolemigration.RoleMigrationObject.migrate(RoleMigrationObject.java:1497) at com.sap.portal.pcd.rolemigration.RoleMigrationObject.migrate(RoleMigrationObject.java:686) at com.sap.portal.pcd.rolemigration.RoleMigrationThread.run(RoleMigrationThread.java:525) Original exception: com.sapportals.connector.connection.ConnectionFailedException: Connection Failed: Nested Exception. Physical connection was not initialized. at com.sapportals.connectors.SAPCFConnector.SAPConnectorException.getNewConnectionFailedException(SAPConnectorException.java:107) at com.sapportals.connectors.SAPCFConnector.connection.SAPCFConnectorManagedConnectionFactory.createManagedConnection(SAPCFConnectorManagedConnectionFactory.java:133) at com.sap.engine.services.connector.jca.ConnectionHashSet.match(ConnectionHashSet.java:371) at com.sap.engine.services.connector.jca.ConnectionManagerImpl.allocateConnection(ConnectionManagerImpl.java:262) at com.sapportals.connectors.SAPCFConnector.connection.SAPCFConnectorConnectionFactory.getConnectionEx(SAPCFConnectorConnectionFactory.java:156) at com.sap.portal.ivs.internalconnector.ConnectionProvider.getConnection(ConnectionProvider.java:295) at com.sap.portal.ivs.internalconnector.ConnectionProvider.getConnection(ConnectionProvider.java:256) at com.sapportals.portal.ivs.cg.ConnectorService.getConnection(ConnectorService.java:446) at com.sapportals.portal.ivs.cg.ConnectorService.getConnection(ConnectorService.java:84) at com.sap.portal.pcd.rolemigration.util.Connector.callFunction(Connector.java:79) at com.sap.portal.pcd.rolemigration.RoleMigrationObject.migrate(RoleMigrationObject.java:1328) at com.sap.portal.pcd.rolemigration.RoleMigrationObject.doDependentObjects(RoleMigrationObject.java:4974) at com.sap.portal.pcd.rolemigration.RoleMigrationObject.save(RoleMigrationObject.java:4734) at com.sap.portal.pcd.rolemigration.RoleMigrationObject.save(RoleMigrationObject.java:4303) at com.sap.portal.pcd.rolemigration.RoleMigrationObject.migrate(RoleMigrationObject.java:1497) at com.sap.portal.pcd.rolemigration.RoleMigrationObject.migrate(RoleMigrationObject.java:686) at com.sap.portal.pcd.rolemigration.RoleMigrationThread.run(RoleMigrationThread.java:525) Caused by: com.sapportals.connector.connection.ConnectionFailedException: Connection Failed: Nested Exception. Failed in creating the JCO Connection. at com.sapportals.connectors.SAPCFConnector.SAPConnectorException.getNewConnectionFailedException(SAPConnectorException.java:107) at com.sapportals.connectors.SAPCFConnector.connection.SAPCFConnectorManagedConnection.connectWithJCO(SAPCFConnectorManagedConnection.java:456) at com.sapportals.connectors.SAPCFConnector.connection.SAPCFConnectorManagedConnection.establishInitialConnection(SAPCFConnectorManagedConnection.java:204) at com.sapportals.connectors.SAPCFConnector.connection.SAPCFConnectorManagedConnection.init(SAPCFConnectorManagedConnection.java:183) at com.sapportals.connectors.SAPCFConnector.connection.SAPCFConnectorManagedConnectionFactory.createManagedConnection(SAPCFConnectorManagedConnectionFactory.java:129) ... 15 more Caused by: com.sap.mw.jco.JCO$Exception: (101) RFC_ERROR_PROGRAM: 'user' missing at com.sap.mw.jco.MiddlewareJRfc.generateJCoException(MiddlewareJRfc.java:518) at com.sap.mw.jco.MiddlewareJRfc$Client.connect(MiddlewareJRfc.java:1086) at com.sap.mw.jco.JCO$Client.connect(JCO.java:3296) at com.sapportals.connectors.SAPCFConnector.connection.SAPCFConnectorManagedConnection.connectWithJCO(SAPCFConnectorManagedConnection.java:429) ... 18 more
    Any help would be highly Appreciated.
    Thanks

    Hi,
    Please check the SRM system object connection in the SAP Portal. GO to system administration > system configuration > system landscape and search for SRM system object and test the connection. If connection test successful then try to upload the roles.
    Hope it will helps
    Best Regards
    Arun Jaiswal

  • Why do I receive an error message while attempting upload pictures from iPhoto '09 to Facebook?

    I currently have iPhoto '09 version 8.1.2. I tried uploading pictures from iPhoto to Facebook but I get the message "An error has occured. Please try again later". File > Export > Login (which brings me to the Login page on Facebook) > I sign in & that's when I get the message. I've even tried hitting the Facebook tab on the bottom right. Does anyone have any solutions to my problem? I'll greatly appreciate it. Thanks.

    Did you ever get a response?

  • Error in SAP R/3 4.7 & ECC 5 versions - while installing Databse Instance

    Hi
    I have installed Windows 2003 in my Laptop . Then I configured MS Loopback adapter and assigned an IP address. Then I changed the Virtual Memory  Then I installed Java in C drive & gave the path in System properties. Then Installed Oracle 9i and also the Patch in drive D. Then I installed the Central Instance successfully in drive D and while installing the Database Instance, I'm getting an
    Error saying : _NODE D:\SAP\DATA_ doesn't exists ._*
    Can anyone help me in this error ? I can't guess why this error is coming & what to do to solve this error .
    Any help is very much appreciable.
    Regards
    Kannan

    Hi Kanan,
    I think this is because the problem with the software dump.Copy it properly to local drive and retry the installation.
    http://www.sapdb.info/wp-content/uploads/2009/07/SAP-47-Installation-Tutorial.pdf
    http://www.sapdb.info/wp-content/uploads/2009/04/installation_of_mysaperp2005.pdf
    Regards
    Ashok Dalai
    Edited by: Ashok Dalai on Jul 30, 2009 7:43 AM

  • Some coponents are missing while network uploading(CN21) through BAPI

    Hello,Friends,
    Iam PP consultant and facing a problem of BOM components uploading  through BAPI,for creating of  the Network (CN21)
    we have 300 components in the network activity and while uploading the BOM  through BAPI , only 295 components has been uploaded.Others components has not uploaded.
    Please suggest me what will be the Problem? and
    What is the solution for the same?
    Regards,
    MYS

    Hi Mangesh,
    The upload skips the first 5 items or it has randomly missed some items ?
    Regards,
    Bala.

  • Firefox 31.6.0 ESR version not allowing upload of files (404 error)

    I am using Firefox ESR version for my organization. I am not able to upload files to a web based COTS product. I had no issues in ESR v 24.1.1. Is there a setting that I can use or something I'm missing? I have seen that this was an issue in the home use version, but not sure if it will be fixed in the ESR version.

    So, in same environment on another machine (same GPOs applied) I have 24.1.1 ESR. No issues with uploading files.
    A bit more (novice) explanation: To configure my security tools that use a web gui, I need to upload config files. When I click "upload" in any given tool, I get the 404 error. If I go to the 24.1.1 version, I get the gui to browse for the file and upload it.
    Does that help a bit?

Maybe you are looking for

  • Can't download drivers for Vista

    I've tried downloading the drivers for my HP2610 all in one printer to my laptop which is still running Vista. Every time I get an error that the file was deleted because it contains a virus. The error comes from Windows, but I can't determine what p

  • How to change standard text in portal

    How to change standard text in portal Pls reply

  • N97 TV Out problem Any Suggestions?

    I have a pre-order N97-NAM with relatively few problems (compared to others on this forum) running the latest firmware that I use in my vehicle via TV out cable.  Is there a way to set options on which audio output the phone uses during a call?  When

  • Unable to Launch Photoshop CS4

    I started having this problem 3 days ago. Suddenly one morning Photoshop CS4 stopped launching. The bad part is, there is no error message...nothing...it just won't launch. Other programs, including Bridge CS4 works fine, just Photoshop. I'm using Wi

  • HELP! Where I can find the InDesign Object Model, Methods, and Properties?

    I've done a little VB scripting with InDesign, using some of the examples I've found here and there. But I can't for the life of me find a full listing of the Object Model, nor a listing of methods and properties. I'm limited in what I can do by stum