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...

Similar Messages

  • 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

  • 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

  • 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?

  • 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

  • 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

  • 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?

  • Handing over site files to client: absolutely necessary?

    I recently had a client ask me for the "access code" to his site; I told him such a thing didn't exist and if he wanted to update his own site he could purchase a CMS. While Contribute is another option, it is money detoured from me to Adobe, notwithstanding repairing broken sites. My question is, since web design is a service, not a product, is it absolutely necessary to hand over the site files to the client? I don't think a client can access a site using an open source FTP client such as Filezilla without 777 permissions, and I refuse to give these for security reasons.... Does anyone stipulate this in the web development contract or is it merely understood?...

    Unless otherwise stipulated, I consider my client to be the owner of the finished files for the web site.
    But I suspect this may be a hosting issue. There are a lot of commercials on the radio advertising hosting for only $4.50. When I hear these radio spots, I think, "I wonder if my clients are going to get any ideas." The ones I have heard came from GoDaddy. There's no question in my mind that if one of my server-illiterate clients every tried to do their own hosting with GoDaddy, it would turn out to be a nightmare for them.
    Recently, I received an email from a client that told me that she got a really good offer for hosting. I told her that her hosting with me included basic maintenance and this:
    "... you are saving money if you host it yourself as long as you have the proper software to upload your files and then you might need other software to make any changes to your web site or pay a web design company to do it. You also need to know a little about web servers. I suspect the hosting that you are being offered is by a hosting company that is just renting you space on a server but not actually doing any work for you—you will have to do everything yourself. So, it’s really not the same web hosting that we do, but if you want to switch over, I will send you the FTP information when you are ready so you can download your files from my server."
    She ended up sticking with me.

  • How to get the sample repository data of over 6000 records for products

    Hi,
    I have MDM installed and ready to use with the standard 9 repositories provided by SAP. I was wondering if I can get the unarchive .a2a file with the sample data of records (I think over 6000 records) for the Products repository. I have tried to bring in the two .a2a product files that I have, but it was giving version inconsistent errors. How do and where do I get the real sample data (not the one we can create in data manager) correct version provided by SAP, so that I can get my hands on SAP data manager funtionality.
    Thanks in advance,
    N@v!n K

    Hi Navin,
    Business Content archives that are provided by SAP for MDM do not come with the sample data.
    In the bsuiness content ,if you unzip the file you will see the a2a archive of the rep as provided by SAP and the import /export maps and the lookup data file.
    There is no main records that SAP provide with the sap content it is basically the data modell that SAP provides so that the foundation is set for you and you can now import and work with the data.
    However if you wish to use the demo repository or the training rep from Inquera then you will same some sample data already loaded in MDM rep to work upon.
    Regarding the version problem
    Check the MDM version of the business content rep with the MDM server you are using .They have to match to work correctly.
    You can work with a lower archives of the rep(say SP04) with an Upgraded MDM server (say SP06) by using the Update Repository option in the context menu of the MDM server in Console.
    But the vice versa is not possible.
    Check you MDM server version by clicking on the MDM server and see its details in the right side record detail pane.
    To know more on the demo and Inquera rep kinldy view the below links:
    https://www.sdn.sap.com/irj/sdn/nw-demomodel#section21 (Demo Rep)
    http://www.inquera.com/InqueraCatalog/CustomerLogin.asp(Demo Rep from Inquera you need to register and they will mail you)
    Hope It Helped
    Thanks & Regards
    Simona Pinto

  • External and internal mikes are not automatically switching over either recording or on voice calls

    My laptop model name is HP Pavilion dv4-1100ea which is shipped with Vista Home premium 32 bits and has got service pack 1.
    Restored the laptop to factory setting since then I am having the following problems; I had the same problem when my laptop was brand new and whenever I reset the laptop to factory setting I get the following problems:
    1. External and internal mikes are not automatically switching over either in middle of the recording using sound recorder or while the call in progress on voice calls (skype):
       Using the sound recorder if I start recording the sound with external  mike  and in-between  recording if I  switchover from external mike to inbuilt mike and later on when I play back I can only hear the sound  up till where I used the external mike during recording, after the switchover to inbuilt mike I cant hear any sound.
       But if I start the recording with inbuilt mike and in between recording  if I plug in  the external mike and later on when I play back I can only hear the sound up till where I used the inbuilt mike during recording , after the switchover to external mike I cant hear any sound.
       So in brief both my external and internal mikes are working fine, only problem is that if I start recording (using sound recorder) or voice call with one specific mike, I have to continue with it till the end. I can’t switchover to another mike in between the conversation (voice call) or recording, if I do so, I have to select the mike manually in chat software but while recording I cant even select manually because in laptop, it takes the mike whichever is in current use as default mike in recording tab(sound window). The green tick automatically (in recording device tab) switches over according to the use of mike. Though the green tick in the recording tab is switching over automatically according to use of mikes, its not picking up the sound after switch over during recording.
    2. And also when I click on recording device tab in sound window and plug in external mike, though the green tick automatically switchovers from internal to external mike, while I speak both internal and external mikes volume meter respond to the sound inputs by rising and falling but if I take out external mike, green tick goes to internal mike and when I speak only internal mike volume meter respond to sound rising up and down not the external mike.
    To resolve the issue I have tried following steps with no luck:
    1.I have checked the mikes(internal and external) properties, the both mike shows to be enabled in general tab, in level tab the volume is set to 100 and in advanced tab , all options are selected.
    2. In device manager I have got only one audio driver named as “IDT High definition Audio CODEC”. I have uninstalled the audio driver and reinstalled it using scan for hardware option
    3. Uninstalled the audio driver in device manager and reinstalled the audio driver using recovery manager > advanced option> hardware driver re-installation.
    3. I have updated the BIOS(Insyde F.65, 12/02/2010).
    4. I tried to update the audio driver using below link but things went more worse so I did system restore (not factory setting though).
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-67051-1&lc=en&dlc=en&cc=us&...

    Sounds like you need to upgrade to the iPhone 5s
    The 5s has Touch ID
    You can unlock your phone with your finger instead of typing in a key code
    No swiping to unlock either, just touch the home button
    You can enrol multiple fingers as well
    Here is a video of it in action
    http://www.apple.com/iphone-5s/videos/#video-touch
    Or wait and see what iPhone 6 has to offer
    That being said, as desiel vdub posted if the phone is up to your face, the proximity sensor should turn the screen off
    And when you lower the phone turn it back on again
    Not sure about the phone locking when your on a call doesn't sound right

  • 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

  • IPhone 4 not handing-over properly since 4.3.x update

    I've noticed a problem since updating from 4.2.1 to 4.3.2 and subsequently 4.3.3, initially I thought it was a network related issue, but have now had confirmed by my provider (Vodafone UK) that they do not know of any problems ...
    I travel a lot, often on a train for 3-4 hours a day, often the same routes. Previously I used to be able to maintain a connection for *most* of the journey, the signal would obviously fluctuate between very good and quite poor as I was passed from cell to cell, but would typically go from good, to ok, to poor, I'd then be handed over to the next cell, and go from poor, to ok, to good again as I got closer to the transmitter, I'd usually be able to hold a telephone call seamlessly during this process.
    Now the phone seems to try to hold on to the current cell for as long as possible, so I go from good, to ok, to poor, to very poor, to no signal at all (at which point any call I'm on obviously drops out), then *bamn* only now do I get handed to the next cell (which I'm obviously now much closer to that I used to get handed to it) where I suddenly get a good signal again.
    Basically instead of signal strength going 4, 3, 2, 2, 3, 4 it now goes 4, 3, 2, 1, 0, 4
    I had a very similar issue with an old Nokia phone I had a few years back and after several replacements from Nokia UK, they finally admitted it was a fundemental hardware design problem and replaced my phone with a completely different model. Obviously it is not a hardware issue on my iPhone 4, as I didn't have any issues on previous software versions.
    I've tried asking in a local Apple Store, but the replies I get prove that the guys in there obviously know how to add music and which apps are 'cool', but very little about the fundemental working of cellular telecomms, and they keep insisting that IOS version 4.3.3 must be better than 4.2.1 at everything because it is newer?!

    I've noticed a problem since updating from 4.2.1 to 4.3.2 and subsequently 4.3.3, initially I thought it was a network related issue, but have now had confirmed by my provider (Vodafone UK) that they do not know of any problems ...
    I travel a lot, often on a train for 3-4 hours a day, often the same routes. Previously I used to be able to maintain a connection for *most* of the journey, the signal would obviously fluctuate between very good and quite poor as I was passed from cell to cell, but would typically go from good, to ok, to poor, I'd then be handed over to the next cell, and go from poor, to ok, to good again as I got closer to the transmitter, I'd usually be able to hold a telephone call seamlessly during this process.
    Now the phone seems to try to hold on to the current cell for as long as possible, so I go from good, to ok, to poor, to very poor, to no signal at all (at which point any call I'm on obviously drops out), then *bamn* only now do I get handed to the next cell (which I'm obviously now much closer to that I used to get handed to it) where I suddenly get a good signal again.
    Basically instead of signal strength going 4, 3, 2, 2, 3, 4 it now goes 4, 3, 2, 1, 0, 4
    I had a very similar issue with an old Nokia phone I had a few years back and after several replacements from Nokia UK, they finally admitted it was a fundemental hardware design problem and replaced my phone with a completely different model. Obviously it is not a hardware issue on my iPhone 4, as I didn't have any issues on previous software versions.
    I've tried asking in a local Apple Store, but the replies I get prove that the guys in there obviously know how to add music and which apps are 'cool', but very little about the fundemental working of cellular telecomms, and they keep insisting that IOS version 4.3.3 must be better than 4.2.1 at everything because it is newer?!

  • 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?

  • Transaction launcher parameter not handed over to ERP system

    Hi experts,
    We generated an R3 transaction launcher via the wizzard. We try to hand over the BP_NUMBER to the ERP system.
    This does not work. The entitiy collection in the gdc is not filled.
    Actually it gets the gdc form the view controller of the action box view (GV_VIEW_CONTROLLER->VIEW_ID  = UICMP_LTX/ABoxExecution). See also the coding below.
    method IF_CRM_IC_ACTION_HANDLER~PREPARE_DATA_FLOW.
      data: __gdc    type ref to if_crm_ui_data_context,
            __source type        string,
            __line   type        string,
            __path   type        crmt_ic_ac_identify_path.
    __gdc ?=
    cl_crm_ui_data_context_srv=>get_instance( gv_view_controller ).
    ********** Begin of parameter declaration ***********
    data ICWCPROCESSEDOBJECT
    type ty_ICWCPROCESSEDOBJECT .
    data BP
    type ty_BP .
    data ICWEBCLIENTBORKEYPARAMETER
    type ty_ICWEBCLIENTBORKEYPARAMETER .
    concatenate
    space
    'CURRENTCONTACT/BuilContactPersonStandardAddressRel/BP_NUMBER'
    into __source.
         if __gdc is bound.
           try.
               call method __gdc->GET_ENTITY_ATTRIBUTE_AS_VALUE
                 exporting
                   path = __source
                 importing
                   value = BP .
             catch cx_crm_bdc_no_data cx_crm_bdc_xpath_error cx_root.
               clear BP .
           endtry.
         endif.
    me->set_container_data(
       iv_name  = gc_BP
        iv_value = BP ).
    * Data flow is complete - set to false if data is missing
    gv_data_flow_complete = abap_true.
    endmethod.
    Please help if you have any ideas.
    Regards,
    Thea

    Hi Thea,
    a stupid question, did you confirm the customer previously?
    what happens, when you use the following coding to get current customer?
    *   get confirmed customer of GDC
        TRY.
            lo_customer = __gdc->get_entity( if_iccmp_global_data_cont_con=>gdc_currentcustomer ).
            BP = lo_customer->get_property_as_string( 'BP_NUMBER' ).
          CATCH cx_root.
        ENDTRY.
    maybe this will help...
    best wishes,
    Hakan

  • Position search iView event subscribe

    Hi all,
    This is an MSS question.  I have posted it in the Portal Development forum as well, so please ignore if you have seen it already...
    Note 1112733 specifies the namespace and event of the employee search iView for subscription by custom iViews.
    Event namespace: urn:com.sap.mss.employeesearch
    Event name: selection_changed
    I am looking for something similar to subsribe to the Position Search iView event. I believe the iView name is
    com.sap.pct.erp.mss.posprofile_positionsearch
    OSS note 1410996 contains a reference to this iView, if this is of any help.
    The subscribing application is written in WD ABAP. I suppose if there is a means of subscribing to all portal events, it can be queried to look for the specific one? I have the team viewer all set up and working.
    Thanks
    John

    FYI - Clicking a position on the position search iView also raises the event:
    Event namespace: urn:com.sap.mss.employeesearch
    Event name: selection_changed
    The data object is of object type S as opposed to P when an employee is selected.
    Go figure!!!
    Cheers,
    John

Maybe you are looking for

  • I don't have IMAQ vision, where can I get some super basic easy VI's for IMAQ?

    Hello, I don't have IMAQ vision, where can I get some super basic easy VI's to get images from my IMAQ PCI-1424 board, without Vision?? is there some kind of tutorial that will help me get started from the ground up in designing VI's? Also I am tryin

  • Push buttons doesn't show up in Appraisal template-(ESS,MSS)

    Hi SAP friends, I have template created with few sub-statuses and thus have created few push buttons to control the flow in ESS and MSS portal. However I do not see any pushbuttons (or radio buttons) in ESS/MSS.  Appreciate if you can guide me what a

  • Problem setting up user ids to use the Oracle password file.

    I want to set up my database users so that a password file is used for connecting to the database.  I have completed these steps successfully.   BTW - DB is 11.2.0.3 on AIX power 64 1.  Created the password file for the database using the orapwd comm

  • Posture for MAC OS X

    Can someone help me in understanding if ISE can do posture assessment for MAC OSX for File Condition, Service Condition Or checking any application running? I could only find Posture checking for AV/AS for MAC OSX. Is any possibility, if ISE can do t

  • Incompatible Type?

    Trouble at the end of this code involving incompatible types within word = listEasy.get(wordArrayLocation); along with the other two in that method. Says it needs a java.lang.String. import java.util.Random; import java.util.Scanner; import java.util