Tooltip for components located in TableCellRenderer component

how can I add ToolTips for each components located in TableCellRenderer component?
In bellow example I took panel as TableCellRenderer component. I put two labels in it. I need diffrent tooltips for two labels.
import java.util.*;
import java.awt.*;
import javax.swing.*;
import javax.swing.table.*;
import java.awt.event.*;
* @author kesava
public class TooltipForTableCell extends JFrame {
JTable table;
DefaultTableModel tableModel;
* Creates a new instance of TooltipForTableCell
public TooltipForTableCell() {
init();
setDefaultCloseOperation(EXIT_ON_CLOSE);
pack();
setVisible(true);
public void init() {
Vector<String> columns = new Vector<String>();
columns.add("col-1");
columns.add("col-2");
Vector<Vector<String>> data = new Vector<Vector<String>>();
Vector<String> row = new Vector<String>();
row.add("aaa-1");
row.add("bbb-1");
data.add(row);
row = new Vector<String>();
row.add("aaa-2");
row.add("bbb-2");
data.add(row);
tableModel = new DefaultTableModel(data, columns);
table = new JTable(tableModel) {
public int getRowHeight() {
return 25;
table.getColumn("col-1").setCellRenderer(new CustomTableCellRenderer());
table.getColumn("col-2").setCellRenderer(new CustomTableCellRenderer());
getContentPane().add(new JScrollPane(table));
public class CustomTableCellRenderer extends JPanel implements TableCellRenderer {
String pos;
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
pos = "(" + row + "," + column + ")";
JLabel label1 = new JLabel(value.toString());
JLabel label2 = new JLabel(pos);
removeAll();
add(label1);
add(label2);
return this;
public static void main(String[] args){
new TooltipForTableCell();
}

lanp16108103, please don't post in threads that are long dead and don't hijack another poster's thread. When you have a question, start your own topic. Feel free to provide a link to an old post that may be relevant to your problem.
I'm locking this thread now.
db

Similar Messages

  • Default Plant and storage location for components in MFBF

    Hi,
    I have 2 plants 1000-procurement plant and 2000- production plant. I am using special procurement key 70( Withdrawal from alternative plant from 1000 to 2000) for components in Plant 2000. The requirements for the components are transferred from 2000 plant to 1000 plant. The 1000 plant run MRP for the dependent requirements and procure the materials and transferred to the production storage location in Plant 2000.The raw materials are purchased in plant 1000 and transferred to Plant 2000 production storage location based on the manual reservations created with movement type 301. This is fine.
    But when I do backflush in MFBF the plant and storage location for the components issue are displayed as plant 1000 which is the procurement plant  and the production storage location in plant 2000-production plant location. In the BOM the production storage location is production storage location of plant 2000. Since we use the special procurement key system defaults the plant as 1000(procurement  plant) insteadd of 2000(production plant). can we make this plant default to the production plant 2000 as default in the MFBF goods issue screen.
    thanks and regards
    Murugesan

    Hi MURUGESAN !
          Can you give me some information more in Special Procument Configure in plant 2000 like:
              -  Procurement type (maybe F)
              -  Special procurement (Maybe U)
              -  Plant (Maybe 1000).
              - Issuing plant (maybe 2000)
           We will check together.
           Regards,
          Tony

  • Add custom hint text/tooltip for disabled "selectOne" component.

    Hi All,
    I was trying to get some custom tooltip or hint text on selectOne component.
    But any text that I add is not visible if the component is disabled.
    I need to tell the end-user why this control is disabled when s/he moves the mouse over it.
    Thanks
    Ajay

    Why don't you choose the 'Help in Attributes' ADF support?
    I think It would be more appropriate than a custom dialog.
    Look this: http://docs.oracle.com/cd/E17904_01/web.1111/b31973/af_message.htm#ADFUI374
    Regards,

  • Subcontracting: error during GI for components for SC PO with HU

    Dear Experts,
    Currently I am using ECC 5.0, IMWMHU for a receiving storage location.
    The problem is as follows:
    1. I've transferred 10 EA of component A to Vendor's Sub-Co stock using movement 541 via MIGO from HU-relevant SLOC
    2. SAP created outbound delivery, I've created/confirmed TO, HU was assigned correctly. I've posted goods issue from using VL02N without any problems. Vendor's SC stock was updated (ME2O shows correct quantities), delivery status is completed.
    3. Now, I want to consume the components and produce the assembly and here I am facing the issue. In MIGO - GR for PO assembly and a component are displayed. I assign the batch and all required information (I am receiving to HU-relevant SLOC). When posting the goods movement SAP issues strange message: "Notified quantity exceeded by 10 EA. Message no. M7248". When I remove the tick-off from the component to be consumed, the inbound delivery for assembly is created without any problems.
    I've tried the same flow with receiving SLOC changed to only IM relevant (no HU, no WM) and the posting went through without any problems, consuming and receiving correct materials.
    Have you encountered this problem before? OSS note 501686 seems to be about this problem, but it refers only to 470 and the field the note refers to says "B - Source stor.locat.HU-managed. Dest.stor.locat.not HU-managed", which is correct.
    Thanks for any help,
    Jacek

    Hi Jacek,
    Did you ever find a solution to this issue, maybe by working with SAP?  I am actually facing the exact same issue (I am doing subcontracting in an WM and HUM managed facility), and I am wondering how you were able to solve it.
    Thanks,
    Adam

  • ToolTip for AdvancedDataGrid

    Hello,
    I would I to ask how to create a tooltip in AdvancedDataGrid.
    My MXML component is a VBox based component.
    This is the code for my custome ToolTip using Panel:
    <fx:Script>
       <![CDATA[
        import mx.controls.Alert;
        import mx.events.FlexEvent;      
        [Bindable]
        public var _dataId:String;
        protected function dataGrid_creationCompleteHandler(event:FlexEvent):void
            var dataid:String;
            dataid = _dataId;
            getSpecificUserDataCResult.token = twitterSentimentManager.getSpecificUserDataC(dataid);
        protected function dataGrid2_creationCompleteHandler(event:FlexEvent):void
            var dataid:String;
            dataid = _dataId;
            getSpecificUserDataUResult.token = twitterSentimentManager.getSpecificUserDataU(dataid);
        ]]>
    </fx:Script>
    This is the code for AdvancedDataGrid:
    <fx:Script>
        <![CDATA[
            import mx.controls.advancedDataGridClasses.AdvancedDataGridItemRenderer;
            import mx.events.FlexEvent;
            import mx.events.ListEvent;
            import mx.events.ToolTipEvent;
            import spark.components.IItemRenderer;     
            private function createCustomToolTip(event:ToolTipEvent):void {
                    var toolTip:CustomToolTip = new CustomToolTip();
                    toolTip._dataId = event.target.data;
                    event.toolTip=toolTip;
            private function createCustomToolTip(event:ToolTipEvent):void {
                var toolTip:CustomToolTip = new CustomToolTip();
                var dataid:String = AdvancedDataGridItemRenderer(event.itemRenderer).data.userID;
                toolTip._dataId = dataid;          
                event.toolTip=toolTip;
            ]]>
    </fx:Script>
    <mx:AdvancedDataGrid x="48" y="50" id="myADG" designViewDataType="tree" data="myADG.currentItem" toolTipCreate="createCustomToolTip(event)" selectedIndex="0" creationComplete="myADG_creationCompleteHandler(event)" dataProvider="{getSpecificCountryCollection}">
        <mx:columns>
            <mx:AdvancedDataGridColumn headerText="sentiment" dataField="sentiment"/>      
            <mx:AdvancedDataGridColumn headerText="userID" dataField="userID"/>
            <mx:AdvancedDataGridColumn headerText="dateTime" dataField="dateTime"/>
        </mx:columns>
    </mx:AdvancedDataGrid>
    </s:TitleWindow>
    It didnt show any error, but nothing happen when mouseover.
    I dont know which part is wrong?
    Thank You!

    Hi,
    I see that this question is unanswerd for a while, and I came across it when I encountered the same problem.
    If you want to acheive the tootip for each CELL in the datagrid then you can use the ItemOver listener
    setup the listener:
    dg.addEventListener(ListEvent.ITEM_ROLL_OVER , itemOver);
    define itemOver:
    public function itemOver(event:ListEvent):void
                    var toolTipText:String                = (AdvancedDataGridItemRenderer)(event.itemRenderer).text; //only if you want to show the text in the cell itself as the tooltip
                    (AdvancedDataGridItemRenderer)(event.itemRenderer).toolTip    = toolTipText;
    and thats all you have to do.
    Regards
    Faizal

  • JSF screws IDs I specify for components padding them with "j_id_1"

    Hi everyone.
    Have anybody faced such a problem? When I specify the ID for the component, say, "logn", it is added to view as "loginj_id_1" padded with "j_id_1". Sometimes it happends, sometimes it doesn't. It may happen only for some of the components on the page. It wouldn't be a problem if the id under which the component is known was the same in all cases. But it's not the case. When the form validation fails and it's time to fill <h:message for="login">, I get the lines in the log saying:
    Unable to find component with ID loginj_id_1 in view.whereas the component exists under id "login". As for components at the same page whose IDs were padded with "j_id_1" there's no such an error and their <h:message>'s are filled as expected.
    Does anyone know what can make JSF override the ID that I specify? How come that one component is treated under differend IDs all around the project? Could it be a result of incorrect mixing RI & MyFaces for I have both of them in classpath? I haven't noticed that problem before upgrading to JSF RI 1.2_02 that comes with SJSAS 9.0_1.

    Each component is responsible for producing its own output, including it's HTML "id" attribute in the correct location. JSF does provide support for calculating the "id": UIComponent.getClientId(). The default implementation of this method is in UIComponentBase. I don't know if MyFaces has a different implementation or not... nor do I know if every component in your application produces HTML w/ id's formatted via this method. Some components may use serveral id's and create some or all of the id's by modifying the value rerturned by "getClientId()". Some containers (such as tables) may even manipulate the id's of their child components.
    So w/o a concrete example, I can't answer your question.
    Good luck!
    Ken Paulsen
    https://jsftemplating.dev.java.net

  • BADI for storage location restriction in IW32

    Dear All,
    I am working on one scenario in this user has to get the error message :-
    1. Whenever he doesn't enter the Storage Location in Component Tab (in IW32) and also he should not be able to save the Maintenance Order.
    2. There is ZTABLE (ZTPM058) , if there is no entry of the Storage location in the ZTABLE then also he should get the error.
    I have used the BADI BADI_DI_PCS2_1 to do this but the problem is when the user enter the component manually then it works fine , but when he selects the component from List button (it is in the bottom of the component tab screen) , then this BADI doesn't work correctly.
    Basically when the user selects component from List  then it should first put data into the component tab and then give the error . but this is not happening.
    Please suggest what can be done.
    Below is the code that I have  written :-
    l_ucomm = sy-ucomm.
    if diad_resbd-MENGE is not INITIAL.
      SELECT SINGLE ingpr         "Plant Section
                    lgort         "Storage Location
              INTO  (l_ingpr,
                    l_lgort)
              FROM  ztpm058
             WHERE  lgort = diad_resbd-lgort
               AND  ingpr = diad_caufvd-ingpr.
      IF sy-subrc <> 0.
    if l_ucomm <> 'IMKL'. 
       CONCATENATE 'FOR ITEM NO'        diad_resbd-posnr
                   ', COMPONENT'                   diad_resbd-matnr
                  'AND PLANNER GROUP'       diad_caufvd-ingpr
                 'THERE IS NO STORAGE LOCATION'  diad_resbd-lgort INTO txtmgs SEPARATED BY space.
        clear l_ucomm.
        clear sy-ucomm.
        MESSAGE txtmgs TYPE 'E' .
        elseif l_ucomm = 'IMKL'. (OK CODE when user press List button)
             CONCATENATE 'FOR ITEM NO'       diad_resbd-posnr
                        ', COMPONENT'                   diad_resbd-matnr
                        'AND PLANNER GROUP'      diad_caufvd-ingpr
             'THERE IS NO STORAGE LOCATION'  diad_resbd-lgort
    INTO txtmgs SEPARATED BY space.
        clear l_ucomm.
        clear sy-ucomm.
        MESSAGE txtmgs TYPE 'W' .
        endif.
        endif.
        ELSE.
        message 'Please enter the Quantity' type 'W'.
        clear l_ucomm.
        clear sy-ucomm.
        endif.
    Thanks and Regards,
    Rachit Khanna

    Dear Rajesh Kumar Raju
    Go to IMG-->Logistics Execution >Shipping> Picking -->Determine Picking Location -->Define Rules for Picking Location Determination.  There you have to assign the MALA rule to your delivery type
    Also maintain in OMJ8 and in material master under MRP2 view the default storage location in the field "Prod. stor. location"
    thanks
    G. Lakshmipathi

  • Rule based ATP is not working for Components

    Hi All,
    Our requirement is to do availability check through APO for Sales order created in ECC,so we are using gATP.
    Requirement: We are creating salesorder for BOM header (Sales BOM) and avaialbility check should happen for components i.e. Product avalaibility & Rule based substitution.
    Issue: Product availiabilty is working for components but rules based substituion is working,  mean Rules are not getting determind for components.
    Settings:
    - Header doesnot exist in APO and compnents do exist in APO
    - Availability check is not enabled for header item category and enabled for Item category for components
    - Rules have been created for Components in APO
    - Rule base ATP is activated in Check instructions
    We have also tried MATP for this i.e. PPM created in APO but still didn't get the desired result.
    If we create salesorder for the component material directly then Rule based ATP is happening, so for components Rule based ATP is not working.
    How do we enable enable Rulesbased ATP for components, i mean is there any different way to do the same.
    Thanks for help.
    Regards,
    Jagadeesh

    Hi Jagdeesh,
    If you are creating BOM in ECC and CIFing PPM of FG/Header material to APO, I think you need to CIF Header material, too, with material integration model.
    Please include header material in you integration models for material, SO and ATP check as well.
    For component availability check, you can use MATP; but for MATP, FG should be in APO. You need not to CIF any receipts of FG (stock, planned orders, POs etc), so that MATP will be triggered directly. Then maintaining Rules for RMs will enable to select available RMs according to the rule created.
    Regards,
    Bipin

  • What are the requirements for Oracle Locator?

    Hi, when installing a new database, we want to trim out the stuff that Oracle installs by default that we don't absolutely need. However, we do want to make use of the MDSYS.SDO_GEOMETRY type and Oracle Locator (not Spatial).
    Oracle has all these different components, and we jut found out that in order to use Locator, you have to install Oracle interMedia. Is there anything else there that Locator has a dependency on that we would be missing? We intend to install these:
    Oracle Workspace Manager
    Oracle Enterprise Manager
    Oracle Database Catalog Views
    Oracle Database Packages and Types
    But out of the list of the rest of them, what is needed for Oracle Locator?
    Spatial
    Oracle interMedia
    OLAP Catalog
    Oracle XML Database
    Oracle Text
    Oracle Expression Filter
    Oracle Rules Manager
    Oracle Workspace Manager
    Oracle Data Mining
    Oracle Database Catalog Views
    Oracle Database Packages and Types
    JServer JAVA Virtual Machine
    Oracle XDK
    Oracle Database Java Packages
    OLAP Analytic Workspace
    Oracle OLAP API

    Oracle Locator is implemented in the MDSYS userid. (It's included in every version and edition of the database since 8i, including 10gR2 Express Edition.)
    As you have noted, Locator is considered part of intermedia. (In some versions of Oracle, Locator is officially a feature of intermedia, in others it seems to be independent. In all versions, it uses a commono install with intermedia.) The install for intermedia 10gR2 is described at http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14302/ap_instl_upgrd.htm#sthref649
    I believe there are some Locator funtions in 10gR2 that are impemented in Java and require the JVM. The 10gR2 Express Edition (XE) does not include JVM and Locator seems to be mostly functional, but there are areas that do not work.
    Technically you do not need Oracle Text or Oracle XDK/XMLDB. I've found they are extremely useful so I do include them in my minimum installs. They are also included in XE.
    In your list the following are related to separately licensed EE options: Spatial, OLAP and Data Mining

  • Nesting JSF components in a  custom component

    I'm creating a new JSF custom component. my component needs to include an input text and a list box. my question is : how do I add these components to my JSF component ? I want to use to JSF component to render them rather then encoding the HTML myself. how can I do it ?
    I was told I need to use encodeChildren method somehow but I don't know how ?

    I finally found how to set a default skin to a custom component so that users of my component will not have to set again the skinClass value of my component.
    You have to create a defaults.css file at the root of your library and tell the compiler to take it into account.
    The remaining problem is about the compiler. There are some steps before success and they are a bit mysterious/unclear....
    I found 2 or 3 blog articles explaining those steps but the compiler arguments to use are all differents in each article...
    Here are the links I found:
    http://www.unitedmindset.com/jonbcampos/2010/05/12/creating-custom-spark-components/
    http://www.betadesigns.co.uk/Blog/2010/05/14/default-skin-for-custom-flashbuilder-componen ts/
    http://flexdevtips.blogspot.com/2009/06/default-stylesheet-in-swc-flex-library.html
    Following the first article guidelines has been successful for me but I'm not marking this topic as Resolved because I'd like some answers about this whole thing...

  • Problem with setting tooltips for items of a JCombobox

    hi guys,
    I want to set tooltips for items of JComboBox & the code that i have written is given below , but the tooltip text is set for all the items of Nonitindustrycombo but the tooltips remain the same even for Nonitdesgcombo's items.
    Is that we need to refresh the ComboboxRenderer every time ?
    I am not able to trace out the exact reason for this,please if anyone can suggest me something regarding this would be of great use to me.
    class Searchpanel extends JPanel {
    String[] str = null;
    public SearchPanel(){
    Nonitindustrycombo.addItem("--Select--");
    ArrayList NonITindus = ERPModel.getAllNonitIndustry(); //gets all the items(strings) for Nonitindustrycombo
    for (Iterator iter = NonITindus.iterator(); iter.hasNext();) {
    String str = iter.next().toString();
    Nonitindustrycombo.addItem(str);
    SetTooltip(Nonitindustrycombo,NonITindus);
    Nonitdesgcombo.addItem("--Select---");
    ArrayList desg = ERPModel.getAllNonitDesg(); //gets all the items(strings) for Nonitdesgcombo
    for (Iterator iter = desg.iterator(); iter.hasNext();) {
    Nonitdesgcombo.addItem(iter.next());
    SetTooltip(Nonitdesgcombo,desg);
    class MyComboBoxRenderer extends BasicComboBoxRenderer
    public Component getListCellRendererComponent(JList list, Object value,
    int index, boolean isSelected,
    boolean cellHasFocus)
    if (isSelected)
    setBackground(list.getSelectionBackground());
    setForeground(list.getSelectionForeground());
    if (0 < (index))
    list.setToolTipText(str[index - 1]);
    else
    setBackground(list.getBackground());
    setForeground(list.getForeground());
    setFont(list.getFont());
    setText((value == null) ? "" : value.toString());
    return this;
    private void SetTooltip(JComboBox combo,ArrayList arr){
    str = (String []) arr.toArray (new String [arr.size ()]);
    combo.setRenderer(new MyComboBoxRenderer());
    public static void main(String[] args){
    new SearchPanel();
    Thanks ,
    vishal

    1) You where given a working example in your last posting on this topic. Compare your code with the working code to see whats different and fix it.
    2) The code you posted doesn't compile.
    3) You didn't use the "Code Formatting Tags" when you posted your code so it not readable.

  • Auto batch detmn for components in Process Order selects batch in Q status.

    Hi Gurus,
    We have the following issue with automatic batch determination for component batches for a Process Order:
    Say for a Process Order it requires components A,B, and C.
    The issue is with component C. if the PO requires 100 Qty of C. the system is picking batch X having 80 qty  and picking 20 from another batch Y which is still in u201CQu201D status (due to some defects it is not cleared .  for which inspection should have completed 3 days before Process Order is released).
    Also there are only these two batches for this component in MMBE.
    What I understand is system adds GR date + GR processing days ( for inspection) and release component for production after that (ie., moves to Un restricted stock). Therefore system selects this batch as per the availability check (by calculating the GR+ GR processing date) even thoe it is not cleared yet.
    Also, I want to know If this is correct procedure, how can we make system to not to include batch with Q stock (batch which is having some defects).
    Thanks,
    N.

    Hi
    Use separate Checking Group(Availability Check) in MRP-3 view for comp C with the settings in OPJJ(Availability Check+Checking rule combination) with untick incl.quality insp stock. Idea is to select the un-restricted batch stock qty during Auto Batch determination for Components
    Regards
    Brahmaji

  • CO07 and special stock indicator for components

    Hello,
    My final purpose is to be able to call components from project stock in production orders without header material, created in CO07.
    I notice a strange behavior and would be glad to recieve some explanations.
    Production orders are assigned to a WBS. If I indicate the WBS in the CO07 selection screen, the special stock indicator for the components is determined as expected:
    If view MRP 4 for the component says "Individual requirements" then special stock indicator is set to "Project stock"
    If view MRP 4 for the component says "Collective requirements" then special stock indicator is set to "Common stock"
    Second scenario is that I don't provide the WBS in the CO07 selection screen, but provide it in the assignment tab later. In this case, the special stock indicator for components will always be empty (common stock) by default, without any possibility to modify this manually.
    Is anybody able to explain me why?
    Merry Christmas to all.

    Hi!
    Actually it is not related to SAP Manufacuting Execution solution - so you'd rather re-post the question to ERP-related forum. This can help you find a proper one.
    Regards,
    Sergiy

  • Multiline tooltip for JComboBox items.

    Hi, As the title suggests I'd like to create a multiline tooltip for items in a combobox list.
    I have implemented a multiline tooltip renderer which works perfectly on any component except JComboBox items.
    I have also implemented a ListCellRenderer for a combobox that enables tooltips for the combobox items. Also works perfectly, except that they are single line tooltips.
    The tooltip text is read from an xml file, therefore I have no control on how long the line of text is. Most of the time the text also contains newlines.
    This is the method (overridden from JComponent) added to a subclass of a component so that that component uses the MultiLineToolTip:
        public JToolTip createToolTip() {
            MultiLineToolTip tip = new MultiLineToolTip(this);
            tip.setComponent(this);
            return tip;
        }And this is the ListCellRenderer used on the combobox, so that items have (single-line) tooltips enabled:
        private class ToolTipEnabledComboBoxRenderer extends JLabel implements ListCellRenderer{
             public ToolTipEnabledComboBoxRenderer(){
                  setOpaque(true);
             public Component getListCellRendererComponent(JList list,Object value,
                                                              int index,boolean isSelected,
                                                              boolean cellHasFocus) {
                  String entry = (String)value;
                  if (isSelected || cellHasFocus) {
                       this.setBackground(list.getSelectionBackground());
                       setForeground(list.getSelectionForeground());
                  } else {
                       this.setBackground(list.getBackground());
                       setForeground(list.getForeground());
                  this.setText(entry);
                  if(isSelected || cellHasFocus){
                       if(constraint!=null &&combobox!=null &&
                                   constraint.getType() == Constrained.CONTROLLED_VOCABULARY){
                            String tooltip = ((ControlledVocabulary)constraint).getEntryDescription(entry);
                            if(tooltip==null || tooltip.equals("")){
                                 tooltip="";
                            list.setToolTipText(tooltip);
                  return this;
        }It seems to me that what I have to do is subclass the list used by the combobox and override the createToolTip() method. But how can I set the list used by the combobox? As far as I know the only time I can access the list is in the getListCellRendererComponent() method of the ListCellRenderer, in which the list is a parameter.
    Any ideas?
    Don

    Hello,
    <p>Have you seen this one?</p>
    Francois

  • Default item category for components in task list

    Hii all,
    I need one help. We need to maintain default item category for components in task list.
    Currently it comes as "L" and the field is non editable.
    Is there any way wherein i can edit the item category to "N" or any other. Also need to know why this category "L" appears?
    I can brint the default item category in the service order by the standard config.(PM/CS--> Maint & serv processing --> Main & Service orders --> General data --> define default values for component item categories)
    But i want it in the task list.
    Please help
    Regards,
    Vijay

    Hi Vijay,
    Just go to task list and then to component. go to item category field and press F1 (help)
    its mention
    Item Category (Bill of Material)
    Categorization of the items in a BOM according to set criteria, such as whether they refer to an object (for example, material master or document info record) or whether they are kept in stock.
    To my knowledge It wont be possilbe have item category N in task list by directly adding material.
    Hi Pete,
    Correct me if i am wrong that configuration setting for default material type and item category works for orders only.

Maybe you are looking for

  • Video out fire wire port from iTunes?

    Final cut and Pro Tools LE both have the ability to send video from a G5 to a TV out of the fire wire port via a Canopus ADVC-110. Why doesn't iTunes? I understand that the new Mac TV gizmo plus an airport card will do this, but I already have all th

  • Hiow to download idoc to logical system

    Hi , How to download idoc (invoic02 ) to a logical system , when a sale order is created . after downloading how to convert to xml message. can any one help me out how to do this .since i dont have any prer knowledge on idocs little bit elobrate will

  • Sustitution Variable in PIVOT Title

    Hello, Is there any way to add a presentation variable as a title in a PIVOT title? In the pivot heading instead of the title y add @{monthTitle} that is the name of my presentation variable. but it shows me @{monthTitle} instead of the title. If I p

  • ESS and MSS objects translation and localization

    Hello, we are implementing ESS on our ERP system and I have problem with translation of standard objects in ESS (pages, worksets, iviews). If I copy standard objects into new map, change default language on user to english, I can edit and rename obje

  • The "Other" MB Issue

    I haven't seen any questions on this topic, so I guess I'll ask right now. I have a nano chromatic (4th generation). At first, I didn't know that playing games would take up space (I ended up usin like 625 MB just from games), so I backed up my music