MC94 - Icon 0 Column

The transaction MC94 has a icon named "0 Column". Does anybody could explain for what this icon is used for and how to use it??
Thanks
Conselheior

HI,
Not sure if you are using Flexible planning. But 0 column allows u to set initial value for a key figure like stock which can used later for calculations.
Regards
Vineet

Similar Messages

  • Remove/Hide Toggle Icon Column in using f:facet name="detailStamp"

    Hi All,
    I am using <f:facet name="detailStamp"> to expand the row with details ,Done that part with separate button programmatically.
    So I need to hide/remove additional toggle icon column in the table...
    JDev 11.1.1.4 and adf faces application...
    Please anybody help.......

    Hi,
    use skinning
    af|table::disclosed-icon      
    Overrides the default disclosed icon used with the detailStamp facet in table.
    af|table::undisclosed-icon      
    Overrides the default undisclosed icon used with the detailStamp facet in table.
    e.g.
    af|table:disclosed-icon(display:none);
    af|table::undisclosed-icon(display:none);
    Frank

  • Mystery icon in Mailbox column headers

    For no apparent reason, now when I create a new mailbox, the first column header contains a mystery icon consisting of two arrows, one pointing northwest and the other pointing southeast. When I right-click on the headers, there is no corresponding item in the pop-up menu (e.g. Attachments, To, From), so I have no clue what it is, nor can I hide it.
    Mailboxes I created prior to whatever it is that changed do not have this icon. I have not changed my OS, nor the version of Mail I am using. Can anyone tell me what this icon/column is for, and how I can get rid of it??
    Thanks!
    DM
    Message was edited by: Doctormelodious

    Okay, I can't edit the post anymore, but here's a link to a jpeg of the mystery icon:
    http://home.comcast.net/~promohost/images/mysteryIcon.jpg

  • Unable to use field value as link icon in linked column

    I am building an interactive report which includes a linked column. I would like to display an image link which is based on a value in the row named ICON. On the Report Attributes tab, in the Link Icon field of the Link Column attribute, I have set up the Link Icon definition to be <img src="#WORKSPACE_IMAGES##ICON#" alt="">. It resolves the #WORKSPACE_IMAGES# substitution string, but does not resolve the #ICON# placeholder. The only workaround I have found is to build out the entire href string as part of the query and simply display it as a field in the report. However, I would prefer to use the attribute method as it is much cleaner. Can anyone tell me if this is possible or have I hit a bug? Thanks.

    Hi,
    it works the same if you put the placeholder into your column attributes of the ICON-column in your dynamic report. As I read your previous post again, I came to the conclusion you want to use the column in the more "general" "Link Column" of your interactive report. I agree that you can choose the column from your report using "Pick Dynamic Query Column", but the substitution will not work. I'm not sure whether the bug is the non-working substitution or that the Picker-widget is provided, since you don't have the column as a javascript link below the text field as you would have in the column attributes. I think it's not intended to be possible to reference other columns in that context, but you'll either have to put the reference into the actual column's link attribute or use a static image for all links.
    -Udo

  • No Longer Seeing Rintone Icon Next to Songs, Message

    Since Ringtones were introduced to iTunes and until last night, I had a ringtone icon next to a small percentage of songs in my library. Today, they're gone. The ringtone (bell icon) column remains, but it's empty. Out of curiosity, I clicked on one of the songs that previously had a ringtone icon next to it, and I get a message saying (for example) "White Wedding, Pt. 1 by Billy Idol can no longer be made into a Ringtone."
    Now, absolutely none of the songs in my library have ringtone icons. I checked to be sure Ringtones was checked in Preferences, went to the View menu to make sure it was enabled (even though I can plainly see the Column with the bell icon- it's just empty all the way down the length of my library). Any ideas/suggestions?
    Thanks!

    See this earlier thread on the same subject:
    http://discussions.apple.com/thread.jspa?messageID=5358091#5358091

  • ALV GRID with icon fields. When exports to Excel, icon fields are emtpy.

    Hi all,
    In our SAP system (6.0 ECC) we've noticed the following behaviour:
    In ALV GRID with icons (color lights for example...) when we export the list to Excel format with the standard button bat, the icon column is always empty.
    We think that in previous SAP version (4.7), the code corresponding to the icon appeared (For example @08@ for green light).
    It's possible to have tha same functionality in this new version like in 4.7?
    Regards.
    Edited by: Ole ES on Nov 17, 2010 6:05 PM

    Hi,
    Check the format in which you export to Excel (MHTML, XML, ...) and try antoher one.
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/66/79ad48157f11d2953700a0c930328a/content.htm
    I think the integrated Excel mode shows '@08@'.
    Best regards,
    Guillaume

  • Download ICONS from ALV to EXCEL

    Dear Friends,
    IS there a way of downloading the ICON image exactly
    from alv to EXCEL,right now,when the icon is downloaded
    from alv to the excel,i can only see ascii characters in
    the icon column in the excel.
    kind regards
    kaushik hegde

    Hi Jeff,
    Please check if following analysis is helpful to you.
    Analysis/Solution:
    When we export ALV data to excel worksheet, as sap notes say the maximum lenght allowed is 1023 charaters and the max no of columns supported is 90.
    (I never faced any issue related to no of columns as it worked fine for columns >90 too)
    Issue occured when row size of exported data gets more than 1023 character.
    Therefore the row data must not exceed 1023 character, otherwise column splits and moves to next row.
    One additional aspect generally missed is that:
    When data in any particular column changes it's length, alv header also changes its lengh (short text, medium text, long text; depending on the length of of the longest cell in the column)
    therefore even if you have total length of row less than 1023 character, there might be cases when your ALV header size exceeds this length.
    Reducing the header size (by forcing to use short text or specifying own header names) should resolve the issue.
    Regards,
    Parveen

  • How to center icon node in TableCell

    Hello,
    I created a table as an example and surprisingly got it (almost) right the second time. However, I am having trouble centering my icon column.
    This is a table of colors. My model class is the ColorBlob (see code below)
    package tablewithicon;
    import javafx.scene.paint.Color;
    public class ColorBlob {
       public ColorBlob(String name, Color color)  {
          this.name = name;
          this.color = color;
       private String name;
       public String getName()   { return name; }
       private Color color;
       public Color getColor() { return color; }
       @Override
       public String toString() {
          return "ColorBlob{" + "name=" + name + ", color=" + color + '}';
    I made a ColorDisplay class to hold the code that builds the table. This class holds the TableCell implementation that I think I need for the icon (which is really just a rectangle). But:
    1. I cannot get the icon centered.
    2. There is an extra column of nothing-ness displayed, even though I only specified 2 columns.
    3. I don't understand why so many TableCell objects are being created for my one column of icons. Wouldn't 1 TableCell be enough?
    Here is the code for ColorDisplay (and, after that, the framework code to pull it all together)
    package tablewithicon;
    import javafx.collections.FXCollections;
    import javafx.collections.ObservableList;
    import javafx.scene.control.ContentDisplay;
    import javafx.scene.control.TableCell;
    import javafx.scene.control.TableColumn;
    import javafx.scene.control.TableView;
    import javafx.scene.control.cell.PropertyValueFactory;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.shape.RectangleBuilder;
    import javafx.util.Callback;
    public class ColorDisplay
       private TableView<ColorBlob> table = new TableView<>();
       private ObservableList<ColorBlob> colors = FXCollections
         .observableArrayList(
           new ColorBlob("Gray", Color.LIGHTGRAY),
           new ColorBlob("Red", Color.RED));
       public ColorDisplay() { fillTable(); }
       private void fillTable() {
          table.setItems(colors);
          TableColumn<ColorBlob,String> nameColumn = new TableColumn<>("Name");
          nameColumn.setCellValueFactory(
              new PropertyValueFactory<ColorBlob, String>("name"));
          nameColumn.setPrefWidth(100);
          TableColumn<ColorBlob,Color> colorColumn = new TableColumn<>("Color");
          colorColumn.setCellValueFactory(
             new PropertyValueFactory<ColorBlob, Color>("color"));
          colorColumn.setCellFactory(new ColorCellFactory());
          colorColumn.setPrefWidth(100);
          ObservableList<TableColumn<ColorBlob, ?>> columns = table.getColumns();
          columns.add(nameColumn);
          columns.add(colorColumn);
          // Why is there a 3rd empty column and how do I get rid of it?
       public static class ColorCell extends TableCell<ColorBlob, Color> {
          Rectangle rect = RectangleBuilder.create()
              .width(20)
              .height(20)
              .build();
          public ColorCell() {
             setGraphic(rect);
    //       How do I get the icon in the center of the table cell?
    //       I've tried the following:
             setContentDisplay(ContentDisplay.GRAPHIC_ONLY);
    //         setContentDisplay(ContentDisplay.TOP);
    //         setContentDisplay(ContentDisplay.CENTER);
    //         setText(null);
          @Override
          protected void updateItem(Color color, boolean empty) {
             super.updateItem(color, empty);
             rect.setVisible(!empty);
             if (!empty) {
                rect.setFill(color);
       public TableView<ColorBlob> getTable() { return table; }
       private static class ColorCellFactory
          implements Callback<TableColumn<ColorBlob, Color>,
                                        TableCell<ColorBlob, Color>> {
    //      private Map<TableColumn<ColorBlob, Color>, TableCell<ColorBlob,Color>>
    //             cellMap = new IdentityHashMap<>();
          @Override
          public TableCell<ColorBlob, Color> call(TableColumn<ColorBlob, Color> p) {
             return new ColorCell();
    //       Why does it create so many cells?
    //       I thought only one would be needed
    //       but the following code causes problems.
    //         TableCell<ColorBlob, Color> cell = cellMap.get(p);
    //         if (cell == null)
    //            System.out.println("HEY: " + p);
    //            cell = new ColorCell();
    //            cellMap.put(p, cell);
    //         else
    //            System.out.println("ALREADY THERE!");
    //         return cell;
    Main class:
    package tablewithicon;
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.layout.StackPane;
    import javafx.stage.Stage;
    public class TableWithIcon extends Application
       @Override
       public void start(Stage primaryStage)
          ColorDisplay colorDisplay = new ColorDisplay();
          StackPane root = new StackPane();
          root.getChildren().add(colorDisplay.getTable());
          Scene scene = new Scene(root, 300, 250);
          primaryStage.setTitle("Hello World!");
          primaryStage.setScene(scene);
          primaryStage.show();
       public static void main(String[] args)
          launch(args);
    }Again, my questions are:
    1. How do I center the icon in my "Color" column?
    2. How do I get rid of the extra blank column?
    3. Why is one TableCell object not enough to populate the "Color" column? (optional)
    Thank you so much for taking the time to read this.
    Edited by: jaylogan on Mar 4, 2013 12:56 AM

    Thank you, shakir!
    Based on your answer, I used the width property of the TableCell to center my icon. I still don't know why so many of them are created but, unless there is a better way to center, I am happy with this solution.
    For anyone who is interested, here is my updated ColorCell constructor:
          public ColorCell() {
             setGraphic(rect);
             setContentDisplay(ContentDisplay.GRAPHIC_ONLY);
    //       How do I get the icon in the center of the table cell?
    //       Adjust icon's translateX in accordance with the cell's width.
             widthProperty().addListener(new ChangeListener<Number>() {
                @Override public void changed(ObservableValue<? extends Number> ov,
                                    Number oldWidth,
                                    Number newWidth) {
                   if (rect.isVisible()) {
                      rect.setTranslateX((newWidth.doubleValue() / 2)
                                                  - (rect.getWidth() / 2));
          }

  • Icon not showing

    I am using Windows 7 oracle database 10g and developer Suite 10g
    configure all the steps accordingly but not showing icons, when I copy all the Gif files in /Forms/Java/ folder then showing icon only in push button not showing in Tree Node.
    Steps I followed:-
    Hkey_Local_Machine\Software\Oracle\<Forms10 g_Home>\UI_ICON by entering the
    path of your GIF/JPG files for e.g. J:\Icons
    and create ui_icon_extension and give it value GIF
    Creating Jar Files
    Jar -cfv icons_name.Jar *.gif
    Copy this Jar File into Java Folder.
    Modify REGISTRY.DAT file
    default.icons.iconpath=icons/
    Modify FORMSWEB.CFG file
    i) imagebase=codebase
    ii) archive_jini=frmall_jinit.jar,frmwebutil.jar,jacob .jar,my_icons.jarstill not showing images in HTree Node

    Hello,
    Here is the content of the first note:
    A hierarchical tree component is used within Forms. When the tree is populated with (ftree.populate_tree), it does not show the associated icons "from the icon column within the query". The icons are stored in a jar file.
    The environment file and the web configuration file are correctly set. For example, an image in the jar file appears on an iconic button.
    Cause
    The cause of this issue is determined by the unpublished Bug 10410309: FTREE.POPULATE_TREE DOES NOT SHOW ICONS
    Solution
    If the icon node value is refreshed, then the associated image appears.
    A simple loop like this will solve the problem:
    DECLARE
    htree ITEM;
    node ftree.node;
    state varchar2(30);
    state2 varchar2(30);
    BEGIN
    -- Find the tree itself.
    htree := Find_Item('TREE.TREE');
    Ftree.Populate_Tree(htree);
    go_item('TREE.TREE');
    -- Find the root node of the tree.
    node := Ftree.Find_Tree_Node(htree, '');
    -- Loop through all nodes and refresh their icon value
    WHILE NOT Ftree.ID_NULL(node) LOOP
    state2 := Ftree.Get_Tree_Node_Property(htree, node, Ftree.NODE_ICON);
    IF state2 is not null THEN
    Ftree.Set_Tree_Node_Property(htree, node, Ftree.NODE_ICON, lower(state2));
    END IF;
    node := Ftree.Find_Tree_Node(htree, '', ftree.find_NEXT,Ftree.NODE_LABEL,'', node);
    END LOOP;
    END;
    Now the icon image value will be read from the jar file containing the images.
    The second note talks about not using subdirectories inside the jar file.
    Kind regards,
    Alex
    If someone's answer is helpful or correct please mark it accordingly.

  • Sent mail display attachment icon in mailbox list?

    I'm new to Mail (just switched from 15 years of Eudora use).  I have installed the paper-clip icon column in my mailbox windows, but when I move

    'iBim' provided an answer that worked for me, here (scroll down to the bottom of the first page): https://discussions.apple.com/thread/3226400

  • Icons in JTable cells

    hi, i have a table and one cell is supposed to tell if an item is a file or a directory, and i want to display dir.png or fil.png depending on the type. this column in the table displays names of files and an icon indicating if its a directory or a file.
    please how can i get started with this ?

    Try this example, hope this works well on your side.
    import java.awt.Component;
    import java.io.File;
    import java.util.ArrayList;
    import java.util.List;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.filechooser.FileSystemView;
    import javax.swing.table.DefaultTableCellRenderer;
    import javax.swing.table.DefaultTableModel;
    import javax.swing.table.TableColumnModel;
    public class MyTableSample extends JFrame {
         public static void main(String[] args) throws Exception {
              new MyTableSample();
         public MyTableSample() {
              setSize(550, 400);//Set the frame size
              setDefaultCloseOperation(3);//Exit on close
              List<File> list = new ArrayList<File>();//Let's say these are your files store in the List.
              list.add(new File("C:\\test.txt"));//One is a file
              list.add(new File("C:\\downloads"));//And the other a directory
              //Create a table model for the table with 2 columns. One displays the type of file and the other is the filename.
              DefaultTableModel tableModel = new DefaultTableModel(new String[] { "Type", "Filename" }, 0);
              JTable table = new JTable(tableModel);//Create the table.
              TableColumnModel columnModel = table.getColumnModel();//Get the column model instance of the table.
              columnModel.getColumn(0).setPreferredWidth(2);//The icon column should be a bit narrower.
              columnModel.getColumn(1).setPreferredWidth(490);//The filename column is wider.
              columnModel.getColumn(0).setCellRenderer(new IconRenderer());//Set the cell renderer to our custom icon renderer.
              //Populate the rows.
              for (int i = 0; i < list.size(); i++) {
                   //the first element of the array (list.get(i)) is a File object. I'll explain below why.
                   //the second element of the array (list.get(i).getName()) displays the filename of the file. It could also be list.get(i).getAbsolutePath().
                   tableModel.addRow(new Object[] { list.get(i), list.get(i).getName() });
              getContentPane().add(new JScrollPane(table));//Add the table to the frame.
              setVisible(true);//make it visible.
         //This is our custom cell renderer
         class IconRenderer extends DefaultTableCellRenderer {
              @Override
              public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
                   //override getTableCellRendererComponent(). This will always return a JLable instance.
                   final JLabel label = (JLabel) super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
                   //A while ago we passed a File object to the object array. The value variable is the File object itself!
                   if (value != null && value instanceof File) {//make sure its not null and an instance of File
                        File file = (File) value;
                        label.setIcon(FileSystemView.getFileSystemView().getSystemIcon(file));//Use this method to set the proper icon for the file.
                        label.setText("");//Blank out your Label's text.
                   return label;
    }

  • Custom icon leaf tree

    Hi developers,
    I have one how to do question: In a tree I like to introduce a custom icon on each leaf.
    For this, I tried to introduce at the icon column sql #WORKSPACE_IMAGES#picture.gif but nothing happened, instead if I use #IMAGE_PREFIX#standard_picture.gif it works, but I want to use my custom pictures uploaded in Shared Components->Images.
    Is there any way to do this? Thank you in advance.

    Hi "user11978562",
    In APEX 4.0, bug 9893260 was logged against the handling of #WORKSPACE_IMAGES# and #APP_IMAGES# in the setting of custom icons on a tree. However, the fix for this issue was incorporated in the 4.0.1 patch release. It was also discussed on this related thread: Re: Syntax for icon in Tree element If you are running 4.0, then my recommendation would be to upgrade to our latest patch release, 4.0.2. If you are running on 4.0.1 or higher, then this may be a silly question, but is there a chance that the images you've uploaded are associated with a particular application? Maybe it's worth trying #APP_IMAGES# instead of #WORKSPACE_IMAGES#.
    Regards,
    Hilary

  • Refresh Cell Value Of Column Based On Condition

    Hi Experts,
    I m working on UI5 grid.
    This my grid:
    My requirement is:
    On change of "Actual Value ", if value is in between UL and LL then "Sub Test" column should be refreshed with image(ex.green ! mark)
    Till Now i achieved upto comarision in columns:
    But now i stucked with ,how to refresh image in "Sub Test" column based on valued entered in "Actual Value" column.
    Request your ideas.
    Regards,
    Neha

    You can also use CalcFields to bind to your data if you don't want the Icon column to be part of you model.
    Documentation/AdvancedTopics/DataBinding/CalcFields – SAPUI5 Wiki (TIP CORE User Interface)
    I've modified Dennis' example slightly to use a CalcField, notice the paths are defined to create a composite binding, the data is the automatically passed to the formatter function.
    http://jsbin.com/poren/1/edit
    Regards,
    Jason

  • Text is Printing as icons in ALV

    Hi,
    I have a simple ALV output that contains 4 fields.  One of those fiekds is Plant (werks). 
    When I run the program and produce the ALV in the foreground, the plant appears correctly...1001, for example.
    When I print the report on a printer, the 1001 converts to a pair of eyeglasses and a green checkmark.
    Same thing happens when I run the job in the background and look at the report in the spool.
    The other fields on the report are all fine...just the plant appears this way.
    Has anyone ever experienced this and have any idea what the reason is?
    Hope that made sense...thanks for your help.
    Andy

    Fabio,
    Thank you for the reply.  I did the consistency check (shift-rt click(2x)).
    It is showing an X in the icon column for the WERKS field.  How do I remove that?
    Thanks,
    Andy

  • Apex 4 Tree node icon inconsistency ( 4.0.2.00.06 = 4.0.2.00.07)

    <font color="#2C5197">
    <li>If I assign a value to the tree icon column in Apex 4 ( 4.0.2.00.06) , _it is rendered as the node(ins) element's classname_ ( unless it has the "/" character in it,then it becomes the inline background-image property , for example "/add" )
    <li>While in Apex 4( 4.0.2.00.07) , it is always rendered as the background image and I can't make it render as the classname (apex.oracle.com is also on 4.0.2.00.07 and shows the same behaviour as mentioned) .
    </font>
    I have a tree region in apex 4.0(4.0.2.00.06) which has node icons defined conditionally using the SQL query's icon column
    As as example, the code below as Tree Definition (example here)
    select case when connect_by_isleaf = 1 then 0
                when level = 1             then 1
                else                           -1
           end as status,
           level,
           "ENAME" as title,
           case
             when mod(level,2) = 1 THEN 'add'
             else 'delete'
           END as icon,
           "EMPNO" as value,
           'Drill Down to '||ENAME as tooltip,
           'f?p='||:APP_ID||':1:'||:APP_SESSION as link
    from emp_check
    start with "MGR" is null
    connect by prior "EMPNO" = "MGR"
    order siblings by "ENAME"This renders the tree as with *node icons having a class of "add" or "delete"_ in apex 4.0.2.00.06.
    &lt;ins style=&quot;background-image: url(&amp;quot;add&amp;quot;);&quot;&gt;&amp;nbsp;&lt;/ins&gt;On another instance which is on 4.0.2.00.07, the same tree is rendered with the tree's node having a background-image URL as the "add" or "delete"
    &lt;ins class=&quot;add&quot;&gt;&amp;nbsp;&lt;/ins&gt;The Bug Fix list from the Patch Notes ( 5.2 Bugs Fixed in the 4.0.2.00.07 Patch Set ) mentions in Bug Number:9893260 that +"APP_IMAGES and WORKSPACE_IMAGES used in tree region must be preceded by host URL"+.
    Is it possible that as a result of this bug-fix, any value specified for the icon column is being rendered as the background-image ?
    Can someone confirm whether this behavior is expected or is this is a case which has been overlooked in the bug-fix or just another bug ?

    Hi Vee,
    To respond to your question "+Can someone confirm whether this behavior is expected or is this is a case which has been overlooked in the bug-fix or just another bug ?+", the behaviour you see is expected. We now always create a background-image-url style. The fix for bug 9893260, which you referred to in your initial post, was incorporated in our 4.0.1 patch set, as listed under the section "5.1 Bugs Fixed in the 4.0.1.00.03 Patch Set" in the 4.0.2 Patch Set Notes - http://www.oracle.com/technetwork/developer-tools/apex/application-express/402-patch-189110.html. Therefore, I'm surprised that you're seeing different behaviour between 4.0.2.00.06 and 4.0.2.00.07. I'm not aware of any tree-related changes made between those two versions, so I'll investigate that further....but as I said, the behaviour you are seeing with 4.0.2.00.07 is expected.
    Regards,
    Hilary

Maybe you are looking for

  • Music Not Purchased from iTunes Not Synching

    My iPhone 5 no longer syncs any tracks that I did not purchase directly from iTunes (such as those I uploaded from CDs.) The albums show up on my phone, but when I attempt to play the songs they refuse to start and a red stop sign appears next to the

  • PS CC 2014 Text engine error

    Hello, I get the "could not complete your request because something prevented the text engine from being initailized." Have tried trashing font cache files, un-install, re-install. reset all tools. What else can I try? My PC: Windows 7 64Bit i5-4200M

  • Hardware not Supporting Premiere Pro  CS5.5 (and after effects)

    Hardware: 1st generation Macbook Pro 2.0Ghz Intel Core Duo processor, 2g (maximum ) ram, 500gb hybrid SSD/7200 hard drive. Mac OS leaopard 6.6 I bought the master collection recently which includes premiere and after effects CS5.5. Pre sales I was ad

  • EBS Login problem

    hi, EBS 11.5.10.2 Database 10.2.0 OS - RHEL 4.6 This is multi-node installation. My devt instance having one issue, very recently there is a problem with login If am trying with http:/hostname:port/oa_servlets/AppsLogin Getting error like Forbidden Y

  • New page in Script

    Hi, I want to display 100 records in my script. In the first page only 10 records should display likewise on each page 10 records should display. Right now im unable to break the page at 10 records. Please help me hpw to achieve this. Thanks Mallika