SRM-MDM Catalog - issue in the Portal (Employee Self-Services - Shopping C)

Dear SAP,
When we quit a web page in SRM-JAVA system, we get this issue in our production system.
We do not have this issue to our DEV and QAS system :
============================================================
Exception occured during processing of Web Dynpro application
sap.com/tcmdmsrmcat~uisearch/MDM_SRM_UI_App. The causing exception is
nested.
[EXCEPTION]
com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Exit-Plug
must no be triggered with an URL when running in portal. Use portal
navigation instead to navigate to another application !
============================================================
There is a different behavior between our QAS system (working) and the
productive system (not working):
On calling the MDM-Catalog, a short URL is called to open the catalog.
On returning the shopping cart back to SRM, there is in QAS system the
same short URL, but in PROD system there is an URL (instead of a short URL):
1. Test System QAS --> Only one URL (In / Out) : IT WORKS
=====================================
http://serv2qas.luc.local:50000/irj/portal?navigationtarget=navurl%3a%2f%2fd49ceba342f141e3c16bebca2f501417&dropprtevent=obnevent&botechnicalname=sc&bosystemalias=sap_srm&operation=shop&isobn=true&applid=sapsrm_e_checkstatus&powl_query=e00db2f1dad54ff19363000c29462e23&dynamicparameter=applid%3dsapsrm_e_checkstatus%26powl_query%3de00db2f1dad54ff19363000c29462e23&currentwindowid=wid1296120969986&navmode=3
2. Productive system PROD --> Incoming URL (from SRM to MDM) : IT DOES NOT WORK
====================================================
http://www.supershop.com/irj/portal?navigationtarget=navurl%3a%2f%2fd49ceba342f141e3c16bebca2f501417&dropprtevent=obnevent&botechnicalname=sc&bosystemalias=sap_srm&operation=shop&isobn=true&applid=sapsrm_e_checkstatus&powl_query=e017f129ba0d47f1aa61000c290bb402&dynamicparameter=applid%3dsapsrm_e_checkstatus%26powl_query%3de017f129ba0d47f1aa61000c290bb402&currentwindowid=wid1296111549383&navmode=3
URL after SC creation (coming out from Catalog) :
http://www.supershop.com/irj/portal?navigationtarget=pcd:portal_content/every_user/SuperShop_Desktop/Roles/com.sap.pct.srm.core.supershop_ro_employeeselfservice/fl_goshopping/com.sap.pct.srm.core.iv_shop&NavMode=3&UsePost=True&SAPSRM_RESUME_ID=SAPSRM_OCI
Could you please help me to find out what is the difference between QAS and PRD if system is coming from ?
Best regards,
SAP Admin
Edited by: SAPNetWeavAdmin on Jan 27, 2011 10:34 PM

Dear all,
It was a role problem.
Best regards
SAP NetWeaver Admin

Similar Messages

  • Enhancement of Employee Self-Service Shop by an own Catalogue (ABAP)

    Hello SRM-Development-Experts
    I enhanced the /SAPSRM/WDC_DODC_SC_GAF_C-WD-Component of Employee Self-Service Shop with an own ActionLink to an own WD-Component.
    Details
    The own WD-Component uses the interfaces /SAPSRM/WDI_L_FPC_GENERAL, /SAPSRM/WDI_L_FPC_POPUP and /IF_FPM_UI_BUILDING_BLOCK.
    So the call from the V_DODC_SC_GAF_FSCA view is like this:
    method ONACTIONZ_ENH_MATCAT .
    DATA: lv_ref_cmp_usage  TYPE REF TO if_wd_component_usage,
          lr_general_controller TYPE REF TO /sapsrm/iwci_wdi_l_fpc_general,
          lv_task_container  TYPE REF TO /sapsrm/if_cll_task_container,
          lr_node  TYPE REF TO if_wd_context_node,
          lr_mo_bom_sc  TYPE REF TO /sapsrm/cl_ch_wd_bom_sc,
          lr_pdo  TYPE REF TO /sapsrm/cl_pdo_bo_sc_adv,
          lt_usages TYPE /sapsrm/t_ch_wd_usages,
          lr_api  TYPE REF TO if_wd_controller,
          lr_comp  TYPE REF TO if_wd_component,
          lr_win_manager  TYPE REF TO if_wd_window_manager,
          lr_win  TYPE REF TO if_wd_window.
    " component usage for our component.
         lv_ref_cmp_usage = wd_this->wd_cpuse_z_myself( ).
    " Initialization step starts.
        IF lv_ref_cmp_usage->has_active_component( ) IS INITIAL.
    " Component creation.
         lv_ref_cmp_usage->create_component( ).
         lr_mo_bom_sc ?= wd_this->mo_bom_sc.
         lr_pdo  ?= lr_mo_bom_sc->/sapsrm/if_cll_xo_mapper~get_pdo( ).
         APPEND lv_ref_cmp_usage TO lt_usages.
         wd_this->mo_component_manager->init_component_usages( it_usages = lt_usages ).
         " Second step: SRM-specific Initialisation of wd-component
         lr_general_controller ?= wd_this->wd_cpifc_z_myself( ).
         lr_general_controller->l_fpc_general__init( io_task_container = wd_this->mo_task_container
                                                   io_bo_mapper       = wd_this->mo_bom_sc ).
      endif.
      lr_api = wd_comp_controller->wd_get_api( ).
      lr_comp = lr_api->get_component( ).
      lr_win_manager = lr_comp->get_window_manager( ).
      lr_win = lr_win_manager->create_window_for_cmp_usage(
          interface_view_name  = 'Z_W_MYSELF'
          component_usage_name = 'Z_MYSELF'
          title = 'Material-Katalaog'
          close_in_any_case = abap_false ).
      lr_win->open( ).
    endmethod.
    To add products I (mis)used the /SAPSRM/IF_CLL_DODM_SC_I_IGOSV-Interface and copy pasted the content of /SAPSRM/WDC_DODC_SC_I_IGS into my WD-Comp:
    METHOD onactionadd_to_basket .
      DATA: lo_api_component  TYPE REF TO if_wd_view_controller,
            lo_w_component  TYPE REF TO if_wd_component,
            lo_window  TYPE REF TO if_wd_window,
            lo_window_ctrl  TYPE REF TO if_wd_window_controller,
            lr_current_controller TYPE REF TO if_wd_controller,
            lr_message_manager   TYPE REF TO if_wd_message_manager,
            lr_internal_goods TYPE REF TO if_wd_context_node,
            lv_close_window TYPE abap_bool,
            lo_idr  TYPE REF TO if_fpm_idr,
            lo_fpm  TYPE REF TO if_fpm,
            lo_cnr_gaf  TYPE REF TO if_fpm_cnr_gaf,
            lo_pdo_node TYPE REF TO if_wd_context_node,
            lo_pdo TYPE REF TO /sapsrm/cl_pdo_bo_sc_adv,
            ls_item TYPE bbp_pds_sc_item_icu,
    TRY.
          lr_internal_goods = wd_context->get_child_node( name = wd_this->wdctx_internal_goods ).
          lr_internal_goods->bind_structure( new_item = ls_item ).
         " mo_bom_sc is initialized in method L_FPC_GENERAL__INIT
          wd_comp_controller->mo_bom_sc->/sapsrm/if_cll_mapper~is_ui_changed_by_client( ).
          wd_this->mo_dodm_sc_i_igosv->add_internal_goods( IMPORTING ev_close_window = lv_close_window ).
          wd_comp_controller->mo_bom_sc->/sapsrm/if_cll_mapper~is_ui_changed_by_client( ).
          IF lv_close_window EQ abap_true.
    " Close window
            lo_api_component = wd_this->wd_get_api( ).
            lo_window_ctrl = lo_api_component->get_embedding_window_ctlr( ).
            IF wd_comp_controller->mv_popup_active EQ abap_true.
              FIELD-SYMBOLS: <ls_mapper> TYPE /sapsrm/s_cll_mapper.
              wd_comp_controller->mo_message_handler->deactivate_popup( EXPORTING iv_view_name_of_popup = 'V_ADD_TO_BASKET' ).
              LOOP AT wd_comp_controller->mt_mapper ASSIGNING <ls_mapper> .
                wd_comp_controller->mo_bom_sc->/sapsrm/if_cll_bo_mapper~deregister_mapper( io_mapper = <ls_mapper>-mapper ).
              ENDLOOP.
              CLEAR: wd_comp_controller->mt_mapper.
            ENDIF.
    " special message stack handling
            wd_comp_controller->mv_popup_active = abap_false.
            lo_window = lo_window_ctrl->get_window( ).
            lo_window->close( ).
          ENDIF.
        CATCH cx_root INTO lr_root.
      ENDTRY.
    ENDMETHOD.
    So, the after closing my own WD-Component the products have been added to the basket & the basket can be properly saved.
    But pushing the Next-Step-Button or Previous-Step-Button provided by the GAF framework makes the shopping basket "empty" and the Previous/Next navigation doesn't react anymore.
    What is the correct approach? Documentation?
    Thanks in advance.

    Dear Poster,
    As no response has been provided to the thread in some time I must assume the issue is resolved, if the question is still valid please create a new thread rephrasing the query and providing as much data as possible to promote response from the community.
    Best Regards,
    SDN SRM Moderation Team

  • Portal Employee Self Services OverView Page

    Hi All,
              Iam having Four work items in my Employe Self Services OverView Page 1)personal information
    2)employee search  3)Benfits and payments  4)Working Time . Now I have added one more work item Travel Management i have done all necessary configuration settings in R/3
    spro>employee self services->home page for self services->areas->Difine ares to area grop pages->Assign Areas to Area Group Pages (Add and Change Entries)->here i have given 5 position
    but there is no change in Frontend portal employee services overview page
    Can anybody help me in solve out this.
    Thanks in advance,
    Kishore
    Edited by: kishore shikore on Nov 29, 2008 6:13 AM

    hi, hav u created webdynpro iView..
    Suppose you want a new area which has two servicex.. create WD iView which would point to your application.
    Define  Applicationparameter  in iView defining menuarea, menugroup, menuheader, which you will be defining in SPRO.
    Now create weddynpro proxy page and the add above iView to your page.
    Now create iView for service i.e your webdynpro appliaction.
    Now add above iView to new proxy page. Thus now we have to proxy page.
    Create workset and add this two page to workset.
    Add this workset to ESS role.
    note down PCD location of above two pages.Now all necessary configuation from portal side is completed
    Now u would need to do your SPRO setting.. Go to resource node and create resouce. and give  PCD location in URL of PCD Page. Similarly you would need to do this for other page also ...in resouce node.
    Now we have defined resouce...now we would define the area...give your area name..and give resouce name.
    Now define subarea.. and add subarea to areas..from assing sub-area to area node.
    Now create a service..from define service node..give resouce name in link resouce text box..
    Now assign service to subarea..
    Now to make it available on overview page....you need to add Group page to Group Area page, to make it visible on ESS Overview Page.
    IMG-> Cross Application Components -> Homepage Framework->Areas -> Assign Areas to Area Group
    Pages -> Assign Areas to Area Group Pages (Add and change Entries).
    Click on u2018New Entriesu2019.
    Now you can save..it..
    Regards
    Jigar oza

  • Employee Self-Service Shopping Area (POWL) does not show any documents

    Hello gurus,
    My client has upgraded to SRM 7.0 and are configuring portal and SRM to meet the needs. The Shopping Area of the Employee Self-Service is being displayed; however we have some problems:
    1) No Shopping Cart documents are being shown in the table query (even though there are SC created in the SRM system which you can see in BBP_PD)
    2) When you go to the Shop functionality to create the SC, you can't select any Goods/Services because no Product Categories / Product IDs are being displayed (here also they are created in the SRM and backend systems).
    Does anyone know if there is a feature or custo that I have to set so that the documents are displayed?
    I don't know if this is a Portal config or SRM customizing issue, so I will post this thread to both forums.
    Many thanks!
    Adi

    Hi Adi,
    Have you tried using the POWL under Purchasing tab rather than the one in ESS?
    Does this only affect your user or is no-one able to see POWL data?
    Are the carts visible under the advanced search or not there also?
    Regards,
    Jason

  • SRM-MDM-Catalog and  XI using HTTP

    I need to do a integration between SRM 5 and SRM-MDM-Catalog using XI.
    I imported the SRM-MDM-Catalog packages into the XI and I saw that all connections with MDM are using FTP in the comunnication channel template.
    Is it possible to do connections for MDM using http or soap?

    As far as I know using Files is how XI interacts with MDM. All scenarios I have seen on SDN have been with File adapter being used on MDM 's side.
    Maybe there is a way , am watching this thread as well.
    Regards
    Bhavesh

  • SRM-MDM-Catalog and XI

    I need to do a integration between SRM 5 and SRM-MDM-Catalog using XI.
    I imported the SRM-MDM-Catalog packages into the XI and I saw that all connections with MDM are using FTP in the comunnication channel template.
    Is it possible to do connections for MDM using http or soap?

    As far as I know using Files is how XI interacts with MDM. All scenarios I have seen on SDN have been with File adapter being used on MDM 's side.
    Maybe there is a way , am watching this thread as well.
    Regards
    Bhavesh

  • Employee Self-Service Role

    Hello,
    I have NW2004s, EP 7.0, ECC 5.0 (ERP 2004), ESS BP 60.2 and MSS BP 60.1.
    A member of our team accidentally deleted the original Employee Self-Service role, which was the one we use (this is a demo portal). This was a screwed up Copy/Paste, still figuring out how this happen...
    Does anyone know if it's possible to import just the original ESS Role? Or how can I look at it's definition in case I have to create a new one, based on the original ESS Role, so that we can maintain the Standard Homepage Framework looks?
    Thanks a lot
    Antonio

    If you manually unpack the ESS BP (it;s just a ZIP file with a different extension) you <b>might</b> find an EPA file and the low level EPT file for the role. If you make a dummy transport wiht a role in it and export it and keep the same structure with the original ESS role, you may be able to reimport.
    Cheers

  • Employee Self-Service vs E-Learning.

    Good Morning.
    I have implemented ESS. I have the following doubt:
    If an employee wants to inscribe a course of Learning, in ESS  Where can find those services?
    This Services not is in Area or Subareas of ESS??
    This is a TAB as the are Employee Self-Service and Manager Self-Service in the portal?
    I never have work integration of ESS vs E-Learning.
    Thank in advance for your help.
    Best Regards

    Hi Juan,
    Since the Web Dynpro versions for ESS, Training area is not integrated. That was replaced with Learning Solution (LSO), what alsomore, include new functionality, like manage e-Learning courses with SCORM standards. But take in count that LSO requires and additional license to operate in productive systems.
    So what can you do?
    1. Include the old apps in your Web Dynpro Portal (to prebook/request/cancel a participation and review the status). For this, add the PV7I and PV8I transactions, by using transaction or IAC iViews templates
    2. For licensed LSO users, you have to download the Business Package for Learning, then make it accesible to users by adding the Role. Please check:
    Business Package for Learning (SAP ERP) 1.0
    To finish and be clear, e-Learning is only supported in LSO.
    Kind regards

  • Employee Self Service Personal Information - Phone Numbers

    Hi,
    I am testing out HRSS Employee Self Service. As an employee I navigate to the Personal Information Page, and click Add in the Phone Number region. When I add a phone number, it defaults to the phone type of Home. I have no option to add different phone numbers of different phone types. I checked in the HRMS forms, and phone types are setup, and through the People: Enter and Maintain forms I am able to add multiple phone numbers with different phone types.
    Why do I not have the option to add phone numbers of different phone types through the HRSS Employee Self Service Personal Information page?
    Thank you for your help,
    Suzanne

    Thank you for your response. How do I add these?

  • SRM MDM Catalog - Shopping Cart Issue

    Hii All,
    I am doing SRM MDM Catalog, We have done with all the configurations and settings.
    I can search and select items in the SRM portal shop menu.
    I can even add the items to shopping cart and shopping list but the 'continue' button doesnt get enabled after doing this so cant proceed further.
    Kindly help.
    Regards,
    Poonam K

    Hi,
    There are some issues with importing parameters of the BBP_ENRICH_CATALOG Badi, 1429685 and 1591198, please ensure both are applied.
    Regards,
    Jason

  • SRM-MDM Catalog publication in portal

    Hi experts,
    Iu2019m facing some difficulties concerning MDM / portal integration. We are implementing SRM-MDM catalog scenario and Iu2019ve already created a catalog in MDM Data Manager. Iu2019ve also set the parameters for the web service definition in SRM system, and assigned the Catalog ID in ppoma_bbp.
    However, Iu2019m still not able to access my catalog information in portal. When I try to access my catalog it is necessary to introduce again the logon details and an error message u201CLogon failedu201D is displayed, which is not normal right?
    In addition, if I introduce my logon details nothing happens but the error message is changed for a warning message u201CLogon failedu201D. Consequently I cannot access my catalog in portal.
    Can someone help me? What might being wrong with my catalog publication?
    Many Thanks!
    Best regards,
    Andreia Nascimento

    Hi,
    Yes, You can define any user which has "Catalog User" Role defined in MDM in SRM Web Service". and this is not required to have same user in SRM system. You can assign this web service ID as attribute to any SRM user.
    Did you get "Connection Successful Message"?? I couldn't see that in your Trace.. Once you test Connection then you should get message in Green "Connection test was successful".
    Also, Check the following Things and revert with the result:
    1. Is your repository Loaded?
    2. Try to Console through the User which you have defined in Web Service. This will confirm whether User credentials are correct or not.
    Also, let us know which version of SRM you are working with and what is version of your SRM-MDM Catalog.
    Regards,
    Shiv
    Also Check this document (Page no 32 ) and make sure if you have defined other parameters correctly in the web service definition.
    https://websmp103.sap-ag.de/~sapdownload/011000358700000134212010E/srm_mdm_integration.pdf
    Regards,
    Shiv
    Edited by: Shiv Prashant Dixit on Mar 5, 2010 11:32 PM

  • Error replicating customizing data to the repository (SRM MDM Catalog)

    Hi Folks,
    I am currently configuring SRM MDM catalog, and one of the initial steps is to replicate data from SRM to the repository.
    After defining repositories and FTP servers, I am running step "start extraction".
    Well, the result page prompts me for errors in the 3 different files it is trying to replicate:
    Report Statistics
    Size of document     33.979  Bytes
    Number of records :
    Currencies        195
    cd /
    250 CWD command successful.
    cd "/SRM_MDM_Catalog/Inbound/SSD_120/LT_Currencies/Ready/"
    250 CWD command successful.
    Error while executing ftp command put Currencies_554_SSD120.xml
    The otehr 2 errors are the of the same type, just of different XML file.
    When I look at the log files in the port structure directory, I find the following messages:
    <?xml version="1.0" encoding="utf-8"?>
    <?xml-stylesheet type="text/xsl" href="MDM_Log.xsl"?>
    <MDM_Log version="1.0" path="F:\usr\sap\SCD\MDIS06\exe\MDIS_Temp\MDIS_TASK1_20091223211459.xml"
    >
         <Open ts-long="21:14:59 GMT, Wednesday, December 23, 2009" ts="2009/12/23 21:14:59.998 GMT" pid="3304" host="z001idsd118" compile-type="WIN64_RELEASE">
              <Version ts="2009/12/23 21:14:59.998 GMT" tid="9044" entry-no="0"><Server>7.1.01.78</Server><Build>Built on 2009-May-09</Build></Version>
              <Trace ts="2009/12/23 21:15:00.108 GMT" tid="9044" entry-no="1">[MDS=z001idsd118 Repository=SRM_MDM_Catalog ClientSystem=SRM Port=LT_Currencies]:   Chunk size/parallel[50000/5]: Import Task Started.</Trace>
              <Trace ts="2009/12/23 21:15:02.092 GMT" tid="9044" entry-no="2">Repository Load [SRM_MDM_Catalog]: 2003.483844 milli-seconds.</Trace>
              <Trace ts="2009/12/23 21:15:02.092 GMT" tid="9044" entry-no="3">Source file(s) retrieval + Repository Load: 2159.024536 milli-seconds.<LF/>-- Currencies_554_SSD120.xml</Trace>
              <Trace ts="2009/12/23 21:15:03.999 GMT" tid="3852" entry-no="4">xStructuralTransformer: Thread started.</Trace>
              <Trace ts="2009/12/23 21:15:03.999 GMT" tid="8392" entry-no="5">xValueTransformer: Thread started.</Trace>
              <Trace ts="2009/12/23 21:15:03.999 GMT" tid="9048" entry-no="6">xImporter: Thread started.</Trace>
              <Trace ts="2009/12/23 21:15:05.092 GMT" tid="6288" entry-no="7">xXmlSaxParser: Thread started.</Trace>
              <Error ts="2009/12/23 21:15:05.202 GMT" tid="6288" entry-no="8">Fatal Error at file Currencies_554_SSD120.xml, line 1, char 1, Message: Invalid document structure RC: 0xfffffffa - Invalid external data</Error>
              <Trace ts="2009/12/23 21:15:05.217 GMT" tid="6288" entry-no="9">xXmlSaxParser: Thread finished; Start -&gt; End: 0.000000000 milli-seconds.</Trace>
              <Trace ts="2009/12/23 21:15:05.295 GMT" tid="8392" entry-no="10">xValueTransformer: : Start -&gt; End: 0.000000000 milli-seconds.</Trace>
              <Trace ts="2009/12/23 21:15:05.295 GMT" tid="8392" entry-no="11">xValueTransformer: Thread signalled to stop: RC = 0xffffff</Trace>
              <Trace ts="2009/12/23 21:15:05.295 GMT" tid="9048" entry-no="12">xImporter: : Start -&gt; End: 0.000000000 milli-seconds.</Trace>
              <Trace ts="2009/12/23 21:15:05.295 GMT" tid="9048" entry-no="13">xImporter: Thread signalled to stop: RC = 0xffffff</Trace>
              <Trace ts="2009/12/23 21:15:05.295 GMT" tid="3852" entry-no="14">xStructuralTransformer: : Start -&gt; End: 0.000000000 milli-seconds.</Trace>
              <Trace ts="2009/12/23 21:15:05.295 GMT" tid="3852" entry-no="15">xStructuralTransformer: Thread signalled to stop: RC = 0x0</Trace>
              <Trace ts="2009/12/23 21:15:06.108 GMT" tid="9044" entry-no="16">[MDS=z001idsd118 Repository=SRM_MDM_Catalog ClientSystem=SRM Port=LT_Currencies]:   Chunk size/parallel[50000/5]: Import Task Finished.</Trace>
         </Open>
    </MDM_Log>
    What am I missing?
    thanks a lot a happy holidays!

    Hello Priti,
    For accessing the catalog, you have to define the external webservice with the config parameters in SRM System under transaction "SPRO"
    Please refer the SRM-MDM Catalog configuration guide.
    Hope this will help you.
    TNR,
    Saurabh...

  • How to use the Masks in SRM-MDM catalog?

    Hi Expert,
    We are at SRM-MDM catalog 3.0.
    There have  two types of SRM contracts were transferd to one MDM catalog repository, and we config two different number range for these contract types. We will creat two web services in SRM IMG, only the same number ramge of the contracts could diaplay in one web service.
    As this requirement, may be the MDM function Masks could be a solution I think. But when I try to separate the contracts with two masks in MDM Data Manager, I have no idea that how could I set the key filter with the contract number fields.
    Could every expert tell me how could i set the Masks as this situation?

    Hi
    Have you assigned the masks created in data manager to some role in Console(Console-Roles TableRole1-Table and fields tabMask--add Mask 1 say)
    Once the mask is assigned to the role then only the role can see records pertaining  to that mask else it can see all the records in the repository.
    Regards
    Nisha

  • How to copy the SRM-MDM Catalog from PRD to QAS system

    Dear all,
    We do have a SAP SRM-MDM Catalog system.
    In the production system, we do have 3 differents repositories.
    I want to copy a SRM-MDM Catalog from PRD to QAS system.
    Is there a tool to export the catolog from PRD and to import it in QAS system ?
    Thanks
    SAP NetWeaverAdmin
    Edited by: SAP NetWeaverAdmin on Nov 3, 2011 3:10 PM

    Archive repository from source system
    Unarchive into target system

  • SRM-MDM Catalog Installation/Landscape

    Hi,
    We are currently having the following landscape in place with regards to the SRM, MDM and SRM-MDM Catalog :
    Server 1 :  SRM 5.0 Running   (HP-UX)
    Server 2:   Enterprise Portal running with MDM Content and SRM-MDM Catalog JAVA components  (HP-UX)
    Server 3:   Standard MDM Server installation  (Windows 2K)
    We have configured everything according to the notes and guides (including the guide from Sudhendu Pandey), but when we try to configure the Search UI in Webdynrpo, the java components cannot connect to the MDM host and we are getting just the connection failed error.
    My questions are :
    1)   Can we run with the above landscape or is it necessary to have the SRM-MDM Catalog Java components installed on the same server as MDM.
    2)   Do we have problems with versioning of the MDM server and the SRM-MDM java components ? We already replaced the MDM_JAVA_API with the correct one, but I do not have a newer version of the other api.
    3)   Do I need to configure anything on the MDM server to get this running ?
    Thanks in advance for your help
    Regards
    Raymond

    Hi Foh,
    Apologies for my late reply, but I was travelling.  Thanks for this tip. We were using the latest versions for the MDM Portal Content, but the API for the SRM-MDM catalog was different.
    I have updated this API with the latest version (Patch 3 HF 1) and now I can logon to the MDM server and I see the MDM Repositories. However if I now try to logon to one of the repositories he gives me the same error that the Login has Failed. The user that I am using is the default one coming with the SRM-MDM repository (Admin).
    Regards
    Raymond

Maybe you are looking for

  • Screen goes black, and battery drains without using

    Well, I noticed this from the first moment I got my iPod touch (first generation.) The screen would go black or freeze on white. sometimes it shuts off on its own when I'm not using it. I figured out what was causing it. It was Wi-Fi. I had it on Pus

  • LR5.5 can't sync some images with LR Mobile over the cloud

    I have currently the problem that I can not sync to the Adobe cloud a set of photos to my LR mobile on the iPad. It concerns only 61 photos from one shooting. For the first 6 images it works, with the remaining 61 pieces not. With all the other image

  • Built-in Facetime HD camera not working

    My MacBook Pro Retina's (mid 2012) build in camera just works sometimes. After doimg many SMC resets or killing VDCAssistan processes, I've realized that the problem boils down to the device name of the camera. Here's the situation. When you open Sys

  • Why won't itunes 10.7 let me import video? im not a noob...

    okay, so here we go..... i recently added videos to my itunes library. the day after i added them, i updated to 10.6.3. After that update, itunes will no longer allow me to add videos. Heres what Ive tried: opening video in quicktime to make a refere

  • Need help changing owner

    I gave my husband a Touch and he didn't like it and said I could keep it. He had already put his name in - how can I change that? I can't find it anywhere!! Please help.