Displaying notes on Dynamic Menus in TEM

Good morning
When a note is attached to an attendee on a course in TEM, is there a way that there cam be an indicator displayed on the dynamic menus (PSV1 and PSV2) against the attendee that when you click on it, it goes directly to the note.
Many thanks
Dawn

Hello Dawn,
You need additional development to do that.
Go and copy SAP standard function RH_MORINFO and change the resulting function acc to your requirements.
Then in the T77S0 table write down the name of your Zfunction as SEMIN MINFO value.
In standard, you can make "key", "additional info" and "abbreviation" fields visible in PSV1 and PSV2 transactions.
To customize the user view, use Change settings button - View tab.
Regards,
Dilek
Edited by: Dilek Ersoz Adak on Jan 14, 2010 1:37 PM

Similar Messages

  • ADF- managedbean creation error while making dynamic menus.

    im a lil new here so plz excuse and help!
    scenario:
    to create dynamic menu for two tabs : general..
    general has a subtabmenu in form of menubar wid items: country, city,...
    i created dynamic menus for my application.wen i ran my page i got this error:
    SEVERE: Managedbean menuItem_General could not be created Can't get value from value binding expression: '#{resources['erms.menu.gen']}'
    (erms.menu.gen is an entry in UIResources.properties)
    now, i followed the exact same process as mentioned in the SRDemo application, in adfdevguide!
    also double checked that
    i. resource adapter is configured in faces-config.
    ii.menu model and menuTreeModel are configured with thier default adapaters in faces-config.
    iii.resource bundle specified in jsp page.
    can sum1 plz refer
    1.wat is the reason of this error? wat are the things dat shud hold true in order to run these dynamic menu? which files shud b specified where?
    2. in wat order are the managedbeans created ? is it in order they apprear in faces-config file or in order they are used in the jsp page?
    3: is it possible that u click on a menuTab item and it displays its particular menubar's items while staying on the same page? or
    u click on a menubar item and it displays its particular dropdowns while staying on the same page?
    is it posible wid ADF or javascript shud b used?
    best regards
    Rabs

    im a lil new here so plz excuse and help!
    scenario:
    to create dynamic menu for two tabs : general..
    general has a subtabmenu in form of menubar wid items: country, city,...
    i created dynamic menus for my application.wen i ran my page i got this error:
    SEVERE: Managedbean menuItem_General could not be created Can't get value from value binding expression: '#{resources['erms.menu.gen']}'
    (erms.menu.gen is an entry in UIResources.properties)
    now, i followed the exact same process as mentioned in the SRDemo application, in adfdevguide!
    also double checked that
    i. resource adapter is configured in faces-config.
    ii.menu model and menuTreeModel are configured with thier default adapaters in faces-config.
    iii.resource bundle specified in jsp page.
    can sum1 plz refer
    1.wat is the reason of this error? wat are the things dat shud hold true in order to run these dynamic menu? which files shud b specified where?
    2. in wat order are the managedbeans created ? is it in order they apprear in faces-config file or in order they are used in the jsp page?
    3: is it possible that u click on a menuTab item and it displays its particular menubar's items while staying on the same page? or
    u click on a menubar item and it displays its particular dropdowns while staying on the same page?
    is it posible wid ADF or javascript shud b used?
    best regards
    Rabs

  • How To Use Dynamic Menus To Place Manually Created Jspx Pages On Sub-Level

    JHeadstarters,
    Back on the JHS trail and could use some help.
    I started using dynamic menus (see section 9.2 JHS Dev Guide) to setup a custom menu structure and found it could not be easier however I need to solve 2 issues;
    1. How to get more than 2 levels deep on the menus (parent, child, grand-child, etc.)? In the menu structure setup I have created a menu that is 3-levels deep however when it runs you only get 2 levels. Perhaps a template needs to be changed.
    2. How can I assign manually created jspx pages to sub-level menus?
    Scenerio;
    I have JHS generated pages *** AND *** manually created pages. Using dynamic menus to place the JHS genned pages works fine, the problem is how to do it with manually created pages.
    Using Dynamic Menu's I created a top-level menu tab named "warp-core", below it on the next level I have two sub-menus, one named "search" and one named "form" for displaying the results of the search and modifying the rows (don't ask me why they are seperate).
    The problem is how to assign the manually created jspx pages to those sub-menus? Or am I going abouth this the wrong way? Perhaps I could use JHS to generate seperate search and display pages.
    Thanks!
    BG...

    Bill,
    1. Yes, you need to decide yourself how and where you want to render this third level menu. You then create a region file similar to dynamicMenu2Tabs.jspx, just replace the references to level2MenuItems with level3MenuItems. Then create a custom template to call this menu 3 region file.
    For example, you could create a bulleted vertical list for level 3 as illustrated in section 9.1.3 of the Developers Guide (that example is with static menu, but you can use similar technique for dynamic menu)
    2. Instead of a group name, you can specify a JSF Navigation action in the menu administration application. So, you create a global navigation case to your custom page, and you enter this navigation case id in the menu admin app.
    Note that if you want to generate separate search pages, you can do so by setting the advanced search property to "separatePage".
    Steven Davelaar,
    JHeadstart Team.

  • Dynamic menus from database with URL parameters

    Hello!
    I'm trying to build a set of dynamic menus that would be based on data from the database. I need to have a menu item for every database row, and all the items point to the same page, but each with its own parameter in the item's URL. The URLs in the menus would look like ".../form.jspx?recordID=xx", where xx is read from the database.
    Right now, I can display the menu, everything works fine, but the problem is in the PageMap section of Databindings.cpx - ADF needs to have every URL mapped to a page definition. So even if I have "form.jspx" mapped to "form_PageDef", I have to explicitly tell the server that "form.jspx?recordID=xx" is also mapped to "form_PageDef" by putting this into Databindings.cpx.
    Of course, if I have to manually enter page mappings for all the record IDs that appear in the menu, it's not really a "dynamic menu" anymore. Does anyone know of a way to avoid this problem?
    Can I somehow change Databindings.cpx programmatically? Can I change page mappings dynamically? Help, please? I'm very grateful for any and all info.

    Hi Vex,
    I'm not sure whether you'll find a solution as "Dynamic" as you are describing with dynamic entries via the DataBindings.cpx. Menu's work quite differently in JSF (See section 19.2 on dynamic menus in the developers guide). You may need to get the solution halfway.
    1) Drive the menu contents / structure from the database via some backing bean. The sample application that comes with JDeveloper has a fixed menu structure via exposed beans. You'd have to adapt this to be driven off of a managed bean. This takes a bit of work, but it can be accomplished. You'll need to loop through your database records via the Iterator to build the content of your menuModel
    2) Let JDeveloper create the entries in DataBindings.cpx to map the pageDef.xml file to each jspx file. (Manual). The pageDef.xml file gets interpreted during the initContext phase of the ADF Lifecycle, and the DataBindings.cpx tells this phase where to look to create the runtime version of the pageDef.xml (See developer's guide 13.2.3).
    3) Manually setup your faces-config with the right outcomes.
    4) have the database return the outcomes and viewIds, among other values.
    5) do the appropriate thing in your JSPX to make use of this menu module backing bean.
    In this case, you'll control the content and structure of the menu via the DB. However, you'd have to make sure the data in your DB matches the definitions of the jspx viewid's and outcomes.
    However, there is a quite a bit of work involved to do this. I.e. db design, backing bean for menu module, disciplined co-ordination between DB and JSF, etc...
    I hope this helps.
    Kenton

  • More info needed on BC Dynamic menus and using CSS with them

    Hi all,
    The BC Gurus tutorial on Dynamic Menus and how to style them with CSS made no sense to me, unfortunately. The presentation was too rushed and the screen too small to see what was happening.
    In a previous question I found out how to apply CSS classes to BC menus after a bit of a run around.
    I was putting the # in front of the Item ID name and a . in front of the class name and this was not necessary.
    I have further questions though, as I am still struggling to get a BC Dynamic menu to style properly with the CSS I have created.
    1. If you choose CSS as the menu type, can you set the font, background colour and rollover state of the menu items in the Dynamic menu section? Or do you have to style it all in the CSS stylesheet?
    2. If you choose CSS as the menu type, the option to say how the submenu sits under the root menu disappears. So do you need to set this in the CSS stylesheet? And if so in which element? UL or LI?
    3. If you choose CSS/HTML only, how is this different to the option of CSS for the dynamic menu?
    4. If you choose CSS as the menu type and if you set a width and height in the menu item, and then set a different width and height in the CSS stylesheet, which width and height wins?
    5. If you want a dynamic menu to show on an Android phone, do you have to choose CSS/HTML only and do all the styling in the CSS stylesheet? Or should you avoid dynamic menus all together and just use a UL list in the template? (I am doing a responsive fluid grid layout in DW for the template).
    6. I am finding that the dynamic menu I have done, with CSS as the type, does not show and hide the sub menu items properly on an Android phone. Is there a problem with the javascript in Dynamic menus?
    Thanks for any help you folks can give on these questions!

    .pacnew files are only created if you have modified the default (or a change has been made to the config upstream); in both cases, you should be looking to incorporate the changes.
    It seems some new options are being shipped with lxdm: you want those in your config (turning them on or off is a matter for you and the man page to sort out)...

  • Dynamic Menus for Navigation

    i have a question about Dynamic Menus for Navigation... i am a new in jsf/adf... and i want a suggestion about my new application i am trying to do:
    my boss has give me all the items that the menu will have.... and this menu will be the same for all the pages...this menu is 3 level deep... i have created all the pages for all the menu item in the page navigation and i have also created some navigation rule... that means that everything is static... dont know if this solution is correct and will not lead me to a lot of problems in the future....
    i aslo sow the Dynamic Menus for Navigation in the SRDemo application .... but my answer is can i create the Dynamic Menus if i havent create the model layer...????

    I AM LOST :(.... PLEASE GUYS... ONE OF YOU SHOULD GIVE ME SOME TIPS ON HOW TO CREATE A DYNAMIC MENU... CAN I USE THE THE MENUITEM.JAVA FILES IN SRDEMO.... DO I HAVE TO CHANGE ANYTHING IN THE CODE?
    In the SRDEMO application the menu has only two levels ... what do i have to do if i want a menu with 3 levels??? thanks in advance :(

  • Displaying images in dynamic text fields

    Hi, I am having some difficulty getting my images to display
    in a dynamic text field. The images are linked from a txt file with
    the <img src=""> tag however they are not showing up in the
    text area. The rest of the html are rendering fine except the image
    tag. My example online is here:
    www.supernaturalmedia.com.
    Here is the code I used in Flash:
    var style_sheet = new TextField.StyleSheet();
    var css_url = "global.css";
    style_sheet.load(css_url);
    news.StyleSheet = style_sheet;
    loadVariables("projects_news.txt", this.news);
    My css styles also isn't loadin so i temporarily am using
    html styles for formatting. I'd like to get the css to work as
    well.
    My movie is published as Flash Player 6, AS 2.0.
    I'd appreciate any helpful advice.
    Thanks,
    Stanton

    1. don't assign the stylesheet property of your textfield
    until loading of global.css is complete. ie, use the onLoad handler
    for stylesheets.
    2. you have movieclip images that are linked for export and
    you're using their linkage id in src property of the img
    tag?

  • Dynamic menus are overlapping. Help needed.

    Hi guys,
    please help, otherwise I'm going to hammer my head.
    Dynamic menus are overlapping under in the Main menu > Pearl Academy (here is the site: http://lopearls.businesscatalyst.com/ )
    I really don't know how to fix it. Please help.

    You gotta change the CSS mate.
    try to give the display of inline-block to your top level lists or display:block and then float them left.
    Second everytime I'm in a certain page, the link related to that page somehow generates this:
    <li class> <a ....>text ....
    why do you have an empty class in there? check the Menu module files and see what you've got there to fix that, you shouldn't have that. maybe some JS is messing with you too.
    Assign classes through BC, or just target the lists directly with CSS.
    If you want to be specific on what list you target, use this method:
    #nav > ul
    and then #nav > ul > li
    this will target only the direct tag after the nav div.
    man you got a lot going on there, this need a bit of clean up.
    I can tell you that it takes a good chunk of CSS lines to control what you've got there.

  • InDesign not appearing on menus following install

    InDesign not appearing on menus following install on Windows 7 and MAC.

    Assuming that you haven't turned off "Display Navigation Menu" for these pages in the Page inspector, try the troubleshooting steps under "Fix iWeb" here....
    http://www.iwebformusicians.com/WebMusic/iWebTips.html
    Then republish to a folder and, after emptying the browser cache, launch the site in Safari again.

  • 32-bit binary does not run on x86_64, ldd not a dynamic executable

    Hi,
    I switched from Ubuntu 8.10 x86_64 to arch linux x86_64 a short while ago and have an issue running 32-bit proprietary binary that dynamically links to some libraries.
    ldd insists "not a dynamic executable"
    How am I supposed to resolve the issue? Running this 32-bit binary using 64-bit Ubuntu was never an issue.
    Best Regards,
    Cetin Sert

    I installed all the lib32 libraries but I still get the same error:
    [cetin@unique bin]$ pacman -Qs lib32-*
    local/lib32-alsa-lib 1.0.20-1 (lib32)
        An alternative implementation of Linux sound support
    local/lib32-atk 1.26.0-1 (lib32)
        A library providing a set of interfaces for accessibility
    local/lib32-cairo 1.8.8-1 (lib32)
        Cairo vector graphics library
    local/lib32-curl 7.19.6-1 (lib32)
        An URL retrival utility and library
    local/lib32-db 4.7.25.4-1 (lib32)
        The Berkeley DB embedded database system
    local/lib32-dbus-core 1.2.14-1
        Freedesktop.org message bus system
    local/lib32-e2fsprogs 1.41.8-2.1
        Ext2 filesystem utilities
    local/lib32-expat 2.0.1-2 (lib32)
        An XML Parser library written in C
    local/lib32-fontconfig 2.6.0-2 (lib32)
        A library for configuring and customizing font access
    local/lib32-freetype2 2.3.9-2 (lib32)
        TrueType font rendering library
    local/lib32-gcc-libs 4.4.1-1 (lib32)
        The GNU Compiler Collection
    local/lib32-glib2 2.20.4-1 (lib32)
        Common C routines used by GTK+ 2.4 and other libs
    local/lib32-glibc 2.10.1-4 (lib32)
        GNU C Library (32 Bit)
    local/lib32-gnutls 2.8.3-1 (lib32)
        A library which provides a secure layer over a reliable transport layer
    local/lib32-gtk2 2.16.5-1 (lib32)
        The GTK+ Toolkit (v2)
    local/lib32-heimdal 1.2.1-5 (lib32)
        Heimdal Kerberos V5 libraries
    local/lib32-libart-lgpl 2.3.20-1 (lib32)
        A library for high-performance 2D graphics
    local/lib32-libcups 1.3.11-1 (lib32)
        The CUPS Printing System
    local/lib32-libdrm 2.4.12-1 (lib32)
        Userspace interface to kernel DRM services
    local/lib32-libgcrypt 1.4.4-2 (lib32)
        Libgcrypt is a general purpose crypto library based on the code used
    local/lib32-libgpg-error 1.6-1.1 (lib32)
        Support library for libgcrypt
    local/lib32-libice 1.0.5-1 (lib32)
        X11 Inter-Client Exchange library
    local/lib32-libjpeg 7-1 (lib32)
        Library of JPEG support functions
    local/lib32-libpng 1.2.39-1 (lib32)
        A collection of routines used to create PNG format graphics files
    local/lib32-libsm 1.1.1-1 (lib32)
        X11 Session Management library
    local/lib32-libstdc++5 3.3.6-3 (lib32)
        GNU Standard C++ library version 3
    local/lib32-libtasn1 2.2-1 (lib32)
        The ASN.1 library used in GNUTLS
    local/lib32-libtiff 3.9.0-1 (lib32)
        Library for manipulation of TIFF images
    local/lib32-libx11 1.2.2-1 (lib32)
        X11 client-side library
    local/lib32-libxau 1.0.4-1 (lib32)
        X11 authorisation library
    local/lib32-libxcb 1.4-1 (lib32)
        X11 client-side library
    local/lib32-libxcomposite 0.4.0-2 (lib32)
        X11 Composite extension library
    local/lib32-libxcursor 1.1.9-2 (lib32)
        X cursor management library
    local/lib32-libxdamage 1.1.1-2 (lib32)
        X11 damaged region extension library
    local/lib32-libxdmcp 1.0.2-2 (lib32)
        X11 Display Manager Control Protocol library
    local/lib32-libxext 1.0.5-2 (lib32)
        X11 miscellaneous extensions library
    local/lib32-libxfixes 4.0.3-2 (lib32)
        X11 miscellaneous 'fixes' extension library
    local/lib32-libxft 2.1.13-1 (lib32)
        FreeType-based font drawing library for X
    local/lib32-libxi 1.2.1-1 (lib32)
        X11 Input extension library
    local/lib32-libxinerama 1.0.3-2 (lib32)
        X11 Xinerama extension library
    local/lib32-libxml2 2.7.3-3 (lib32)
        XML parsing library, version 2
    local/lib32-libxmu 1.0.4-2 (lib32)
        X11 miscellaneous micro-utility library
    local/lib32-libxrandr 1.3.0-1 (lib32)
        X11 RandR extension library
    local/lib32-libxrender 0.9.4-2 (lib32)
        X Rendering Extension client library
    local/lib32-libxslt 1.1.24-2 (lib32)
        XML stylesheet transformation library
    local/lib32-libxss 1.2.0-1 (lib32)
        X11 Screen Saver extension library
    local/lib32-libxt 1.0.6-1 (lib32)
        X11 toolkit intrinsics library
    local/lib32-libxtst 1.0.3-2 (lib32)
        X11 Testing -- Resource extension library
    local/lib32-libxv 1.0.4-1 (lib32)
        X11 Video extension library
    local/lib32-libxxf86vm 1.0.2-1 (lib32)
        X11 XFree86 video mode extension library
    local/lib32-lzo2 2.03-1 (lib32)
        LZO is a portable lossless data compression library written in ANSI C
    local/lib32-mesa 7.5-2 (lib32)
        Mesa OpenGL library
    local/lib32-nas 1.9.2-1 (lib32)
        Network Audio System is a network transparent, client/server audio transport system
    local/lib32-ncurses 5.7-2 (lib32)
        A System V Release 4.0 curses emulation library
    local/lib32-nspr 4.8-1 (lib32)
        Netscape Portable Runtime
    local/lib32-nss 3.12.3.1-1 (lib32)
        Mozilla's Netscape Security Services Library that implements PKI support
    local/lib32-nvidia-utils 185.18.36-1 (lib32)
        NVIDIA drivers utilities and libraries.
    local/lib32-openal 1.8.466-1 (lib32)
        OpenAL audio library for use with opengl
    local/lib32-opencdk 0.6.6-1.1 (lib32)
        The Open Crypto Development Kit provides basic parts of the OpenPGP message format
    local/lib32-openssl 0.9.8k-4 (lib32)
        The Open Source toolkit for Secure Sockets Layer and Transport Layer Security
    local/lib32-pango 1.24.5-1.1 (lib32)
        A library for layout and rendering of text
    local/lib32-pciutils 3.1.3-1 (lib32)
        PCI bus configuration space access library and tools
    local/lib32-pcre 7.9-1 (lib32)
        A library that implements Perl 5-style regular expressions
    local/lib32-pixman 0.14.0-2 (lib32)
        Pixman library
    local/lib32-qt 4.5.2-6 (lib32)
        The QT gui toolkit.
    local/lib32-qt3 3.3.8-12 (lib32)
        The QT gui toolkit.
    local/lib32-readline 6.0.004-1 (lib32)
        GNU readline library
    local/lib32-sdl 1.2.13-3 (lib32)
        A library for portable low-level access to a video framebuffer, audio output, mouse, and keyboard
    local/lib32-sqlite3 3.6.17-1 (lib32)
        A C library that implements an SQL database engine
    local/lib32-util-linux-ng 2.16-1
        Miscellaneous system utilities for Linux
    local/lib32-xcb-util 0.3.6-1 (lib32)
        Utility libraries for XC Binding
    local/lib32-zlib 1.2.3.3-3 (lib32)
        A compression/decompression Library
    [cetin@unique bin]$
    [cetin@unique bin]$
    [cetin@unique bin]$
    [cetin@unique bin]$ ldd Adifor2.1
    Adifor2.1          Adifor2.1-Linux86 
    [cetin@unique bin]$ ldd Adifor2.1-Linux86
        not a dynamic executable
    if i create a chroot environment can 64-bit programs in our tool chain call the 32-bit binary using exactly the same ways they would do on a working multilib environment? btw vanilla ubuntu 9.04 64-bit has the same issue, so I'm a bit at a loss now hehe.

  • Does ppr of hgrid line level does not support dynamic switchers?

    Hi this is really critical.... any help would be highly appreciated.I have a a hgrid which conatains a messagechoice and a switcher in each row.This switcher has two cases dummy message style text and a message choice. depending upon the value of first message choice, in this column messagestyletext or messagechoicebox is shown in switcher. this is implemented by ppr on first drop down. this code works completely fine on jdev. but when deployed on server, the page does not refreshes to show the other component in switcher.I have used transient attribute to populate value of switcher.
    Does ppr of hgrid line level does not support dynamic switchers?
    please help!

    Hi Mukul,
    Have you fixed this issue?
    Iam unable to achieve this row level dynamic switcher.
    In my case .. i should be able to display Edit enabled and Edit disabled icons based on some criteria.I have given E as id for enabled and E1 as id for disabled.when i execute the query it is fine but swither is always populating enabled image.
    What could be wrong?
    Thanks
    Soujanya

  • 20" Apple Cinema Display not recognised after upgrading to OS 10.8.2 (Mountain Lion)

    20" Apple Cinema Display not recognised after upgrading to OS 10.8.2 (Mountain Lion).
    Hello Apple! Anybody there? How long does your community have to wait for a solution?
    The same problem has been unsolved for months now. No statements from Apple either.
    I was told today to wait for 10.8.3. This might solve the issue. I can not belive my ears.
    My MacBookPro 4,1, Intel Core 2 Duo with 2.5 GHz Processor and Graphics chip: NVIDIA GeForce 8600M GT, will not talk to the exter. 20" Cinema Display ( Model Number A1081 ). The screen stays black. Resetting the PRAM did not help. I removed the 'com.apple.windowserver.plist' and the 'com.apple.windowserver.OE35739etc,etcxxxxxxxxxxx.plist', but that did not help either.
    Any other solutions, or do I have to downgrade or give up on Apple Computers alltogether after using them for over 25 years?

    I found out that I needed a $100 mini displayport to dual-link dvi adapter to make my $30" cinema display work with my macbook pro
    http://store.apple.com/us/product/MB571Z/A/mini-displayport-to-dual-link-dvi-ada pter?fnode=51
    When I found out that solved the problem, I took it back because that was too expensive for a stupid adapter, and it still didn't work perfectly.

  • I am unable to play a downloaded HD movie from iTunes. SD movies play OK. An error popped up saying something about the display not suitable for HD movies but now all I get is a blank window. I have tried changing the display resolution to no avail.

    I have sownloaded an HD movie from iTunes store and when I attempted to play it on my Windows 7 PC a error message popped up saying something about the display not being compatible for HD movies. I have tried changing the display resolution several times but it didn't help. Now it just comes up with a blank screen when I attempt to play it. SD movies work fine. I have the latest version of iTunes installed.
    Can anyone help me resolve this problem?

    Apparently the display is required to be HDCP compatible to view HD movies in iTunes. My display isn't so this is my problem. I contacted Apple support and they have agreed to credit me for the HD movie and I have now downloaded the SD version.

  • Can you post Notes (Display Note) at a higher level of aggregation than CVC

    I am only able to post Notes with the Display Note at the CVC level.  ALL PRODUCTS ALL CUSTOMERS and I receive the error message "No Notes can be processed in the current selection".  ONE PRODUCT ALL CUSTOMERS OR ALL PRODUCTS ONE CUSTOMER and I get display only no input (greyed out).  I can post notes at the CVC level.  Is this the only level you can post notes.

    HI Kevin ,
    Yes there are restrictions on the levels you put the note and the level you can edit the notes.and hence those will be greyed out at certain levels .
    For more details please refer my earlier post [No notes can be processed in the current selection - Error Msg|Re: No notes can be processed in the current selection - Error Msg.]
    Regards,
    Digambar

  • Need to display COlumn headers dynamically in ALG Grid

    Hello,
    I need to display column headers dynamically in alv grid Display with its corresponding value.
    Column headers should be picked from a field in Final Internal table and its corresponding field will also need to pick from the same table.
    T_final... Suppose Field STCTS - (To pick coulmn headers)
                                      CCNGN - (To pick appropriate value for that column)
    Can anybody explain me how i can pass these values to ALV Grid using
    CALL METHOD CL_ALV_TABLE_CREATE=>CREATE_DYNAMIC_TABLE
      EXPORTING
        IT_FIELDCATALOG           = Y_I_FCAT
      IMPORTING
        EP_TABLE                  = DY_TABLE.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Any suggestions will be appreciated....
    Regards,
    Kittu

    Hi,
    Go thru this link, and the code of Mr.Dev Parbutteea
    Re: Probelm with Using Field Symbol in FM
    thanks
    Mahesh

Maybe you are looking for