Iview body not visible

Hi all,
Our requirement is that when the user opens the universal worklist for MSS, the user should see the UWL as well as an overview of the HCM processes overview (A WD ABAP application that we have developed).
What i have done is assigned 2 iviews to the UWL page -
(1) UWL iview
(2) The HCM processes overview iview
When i call this page from the detailed navigation, the page opens and both the iviews are displayed one beneath the other.
However, when i call the same page from the area page, i see the first iview ( UWL) completely, and i only see the tray name of the second iview. i.e. the body of the second iview is not visible in the page.
I am unable to place the possible reason for this behaviour as the same page is being called from both the detailed navigation and the area page.
Any pointers in this regard will be appreciated.
TIA.
Regards,
Diana

Hi,
We are now calling the HCM process overview page in the area page instead of the UWL page. So what we have now is the HCM process ovewview page renamed as UWL calling the standard HCM process overview iview and the UWL iview. ( i.e.We have added the UWL iview to the HCM process overview page).
Now, when we open this page from the area page, the HCM process overview iview is not getting displayed initially. But when we refresh the page, the HCM process overview gets displayed.
Is there a way we can ensure that both the iviews are displayed initially itself, without any refresh? Are there any settings for this?
TIA
Regards,
Diana

Similar Messages

  • Messages arrive with body not visible

    I am starting to see a number of mail messages arriving in my Inbox which I cannot read because the content is not visible. The message size in the Message viewer suggests that there is content (15kB, for example) but no amount of manipulation -- e.g., selecting the whole message and trying to force the text color to black -- seems to work.
    If I click "reply" then in the composition window which appears the message is visible.
    When this first started happening I thought there was something funny about the sender's software, but these invisible messages are coming from a variety of sources.
    This has just started happening in the last week or so.
    Is anyone else seeing this?

    I quit Mail and restarted it -- the invisible messages are now visible.
    It is still a mystery since this problem has spanned several launches of the Mail app.

  • [E2013][EWS-XML][EWSTOOL] Calendar item body not visible in outlook

    Hi, after upgrading to Exchange 2013 SP1 we experience the issue that appointments created using EWS by our ERP application don't show the body in Outlook 2010/2013. The appointment body is only visible in OWA or on Active Sync devices. Outlook just shows
    an empty body text. When openening the appointment in OWA and editting the body text, by placing a '.' at the end for example, then the body text is visible in outlook again. This worked fine in CU3 and earlier.
    I created a repro scenario using the EWSEditor tool:
    https://ewseditor.codeplex.com/
    Create an appointment using EWS. Below the request I've sent to Exchange EWS. It creates an appointment on Saturday, March 8th from 22:00 to 23:00 with the following text in the body: ‘Plan the agenda for next week's meeting.’. The request is successful and
    the appointment is being created. However, the body text is only visible in Outlook Web App, not in Outlook. 
    I reproduced this issue in our lab also, so it’s not specific to our production Exchange server, but seems to be a general SP1 issue.
    <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                   xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                   xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
                   xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
      <soap:Body>
        <CreateItem xmlns="http://schemas.microsoft.com/exchange/services/2006/messages"
                    xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"
                    SendMeetingInvitations="SendToAllAndSaveCopy" >
          <SavedItemFolderId>
            <t:DistinguishedFolderId Id="calendar"/>
          </SavedItemFolderId>
          <Items>
            <t:CalendarItem xmlns="http://schemas.microsoft.com/exchange/services/2006/types">
              <Subject>Planning Meeting</Subject>
              <Body BodyType="Text">Plan the agenda for next week's meeting.</Body>
              <ReminderIsSet>true</ReminderIsSet>
              <ReminderMinutesBeforeStart>15</ReminderMinutesBeforeStart>
              <Start>2014-03-08T22:00:00</Start>
              <End>2014-03-08T23:00:00</End>
              <IsAllDayEvent>false</IsAllDayEvent>
              <LegacyFreeBusyStatus>Busy</LegacyFreeBusyStatus>
              <Location>Conference Room 721</Location>
            </t:CalendarItem>
          </Items>
        </CreateItem>
      </soap:Body>
    </soap:Envelope>
    Frank.

    I got our developers change the body type to HTML. Still it doesn't work.
    Our code is java
    -238,21
    +238,21 @@ public class WebServiceExchInteractor extends ExchangeInteractor
                    logger.debug("Sending new meeting request using exchange web services. Meeting Item = " + item.toString());
                    boolean errorOccurred = false;
                    try
                    CalendarItemType calendarItemObj = CalendarItemType.Factory.newInstance();
                        //Setting subject and body of the meeting
                    calendarItemObj.setSubject(item.getSubject());
                        BodyType bodyObj = BodyType.Factory.newInstance();
    +                   bodyObj.setBodyType(BodyTypeType.HTML);
                        bodyObj.setStringValue(item.getBody());
                        calendarItemObj.setBody(bodyObj);
                        //setting the attendees
                        calendarItemObj.setRequiredAttendees(constructArrayOfAttendeesType(item.getAttendees()));
                        //Setting the Meeting time and reminder properties
                        calendarItemObj.setReminderIsSet(item.isReminder());
                        calendarItemObj.setReminderMinutesBeforeStart(ExchangeConstants.DEFAULT_FREE_BUSY_INTERVAL);
    -439,21
    +439,21 @@ public class WebServiceExchInteractor extends ExchangeInteractor
                            itemFieldChangesArray[3] = SetItemFieldType.Factory.newInstance();
                            itemFieldChangesArray[3].setItem(calendarItemObj);
                            PathToUnindexedFieldType pathToSubjectObj = PathToUnindexedFieldType.Factory.newInstance();
                            pathToSubjectObj.setFieldURI(UnindexedFieldURIType.ITEM_SUBJECT);
                            itemFieldChangesArray[3].setPath(pathToSubjectObj);                     
                            //Setting the path to body
                            calendarItemObj = CalendarItemType.Factory.newInstance();
                            BodyType bodyObj = BodyType.Factory.newInstance();
    +                       bodyObj.setBodyType(BodyTypeType.HTML);
                            bodyObj.setStringValue(item.getBody());
                            calendarItemObj.setBody(bodyObj);
                            itemFieldChangesArray[4] = SetItemFieldType.Factory.newInstance();
                            itemFieldChangesArray[4].setCalendarItem(calendarItemObj);
                            PathToUnindexedFieldType pathToBodyObj = PathToUnindexedFieldType.Factory.newInstance();
                            pathToBodyObj.setFieldURI(UnindexedFieldURIType.ITEM_BODY);
                            itemFieldChangesArray[4].setPath(pathToBodyObj);
                            //Setting the path to attendees
    -642,21
    +642,21 @@ public class WebServiceExchInteractor extends ExchangeInteractor
             ItemIdType[] itemIdDetails = new ItemIdType[1];
             itemIdDetails[0] = ItemIdType.Factory.newInstance(); 
             itemIdDetails[0].setId(itemId);
             NonEmptyArrayOfBaseItemIdsType itemIdObj = NonEmptyArrayOfBaseItemIdsType.Factory.newInstance();
             itemIdObj.setItemIdArray(itemIdDetails);
             getCalendaritem.setItemIds(itemIdObj);
             //Setting the response properties required from server
             ItemResponseShapeType responseDetails = ItemResponseShapeType.Factory.newInstance();
    +        responseDetails.setBodyType(BodyTypeResponseType.HTML);
             responseDetails.setBaseShape(DefaultShapeNamesType.ALL_PROPERTIES);
             PathToUnindexedFieldType uidView = PathToUnindexedFieldType.Factory.newInstance();
             uidView.setFieldURI(UnindexedFieldURIType.CALENDAR_UID);
             BasePathToElementType[] pathArray = new BasePathToElementType[1];
             pathArray[0] = uidView;
             NonEmptyArrayOfPathsToElementType additionalProperties = NonEmptyArrayOfPathsToElementType.Factory.newInstance();
             additionalProperties.setPathArray(pathArray);
             responseDetails.setAdditionalProperties(additionalProperties);
             getCalendaritem.setItemShape(responseDetails);
    -710,21
    +710,21 @@ public class WebServiceExchInteractor extends ExchangeInteractor
                itemIdDetails[0] = ItemIdType.Factory.newInstance(); 
                itemIdDetails[0].setId(itemId);
                itemIdDetails[0].setChangeKey(changeKey);
                NonEmptyArrayOfBaseItemIdsType itemIdObj = NonEmptyArrayOfBaseItemIdsType.Factory.newInstance();
                itemIdObj.setItemIdArray(itemIdDetails);
                getCalendaritem.setItemIds(itemIdObj);
                //Setting the response properties required from server
                ItemResponseShapeType responseDetails = ItemResponseShapeType.Factory.newInstance();
    +           responseDetails.setBodyType(BodyTypeResponseType.HTML);
                responseDetails.setBaseShape(DefaultShapeNamesType.ALL_PROPERTIES);
             PathToUnindexedFieldType uidView = PathToUnindexedFieldType.Factory.newInstance();
             uidView.setFieldURI(UnindexedFieldURIType.CALENDAR_UID);
             BasePathToElementType[] pathArray = new BasePathToElementType[1];
             pathArray[0] = uidView;
             NonEmptyArrayOfPathsToElementType additionalProperties = NonEmptyArrayOfPathsToElementType.Factory.newInstance();
             additionalProperties.setPathArray(pathArray);
             responseDetails.setAdditionalProperties(additionalProperties);
                getCalendaritem.setItemShape(responseDetails);
    SONY ABRAHAM

  • Mail body not visible

    Recently (foloowing IOS 5.1 upgrade?) the mail program has stopped showing the mail message body (unless I reply or forward). Any ideas on how to fix?

    Try closing the Mail app completely and see if you can view the email text when you re-open the app : from the home screen (i.e. not with the Mail app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then do a reset and see if they show after the iPad has restarted : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Details button on iView not visible..Please guide :)

    Hello All,
    Am working on a CRM iView. As in other EP iViews, am not able to view the Details icon which appears in the right corner of iView tray.
    I have set the properties like Add to Favorites, Refresh which would be visible (context menu) in the above mentioned icon.
    How can I enable this icon?
    Awaiitng Reply.
    Thanks & Warm Regards,
    Ritu

    Hi Karin,
    Thank  you for your reply and I found a way out of this.....but its not exactly what i am looking for
    in an iView, when you view the properties, you get propeties like iView Tray along with other properties which when enabled are visible/accessing as context menu in the Options icon (which is along with the Collapse icon) but inspite of enabling it, when you preview it, it is not visible. you need to attach it to a page to view its Tray options.
    so by doing this i got my solution but what i wanted to know that there are ways that inspite of doing what i mentioned above, i can still hide it.
    I think there was a WebLog on this but dont remember now.
    Please do let me know ur suggestions for the same......
    Awaiting Reply.
    Thanks & Warm Regards,
    Ritu

  • Iviews in home page not visible when I assign eu_role to portal users

    Hey guys,
    For the tool area search, I had access denied error. So I have assigned eu_role to the portal users and I am able to search now in the tool area.. But the problem is when I assign this eu_role to the portal users I am not able to see some iviews in my home page.. Like I had webdynpro iview and km document iview which are not visible now. And in place of KM document iview its showing me with this message:
    Links :There are no items to display (Organize Entries)
    Suggest me with some help.
    Regards
    PP

    Hi Priyanka,
    Just refer these helps for getting idea on PCD Repository Manager.
    http://help.sap.com/saphelp_nw04/helpdata/en/76/a8934259a5cc6ae10000000a155106/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/b2/d59a4271c80a31e10000000a1550b0/content.htm
    It is clearly mentioned in this document that ,
    <i>To index the PCD repository, always choose the Portal Roles Search service. Do not choose the services TREX Search or TREX Search and Classification, because these services index the entire PCD. Thus, the search results would also contain iViews and portal pages that are not part of the role of the logged-on user. This ensures error-free navigation.</i>
    Regards,
    Kishor Gopinathan

  • IView not visible for a single user

    Hi All,
    I am facing the a problem in our client's portal. The application is not visible for one of our client user on the portal. When he clicks on the Role->Workset->Application name, the IView is not displayed on the screen. Instead, blank page is shown.
    This is happening only to him. Other users are able to see the application and run it. I even tried by removing the roles assigned to him which are related to the application and re-assigned it. But the problem still persists.
    He is facing this problem only from past 2 days. Till then it was working fine.
    Please let me know how can this be solved.
    Regards,
    Poojith MV

    Hi,
    Firstly, we do not have the personalization option on the portal. We also requested the user to try the portal on a different which we thought could be a browser problem.
    However, the result is same on a different machine. But other users who use the same system are able to view the application. I am unable to figure out what could be wrong for just one user?
    The setting "Entry Point" is set to "yes".
    The latest update is that, the user has 2 id's created for himself with the same portal roles. The second user id is working fine, but the first user id is failing to view the application
    Regards,
    Poojith MV

  • New fields created in MDM Console not visible on Portal iViews

    Hi All
    I would like to ask you. I recently encouraged very strange and annoying problem. We are developing Vendor repository. Menatime we have created some iViews and pages on the Portal. All of them are displayed from Main table. We can see all fields and added/deleted records.
    However I can not add any new fields (from MDM Console main table) we have created. That is whired because I only can see all fields beeing in repository for long time now, but all new fields (from that same table) ar not visible on portal.
    I tried few options with creating new and different iViews. No help. All the time I can vise old fields from repository but new one are not available.
    Can you plase advice what is/ may be wrong?
    Thank you in advance.
    BR
    Rafal

    Hi All
    After restarting server problem solved. That mean there is a casching problem. After investigation here is service to restart:
    J2EE engine
    Thank you for help.
    BR
    Rafal
    Edited by: Rafal Paczynski on Sep 29, 2011 12:21 PM

  • Iviews not visible in SAP PLM 7.0 portal.

    Good morning,
    When i navigate to 'Product engineering' tab in the portal, there are a set of iviews available in the content area.
    These are :-
    1. Work environment.
    2. Search
    3. My contexts.
    4. My objects..
    These iview headers are visible with the title but no content of these iviews are visible/accessible.
    On clicking on the expand tray/collapse tray icon there is no action. (All i could make out is that there is a thin line added when i click on the expand tray icon).
    There is no way i can access these iviews.
    Is there something i am missing out ?
    Request some pointers/inputs here.
    regards,
    abhishek
    P.S : I am not sure if this issue with iviews has anything to do with the version of java installed (mine is  1.6.0_16)

    HI  Abhishek
    i understand u are using EP for hosting the SAP PLM 7.0 module. have u tried using the netweaver business client ?
    Can u send in detail the procedure u have adopted for Installation of PLM 7.0 & hosting in EP?
    Also what function have u activated apart from teh WEB-UI?
    Or is ur issue resolved ?
    pls share ur inputs..
    thanks
    john

  • I have updated iOS 6 in my iPhone 4S and it went perfectly fine. Just after that when I opened the message app I found that the sms body of system generated messages was not visible after tapping on them.

    I have updated iOS 6 in my iPhone 4S and it went perfectly fine. Just after that when I opened the message app I found that the sms body of system generated messages was not visible after tapping on them.

    The terms of service of the Apple Support Communities prevent us from helping anyone with a jailbroken phone.
    You're on your own.  Good luck.

  • Iview not visible

    Hello,
    i have two different roles and every role has a workset. I have merged these both worksets and set as an entry point. One of the worksets consists only one iView. This iView should be displayed on the second level of the top-level-navigation.
    Now i have the problem that I can see the navigation entry on the second level but the content of the iView is not displayed. I can see only an empty background.
    If I test the iView in the preview it works fine.
    What is wrong or what can I do?
    Any ideas?
    Regards
    Philipp

    Hi Philipp,
    Are you using the same userid to do the preview and to access the iView through the role. If you are using different users then may be the other user does not have correct data/profile associated with it in the backend. Have a look into it and let me know.
    Regards
    Mukesh

  • Universal Worklist iView not visible///

    Hi All,
    We have installed EP & I have done the required configuration from SAP HCM module side & everything is working on fine except that I'm not able to see the My Organizer iView (Universal Worklist iView) in the ESS. I can see the other iViews like Employee Search, Working Time, Travel & Expenses etc. My workflows are also working properly just that the iView is not appearing on ESS. Please suggest what configuration is missing & how to do this config.
    System Details:
    EP version: 7.0
    BP ESS/MSS: 11
    EHR & SAP HCM package level: 24
    Regards,
    VJ

    have you assigned the standard roles ie for portal and ess role
    check in UWL administration
    Does the same issue occur when you go to Content Administration and
    preview the iview with the following PCD address (Standard UWL iview
    provided by SAP)?
    Portal Content/Content Provided by SAP/End User Content/Standard
    Portal Users/iViews/com.sap.netweaver.bc.uwl.iviews/Universal
    Worklist
    check the roles and permission assigned to this user again
    Please see the UWL Wiki @
    http://wiki.sdn.sap.com/wiki/display/BPX/UWL%20FAQ  *

  • BPM TASK IS not visible in UWL  Inbox

    Hi  BPM Expert,
      I am facing the big issues in BPM process Triggered problem. earlier i used  to BPM start using Web service with Two entity as ID and Username  but its was  working fine .but i have some requirement to  adding one element in Existing WSDL entity as casename  , i have added that element and execute the web service using WEBDYNPRO application ,but Task is not visible in UWL inbox but earlier it was working perfectly,  after adding that field ,BPm tax is not visible UWL inbox ..
    Please guide me ,Its urgent...Plz plz..
    Its showing error as
      Technical issues is triggered during the process creation..
    Thanks
    sudhir

    Hi ,
      I am executing the WEbservice using WSNAVIGATOR but its not execute , its getting HTML log error as  below..
    1-Web service returned error. Fault Code: "(http://schemas.xmlsoap.org/soap/envelope/)Server" Fault String: "Could not retrieve SDO HelperContext for service_id nsn.com/claimbpmproject/PRINVOKE"
    2-
    HTTP/1.1 500 Internal Server Error
    server: SAP NetWeaver Application Server 7.20 / AS Java 7.20
    content-type: text/xml; charset=utf-8
    date: Sat, 26 Nov 2011 11:40:56 GMT
    transfer-encoding: chunked
    Set-Cookie: <value is hidden>
    2e4
    <?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>Could not retrieve SDO HelperContext for service_id nsn.com/claimbpmproject/PRINVOKE</faultstring><detail><yq1:com.sap.engine.interfaces.webservices.runtime.RuntimeProcessException xmlns:yq1='http://sap-j2ee-engine/error'>Could not retrieve SDO HelperContext for service_id nsn.com/claimbpmproject/PRINVOKE</yq1:com.sap.engine.interfaces.webservices.runtime.RuntimeProcessException></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>
    0
    Thnaks
    Sudhir

  • Payload not visible in the XI monitor

    In my scenario an xml message was successfully reaching its destination. The XI system was upgraded from support pack 13 to support pack 16. After that the process is still working fine as the XML message is still successfully reaching its destination. The issue we have is that the ‘Payload’ is not visible in the last two steps of the monitor. We can see the Payload until ‘Technical Routing’ in the monitor. But ‘Call Adapter’ and ‘Response’ steps do not have payload.
    (TCode: SXMB_MONI)
    when we double click a message we get XML message details and on the left hand side it shows following hierarchy:
    XML Message:
    Receiver Grouping
       -     SOAP Header
       -     SOAP Body
       -     Payloads
    Request Message Mapping
       -     SOAP Header
       -     SOAP Body
       -     Payloads
    Technical Routing
       -     SOAP Header
       -     SOAP Body
       -     Payloads
    Call Adapter
       -     SOAP Header
       -     SOAP Body
    <b>(( No Payload displayed, but present above!! ))</b>
    Response
       -     SOAP Header
       -     SOAP Body
    <b>(( No Payload displayed, but present above!! ))</b> 
    Any suggestions would be highly appreciated!
    Thanks in advance.
    Faiq

    Hi faiq
    This seems to be the normal behaviour starting with SP13 or 14. There was a discussion about this a while ago and I believe it turned out to be works as designed.
    This is what was posted as final conclusion in Re: SXMB_MONI does not show payload after upgrade to SP15:
    <i>According to SAP (OSS) this is working as designed. Apparently it was an error in the past that the payload was stored in the DB on the ABAP (IE) side when the AE is involved, as it would then be stored twice at DB level. This explains why this is not a problem when e.g. the IDOC adapter is used.
    Anyway, the only way to let the system show the payload in SXI_MONITOR is to set the runtime trace level to 3 (full trace) and parameter logging to 1 (trace switched on).</i>
    regards,
    Peter

  • Mail app PDF attachment is not visible

    I found several reports (and workarounds) of PDF attachment hiding in Mail application. It seems to be still not fixed, as I got the issue with current up-to-date software configuration: OS X 10.6.7, Mail 4.5 (1084).
    My details:
    - email is generated by some automatic system, it has HTML body and one PNG image (referred from the HTML). I know there is also PDF attachment (2 pages).
    - In mail view I see HTML rendering and PNG image as the only attachment; attachment count is 1. Nothing about PDF, also PDF contents is definetly not visible "inline".
    - in mail source I can see that the HTML, PNG and PDF are there (as MIME attachments). Quick look to the source does not show anything obviously broken there; I've programmed MIME email sending in low level and have some idea about it.
    - in File-Quick view attachments I can see PDF contents
    - in File-Save attachments also PDF attachment is saved fine
    - in most other emails I can see PDF files, inline or as attachments. So it has something to do with specific mail format, or MIME configuration.
    So the issue is that by normal view I just would have no idea that there is this hidden attachment.
    I happened to know from another mail reader (gmail) that the attachment is there, otherwise I could never notice it. Therefore it is major annoyance, especially that Apple has not succeeded to fix it fully for 5 years or so.

    I'm having the exact same problem here. I'm in Lion 10.73 running Mail 5.2.
    This is very frustrating because the "list view" window, there's an attachement column that show's there's 2 attachments (presumably one image attachment for a signature and one for a pdf)... but in the message window there's no pdf attachment.
    Surprisingly I have an iPad3 and the same message is missing the attachment as well.
    But then I go online to my webhost's webmail access and the attachment is there.

Maybe you are looking for

  • I can connect my cisco mobile vpn but can't ping & access internal IP

    Hi somebody, i've configured mobile vpn configuration in cisco 7200 with GNS3. i can connect VPN to my cisco router with cisco vpn client software from outside. but i can't ping to internal ip and can't access internal resources. My Internal IP is 19

  • NW04s SR2 Install error on Linux Fedora 7

    Hello I'm trying to install a Netweaver 04s SR2 (Java Stack, EP, EP Core ...) on a Fedora 7 box. I know it's not a supported platform but anyway, during phase 24 (Start central services instance), the installer stopped with the following error trace

  • Where do you get the history pallette in PS 5?

    Where do you get the history pallette in PS 5?

  • Reason for Deadlock Insert Select on same table

    I have obtained the deadlock graph. However, I still don't understand why a deadlock occurs. Can someone explain it to me? Thanks in advance. deadlock-list deadlock victim=process3a59438  process-list   process id=process3a58c58 taskpriority=0 loguse

  • Special unicode character

    I have been trying to get a line over the lower case o so it looks like this, ō, or the macron as it is known. I am using InDesign CS2 and want to have this character in Helvetica condensed. I can't get it to work using the Unicode key combination. T