Display Exuection Plan in GUI

Is there a way I can see the execution plain like MS SQL Server way, in GUI mode?

871744 wrote:
Is there a way I can see the execution plain like MS SQL Server way, in GUI mode?yes, just point & click.

Similar Messages

  • How to hide display details in sap gui and create ad-hoc request in UWL?

    Hi,
    how to hide display "details in sap gui" and "create ad-hoc request" in UWL?
    Please telme the step-by-step procedure to hide "details in sap gui" and "create ad-hoc request".
    Thanks,
    Rashmi

    Hi,
    Thanks for the information. It was very helpfull.
    Can you please tellme where can we fine UWL iView? I tried to find this out in two ways.
    1) Portal Content -> Content Provided by SAP -> End User Content -> Standard Portal Users -> Views -> com.sap.coll.iviews -> Universal Worklist (finally i got this iView). Here i dint find any property called "List of UWL Actions to exclude". In the link which you had given, its written that we can modify the iView and add the name of the actions under the Actions to exclude from the UWL property.
    Which iView do we need to modify and where can i find that property?
    2) I downloaded the xml file and then tried to find this property "List of UWL Actions to exclude" or " Actions to exclude from the UW". But i couldnt find both the properties in xml file.
    Thanks,
    Rashmi

  • Display of planned order after conversion

    Hi All,
    I have a planned order "XXXX" & I have converted to production order "YYYY". Now I want to display this planned order to view the details inside it's various tabs.
    Which Transaction code OR table will give me this?
    Regards,
    MHP

    Dear Manish,
    Once plan order is converted into production order then you cannot get details for that plan order
    Either t-code level or table level
    All you can get is plan order number
    Execute CO03 and go to assigment tabn in filed plan order you can get plan order number
    If you have converted plan order to production order
    Regards
    Madhu

  • Displaying Actual & Planned Data

    Hello,
    I need to create a query which is built on a MultiProvider. This m/p looks at 2 Infocubes for it's data - one i/c containing actual data the other containing planned data.
    The query I need to create should have account numbers in the rows, but the more complicated requirement relates to the columns.
    In the columns I need to display the periods of the year. Within each period, I need to display the credit & debit posting values.
    The above can be created easily enough, but the issue I have is how to display the actual data for the periods that have actual data and then just display the planned data for the remaining periods.
    The problem relates to the Planned data InfoCube as this contains "old" planned data for periods where we now have Actual values.
    Can anyone suggest anyway of doing this?

    Hi Mark,
    Dont you have any characteristics to differentiate the planning numbers from last month any current month. Say, how do you differentiate the plan numbers April, planned in Feb & Mar?
    Anyways, the solution I can think of is to create the Actuals as selection in the Key Figure structure and restrict the period by the 1st of Jan, (Entered Year by User) to Either Current Date or if year entered is last year then 31st Dec, (Enetered Year by user).
    Say, user enters 2007, in that case Actuals will be restricted by 001/2007 to 012/2007. If user enters 2009, in that case restrict the period by 001/2009 to 003/2009. For the same cases, Plan can be restricted by 001/1000 to 001/1000 if 2007 is entered (any previous year) or if current year is entered, restrict by current period (004/2009) to end of the year (012/2009).
    I know this customer exit will be tricky, but that will solve your problem.
    Thanks,
    Danny.

  • Key figure display in planning book with respect to Time bucket profile

    Hi,
    I am loading a key figure to planning area from the info cube for the current month. When I review the key figure in planning book with monthly time bucket profile it shows 85 for the current month. In the same planning book with weekly bucket profile, it shows 55 from the current week and future weeks and the remaining 30 goes into the past weeks of the current month.
    How to make the total quantity 85 to show in the current and future weeks only.
    thanks and regards
    Murugesan

    Hi Murugesan,
    Within the Planning Area, the data is stored at the lowest level granularity that you maintain in storage bucket profile. Then during display, system will decide what data to show depending on what kind of time bucket profile you use in the planning view, and the time based disaggregation that you maintain for Key Figure.
    In this below case, what time characteristic do you have in cube? Is it date, week or month?
    If it's date, check how much KF data is maintained on the dates which belong to week which has days both in this month/last month e.g. if I talk about Dec 2011, how much data is stored 1,2,3 & 4 th of Dec, 2011.
    This data would appear in Dec in monthly view, but in week, it would appear in the week starting 28th November.
    If data is maintained in cube in weeks, then you need to calculate how time based disaggregation would show it to you in months.
    If it's months, then you would need to find out how much data would go to the days in the past week of the month.
    The time based disaggregation may be causing you some issues, but in that case, I would not expect 30 out of 85 to go in the past week, unless you have data in cube in days.
    Data shown in weekly view for week starting 28th Nov should ideally be a small proportion of 85, unless you are using a time stream/fiscal year variant, due to which most of December is in holidays.  The only other exception I can think of is that you have data in teh days mentioned above.
    It would be best to help the business understand this disaggregation logic, rather than thinking of manipulating the data to shift to a later week.
    If this logic doesn't explain your situation, then please provide the date/week/month at which you have data in cube, and what quantity.
    Thanks - Pawan

  • Displaying Multiple Values on GUI components - best way to implement

    Hi,
    my program needs to implement a basic function that most commercial programs use very widely: If the program requires that a GUI component (say a JTextField) needs to display multiple values it either goes <blank> or say something more meaningfull like "multiple values". What is the best way of implementing it?
    In particular:
    My data is a class called "Student" that among other things has a field for the student name, like: protected String name; and the usual accessor methods (getName, setName) for it.
    Assuming that the above data (i.e. Student objects) is stored in a ListModel and the user can select multiple "Students", if a JTextField is required to display the user selection (blank for multiple selections, or the student "name" for a single selection), what is the best (OO) way of implementing it? Is there any design pattern (best practice) for this basic piece of functionality? A crude way is to have the JTextField check and compare all the time the user selections one by one, but I'm sure there must be a more OO/better approach.
    Any ideas much appreciated.
    Kyri.

    Ok, I will focus on building a solution on 12c.
    right now I have used a USER_DATASTORE with a procedure to glue all the field together in one document.
    This works fine for the search.
    I have created a dummy table on which the index is created and also has an extra field which contains the key related to all the tables.
    So, I have the following tables:
    dummy_search
    contracts
    contract_ref
    person_data
    nac_data
    and some other tables...
    the current design is:
    the index is on dummy_search.
    When we update contracts table a trigger will update dummy_search.
    same configuration for the other tables.
    Now we see locking issues when having a lot of updates on these tables as the same time.
    What is you advice for this situation?
    Thanks,
    Edward

  • Image not displaying properly for SAP GUI for HTML transaction iview

    Hi,
    We have a sap gui for HTML iview for transaction REORRR in portal. After giving enough inputs this leads to Business Document Navigator screen(part of Document management) where i need to display a document(.jpg image in this scenario). When i double click on the image it is opening on the right side of the screen but in a compressed format where in we need to scroll down to see the image. But i would require the image to display with out scroll bar or in a new window.
    When i change the format of the iview as SAP GUI for Windows the image is opening in a new window.
    I would like to know whether there is any configaration settings either in portal or in Document management side. or is this any limitation of the SAP GUI for HTML scenario.
    regards
    Bharat.

    Hi,
    You can open this iview in a new window make the setting in the iview properties that will allow the iview to be opend in a new window.
    Regards,
    Vamshi.

  • The page cannot be displayed: ITS error: SAP GUI for HTML

    Hello,
    I have created an iView that connects with a ECC system. When I clic on System Administration --> Support --> SAP Application --> SAP Transaction :
    System: ECC
    Transaction: su01
    SAP GUI Type: SAP GUI for HTML
    It shows: The page cannot be displayed.
    It's manadory to use SAP GUI for HTML. Please, Do you have any idea??
    Thank you
    Best,

    Hello Virginia Rodríguez,
    1)Kindly check that System ECC in Portal is Up and Running under System Administration.
    2) if u r done with first step then can try SAP GUI for Window in creation of Iview
    it will Work.
    Regards.
    Soni Vinit

  • Displaying Images in my GUI

    I have created a GUI that lets me display images that a user selects from a file. However is it possible to display an image that has not yet been written to a file?
    I have a class that takes an image object, perfoms operations on it then maps this to a new image object. Would it be possible to display this image before it has actually been written to file? If anyone out there has ideas i'll be very grateful.
    Here is an example of how I map one image to another:
         // Creates an image object.
         MyImage imageRight = new MyImage();
         // Now read in the image file
    // Create new object for reading image
         MyImage imageCenter = new MyImage(imageRight.getWidth(), imageRight.getHeight());
    /* Copy the pixel information from image that was read in to the
         new image */
         for (int y = 0; y < imageRight.getWidth(); y++) {
                   for (int x = 0; x < imageRight.getHeight(); x++) {
              /* Get the values from imageOne */
              int red = imageRight.getRed(x,y);
              int green = imageRight.getGreen(x,y);
              int blue = imageRight.getBlue(x,y);
              /* Put these values into imageTwo */
              imageCenter.setRGB(x, y, red, green, blue);
    At this point before I write the file, you can see that imageCenter holds all the attributes of an image. Now can I display this image object in my GUI?
    I hope someone can help me as this is really important.
    Thanks again.

    Look into the graphics's drawimage method.
    ;o)
    V.V.

  • Displaying Marketing Plan / Plan Elements in Marketing Calendar

    Hi,
    I am unable to view the Marketing Plan and Marketing Plan elements in the Marketing Calendar.
    I am query and see the Campaigns though.
    Can someone please let me know, what settings i need to do.
    Points will be rewarded.
    Thanks,
    Kedar

    Hi
    Do the following customiseing settings for Marketing calender.
    Define search criteria
    Assign Search Criteria
    Assign Graphic Profile for Marketing Calendar
    marketing calender in  PCUI
    Define Views for Marketing Calendar
    You can use marketing plan and campaign to create from marketing calender dropdown values in pcui in GUI as well when you select marketing plan you will get graphical bar to select double click on it  will take you through marketing planner where you define marekting plan and you can change the dates usering the graphical bar by dragging as per date option you can set colours as per your marketing and campaign types as well.
    also apply snotes if you are working on CRM 5.0
    Note 941526 –PCUI calendar.  With related notes 948988 – Marketing Calendar does not print in its entirety ,
    Reward points if helpful
    Regards
    Dinaker vikas K

  • How Cost is displayed in planning book

    Hi
    Sources 4001,4002 and destinations 3001,3002,3003 & 3004,After SNP optimizer run,the following results are displayed
    4001 to 3001 -------900MT is sourced from 4001 to 3001
    4001 to 3003--------1000MT is sources from 4001 to 3003
    How cost per MT is displayed along with quantities in the planning book after optimizer run
    Thanks

    After optimizer run the following allocation qty is displayed
    4001 to 3001 -------900MT is sourced from 4001 to 3001
    4001 to 3003--------1000MT is sources from 4001 to 3003
    after optimizer run  customer want Qty(900MT) & Cost per MT to be displayed for sourcing from 4001 to 3001(Refer above scenario)
    as you said if its not possible after optimizer  run is it possible to develop a customized report based on optimizer results displaying Qty(900MT) & cost incurred per MT
    Cost per MT(For sourcing from Qty(900MT) from 4001 to 3001)=procurement cost per MT+transportation cost per MT
    Thanks
    Poorna

  • List display of planned orders

    Hi
    List display planned orders is not bringing any material description . Do we have any other standard report to pull the planned order with material description or is their any way to bring the material description in the MD16 screen layout , the chars allowed  for the material description is 0 in the layout
    Thanks for help
    Nic

    Hi,
    COOIS tick planned order in selection screen and execute.
    Even i saw in MD16 you are right the description length is 0 but that description is hidding you can place mouse where the material coloum is ending and drag the coloumn(As we do in excel to make any hidden column visible ) . You will see descrption now.
    I hope you got what i mean.
    Regards,
    Vishal
    Edited by: VS on Nov 2, 2009 9:53 AM

  • Excel 2007 error when displaying GL Planning Data (GP12NA)

    Dear All,
    T-code:GP12NA
    When i display the GL Planning Data using the integration with office excel 2007, the cell automatically becomes to date and time format on the value field.
    But when i display using integration with office excel 2003, the GL Planning data is displayed correctly.
    Appreciate if someone could address me on this issue.
    Many thanks.

    Hi Jason,
    I did not able to solve the problem.
    Alternatively, I created 2 planning layout assigned to one planning profile.
    1. Layout 1 - Integrated with excel (tick)
    I used this layout for for uploading GL planning figures using the t-code GLPLUP.
    2. Layout 2 - Integrated with excel (do not  tick)
    To display the GL Planning figures, i used this profile in t-code GP12NA. By this way, the figures are correctly displayed without any formatting error.
    I assume this due to patches that needs to be upgraded in order display excel 2007 correctly.
    Please reply me if you need further clarification.

  • Activating capacity display in Planning table of MF50.

    Hi Experts,
    I intend to use the MF50 for Planning my FG. My scenario is a normal PP PI and not REM. I am using production version to distinguish the work centre (defined as production place). I want to display the Capacity of the Workcentre on the MF50 screen along with the Planning table. I am able to see the Prod Versions, planned ordes / requirements on the screen. My only concern is I want to display the capacity on the same screen, I found that the Activate graphic and set graphic settings in the Capacity reqt planning have got greyed out.
    I request the experts to guide me in this case.
    Regards,
    A S K

    Hi
    Check the following settings :
    1. In  production Version whether work center is maintained as production line or not ? .Also make sure that  same work center ins maintained in  Routing or not .
    2. In MF50 Initial selection screen Scheduling TAB check whether  'capacity requirement ' along with detailed planning  is activated or not.It must be activated.
    Regards,
    Velmurugan S

  • Display Hyperion Planning celltext in OBIEE reports.

    Hi,
    The requirement is to display the Hyperion Planning comments entered in the forms on the corresponding OBIEE reports. I have been able to retrieve details about the author, note contents along with the corresponding dimensions by considering the following tables:
    1.HSP_CELL_NOTE
    2.HSP_CELL_NOTE_ITEM
    3.HSP_OBJECT
    4.HSP_USER
    But I am confused about the subsequent approach I need to take. How should the federation be done with the Essbase cube in the OBIEE repository? How should the comments be tagged to the specific OBIEE reports corresponding to the Hyperion Planning forms?
    I am using Hyperion Planning 11.1.2.2 and OBIEE 11.1.1.6.
    Any help is highly appreciated.
    Thanks and regards,
    Debarati.
    Edited by: Debarati SJ on May 29, 2013 12:06 AM

    Hi Celvin,
    Many thanks for your reply. But can you please elaborate on the steps?
    When I extracted data from Essbase (planning application), it does not generate ID columns for the dimensions that can be used to match with the HSP_OBJECT.OBJECT_ID. So I am not able to understand the logic behind joining the IDs.
    On the hyperion planning relational tables,I ran the following Query to retrieve the Note for comment and the corresponding Dimension members:
    SELECT HYPUSER.HSP_CELL_NOTE.NOTE_ID,
    HYPUSER.HSP_CELL_NOTE_ITEM.CONTENTS,
    HYPUSER.HSP_OBJECT.OBJECT_NAME AS Scenario,
    HYPUSER.HSP_OBJECT1.OBJECT_NAME AS Account,
    HYPUSER.HSP_OBJECT2.OBJECT_NAME AS Entity,
    HYPUSER.HSP_OBJECT3.OBJECT_NAME AS Period,
    HYPUSER.HSP_OBJECT4.OBJECT_NAME AS Version,
    HYPUSER.HSP_OBJECT5.OBJECT_NAME AS YEAR
    FROM HYPUSER.HSP_CELL_NOTE
    INNER JOIN HYPUSER.HSP_CELL_NOTE_ITEM
    ON HSP_CELL_NOTE.NOTE_ID = HSP_CELL_NOTE_ITEM.NOTE_ID
    LEFT JOIN HYPUSER.HSP_OBJECT
    ON HSP_CELL_NOTE.DIM1 = HSP_OBJECT.OBJECT_ID
    LEFT JOIN HYPUSER.HSP_OBJECT HSP_OBJECT1
    ON HSP_CELL_NOTE.DIM2 = HSP_OBJECT1.OBJECT_ID
    LEFT JOIN HYPUSER.HSP_OBJECT HSP_OBJECT2
    ON HSP_CELL_NOTE.DIM3 = HSP_OBJECT2.OBJECT_ID
    LEFT JOIN HYPUSER.HSP_OBJECT HSP_OBJECT3
    ON HSP_CELL_NOTE.DIM4 = HSP_OBJECT3.OBJECT_ID
    LEFT JOIN HYPUSER.HSP_OBJECT HSP_OBJECT4
    ON HSP_CELL_NOTE.DIM5 = HSP_OBJECT4.OBJECT_ID
    INNER JOIN HYPUSER.HSP_OBJECT HSP_OBJECT5
    ON HSP_CELL_NOTE.DIM6 = HSP_OBJECT5.OBJECT_ID
    Thanks and regards,
    Debarati.

Maybe you are looking for