UWL in custom iView

Hi,
Is there a way to include UWL in our own custom iView.
Thanks,

Hi Rem,
I am relatively new to this, but from my understanding of the note, it's useful if I need to integrate third party applications.
Is there a way I can use SAP's code or API's to code and use the UWL xml to create my own inBox which only shows 2 or 3 messages plus the total number of messages with a link to goto my inbox.
I can get the total no of message but don't know how to integrate it, with which shows only a preview like 2 or 3 messages.
Thanks,

Similar Messages

  • UWL: Manage substitutes - iview pcd

    Hi experts,
    My client wants to have a new service on SAP ESS / MSS Portal that would link to "Manage Substitutes in UWL". Yes, it is available on the UWL, but it is quite difficult to users understand where they have to click to manage theirs' substitutions.
    Is it possible to get this iview pcd (I didn't find it) and create a new service that would link to this application?
    Thanks in advance.
    Best,
    AS

    Hi,
    yes, what you want to do is possible. As Siddarth mentioned, there is no Standard iView for this particular component, but you can simply make a custom iView.
    Create a new iView from WebDynpro JAVA Template. Fill the following properties:
    Namespace: sap.com/tckmcbc.uwl.ui~wd_ui
    Application: UWLSubstitution
    Then integrate it into a Portal Role, maintain Homepage Framework in case you use it, etc.
    I had the same problem like you and did it this way, because the Substitutor button on the UWL really is a joke. "Accessibility", eh?
    Cheers, Lukas

  • Calling a Web Service Through Custom iView

    Hi All,
    I have to create a Custom iView that would call a Web Service that is available over internet. This web service returns data in form of an XML file and have to display this file.
    It means that I have to create a Portal Application and call web service in that application and parse the XML file that this web service returns and finally display the parsed XML file in an iView.
    Can anybody please help me on this?
    Thanks,
    Vivek

    Hi Vivek,,,
    To consume the webservice u need to start with getting the wsdl of it..
    these links nd easy to follow weblogs are kool ..,
    check out
    BSP a Developer's Journal Part XIV - Consuming WebServices with ABAP
    Accessing an External Web Services in Portal
    Developing single document WSDL to schedule a web service
    The specified item was not found.
    http://help.sap.com/saphelp_bw33/helpdata/en/68/d4623c046a9b67e10000000a11402f/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/81/12703e5da3e946e10000000a114084/content.htm
    Cheers..,
    Swathi
    Do offer pts nd ncourge:-)
    ping ur mailid will give u screenshot tutorial on this ..

  • 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

  • Loading a KM document in a customized iView

    Hi there,
    I have a customized iView made out of Abstract portal component. What I need is within this abstract portal component how I can read and display a html file which is stored in KM.
    Your help is highly appreciated.
    Regards,
    Ponraj M

    Hi Ed,
    I've had the exact problem and I installed the security update found in http://www.microsoft.com/technet/security/bulletin/ms05-025.mspx, which fixed the problem.
    Amit

  • Standard iview and custom iview

    Hi,
    Have any one tried developing a custome MDM iview which displays the record details on click of a record in standard Result Set iview?
    There is a section in portal content development guide called "Configuring Data Exchange (Eventing)" which deals with this scenario.
    Please share your experience on the integration of Standard iview and custom iview.
    I have already gone through the sdn article on "Integrating MDM Item Details iView into a WebDynpro Application".
    Thanks and best regards,
    Arun prabhu S

    Custom Event Name - EPCFgetRecordByIds
    Any name will do here, so this is fine
    Event Type - EPCF ; Record Event
    Correct again
    Target (URL or Event Name) - getRecordByIds
    Again,... Any name will do here (this is what you will use in the wdDoInit to subscribe to)
    Namespace - urn:com.sap.pct.mdm.appl.masteriviews (?. not sure abt this)
    Though it should not cause an issue I would use something else, this might interfere with the standard iViews events (though they will probably have different event names). You should be able to just come up with your own namespace here
    Auto-Fire on Row Select - Yes
    Correct
    Parameter Format - Standard
    Correct
    Mapped Field - Record ID
    Here you select all fields you like to know the values of in the action-method of your webdynpro. Most likely this is record id or some other unique identifier of the record.
    Parameter name - ?
    Just give any parameter name. You will use this name to find that specific parameter in the string of your action method.
    I want the MDM record id of the selected record as an input.
    This is in the string if you configured the iView as above. Just print it to the screen on the action method.
    Can you please help me tell me how the record id gets passed from standard iview to custom iview?
    That should already happen by the subscribing to the event you did in the wdDoInit. Welcome to the wonderful world of eventing
    Jurjen

  • Integration of webdynpro abap custom iview into standard ESS/MSS portal

    Hello all,
    Could anybody please throw light on how to integrate custom iview which is developed in Webdynpro ABAP into standard tab in MSS (Webdynpro java)
    For example.I want to add few custom fields(which are mapped to infotype 0041) into general information link of MSS.these fields will be created in webdynpro abap.
    or.
    I want to create a new link under general information which pops up as a custom iview (which is create in webdynpro abap) .
    please let me know how can i meet the above requirements.
    Thanks in advance.

    I am not really sure about your requirement. With my limited understanding of that , i think that you have few possibilities.
    1. You can let the ess/mss application communicate with WDA application via a Poral event.
    2. You can enhance the ESS WDJ component and use RFC destination to get the data from info type and build your own view in WDJ.

  • Passing dynamic data from UWL to transaction iview

    Hi Experts,
    Can some one please suggest how can we take data from UWL task to a transaction iview on click of button.
    I have a webdynpro java sceen which is coming as a task in UWL of a user. When user clicks on Button with complete event, i have to get data from the Webdynpro Sceen and set data to a transaction iview. This means i cant har code the data in Application parameter of transaction iview.
    Catches here are:
    1. Passing data from UWL to Transaction Iview.
    2. Data is dynamic i.e. is entered by user through web dynpro screen.
    Thanks in advance.
    Regards
    Pranav

    Hi Scott,
    Thanks for reply. But i am not understanding the solution provided by you. I think these are ABAP FM and are used user management. I am working in Netweaver environment CE7.1.1.
    Regards
    Pranav

  • Light framework and custom iViews

    Does anyone know why the "heavy" framework is used on custom iViews?  We have developed several custom iViews and when we tested them in the light framework, they always pull down the "heavy" framework Javascript.  I created a very simple Hello World iView without HTMLB and without a sharing reference to HTMLB and yet, when it is displayed, all of the heavy framework Javascript gets pulled in?

    Hi Timothy,
    Generally custom iviews are built using portal components which use HTMLB or using webdynpro.If this is the case, then the htmlb js and css files will be loaded, and these files are massive.
    Also using KM iviews will results in making the framework "heavy".
    As rightly pointed out above you should make sure that all the components in your page are having an EPCF level 0(This level generates no JavaScript or Java applet framework functions)
    Check the following <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/ce/3e98408d953154e10000000a1550b0/frameset.htm">link</a> for info on Enterprise Portal Client Framework(EPCF) which is basically used for client side eventing.
    You could use some tracing/logging software like HTTP Watch or Webscarab to see what content is actually causing this high network load. Also check if all content is delivered with caching directives so that they will not be reloaded on every subsequent request.
    P.S:Reward points if useful.
    Regards,
    Abhishek.

  • Custom iview

    Hi
    Custom iview is created and want to view through the services of ESS screens, how to add the same to the services  and what step to follow to place it under a service of ESS. Eg: we have created custom iview for employees to apply online, how to place this iview like other services, payroll and benefits, personal data  etc
    Thank you
    ravi

    Ravi,
    Check this doc on Homepage framework  used in ESS
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b0e3a488-cdc2-2b10-209b-e01a0ed934b4?quicklink=index&overridelayout=true
    Thanks
    Bala Duvvuri

  • Layout Set for custom Iview

    Hi Experts,
           I have created jspdynpage application for getting documents fron Km Folder. i have done this, but i want to set "Context Menu" for link (documents) in that iview. How can i do this.. I have added property called Layout Set for my iview and assign layout Set , but no effect. How to assign layout set for custom developed iview???
    Thanks Advance....
    Regards,
    Kumar.

    Hi praveen,
    is possible to show context menu for portal development iview (custom iView)?.
    I cant use KM Navigation iView, because I am listing members, each member should be a link.. this link is not possible in KM navigation..
    Albert
    Amjeth
    Bala
    Praveen
    Senthil
    I will show like above, here if i click the albert it will get the Albert details. and other members can rate the albert (so we need context menu)..
    how can i achieve this?.
    Regards,
    Kumar

  • Customized Iview in Navigation panel

    Hello all,
                  I have created a customized iview and would like to place it in the Desktop innerpage navigation Panel. It appeared once but after some modification when i tried to insert it above the portal favorites, its not  appearing in the preview and giving an error page not found, also all the user who have this desktop assigned(Using framework which i am modifying now)to them are getting the same page not found error. Kindly tell me is it permissible to place customize iviews in the innerpage Navigation Panel or some settings must have to be made to achieve this.
    Thanks and Regards,
    Sarabjeet Singh.

    Hi,
    You can cahnge the width of the navigation panel by changing the value of "defaultExpWidth" in the file WAandNAVPanel.js that is in the default layout par file com.sap.layouts.framework.par from 220 pixels to the value you want.
    upload the changed par file and restart the server.
    -Smitha

  • Custom iView in Navigation Panel has no left spacing

    Hi all,
    I have a custom iView that I want to have in the left Navigation Panel.
    However, unlike the Detailed Navigation and the Portal Favourites iView -- which have approx 10px spacing to the left -- my custom iView has no spacing at all, i.e. it is positioned immediately against the browser chrome...
    At first I thought it had something to do with the CSS and/or DIV's inside that iview, so I tested with the most basic HTML inside DynPage, JSPDynPage and AbstractPortalComponent iViews, showing only text, but to my surprise ALL have no spacing to the left...
    Furthermore, it's not only the content of the iView that has no spacing, but the complete tray including the titlebar is all the way to the left....
    Has anyone seen this behaviour and knows how to circumvent?
    Any help would be greatly appreciated!
    Thanks in advance

    Hi Robin
    To achieve this insert a spacer image in the html text.Create a cloumn in left side and place this spacer image which matches with the background color and make the valign ="top" for the column.
    This code you add in the jspdyn page .Here you can give the width for the left area and as well for the image. Based on that empty space will be created on the left side.
    This spacer image can created easily, just take a screen shot and paste in mspaint and crop small part from that screen with matching bg color and save the image with and use it.If you have photo shop installed it will be very easy.
    Hope this helps you.....
    Regards,
    Rudradev Devulapalli
    Reward the points if helpful****

  • Getting Custom IVIew Object in Masthead View

    Hi friends,
    Can anyone tell me the process of getting my custom iview object in masthead.. My application is as follows...i have integrated an j2ee application using appintegrator process everything is working fine... my application is creating a seperate Session object which i have to invalidate after logging off from portal.so i want to call the invalidate method of my Session on clicking the portals logoff.. So how to go about with this ...
    Thanks in advance
    Satya

    Hi,
    there are several ways to achieve your goal in <b>Masterhead component</b>:
    1. one way would be modifying the <b>LogOutComponent.java</b> class - put there the code to invalidate your Session
    2. or you can put changes into the <b>HeaderiView.jsp</b> - in function <b>logoff()</b>:
    function logoff()
    //window.status = "LOGOFF";
    EPCM.raiseEvent("urn:com.sapportals.portal:user", "logoff", "");
    // put your changes here...
    logoffStartTime = (new Date).getTime();
    window.setTimeout("logoffDelay()", "50");
    3. another option is to create an iview which will subscribe to the EPCM event raised by masterhead (<i>EPCM.raiseEvent("urn:com.sapportals.portal:user", "logoff", "");</i>). When the user logoff-s the event is raised, your component catches it and do the session invalidation.
    hope this helps,
    Romano

  • Replace standard area with custom iview

    Hi experts!!
    I have the following question: can i replace a standard portal area with a custom iview??
    If yes how can this be done??
    I am a newbiew..any help would be really appreciated..
    Thank u in advance!!!

    Grigoria,
    are you talking about Portal Content area.
    once you create the iview ,go to content Provided by SAP-End User Content-Standard Portal Users- open Default Framework Page-Open Desktop InnerPage-you will find Content Area-you can add your custom iview there and uncheck visible property to standard one.
    I suggest you to create a copy of Default Framework page and work on that
    Thanks
    Bala Duvvuri

Maybe you are looking for

  • Configure Logging VI start and stop without losing or dropping data

    Hi there, I am currently using a M-series PCI-6280 and a counter card PCI-6601 to do measurements on Labview 2010.  I have 3 tasks set up, 2 linear encoder counter tasks on the 6601 and 1 analog input task with 4 x inputs on my 6280.  These are all t

  • Scenario

    Hi, I have a scenario: For my Machine I want to receive some spare parts from outside vendors. Now once I receive the spare part, I want it to go straight to the machine. And that part will be utilized in the machine. My client does not want to updat

  • How can l get rid of Doxillion tried moving to trash but keeps coming up someone is using it please can someone help

    how can l get rid of Doxillion tried moving to trash but keeps coming up someone is using it  or cant open please can someone help

  • IPod not highlighted in iTunes for content editing

    I've got a Mac G4 using an OSX version 10.2.8 operating system. I just got a Nano iPod and am unable to transfer files to it. I've downloaded the most current available iPod drive and updates but after plugging it in, the iPod icon appears momentaril

  • AWM best practices 11g

    I am building a cube in AWM 11g. It has 25 dimensions and some of the dimension tables has over 30 million records. I have partitioned the cube over the time dimension with the lowest level being month. One of the dimension took about 20 hours to bui