[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

Similar Messages

  • All my sent items are not visible in outlook

    When I send email from my iphone I can't see it in sent items in my desktop pc's outlook 2013. However, all inbox items are visible. My OS is windows 8 pro.
    Thanks

    Looking at the .mac mail folder, there are no black triangles, I have inbox, drafts and sent (and trash) icons.
    I tested the .mac mail (I know I keep saying "this site" but I don't know what else to call it?), and using this one it does keep a copy of the sent items. BUT using the Mail (the stamp icon mail) copies of sent items are not saved.
    I want to use the Mail one, because you can choose fonts and all that other stuff, which is why I even purchased the year membership! (otherwise I would just stay with Yahoo mail).
    I really don't have a clue about this stuff and I appreciate you taking your time here.

  • TS4337 I have a Google calendar that is syncing with my iPad and on my MacBook Air. However, the calendar items are not showing up when I access iCloud via the Internet. Any suggestions?

    I have a Google calendar that is syncing with my iPad and on my MacBook Air. However, the calendar items are not showing up when I access iCloud via the Internet. Any suggestions?

    On the iPad tap Settings > iCloud
    Toggle Documents & Data off then back on then restart your iPad.
    Hold the On/Off Sleep/Wake button down until the red slider appears. Slide your finger across the slider to turn off iPhone. To turn iPhone back on, press and hold the On/Off Sleep/Wake button until the Apple logo appears.
    On the iMac open System Preferences > iCloud
    Deselect the box next to Documents & Data then reselect it then restart your iMac.

  • 9800 Calendar Data changes not uploading to Outlook 2010

    When I add appts to my BB calendar it does not update my Outlook 2010 but always works the other way. I have it set to two way but only seems to go one way.

    Hi - have you checked your Desktop Manager software's syncing settings??  It may have reverted to synching 1-way. To check this do the following:
    1) Launch Desktop Manager on your computer.
    2) Connect your BB to your computer via USB
    3) Once the Desktop Manager finishes running, click on "Organizer" in the left panel of the Desktop Manager's main screen.
    4) The right-side of the screen will change "Select Orgaanizer Data to Synchronize"
    5) You should see the folowing options listed in this screen, and each having their own Configure button:
    Contacts
    Calendar
    Tasks
    Memo
    6) Click on the Configure button beside Calendar.
    7) In the pop-up box, there should be a drop-down at the top named "Sync Direction".  Click on the drop-down and select "Two way between your device and your computer"
    8) Be sure the check-box "Replace all entries on your device with entries on your computer" (below the drop-down) is not checked.
    This should now allow your calendar items added to your handheld to sync with Outlook.
    Hope this helps.
    Please click 'Like' if this was helpful, and mark it as a solution if it has solved your problem.

  • Work items are not visible  UWL task are visible in tracking in portal

    HI
    Friends
    i  am new from sap Ess/Mss implementation project...
    i am facing an Problem " Work items are not visible under UWL in portal overview page"
    but i am configured  all the ess/mss related things....and also Created for one user for Requester(send Leave Request)...and one more user for App-rover(Apporve an Leave)..
    Requestor send an Leave through portal send it successfully......but i am facing  a problem in uwl under work items are not showing in overview page...but in tracking work items are (Leave request)showing.....work items are not showing in uwl TASK(VERY PROBLEM)...
    i am configured and also registered UWL IN PORTAL..it is good..
    in sap ecc i can assigned UWL_SERVICE user to roles
    1.SAP_BC_BMT_WFM_UWL_ADMIN    
    2.SAP_BC_BMT_WFM_UWL_END_USER
    3.SAP_BC_ADMIN_USER
    4.SAP_BC_UWL_SERVICE
    PLEASE HELP ME.
    Tanks
    Shaik Rafi

    Hi All,
    In such cases, please try to check as below :
    1) Create Leave request work item from Employee and check the same under the UWL Tracking tab of employee.
    2) Log-in to swi5 transaction of the respective back end system and give "US" -> manager's UserID -> Choose Tasks to be completed from the drop down -> Remove any date if mentioned -> Execute.
    3) Here if you can see the Leave request created, but not on the portal, it reflects some portal issue like sync.
    4) If no leave request work item is seen here, then there is a problem in the employee manager mapping or the workflow setup.
    5) In such cases, you can try to check the Swi1 and check the log of that workflow to understand the current status of the Leave request.
    Revert if further help is needed with more info.
    Reward points if found useful.
    Regards,
    Shri vidya S

  • AD RMS 2012 Templates/Permissions [Option] is not visible at Outlook 2013 in Nokia Windows 8 Mobile Device

    I have AD RMS 2012 Server, its working fine by applying restricted Templates/Permissions on OWA, Outlook & other MS Office Tools (Word Excel, PowerPoint). But the AD RMS Templates/Permissions [Option] is not visible at Outlook 2013 in Nokia Windows
    8 Mobile Device.
    Actually I would like to protect email with RMS templates (defined by me on AD RMS 2012 Server) but the [Permission] tab is not visible at Outlook 2013 in Nokia Windows 8 Mobile Device.
    But I can do same with Android OS in Samsung Galaxy Mobile Device & I can see [Permission] tab as well to protect an email messages.
    Any idea??
    Regards,
    M.Daud Soomro

    Currently, you can't use WP 8 to protect docs/emails with ADRMS templates. YOu can however use transport rules on Exchange server side to configure automatic ADRMS protection.
    Please mark as helpful if you find my contribution useful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you. Thank you! Damir

  • Gmail calendar items are not showing up in calendar app

    I've synced my Gmail account and calendar but only items saved to phone calendar is showing up, All my Gmail calendar items aren't there.
    I seem to have synced everything I need to sync but still nothing shows up. Help!

    I'm having the same issue on my Fascinate.  It started Friday (5/20/11) with most of the items on my Google calendar not showing up on my phone.  Some items are still there (although none from my primary calendar).  I created a new item on Google, and it did show up on the phone.  I had the Froyo update pushed out to me on Saturday morning, but doesn't seem to have made any difference  - good or bad.  I've checked all the account settings, sync on, etc. and everything looks OK.  I can do a manual sync, but that doesn't make things show up either.
    Finally, my mother-in-law has the same phone, and is having the exact same problem starting this weekend as well.  She hasn't gotten the Froyo update - so I don't think that is it.

  • My calendar items are not syncing via iCloud.

    My calendar items are no longer syncing from my iPhone to my iMac via iCloud.  In Settings - iCloud, my iPhone says that Calendars are syncing.  iTunes on my iMac says the same thing.  On my iMac, iCloud settings won't let me check Calendars, though.  My iPad and iPhone are syncing just fine.

    but I've restarted my iPhone just the other day (for a different reason) and it didn't affect the iCloud calendar... don't know why it did today,
    Because "resetting" like I suggested is not the same as "restarting".
    You wouldn't know how to get iCal to update on a iMac that doesn't have Lion installed, would you? 
    Unfortunately, you need a Mac running Lion v10.7.2
    You're welcome 

  • Default Calendar Items Will Not Delete or Integrate!

    HELP! - Hope some good detail.  I think others are struggling with this:
    I have an 8330 from Verizon and somehow most of my calendar appointments have been moved into Default Device, as opposed to being tied to my single Verizon/MSN Calendar CICAL.  Guessing, but I think this happened when I got disconnected from email for some reason, which is again is MSN email passed through Verizon.  I called Verizon, and I know they "re-registered" or "reintegrated" me and sent new service books, which worked for re-establishing email.
    But I suspect it overwrote my email calendar CICAL which kicked all appointments into Default - just a total guess.  I didn't notice until trying sync a little later and the process wanted to delete all Outlook appointments; apparently the Default Calendar is not visible to sync.  By the time I noticed, I had 4 new appointments in my new msn.com CICAL, and 99 in Device Default. 
    There is a workaround fix I saw in another thread which should have worked - KB16063 below:
    Cause 3
    Meetings created in Microsoft Outlook are being synchronized to the BlackBerry smartphone's base system calendar, instead of the database belonging to the BlackBerry Internet Service [CICAL] service record.
    Workaround
    Clear and restore the calendar data on the BlackBerry smartphone.
    Using BlackBerry Desktop Manager, back up the BlackBerry smartphone calendar data. For instructions, see KB11297.
    Using BlackBerry Desktop Manager clear the BlackBerry smartphone calendar database.  For instructions, see KB05340.
    Manually delete all but one BlackBerry Internet Service [CICAL] service books, by completing the following steps:
    On the BlackBerry smartphone, go to Options > Advanced Options > Service Book.
    Delete all but one BlackBerry Internet Service [CICAL] service books. Each integration will have an integration named service book, such as <BlackBerry Internet Service integrationname>[CICAL].
    Perform a hard reset of the BlackBerry smartphone. For instructions, see KB02141.
    Restore the calendar data to the BlackBerry smartphone. For instructions, see KB10339.Important: Should another BlackBerry Internet Service [CICAL] service book be sent to the BlackBerry smartphone, this workaround will need to be repeated in order to move the appointments to the newly sent calendar service.
    I followed it exactly, with the exception I had no other other CICALs to delete in Step 3, so could do nothing there.  The only one listed with the CICAL listed corresponding to my e-mail address.
    I ended up exactly where I was when I started.  My wife's phone had the exact same problem: email stopped called Verizon, email re established; calendar items moved to Default Device.  I called Verizon last night and they were mystified.  No success.
    Any input would be appreciated!  Sorry about all the detail...

    Hi,
    You can do it through the Storm or the PC.
    I find it easier to use the PC when I am working on the Storm:
    The link is attached. Do you have any experience with the BIS site?
    Thanks,
    Bifocals
    https://bis.na.blackberry.com/html?brand=vzw
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • Open PO item is not visible in MD04

    Dear Expert,
    We have one scenario that one PO contain 3 line item which having Open PO Qty. but for line item 20 we have completed open qty i.e.40 & PR is also there. but it is not showing in MD04 & Also not visible in MIGO while doing GR
    so please suggest what we need to do this will be visible.
    Regards,
    Ishwar

    Dear Subhash,
    Thanks for your reply
    Status of line item is OPEN
    Changes has been done in PO & also Version is set with Completed Indicator
    Plz suggest
    Regards,
    Ishwar

  • ListBox Items sometimes not visible on app Resume

    Hey,
    I have a winRT windowsphone 8.1 app in development and I've come across a strange problem sometimes.
    Basically, when my app loads, I pull items from an RSS using syndication feed, store to a data set which is binded to the listbox. This works perfectly.
    I can even hold the back button, terminate the app, then reload it and the items repopulate instantly (guessing the app automatically saves state? I didn't program this in) but occasionally, the listbox is empty. Or so I think, turns out the items are still
    loaded; I tap the blank screen and an article shows up, I can still even scroll up and down this blank space, tap other blank areas and different articles from that feed load. So clearly the listbox is still populated, Just not visible.
    Does anyone know what causes this? Any advice on what I need to be doing here? Can provide code if required.

    Alright so I worked out part of the problem. The reason it wasnt working on navigating back sometimes is that parts of the code for initialising the listBox resided in the constructor, and not "onnavigatedto". Moving the code into that method fixed
    the issue when navigating back pages.
    However, the problem still remains on physically closing the app (swiping it away in multitask view). When the app is loaded again, the listbox is blank, but operable (the feed is clearly loaded as selecting the blank screen opens articles). It seems that
    this doesnt occur if I change the "bypasscahceonretreive" property on the syndicatedfeed to "true", but if i set this that means the page will always bypasscache when navigated back to it, i dont want this (waste of quota) so i still need
    to fix that one.
    Im thinking i may need to implement proper resuming when the app is "closedbyuser"? So add an "onloaded" handler, and it the app was closed by user then just bypass the cache and itll probably work (again, not ideal, as id be happy for
    it to use the cache).
    Does this sound like the correct behaviour?
    EDIT:
    I had to do this. It worked, but wasnt ideal. So i bypassed cache on app first load and now it always shows up. weird.

  • Work items are not visible under UWL in portal ?

    Hi,
    We are upgrading from SRM 5.0 to SRM 7.0.
    We have observed one issue here. Workitems are not visible in UWL in portal.
    But workitems are available in SAP inbox. i.e SBWP.
    Completed items we can see in UWL.
    Could you please let me know any idea on this.
    Regards
    Venkatesh P
    Edited by: Venkatesh Padarti on Dec 9, 2010 8:28 AM
    Edited by: Venkatesh Padarti on Dec 9, 2010 8:29 AM

    Hi Venkatesh,
    Can you please share the solution? Which base URL was wrong and where did you correct that?
    Your help is really appreciated.
    I had post the same question at SRM workflow - work Item is not being displayed If you want to reply there. I will definitely, reward with points too.
    Thanks,
    Bhavik

  • Menue item is not visible

    heloo
    this is code for My jframe
    i try to put file menu and i put it in but there is problem and drop menue is not visible but it dos work (if u now where the items are )and
    if you have no idea then is it possible to create 3 different menue and ask action performed to look at there event instead of Jmenue item.
    because if i cant find solution then thats my only way
    bu how should i ask for actionPerforme to listen to them.
    class ChessMa extends JFrame implements ActionListener {
    JMenuItem item;
    JMenu m;
    JMenuBar bar;
    public ChessMa()
    {  setTitle("CHESS PLAYER GAME" );
    setSize(400,490);
         addWindowListener(new java.awt.event.WindowAdapter() {
         public void windowClosing(java.awt.event.WindowEvent e) {
    System.exit(0);
    JMenu m= new JMenu ( "File");
    m.addActionListener(this);
    m.setPopupMenuVisible(true);
    item =new JMenuItem("Save");
    item.addActionListener(this);
    m.add(item);
    repaint();
    item=new JMenuItem("Load");
    item.addActionListener(this);
    m.add(item);
    JMenuBar bar = new JMenuBar () ;
    bar.add(m) ;
    setJMenuBar(bar);
    public void actionPerformed(ActionEvent e)
         //if (e .getSource() instanceof item)
    String arg= e.getActionCommand();
    if (arg.equals("Save"))
              { System.out.println("save");}
         else if (arg.equals("Load"))
              {System.out.println("load");}
         else if (arg.equals("File"))
              {System.out.println("���22222222���!!");}
    public class ChessMan{
    public static void main(String[] args) {
    JFrame frame = new ChessMa();
    ImageIcon customImageIcon = new ImageIcon("ac516.gif");
              Image customImage = customImageIcon.getImage();
              frame.setIconImage(customImage);
              // Japplet Class
    ChessPlayer javaAppletication = new ChessPlayer();
              javaAppletication.init();
    javaAppletication.start();
              Container content = frame.getContentPane();
         content.add(javaAppletication, BorderLayout.CENTER);
    javaAppletication.setBackground (Color.black);
         frame.setVisible(true);
    frame.show();
    frame.pack(); // invokes getPreferredSize()
    // invokes paint();
    }

    Hi,
    I think you want your file menu to be visible as soon as your frame opens. If I'm correct, then you can run the code pasted below. You were trying to make file menu visible when it was not showing.
    Best regards,
    Pratap
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class ChessMa extends JFrame implements ActionListener, WindowListener {
         JMenuItem item;
         JMenu m;
         JMenuBar bar;
         public ChessMa()
              setTitle("CHESS PLAYER GAME" );
              setSize(400,490);
              addWindowListener(new java.awt.event.WindowAdapter() {
                   public void windowClosing(java.awt.event.WindowEvent e) {
                   System.exit(0);
              m= new JMenu ( "File");
              m.addActionListener(this);
              m.setPopupMenuVisible(true);
              item =new JMenuItem("Save");
              item.addActionListener(this);
              m.add(item);
              repaint();
              item=new JMenuItem("Load");
              item.addActionListener(this);
              m.add(item);
              JMenuBar bar = new JMenuBar () ;
              bar.add(m) ;
              setJMenuBar(bar);
              addWindowListener(this);
         public void actionPerformed(ActionEvent e)
              //if (e .getSource() instanceof item)
              String arg= e.getActionCommand();
              if (arg.equals("Save"))
                   System.out.println("save");
              else
              if (arg.equals("Load"))
                   System.out.println("load");
              else
              if (arg.equals("File"))
                   System.out.println("���22222222���!!");
         public static void main(String[] args) {
              ChessMa f = new ChessMa();
              f.setLocation(300,300);
              f.show();
         public void windowOpened(WindowEvent e) {
              m.doClick();
         public void windowClosing(WindowEvent e) {}
         public void windowClosed(WindowEvent e) {}
         public void windowIconified(WindowEvent e) {}
         public void windowDeiconified(WindowEvent e) {}
         public void windowActivated(WindowEvent e) {}
         public void windowDeactivated(WindowEvent e) {}
    }

  • New item category not visible in CRM WebUI

    Hi,
    I am working on CRM 7.0, Leasing Contracts component BT114H_LAM.
    I created a new item category for the contract however this is not visible in the WebUI screen. the moment i enter the item it dissappears from the screen. It is available in the item details.
    Same item is visible in the Backeng SAP GUI.
    Can anyone suggest some solution for the same.
    I have done all the customizing required for the new item category in SPRO-Financial Services->Basic Functions->User Interfaces->CRM Web client UI
    Waiting for some quick reply
    Regards,
    PP

    Thanks fo ryour input.
    There was somethng else that was missing from customizing.
    regards,
    PP

  • 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

Maybe you are looking for

  • Generic file load

    Option Explicit Dim Row, FilePath, Folder Const ExcelFileName = "curve linear final limits  ECE-AIS.xls" Const ExcelSheetIdx = 1 Const StpFileName = "curve linear final limits  ECE-AIS.stp" Call Data.Root.Clear 'get FilePath from dialog Call FileName

  • MG5350 and Greyscale printing with black.

    Hello, I have a Pixma MG5350 and am wondering if there is a way I can print in greyscale using only the black ink? Like alot of pritners I have had before when I select the "greyscale" option and print it converys all the colors on the page into shad

  • HT204382 how can i open this file Đế Cẩm 54 54 DVDRip VNLT tập 1 dailymotion.flv ?

    how can i open this file Đế Cẩm 54 54 DVDRip VNLT tập 1 dailymotion.flv ?

  • Error while init delta in source system

    I use generic data source with generic delta Delta field - DATUM (Calendar date) Safety Interval Upper Limit = 1 Delta type = "New Status for Changed Records" My underline table for data source has 53 records. All records DATUM field value is 2010/09

  • ISight Green Screen Problem: Temporary SOLUTION

    If you have been experiencing a "green screen" with iSight in Photo Booth (and camera not working in other programs...there is a temporary solution. The solution is to SHUT DOWN your machine (NOT just restart). Turn your machine back on....your iSigh