About cji3 layout

dear all:
            In  report CJI3, there is no option of the  "profit center"  in the column set, how to add it?
            Thank you!

The dynamic selection will only restrict the slection of project object based on provided profti centre in input.
I fill that you wanted to sort CJI3 after executing report based on profit center. As the profit center is not available in Cji3 change layout, You can add the same using COOMEP01 (Function Module EXIT_SAPLKAEP_001: Line Item Reports in Actual: Customer-Specific Fields).
Based on which object type i.e WBS, NWA Production order , you wanted to disaply profit center you have to provide to your ABAPer.
I have used this approch. If you serach for relvent note, you will get this userexit.
With Regards
Nitin P.

Similar Messages

  • CJI3 layout

    Dear SAP Gurus,
    We have developed the BDC program for getting the out put of CJI3 in excel sheet.
    We have created the output layout with 7 fields in CJI3 output.
    In program we have given that layout name. Now we want to block the access of end users to change that particular layout.
    Is it possible ?
    If yes please guide us.
    Thanks & regards,
    Pradip

    Pradip,
    Not sure about the layout...however if you'll create a variant with specific layout or any settings then you can restrict other users to change.
    Rgds

  • Question about reports layout

    Hi ,
    I have a quick question about report Layout.
    I have created a report in 6i. Now if I want to change my
    select statement and add new table to select from , it just
    restructures my report layout again and set that to Default One.
    Is there any way where I can set my Own layout as Default for
    that particular Report ?
    I would really appreciate any feedback.
    Thanks
    Vidya

    Try to give it alias names to the columns . Then when you
    change the table your are selecting from . The layout should
    not change.

  • Need explanation about DefaultFramework Layout

    hai friends,
    i downloaded the PAR file of the default frame work layout provided by SAP in EP7.the coding is given below
    <%@ taglib uri="prt:taglib:com.sap.portal.reserved.layout.TagLibHtmlb" prefix="hbj" %>
    <%@ taglib uri="prt:taglib:com.sap.portal.reserved.layout.TagLibLayout" prefix="lyt" %>
    <%@ page import="com.sapportals.portal.pb.layout.taglib.variabledef.RunMode" %>
    <%
      RunMode pageRunMode = null;
    %>
    <lyt:template>
    <%
    pageRunMode = epPageVariables.getRunMode();
    if(pageRunMode == RunMode.RUN_TIME){
    %>
        <script>
            document.body.style.margin=0;
            document.body.scroll = "no";
        </script>
    <%}%>
        <hbj:content id="myContext" >
            <hbj:page title="Portal Page">
                <lyt:container id="frameworkColumn" />
            </hbj:page>
        </hbj:content>
    </lyt:template>
    <%
    if(pageRunMode == RunMode.RUN_TIME){
    %>
        <script>
            // Set the Top Level Navigation iView size and position.
            EPCM.raiseEvent("urn:com.sapportals:toplevelnavigation", "Onload", null);
        </script>
    <%}%>
    in this i understood everything except the EPCM part.they have given the purpose as to set the Top Level Navigation iView size and position.but i want to know how it sets,where is the subscribe event for that.
    if anybody knows please help me....
    if u have more details about it please send that also...
    regards,
    Tamil K

    hai Mr.Venkat,
    Tahnks for your reply.
    yes i downloaded the "com.sap.portal..layouts.framework.par.bak" only.but i am not using all the jsps available in that.
    i am using only "framework.jsp".that also i changed according to my need.i changed only the layout part not the whole thing.And also i dont find any "subscribeevent" relevant to the "raiseevent" presents in tha jsp file.
    as u said i searched with the WAandNAVpanel.jsp also but i couldnt find. the subscribe events present in the specified file is not relevant to my raise event i think so.....
    regards,
    Tamil K

  • Opinion about MiG Layout Manager

    Hi coders,
    I am rather new to SWING coding.
    I just wanted to know whether using MiG Layout Manager for creating GUI in SWING is preferable or not.
    I had come across some reviews about the same which were good.
    If anyone have used this layout manager, please give your feedback.
    Also if any one have a suggestion to use any layout manager other than MiG (may be default ones), please post that also
    Thank you all.
    Edited by: crispwind on Aug 11, 2008 11:20 PM

    Also if any one have a suggestion to use any layout manager other than MiG (may be default ones)...you seem to have the mis-conception that you can only use a single LayoutManager in an app.
    you need to get to know most of the common ones, their stong (and weak) points, then, using
    this knowledge (and some imagination) nest one or more panels (each a different layoutmanager) to
    get the effect you're after e.g. if the frame is resized, is the component to grow/shrink, is it to move or stay put etc
    [http://java.sun.com/docs/books/tutorial/uiswing/layout/visual.html]

  • What's wrong about those layouts??

    Well, I've been working like crazy to be able to do something with layouts... Let me explain how our program is made...
    Main window:
    - JContentPane
    - JSplitPane with two parts
    in each, i have
    5 JPanels with information in it
    I'm working with Eclipse and its visual editor, but can't seem to figure out a way to do this... In my west panel, I have to put four buttons. I want them to be a certain size and in a certain order. Here is the code generated by the editor:
         private JPanel getJPanel_west() {
              if (jPanel_west == null) {
                   GridLayout gridLayout = new GridLayout();
                   jPanel_west = new JPanel();
                   jPanel_west.setLayout(gridLayout);
                   gridLayout.setRows(4);
                   gridLayout.setColumns(1);
                   jPanel_west.add(getJButton(), null);
                   jPanel_west.add(getJButton1(), null);
                   jPanel_west.add(getJButton2(), null);
                   jPanel_west.add(getjButtonImprimer(), null);
              return jPanel_west;
    Not very fun to work with... Now, what it does is that when i resize my JSplitPane, the button sizes change, proportionnally to the size changed... How can I get all this straight! I want my four buttons in the same size and I don't want them to resize all the time...
    Anybody could help me with this??
    Thanks
    Guillaume

    maybe you can change the layout to a BoxLayout, which honors MaximumSize()
    here's a simple demo
    import java.awt.*;
    import javax.swing.*;
    import java.util.*;
    class Testing extends JFrame
      public Testing()
        setLocation(400,300);
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        //JPanel westPanel = new JPanel();
        //westPanel.setLayout(new BoxLayout(westPanel,BoxLayout.Y_AXIS));
        JPanel westPanel = new JPanel(new GridLayout(4,1));//comment out this, uncomment above 2 lines
        JButton btn1 = new JButton("1");
        btn1.setMaximumSize(new Dimension(100,30));
        westPanel.add(btn1);
        JButton btn2 = new JButton("2");
        btn2.setMaximumSize(new Dimension(100,30));
        westPanel.add(btn2);
        JButton btn3 = new JButton("3");
        btn3.setMaximumSize(new Dimension(100,30));
        westPanel.add(btn3);
        JButton btn4 = new JButton("4");
        btn4.setMaximumSize(new Dimension(100,30));
        westPanel.add(btn4);
        getContentPane().add(westPanel);
        pack();
      public static void main(String[] args){new Testing().setVisible(true);}
    }

  • About rendering layout in Pocket Internet Explorer

    Hi Experts
    I have developped an application always connected in MI using o Pocket IE.
    In my application i have a screen with one table and below the table some fields with labels.
    When i start my application in browser, the position and size of the components is uniform.
    The table have a good size, but the columns label is very small.
    The buttons is small. The field labels is very small and the labels is big.
    The screen don't have a relative size with the components.
    I have adjust the size and layout in Pocket IE menu, but the size of components increase or decrese in the same way.
    I have tested in both Windows Mobile 6 and Windows mobile 5.
    I am using SAP NW MI 7.1.
    Could someone help me how i can adjust the size and layout of screen accordingly?
    Regards
    Marcos

    Any answer?
    Regards
    Marcos

  • DW CS5 question about page layout viewed in different browsers

    Hello.
    I am still very new to Dreamweaver CS5 and I need help with the appearance of a new website that I have been creating. We are mac based and I'm currently using Mac OS10. The layout I have created should appear centered on the page and it contains a solid background image. When I view it on our macs using Safari, everything looks exactly as it should, but when viewing it on a PC using the Internet Explorer 8, the text, spry menu bar and image of a doctor on the right hand side (that is set to change every time the page is refreshed), all shift to the right. Any advise on fixing this issue would be extremely helpful. The index page and the pages under the obstetrics menu are the only ones that I have completed so far. Here is a link to the web page: http://www.advertools.net/COBGYN/index.html
    Thank you for your assistance.

    Hi
    Yes, I am referring to the fact you are using absolute positioning for the divs, and that this is causing your problems.
    If you change the top, left/right values you are using to position them to % values this will alleviate the problem, (not completely though). Instead of say -
    top: 500px;
    left: 450px
    use
    top 70%;
    left: 40%;
    The values are only examples and you will have to adjust these to suite your needs.
    PZ

  • About alv layout

    i used CL_GUI_ALV_GRID>->set_table_for_first_display
    to display alv
    but why the subtotal and total button are gray in the toolbar.
    i searched the help, but there is no parameter to adjust the layout.
    who met such problem, please give me a favor
    thank u in advance
    Kevin

    Add Default Sorting to ALVgrid report  
    In order to display an ALV report with specific columns already sorted by default you will need to build a
    sort catalogue. This is fairly straight forward and is done in the following way:
            Step 1. Add data declaration for sort catalogue
            Step 2. Add code to build sort catalogue table 
            Step 3. Update 'gd_tree->set_table_for_first_display' method call to include parameter 'it_sort'
    *  ALV data declarations
      data: it_sortcat     type LVC_T_SORT,
            it_sortcatdb   type LVC_T_SORT.
    perform build_sortcat.
    *&      Form  build_sortcat
    *       Build Sort catalog
    FORM build_sortcat .
      wa_sort-spos      = 1.
      wa_sort-fieldname = 'EBELN'.
      wa_sort-SUBTOT    = 'X'. "subtotals any totals column by this field
    *  gd_sortcat-tabname
      APPEND wa_sort TO it_sortcat.
      wa_sort-spos      = 2.
      wa_sort-fieldname = 'EBELP'.
    *  gd_sortcat-tabname
      APPEND wa_sort TO it_sortcat.
    ENDFORM.                    " build_sortcat
    CALL METHOD gd_tree->set_table_for_first_display
        EXPORTING
          is_layout       = gd_layout
        CHANGING
          it_fieldcatalog = gd_fieldcat
          it_sort         = it_sortcat
          it_outtab       = it_report.     
    rewaard points   if it is usefull ...
    Girish

  • Questions about Classical Layout Formatting

    Hi,
    Just a question on classic reporting. Im pretty sure we can customize the layout of a classic report to look like this, ie.
    SDN
       SAP
         &nbsp:NETWORK
    Therefore, when a user print this report out, will the report come out this way?
    When the user export to a csv and text format, will the format still be the same?
    Thanks,
    r3venant
    Message was edited by:
            r3venant
    Message was edited by: Meeeee
            r3venant

    I just found out that I can't even transfer my Users folder or Program Data to other drive than the one with the system, because it would prevent me from updating my system or even from actually booting to my system. So apparently my whole topic is for nothing... I guess I should live with only one drive, and whenever my system totally crashes again I should do the backups to my external HDD. It's sad though that Windows 8 is a total opposite to user-friendly OS, to say the least.

  • Summarized Overview about Cube-Layouts?

    Hi experts,
    does NetWeaver BI 7.0 provide any kind of summerized overview, which gives information about the number of dimensions existing in all (non-virtual) InfoProviders, their record-count, space-usage, fact-table sizes, etc?!
    Or is the only way to get this information the usage of SE16 on a per-table basis?

    Hi ,
    you can use the functional module.
    there are few in se37 . put RSAR* and f4 and cube you will find functional modules which can help you for the issue.
    You can find in se38 also few programs with rsar*
    You can use sap_infocube_designs functional module also.
    Regards
    Rahul
    Edited by: Rahul Bindroo on Mar 27, 2008 11:57 AM

  • Help!!! The problem about the layout set

    I have created my own layoutset for the navigation and set it.Here is the question, I navigate from the iview for which  i have created the layout set to a new page.there is a return link on the new iview,i click the link of return the Browser go back to the frist  iview but the layoutset i have set is gone. When return from the iview how can i keep the layoutset .
    Any one know the answer please tell me ,  thx

    Hi Mike,
    Thank you very much for your help. I think itis better to choose another kind of smart sensor with rs232 I/O port. It is easier to connect the eight sensors to the eight bluetooth servers. The eight sensors are fixed on the different  bearing surfaces and rotate with the machine, it's difficult to use one turning adapter to connect them. So I have to use eight bluetooth servers to connect to the eight sensors.  
    The key problem ishould I use 8 bluetooth servers or 1 bluetooth server or the bluetooth vi of labview  to receive the data from the other servers and how can I drive them. Just like question 3 and 4 following:
    (3 key question)  I skimmed through the forum and noticed labview can support bluetooth. But I want to know that: If the bluetooth function of labview 8 can receive the data from the eight bluetooth servers on the machine  in the same time, how could I do? If not,
    should I use the same kinds of eight bluetooth servers to receive the realtime data in the same time, which are connected to pc I/O ports(if they are enough), or just use only one server connected to pc to receive the data from the servers in the same time ?
    (4 question) I noticed that the bluetooth servers should use drive software or programe. If necessary, how could I do for the eight servers on the machine and on the pc?

  • Question about Fluid Layouts

    Hello there. I want to make a fluid layout for the website I'm working on right now. I know the basic concepts of how to center an object and keep it there, or how to stick a shape to the top or bottom... etc. But if there's a movieclip that I would like it to conserve its position proportionally as the visitor resizes the stage, how can I do that?

    Hi,
    Try this way..
    If u using a movieclip then the x and y must be depend up on the stage
    for ex:
    mc.x = Stage.stageWidth - 30;
    mc.y = Stage.stageHeight - 30;
    Saransoft

  • About Jdev layouts

    If we use any of the JDev layouts say XYLayout, then during
    deployment of the application on a m/c which does not have JDev
    installed what will be the result?
    Swati
    null

    Swati,
    this question is more generic and applies to any library
    that is required at runtime.
    The simple answer is your deployment file (zip/jar) must
    contain ALL libraries that it expects to have which are
    not expected to reside on the client maching (e.g. java.awt.*)
    In the case of XYLayout, this is part of the JBCL Library,
    so in your deployment profile, simply include the JBCL library
    in the packaging and this will add the missing classes that
    you need to your deployment file.
    (See Project | Properties... | Libraries...)
    (See the help system on Deployment profiles)
    -JDeveloper Team
    Swati Bapat (guest) wrote:
    : If we use any of the JDev layouts say XYLayout, then during
    : deployment of the application on a m/c which does not have JDev
    : installed what will be the result?
    : Swati
    null

  • Doubt about UIX Layout

    Hi,
    I need to build an UIX page with a table, that table has an specific layout.
    day1       |    day2    |     day3    |    day4   |    day5   |
    Type1:                      Type3:       Type1:     Type2:
       row1                         row1       row1       row1
       row2                                    row2
    Type2:
       row1 The headers (day1 to day5) are the days of the week. Now each day could have several tasks with differents types (ie. day 1 has 3 tasks, 2 type1 and 1 type 2) and the others days could have a different combination.
    I can easily achieve that using a JSP, but for several reasons I need to do it using an UIX.
    Which is the best way to do that? I think that I can use a <datascope> but looks like the method used on a datascope should have the signature: RenderingContext context, String ns, String name and I don't know how to pass a parameter to that method (basically the day). Also, I am not sure if this mechanism will be thread safe.
    Any idea?
    Best regards

    Hi Ana,
    There is no difference, just 2 terms for the same thing: the screen editor.
    Regards,
    John.

Maybe you are looking for

  • Cannot send alert from SAP by Outlook integration

    Dear All, We are on SAP8.8. When we create an Alert for a user query, we want to send the report by e mail as well. We can receive the report by message in SAP. We have no error message in SAP to say send out failed. But we didn't receive anything fr

  • Place one IDML file inside another one.

    I want to place one or more IDML files into another single IDML "master" file. The master file is sort of a template for a site layout. The IDML files I need to embed represent single content boxes with specific layouts. The files for those content b

  • How to move or copy a database to new server

    Greetings All, Oracle Enterprise 11g r2, on a Windows2008 platform. I would appreciate some advice regarding moving/copying a database to a new server. Some of the information below may not be pertinent to my goal. Please be patient as I am a newbie.

  • Order as Direct material Tab activation

    Hi Guys, I select some materials from catalog and transfer them to SRM system and some materials I find a tab with ORDER AS DIRECT material. where as for some material I do not find, when I click on the Order as direct material this goes into a stock

  • Emails onto my ipad - missing content

    I regularly get emails indicating that it has not been downlaoded - and a message further down indicating that the message has no contect - only partially downloaded. But trying to complete the download, has no fresult. Messages are coming from a POP