New Infotype - UI not displaying

Hi
I followed the steps to create a new PA infotype but when I want to create data for the infotype for an employee, it gives no information message, it just calls the module pool but the screen I designed with layout painter is not coming up. I didn't debug extensively. I thought I'd ask the pro's if there might have been a common mistake that I made.
Corne

My bad, I actually figured this one out by myself!

Similar Messages

  • New Jtree node not displaying

    I have created a Jtree with some default elements. Later on I add new ones with the: treeModel.insertNodeInto() method. However the new node is not displayed. If I colapse and expand the tree it's still not displayed. Is there anything I need to do to tell the tree to refresh itself.

    Here are some more details that might help isolate this refresh problem. I've got a custom JPanel that displays a JTree. The root of JTree has 2 children: A, and B. You can dynamically add a Foler to A, where Folder implements TreeNode. You can drag elements from the tree rooted at B to a Batch. I've subclassed JTree to handle the drag and drop.
    public class Folder implements MutableTreeNode {
    public class MyPanel extends JPanel {
        private DefaultMutableTreeNode root, A, B;
        private MyTree tree;
        public MyPanel() {
            root = new DefaultMutableTreeNode();
            A = new DefaultMutableTreeNode("A");
            B = new DefaultMutableTreeNode("B");
            root.add(A);
            root.add(B);
            tree = new MyTree(root);
        // this method refreshes the tree correctly!!!
        public void addFolder(Folder f) {
            A.insert(f, A.getChildCount());
            // let the model know that the node was inserted
            DefaultTreeModel model = (DefaultTreeModel)tree.getModel();
            model.nodesWereInserted(A, new int[] {A.getChildCount() - 1});
            tree.makeVisible(new TreePath(new Object[] {root, A, f}));
    public class MyTree extends JTree
    implements DropTargetListener, DragSourceListener, DragGestureListener {
        public MyTree(DefaultMutableTreeNode root) {
            super(root);
        // method that handles the drop
        // DnDNode is a subclass of MutableTreeNode that implements Transferable
        // this method does _not_ update the UI correctly
        public void drop(DropTargetDropEvent dtde) {
            try {
                Transferable t = dtde.getTransferable();
                if ( t.isDataFlavorSupported(...) ) {
                    Point p = dtde.getLocation();
                    TreePath path = getPathForLocation(p.x, p.y);
                    if (path != null && path.getLastPathComponent() instanceof Folder) {
                        dtde.acceptDrop(DnDConstants.ACTION_COPY);
                        Folder parent = (Folder)path.getLastPathComponent();
                        DnDNode child = (DnDNode)t.getTransferData(...);
                        parent.insert(child, parent.getChildCount());
                        model.nodesWereInserted(parent, new int[] {parent.getChildCount() - 1});
                        makeVisible(path.pathByAddingChild(child));
                        dtde.getDropTargetContext().dropComplete(true);
                    else dtde.rejectDrop();
                else dtde.rejectDrop();
            catch(Exception ioe) {... }
    }To sum up, the UI is correctly refreshed when I call the addFolder() method in the class MyPanel. The UI does not refresh correctly after the drop() method in the MyTree class. Even though the same methods are used for both insertions.

  • New favicon will not display in Firefox, but does display in Safari

    I am working on a new website and uploaded the favicon.ico into the root folder (Go Daddy). The favicon appears when I use Safari, not does not appear in Firefox... I have a mac OSX version 10.5 I have cleared the history and cache too. Any thoughts?

    I have this problem too. I've just loaded my favicon.ico into my root folder and it shows next to the site url in latest Safari 5.0.5, but not in Firefox 3.6.17 - neither next to the site url nor on the page name tab.
    Firefox also does not show the favicon in the Tools > Page Info > Media tab, although this does list just three of the many jpgs and pngs within its folders. I've just added the favicon.ico to the folder where it does see a jpg and png, but no joy, still not displayed. See attached png.
    How do I overcome this problem? Is there a plugin that resolves this issue? It would be nice to have some color in the page name tabs. Many sites, such as this one, do have their favicons displayed by Firefox...

  • Report deployed to new server does not display static image

    Hi,
    We have several web sites on a server running Windows Server 2008 R2 Standard, SP1, 64-bit.  It has installed .NET Framework 4 Client Profile and Extended, ver. 4.0.30319 (according to Control Panel->Programs, as well as c:\Windows\Microsoft.NET\Framework).  Two of the sites use many Crystal Reports, most of which include a static image as a logo. This image is embedded in each report; there is no stand-alone image file that gets deployed.
    Recently, we migrated to a new server, running the same version of Windows & .NET Framework.  As near as we can tell, the 2 servers are nearly identical, as far as configuration and permissions, etc. One notable exception is the DefaultAppPool, which is Classic on the original server and Integrated on the new. (When I changed the new server to Classic, the apps failed to run properly.)  The other exception is the old server is on a stand-alone box, while the new server is a virtual machine.
    For one of the apps on the new server, the embedded logo images are not displaying on the page.  Instead, there is a little red X with the word "Image".  For the other app on the new server, the reports display fine.  Furthermore, if I copy one of the "broken" rpt files from the "broken" app to the "good" app, the report displays correctly!  And of course, the same file displays correctly in all circumstances on the old server.
    This suggests to me that there is not a problem with the report file, per se', but rather with the environment to which it is deployed.  Permissions?  If so, where?
    Any suggestions would be much appreciated.
    Thanks.
    --d

    The search string 'crystal red x net' (search box in top right corner) should return a number of KBAs, docs, blogs, etc. See if any of those help.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • New tabs do not display

    my firefox just updated today
    all my existing tabs loaded correctly and are present, however I cannot make new tabs- they do not display or load by any command and i cannot toggle over to them when switching through existing tabs.
    it is as if the new tab command is not executing a new tab now.
    a site on an existing tab can create another tab, such as what mozilla did while i was searching for answers to this question, but i cannot make any new tabs via keyboard or menu command.
    i need to make new tabs and not use existing tabs which are already in use!

    hello, can you try to replicate this behaviour when you launch firefox in safe mode once? if not, maybe an addon is interfering here... (reports by other affected users indicate that this might be caused by various toolbar addons)
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]

  • APEX - New Installation - Pages not displaying correctly

    I installed APEX 3.0.1 on my XP machine, which also has Oracle Enterprise 10.2.0.1 installed. I checked the installation log - no errors.
    I performed the following to get it working via the Embedded PL/SQL Gateway:
    begin
    dbms_xdb.sethttpport(8080);
    end;
    alter user anonymous account unlock;
    begin
    dbms_epg.create_dad('APEX','/apex/*');
    dbms_epg.set_dad_attribute('APEX','database-username','ANONYMOUS');
    dbms_epg.set_dad_attribute('APEX','default-page','apex');
    dbms_epg.set_dad_attribute('APEX','document-table-name','wwv_flow_file_objects$');
    dbms_epg.set_dad_attribute('APEX','document-path','docs');
    dbms_epg.set_dad_attribute('APEX','nls-language','american_america.al32utf8');
    dbms_epg.set_dad_attribute('APEX','document-procedure','wwv_flow_file_mgr.process_download');
    dbms_epg.set_dad_attribute('APEX','request-validation-function','wwv_flow_epg_include_modules.authorize');
    end;
    begin
    dbms_epg.AUTHORIZE_DAD('APEX', 'ANONYMOUS');
    end;
    However, when I go to the login page, the images are not displayed and when I try to use some of the other links, I repeatedly get prompted for a password for XDB.
    The page error is:
    Line: 40
    Char: 1
    Error: Object expected
    Code: 0
    URL: http://gtlt01479:8080/apex/.......
    Can anyone shed some light on this for me?

    Hi Joseph,
    the installation instruction isn't really clear on that, but "Embedded PL/SQL Gateway" is not supported for pre-11g databases. See http://www.oracle.com/technology/products/database/application_express/html/3.0_fsps.html#08
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

  • New Field value not displayed in "My own activities" of CRM 5.0 Own tab

    Hi.
    I have a scenario where in we have added a new field to "My open activities" in CRM 5.0 Own tab.
    However the value of the field for various transactions is getting displayed only for one particular user and not for all the users.
    what may be the reason for this?!!!!!!
    The only user who is getting the output properly, the user ID of his was replication based on similar roles to check whether it was issue related with roles. But the output was not obtained even with the replicated user ID.
    Hence the output continues to come only for one particular user in all the systems.
    Kindly request to provide some inputs / suggestions at the earliest.
    Thanks and regards.

    Is aanyone able to help with this?
    Thanks

  • New iPad does not display sent messages

    i set up the mail, send mial happily. but when i go to sent mail folder, it displays sent e-mails form last year, and all the wya back to 2011, but not the ones i sent this week since getting the new iPad.  anybody have any ideas?

    The model number that you listed is a WiFi only iPad (original, not iPad 2) so it will not connect to 3G data as I think you already know. 
    Doesn't one have to have an AT&T account to connect to attwifi?  If they do have an AT&T account and are trying to connect do they ever get to a logon screen (best way to bring it up is to try and access any site over the web, you'll get redirected to a sign-in page).
    Other question is how strong is the signal, I have lots of issues with public WiFi being strong enough for my device to see it, but not strong enough to actually connect and do anything.

  • New Content Editor not displaying website with CSS

    I am sure I am doing something wrong, but I just am not sure where to start. I am able to edit my website under the old InContext editor and it displays just fine:
    However, when I try using the new Content Editor, this is what I see:
    What am I doing wrong? I am using dreamweaver to upload my site. I can't figure it out.

    It' a known issue, pages displayed in the new ICE fail to load relative resources.CSS, images, scripts.
    As an workaround: use paths relative to the site root to link to resources, always starting wth a slash /.
    For example:
    <link rel="stylesheet" href="/plugins/smallipop/css/contrib/animate.min.css" type="text/css" media="all" title="Screen" />
    Dan Popa

  • Opening new tab does not display my home page by default, what setting do I change to achieve this?

    When selecting the open new tab option, in the past, the tab opened displaying my designated home page. It now opens displaying a YAHOO! search page. My home page settings have not changed and continue to display the correct address, selecting 'home' brings up the correct home page, at any time during browsing. Is there another location where this 'invalid' new tab address might be listed, and removed or reset ?

    VC you are a genius! I solved my problem with your solution.
    Thanks a lot!

  • Help - new iMac 5k not displaying retina resolution after migration from older iMac?

    Hello all,
    I have just recently purchased and started up a new iMac 27" 5K iMac.  Upon startup I took a look at the display settings to play with the different options for optimizing screen real estate.  I noticed that the default setting for the new iMac is labeled as "default retina" and when you mouse over this setting a line appears that says "looks like 5120 x 2880".
    An hour later I migrated my files and settings over from my previous iMac (27" late 2012) but noticed that when I go into display preferences it no longer has exactly the same options.  Now the default setting is simply listed as "default" (not "default retina" as before the migration) and the line that appears states "looks like 2560 x 1440", which was the resolution of the older iMac.
    I am unable to figure out how to revert back to the retina display options.
    Has this happened to anyone else?  Your help is much appreciated.
    Thanks,
    Warren

    The warranty entitles you to complimentary phone support for the first 90 days of ownership.
    If you bought the product in the U.S. directly from Apple (not from a reseller), you have 14 days from the date of delivery in which to exchange or return it for a refund. In other countries, the return policy may be different. If you bought from a reseller, its return policy applies.

  • Web Page composer : new layout does not display Page Header Links Manager

    Hello,
    I am currently working with Web Page Composer, and this is my issue :
    when using original layout, the header are displayed with "Add to favorites", "Print", "E-mail" etc... and all chosen links via the "Select Page links" link.
    But whith my custom developped layout, I can choose wich links to display but they did not show up.
    I think my layout miss a configuration point, but I did not manage to find out which one.
    Does anyone have an idea ?
    Thanks a lot.
    Fabien.

    Hi Fabien,
    Probably, you might have missed something in the configuration part.
    Please ensure, you check all these steps, mentioned in here.
    http://help.sap.com/saphelp_nw70/helpdata/EN/45/d2970be57f4ebbe10000000a11466f/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/EN/45/d31ee7d4876f74e10000000a1553f6/frameset.htm
    Good Luck.
    Sandeep Tudumu

  • Mail RSS: Apple Hot News RRS does not display html page/images

    Hi, everyone who use Lion in my community has Apple Hot News RRS and it is perfectly displayed in Mail RSS feed. as an html letter with pctures and etc.
    I get only plain text with "read more" in the end.
    I tryed to find the solution in every preference, option or right click - but either I'm too dumb or it is too complicated to be changed?
    Please help.

    Something I didn't mention in my original post: when I view the messages in webmail using Safari (the latest), all the content is there; but when the same messages are brought into Mail the content disappears.
    Fortunately for me, the issue seems to reside only in content coming from this particular server; other html content comes through just fine. This is why I spent a week in server-side tech support. But because the content is viewable in ALL OTHER mail clients AND webmail, they think it's a problem with Mail.
    And yes, I've fiddled with my phplist config.php file, and compared it to other phplist config settings that I use successfully. Besides the things that must change, all other settings are identical.
    Apple tech? Any response?

  • My new Online number not displaying on the phones....

    My new online number is not showing up when i call mobiles (tried several of them).
    It is impossible to select it from the pre-selected numbers or anything of that kind. I can select that skype shows all my previous historical numbers that i have ever used...  ...but not the new online number.
    ANNOYING!!
    I have just paid €15 for nothing!!
    *edited for privacy*

    Aalto21 wrote:
    My new online number is not showing up when i call mobiles (tried several of them).
    It is impossible to select it from the pre-selected numbers or anything of that kind. I can select that skype shows all my previous historical numbers that i have ever used...  ...but not the new online number.
    ANNOYING!!
    I have just paid €15 for nothing!!
    new number: +358 9 2316 XXXX
    purchase order: 63648XXXX
    Thanks for posting your Online Number.  Unfortunately, Online Numbers in Finland can't be used as Caller ID when calling telephones from your Skype account.  Online Numbers from a few countries (Chile, Denmark, Estonia, Hong Kong, Poland, Sweden, the UK and the US) can be used this way.  
    Patrick
    Location/Ubicacion: Arizona USA
    Time Zone/Hora Local: UTC/GMT -7
    If this message has adequately addressed your issue, please click on the “Accept as Solution” button. If you found a post useful then please "Give Kudos" at the bottom of my post, so that this information can benefit others.
    Si esto mensaje le ha ayudado, por favor haga clic en "Aceptar como solución". Si encuentra un mensaje útil, por favor "Da Kudos" al final del mensaje, por lo que esta información puede beneficiar a otros.
    I am not a Skype employee. No soy un empleado de Skype.

  • In the older version of Firefox I could "view source" but the new version does not display it. What happened to it and where can I find it now?

    The new version of Firefox "View" tab only shows Toolbars, Sidebar, Zoom, Page Style, Character Encoding and Full Screen. Where can I find "source" in the new version?

    View Page Source; try any of these:
    *CTRL+U
    *right-click on the page, choose View Page Source
    *Firefox button > Web Developer > View Page Source
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

Maybe you are looking for