Hierarchy in properties of characteristics item is not visible in report

Hi,
It has been observed that the Hierarchy name in u201Cproperties of characteristics" of an infoobject for example 0GL_ACCOUNT is not visible in BEx output report. The report shows complete hierarchy with all nodes / subnodes but NOT HEADER description!
Also whenever you change the hierarchy (by changing global / local view), Same problem exist.
This is one of the high priority problem users are facing since they canu2019t see hierarchy name (Key / Text) causing confusion.
Please advice.
Thanks and best regards
Rajendra

Make a duplicate header above all the levels and show text in the BEx output
Level 1 -> Hierarchy name -> Level 2 ( Initially Level 1) -> Level 3 ( Initially Level 2)

Similar Messages

  • 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

  • Loaded data not visible for Reporting?

    Hi all,
       In the info cube, the data is not visible for reporting, How can i make it available for reporting,
    When i select the Manage option from the context menu of the cube and select the Requests Tab, i get a pop up message that tells
    " There is an inconsistency between the load status of the data and the option of reporting on this data.
    There is data in the InfoCube/ODS object that is OK from a quality point of view, but is not yet displayed in reporting.
    The problem, for example, is to do with request 0000018049, number REQU_F4ZBFRMDGBULE9WCUN3R5UX5X."
    How do i find out the inconsistancies?
    PS: All the requesta are delta upload
    Thanks n regards
    Girikumar

    Hi Girikumar
    Use the RSRV transaction and check the inconsistency of the cube ..If any inconsistency is there repair that with the repari option in the toolbar..
    Let me knwo if it not resolved..
    Bye
    Shu Moh..

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

  • 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

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

  • 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

  • Sales order pricing analysis button at item level not visible

    Hi Experts,
    I have a situation for one of the pricing procedures, the Analysis buttion at the at item pricing level (condition tab) is not visible.
    Can anyone please help me understand why is this happening?
    What is the solution for this?
    Thanks in advance!
    Regards,
    Kiran

    HI Satish,
    Looks like this is not a configuration problem.. specially any pricing configuration.
    I wonder if this has anything to do with authorization problem .. not 100% sure.
    Regards,
    Kiran

  • New objects not visible in report objectpicker

    Hi, I'm new to SCOM so please forgive me if I say something wrong.
    We are using SCOM 2007 R2.
    In Operations Console I've created 2 new Web Applications in Authoring view.
    In Reporting view I open  Availability report from Microsoft Generic Report Library
    Click Add Object
    Search for Web Application I've created and get nothing
    For some reason I see only old objects when search or view all available in report. I tried to use old Management Package and created my own (I thought the problem was in sealed MP, but my new is unsealed). Found similar problem in "Missing Objects
    in Report Objectpicke" question,  but we have less than 100 monitoring agents.
    So I have no idea why objects are not visible, could you please help?

    Verify from Group {contain all computers that you want} that using in Reporting.
    You also check below link, it's similar issue
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/5cb0fb12-73c5-4553-987f-ea415babd876/missing-objects-in-report-objectpicker?forum=operationsmanagerreporting
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"

  • Items are not visible in multi-select listbox in a static form

    Hi,
    I'm using adobe livecycle designer 8.0. I have a multi-select listbox, the items are hardcoded into the form. In runtime, some of the items are selected from the server side when the PDF is generated. If only one item is selected then there is no issue. When multiple items are selected, the list box is behaving as below.
    If the PDF is static,
    If the listbox is readonly, then all the selected items are visible (highlighted in red)
    If the listbix is editable, then it appears blank. If you select it using right click, then you can see all the items and the selected items. But if you click again somewhere outside the listbox, then the listbox goes blank. If you select it using left click, then the previous selections are gone and the items are visible with the item you just selected.
    If the PDF is dynamic, then the multi-select  is working fine.
    Aren't the multi-select listboxes supported in static PDFs?
    For your reference, I created 2 templates (static and dynamic) and populating the values using javascript in the docReady event. I'm using \n character as delimter to select the multiple items. Please find them at the below links.Notice the "List Box 1" in both forms. In static form, the values appear only after you right click the listbox.
    http://share1t.com/sd4huu
    http://share1t.com/hjbfr6
    Thanks
    Ram

    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

  • Document Link Item Icon not visible at query execution

    Dear Colleagues!
    How can I acheive to have the comment-icon visible when I open a query with comments in BI Portal, as a default?
    I have set som settings for the properties of the Query in Query Designer. As it is now I have marked for Document Links, Master Data and Info Provider Data, under presentation of the query as a whole.
    Still, when I execute, I can not see any icons. But if I enter settings in the web, and mark for Document Settings for data, the icons appear.
    I do not want the customer to have to do this settings each time they ececute a query from the portal. Rather I want the Document Link Icon to be visible by default. How can I get my settings in the query designer to be counting in fromt of the settings in the template?
    Regards Silje

    I figured this one out myself. There is a setting in Web Application Designer, directly on the query in question. In properties for the query I tick of "Document Links Visible".
    Regards Silje

  • All items are not visible even with no filter

    I have a custom list and am not able to run a search the list, through the "all items" view, even with no filter set.  The list is also set to only view 50 items at a time, but I am not able to view the next batch of items.  The search
    will give no results even when the list contains the item with that specific information.

    Hi,
    1) I understand you are not able to view the 'All Items' in the list.
    Can you check the total number of items that list contains.
    Go to Site Actions-->View All site content see the number of items beside the list name( right side)
    I suspect the list might be reached the threshold value.
    2) If the number of Items are less than the threshold value then I would suggest you do a  test by creating another view by providing only the view name (Don't use any sort, Filter, Groupby ...etc) and just keep the default settings and let me
    know if you are able to see the items using the newly created view.
    ****************************************************************************************** Please remember to mark your question as answered &Vote helpful, if this solves/helps your problem.
    s p kumar

Maybe you are looking for