MDM ResultSet iView

Hi,
In my page I have 2 iViews - an MDM ResultSet iView and  a web dynpro iView. In MDM ResultSet iView I have created a custom EPCF record event. The web dynpro application includes an iframe the source of which is another MDM ResultSet iview. The web dynpro subscribes to the above event. When the event occurs it receives some value, which it processes and then triggers the getRecordById event using the following URL
"http://bwmumdev:50100/irj/servlet/prt/portal/prteventname/Navigate/prtroot/pcd!3aportal_content!2fevery_user!2fgeneral!2fdefaultDesktop!2fframeworkPages!2fframeworkpage!2fcom.sap.portal.innerpage!2fcom.sap.portal.contentarea?NavigationTarget=ROLES%3A%2F%2Fportal_content%2FSeema%2FMDM%2FNetrics%2FNetrics_Match_ResultSet&externalRequestEvent=com.sap.pct.mdm.appl.masteriviews.table.events.externals.GetRecordByIds&id=1&id=2
Now, the problem is no matter how many ids are mentioned the iView displays only the first one...
Please help me

Please Ignore my previous message.
My question is When we create a mdm resultset iview,it is asking to select either key mapping or resultset.
but,I want to show in my iview with the following columns.
Customer Client System Key.
Here Customer is Customer value originally created.
Client System and key values are added through edit key mapping feature.
How to get noraml fields and key mappings in the same iview?

Similar Messages

  • Getting problem while MDM ResultSet iView

    Hi all,
    I am creating SAP MDM ResultSet iView.
    In
    Step 4: Search Table,
    I am not getting the Search table as pop-up even if the Test Connection with
    System Object of SAP MDM System object is successfull.
    All steps like creating System Object, System Alias and User Mapping is done correctly.
    Regards
    Neha Singh

    I just tried in my Env, just to check which step are you talking about, and surprisingly, i got the same error, the reason was my repository is not loaded right now.
    You may want to check that.
    Regards,
    Nitin
    Edited by: Nitin Mahajan on Dec 31, 2008 6:19 PM

  • Blank MDM Resultset iView

    Hi,
    I created a MDM Resultset Iview in the portal. I selected the table and columns that are to be displayed. After creating the iview, when I see the preview, I am seeing the data in the resultset iview. I don't want the data to be seen. I need a blank resultset iview just with column names. How can we get this?

    Please Ignore my previous message.
    My question is When we create a mdm resultset iview,it is asking to select either key mapping or resultset.
    but,I want to show in my iview with the following columns.
    Customer Client System Key.
    Here Customer is Customer value originally created.
    Client System and key values are added through edit key mapping feature.
    How to get noraml fields and key mappings in the same iview?

  • MDM Resultset Iview (MDM 5.5 SP4)

    Hi All,
    I created MDM Resultset iview,in which I selected keymapping.but,when i see the preview,I am always getting No result found. but,I am having some records with key mappings.
    Thanks for your help.

    Please Ignore my previous message.
    My question is When we create a mdm resultset iview,it is asking to select either key mapping or resultset.
    but,I want to show in my iview with the following columns.
    Customer Client System Key.
    Here Customer is Customer value originally created.
    Client System and key values are added through edit key mapping feature.
    How to get noraml fields and key mappings in the same iview?

  • Extending MDM ResultSet iView with custom web dynpro

    I built a MDM Result set(which is displaying fine), and a web dynpro iview to receive the events from the ResultSet and put them on to a page, added to a role and added to my userid etc.
    But when I invoke the event from the MDM ResultSet Standard iView, no data is coming from the ResultSet.
    Yes, I am aware that I need to make sure the namespace and name of the event should be same in the source and target iviews. I made sure of that.
    The event is being invoked, for sure, but no data. (Because if I didn't catch, the target iView is throwing NullpointerException for want of parameter passed by the EPCF event)
    EPCF event is reaching the target, but no data, what so ever.
    I tried with different fields(Columns) of the Resultset, but no use.
    I got a doubt. The client said, they used MDM 5.5 SP04 software for the Business Package, but MDM 5.5 SP03 MDM Connectors, and ofcourse the server itself is MDM 5.5 SP03. Does this have any influence in the problem I mentioned ?
    Another issue is the naming of the event or the namespace. Are there any guidelines for that ? I gave the name and namespace to be "ShowItemDetails" and "urn:com.oi.ecat.mdm.epcfevent". Are these OK ?
    Thank you very much for your help,
    Prasad Nutalapati

    Hi Narendra/Sidharth,
    I have been referring the same blog below of Vinay for developing the WDJ application:
    Importing Records from MDM BP ResultSet iView to Excel:--https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/504814b6-da5f-2b10-0dbd-e5ee597c74a5
    I have created an event in the ResultSet iview with the details below :
    Event Name = "Export"
    nameSpace = "urn:com.sap.tc.webdynpro.exporttocsv"
    Parameter is of type [MDM Search] and the value is "value"
    And in the Web Dynpro app,following is the code
    public void wdDoInit()
        //@@begin wdDoInit()
        String nameSpace = "urn:com.sap.tc.webdynpro.exporttocsv";
        String event = "Export";
        WDPortalEventing.subscribe(nameSpace,event,wdThis.wdGetExportAction());
        //@@end
    In the Event handler below,Currently I have removed the rest of code to fetch result from MDM ,I am just trying to access the Search object (i.e string value) and I am getting the value as null.
    Can you please tell me what is going wrong....
    public void onActionExport(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent, java.lang.String value )
        //@@begin onActionExport(ServerEvent)
        wdComponentAPI.getMessageManager().reportSuccess("The search object:"+value);
        //@@end

  • Push MDM search results from webdynpro to portal's standard ResultSet iView

    Hi,
    I have gone thru a lot of SDN information, blogs and PDFs
    regarding the usage of EPCF, EPCM for communication between
    Webdynpro and Portal utlizing portal eventing phenomenon.
         My requirement a.k.a. predicament and grief::
    I get back mdm search results in webdynpro app, using a
    specialized search strategy to MDM repository. I need to
    ship these resuls off to the standard out-of-box
    portal's MDM ResultSet iView (which is a part of portal's
    MDM business package).
    I haven't had much success getting crisp resolution to
    satisfy my requirements. In my WD code, I know,  I need
    to put some sort of ?event-generating-2-liner-code? that
    sends my results to portal's standard iView.  
    Surely, I can send just recordIDs or I can send the actual
    results. I get 5 fields per record of Material's table.
    Once the ResultSet-iView displays the search results,
    my responsibility is over. Now onwards, portal's standard
    business package will take over from there for further user
    interacitons, like accessing item details etc..etc..
    Any and all help is highly appreciated.
    -Shashank Date

    No replies............yet.....It's been 2 days now.....
    Can someone provide some clues?
    thx.
    -Shashank Date

  • Resultset iview template

    Hi,
    Can anyone tell me the functionality of the MDM Resultset iview template?
    Regards
    V. Suresh Kumar

    Hi,
    Can you tell me on accessing the hierarchical result set. I am facing an issue while accessing it.
    I am trying to use the portal eventing between standard Result Set iView and my Webdynpro form for hierarchy master data from MDM 5.5 SP05 repository. MDM result set diplays the hierarchy data in the fashion as shown
    Customer1
               Name1
               Address1
               Phone1
    When i try to use a custom event on the Result Set to pass these record information to my custom Webdynpro form only the first level data gets transferred .Thus only the Customer1 gets transferred and the Name1,Address1,PhoneNo1 never get transferred to my webdynpro form. Is Portal eventing not possible between Hierachy records in a result set and customised webdynpro form
    Regards
    V. Suresh Kumar

  • Problems with MDM 5.5 SP05 Portal Content - ResultSet iView

    Hello Experts,
         We are having problems with standard iViews from MDM 5.5, more specific with ResultSet iView. We created an iView using English as default browser’s language but our client wanted it in Portuguese, so in the MDM Repository both languages were defined and used in MDM Data Manager, when passed to the Portal iView an error occur, but only in a ResultSet iView from the MDM Portal Content, the others iViews (itemDetails, PicklistSearch, etc...) are shown in Portuguese, and we cannot figure out why it works fine in English and not in Portuguese. We left the default language defined by client’s browser. Below I’m sending the LOG, which by the way, doesn't help much, but I put it also here. Any ideas of what should I do ?
    LOG ERROR:
    java.lang.IllegalArgumentException: unknown format type at
    We are using Portal 7.0 SPS11 and MDM 5.5 SP05 - Portal Content in a Win2003/Oracle server each.

    Alex,
    sorry to disturb you with this issue, can you explain me basic steps in order to setup standard MDM iviews from the portal?
    I mean, I have already installed all standard mdm business content, and also have configured system and aliases in the portal to connect to my mdm repositories. Those system/aliases are working propperly.
    But, when I try to preview standard MDM iviews/pages I got several JAVA errors in trace logs.
    Specific iviews are: Item Details, Show products, etc..any iview execution fails.
    So, am I missing something?, do i have to create a specific user in portal?, assign specifi roles or groups???.
    Platform is: nw2004s SR2, SP11, MDM content 5.5
    Thank you in advance.

  • UpdateSearch EPCF in Resultset iView

    Hi,
    I am raising the following standard EPCF event from my custom Java WebDynpro, passing a specific "Item Identifier (Product ID)" to my PRODUCTS table. It's working fine and the perticular row is retreived in my Standard Resultset iView, but I want to send multiple values of ProductId field to Resultset iView instead of one value (ProductID=104367719). How do i send multiple values from my custom webdynpro using the following event?
         WDPortalEventing.fire(
                   "urn:com.sap.pct.mdm.appl.masteriviews",
                   "updateSearch",
                   "ProductID=104367719&refreshSearch=False"
    Thanks
    Vijay Budati
    Edited by: Lakshmi Vijaya Kumar Budati on Jan 14, 2010 11:04 AM

    Idan,
    Thanks for your reply.
    You mean to tell that updateSearch EPCF event can't take multiple values?
    Can't we use OR & AND operator for Keyword field to send multiple values to updateSearch event from Custom WebDynpro?? as Keyword search is doing? If so, could you please let me know how to use the fields and how to pass the values?
    When i look at my Products table, i didn't find any Field called KEYWORD.
    Thank you,
    Vijay
    Edited by: Lakshmi Vijaya Kumar Budati on Jan 17, 2010 11:21 AM

  • ResultSet IView - eventing - hand over serveral records

    Hi experts,
    we use a standard resultset iview for connecting the repository with the EP - this works fine.
    In case of "eventing": is there a possiblity to hand over more than one record via EPCF-eventing to another IView on the same page?
    The target is an Visual Composer IView.
    I would be glad, if there is an quick and easy possibility.
    Thank you in advance for your answers.
    Karin

    Hi
    I am trying to Export the data from Result Set Iview to Excel using a Java Web dynpro application.
    I am passing an MDM search parameter but when I am trying to get the value ,its coming as null...
    This is what I am doing
    public void wdDoInit()
        //@@begin wdDoInit()
         wdThis.readSystemDtls();
         namespace = "urn:com.sap.tc.webdynpro.exporttocsv";
         eventname= "Export";
         WDPortalEventing.subscribe(namespace,eventname,wdThis.wdGetExportAction());
        //@@end
    public void onActionExport(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent, java.lang.String value )
        //@@begin onActionExport(ServerEvent)
        wdComponentAPI.getMessageManager().reportSuccess("data"+value);
         int marked=value.indexOf("=");
         String srcValue=value.substring(marked+1);\wdContext.currentContextElement().setCatchedValue(srcValue);
         String targetValue=wdContext.currentContextElement().getCatchedValue();
         Search search = Search.deserialize(targetValue);
    Can you please help...

  • It possible to use bpm uwl or mdm uwl iview instead of standatd uwl?

    it possible to use bpm uwl or mdm uwl iview instead of standatd uwl?

    Hi thanks for reply.
    issue not solve yet...
    i just joined organization, it has standard UWL. And in last oragnization i seen advance UWL which showing details of item, add note, attachment while approve n reject.
    I am developer. n some where i seen advance UWL and BPM n MDM iview showing advance falicity of approve n reject.
    Also seen in portal content about MDM UWL iView, BPM UWL iView.....
    might be that was customized standard UWL iView....
    n i think there are some xml file in mdm n bpm so we can show item in UWL list or to do customize UWL with .xml.
    so my thing is there are any cotmization in MDM BPM .xml or standard so we can use that iview or xml instead of UWL standard UWL or .xml

  • Pop ups on Standard MDM Portal iViews throw Portal Runtime Error

    Hi all,
    We are facing some issues with MDM Standard Search iViews in Portal. We have configured MDM standard iViews using MDM Search Texts iView, MDM Result Set iView, MDM Search Picklists iView, MDM Item Details etc. We are facing a problem with the MDM Search Picklists iViews wherein we have to click the ellipses button to open the pop up. Whenever we open the pop up, the pop up shows Portal Runtime Error. Please find the screenshot below:
    http://img209.imageshack.us/img209/1138/portalruntimeerror.jpg
    The MDM System is working fine. The other Standard iViews are also working fine. The surprising thing is that, when the Super Admin role is assigned to the user, the iViews start working perfectly as shown below:
    http://img696.imageshack.us/img696/6808/worksfinethisway.jpg
    I have checked the permissions also on all these iViews as well as the System object and did not find any problem. Moreoever, this was working fine till some days back. All of a sudden these iViews have stopped working. Please guide me as to what can be the reason for this and any possible solutions.
    Thanks in advance.
    Regards,
    Ankur

    I would check the logs but it sounds like a permission error to me.  Can you or your basis resources modify the Security Zones?
    System Administration -> Permissions -> expand Security Zones folder -> right click on com.sap.pct.mdm.appl.masteriviews and select Open Permissions -> in the assign permissions section add read permissions for a particular user, role, or group which the user getting the error is part of, check the End User checkbox -> Save.  Login to the portal and try again.
    -Greg

  • Question on MDM SP03 iViews for editing in EP

    Hi all,
    I have a problem using the edit function in a SP03 MDM iView.
    I have a ResultSet + ItemDetail iView for my main table and a ResultSet + ItemDetail iView for the lookup table. But when I try and edit a record, I can only edit the attributes in the main table, not the ones from the lookup table.
    How can I join those iViews to be able to edit ALL attributes of one record?
    Thanks alot!
    Chris

    Hi Abhay,
    thanks for your help. But I still can't solve my problem.
    The repository looks like this:
    the main table is 'Customer' and one look-up field ist 'bank account', which refers to the 'Bank account' lookup table.
    While I can see the defined display fields of Bank account (account number and bank code) in my 'customer' iView, I can not edit them.
    I made a second ResultSet and a second ItemDetail iView for the bank information. But when I try to edit or create a customer, I can only change the attributes in the main table, not the display fields of the lookup table.
    Yet, when I want to create / edit a customer, I also may have to update his account information.
    I thought about adding these fieds as attributes to the main table, but I have lots of additional information about the bank in the lookup table (like address, IBAN ...) so I don't want those to clog up my main table.
    Is there a way the event of clicking 'edit' or 'create' in the main table iView can be somehow forwarded to the lookup table iView as well?
    Thanks for helping.
    Chris

  • MDM Custom Iview and Standard Iview Portal Eventing

    Hi
    I'm trying to develop a custom iview which updates a Standard MDM Result Set iview:
    I found this documentation:
    http://help.sap.com/saphelp_mdm550/helpdata/en/45/c87cfd43e56f75e10000000a1553f6/frameset.htm
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/12195312-0e01-0010-a392-debbd32e39d4
    So i created an iview which raises this event
    WDPortalEventing.fire("urn:com.sap.pct.mdm.appl.masteriviews","updateSearch","ID=115551&RefreshSearch=True");
    Then i upladed my code in the portal, created a new iview and put it in the same page with a Result Set iview. During testing when i rise the event form the custom iview, the standard Result Set catch this event but instead of update it gives the following error:
    Error occurred: Error performing search. com.sap.mdm.internal.protocol.manual.ServerException: Illegal value for parameter,  com.sap.mdm.internal.protocol.manual.ServerException: Illegal value for parameter (see log for details)
    In SDN there is a thread with the same problem (Search Standard iView + Search Custom iView) which is not solved.
    Can somebody help me ?

    sorry, I have same task and tried same code for my alias, table and field.
         WDPortalEventing.fire("urn:com.sap.pct.mdm.appl.masteriviews",
                   "updateSearch",
                   "MDMSystemAlias=NSI_PRODUCTION_ALIAS&MDMTableName=Assets&R3Code=411000000000000006&RefreshSearch=True");
    I fire event  (for my alias, table and field)
    but not any resultset or Current Search on page is catching this search.
    please provide which options  must be set made for views on page so that result set to be updated,
    I hope this may help
    does it need to add some custom event to result set?
    thanks
    Edited by: Ivan Ivanov on Aug 21, 2009 3:49 PM

  • Pass search parameter to ResultSet iView.

    Hi,
    I am using standard MDM WebDynpro Components in which requirement is not to use Std. Search iView and pass search parameter say "xxxx" to Std. Result Set iView to show the result for "xxxx".
    Please let me know how shall I pass the value or default the search criteria in resultset
    - Akshay

    fine , but then ur record ids are selected based on a search parameter - isnt it ??
    how will then get the record ids , without knowing what to set
    you have to use search component here in the program  as a pre-requisite !
    this is like calling a webservice - with the java server down
    thanks
    -Adrivit

Maybe you are looking for