Display T CODE IN PFCG

dear guru,
please let me know how to display tcode when we add Transactions Codes manually in PFCG MENU tab...
it the tree its only showing the description of transaction not T-CODE..
please advise it will help me..

Hello Zeeshan,
Yes you can get the transaction code's together with description when you are adding transaction code's manually. To get this just click the icon <b>"switch on technical names"</b> which is just next to the <b>"delete all"</b> icon.
Hope u can view the tcodes now.
regards,
Anand

Similar Messages

  • Code not displaying in code view

    When searching for a particular feature, I may have clicked on something by accident. Now, my site looks and works fine in the browser and in design and live view, but the code is not displaying in code view.  See attached image.
    Anyone know how to fix this???  Thank you in advance!

    Have you tried restarting everything?

  • How to display source code of a webpage in Safari 7.0?

    Hello. I'm unable to find how we used to once enable developing tools in Safari Preferences or simply CMD + ALT + A to display the source code of a webpage. Now I've no clue how to display source code of a webpage in Safari 7.0 on Mac OS X Mavericks. Help.

    Hi gss2,
    Make sure you are not under the Apple icon but under Safari>Preferences>Advanced. All the way at the bottom check the box that says: "Show Develop menu in menu bar."
    Now go back to the page you want to get the source code for, right click on it and choose Inspect Element. Hope this helps.
    Cheers,
    LURDS LLC

  • How to display COMPANY CODE DESCRIPTION ON THE TOP LEFT OF PAGE

    How to display COMPANY CODE DESCRIPTION(Field BUTXT) ON THE TOP LEFT OF EVERY PAGE OF THE REPORT GENERATED.
       Actually I have collected BUTXT using
    'select butxt into table itab from t001 where bukrs = p_bukrs'
    where p_bukrs is the selection screen field.
    REQUIREMENT: Depending on what company code we give on the selection screen, corresponding company code description(butxt) should be displayed at the top left of every page. how would i display it in TOP-OF-PAGE EVENT.

    Hi
    It's very simple, but what is the need to use <b>into table itab</b> in your select query.
    Rather, define a variable
    data: v_butxt type t001-butxt.
    Select butxt into v_butxt from t001 where bukrs = pbukrs.
    TOP-OF-PAGE.
    write :/ v_butxt.
    Regards
    Surya.

  • S_ALR_87013336 does not display company code currency

    Hi Gurus
    My client has controlling area currency USD and company code currency CAD. The standard report S_ALR_87013336 displays in USD only but not in CAD. Is there any way where I can change to display company code currency in this report.
    Your expert suggestion is highly solicited.
    Thanks

    Hi
    Use TCode Select Form 8A-PCA013G which is attached to the report S_ALR_87013336. You would have a key figure KSL_STOCK, change it to HSL_STOCK which is balance in company code currency.
    That would meet your requirement.
    Regards,
    Suraj

  • Studio 10 cannot display lex code?

    I am evaluating Studio 10 for a large C/C++ application which contains some scanners written with lex. I noticed that the debugger refuses to show code in lex sourcefiles (i.e. files with extension .l which are processed with lex to produce, for example, C files like lex.yy.c).
    When I try to step from C code into a function defined in a lex source file, the stack display shows the function, but the source pane stays at the line where the function is invoked. This makes debugging lex generated scanners almost impossible.
    This definitely works with Forte 6 Update 2 (I just checked).
    Any idea how to make this work again?
    I can, if necessary, provide a small example which shows the
    problem.

    Thanks for the clarification. In the meantime, I found out that this boils
    down to the fact that the IDE only accepts a certain list of file extensions for C/C++ files. Because ".lex" is not among these, the editor apparently refuses to display the code.
    Unfortunately, this list is fixed and can not be extended (although the
    documentation suggests that it is possible to change lists of "mime types and edxtensions").
    I renamed a lex testfile to have extension ".c", and then the code displays. This is, however, no viable solution (users don't want to rename large numbers of files because a IDE is , well, restricted).
    I doublechecked with another situation: we have also include files with inline definitions, and these files have the extension ".icc", and this poses the same problems: I can't step through these functions. A mechanism to extend this builtin extension list is definitely needed for us.

  • How to display BAR-CODE through ABAP report

    Hi,
    Could you please help me, how to display BAR-CODE through the ABAP report.
    I am writing below code, but BAR-CODE is not displaying on report.
               PRINT-CONTROL FUNCTION 'SBP01'.
                WRITE: 20  BAR_CODE1 NO-GAP.
               PRINT-CONTROL FUNCTION 'SBS01'.
    Regards,
    SSRAJU.

    Hi RAJU,
    you can see this forum link and its sub-links, here it is clear about it.
    Re: Barcode printing on report
    Thanks & Regards,
    Dileep .C

  • Program displaying technical codes in the selection screen during execution

    Hi Gurus
    I am facing problem during the execution of the newly created program that during execution of program selection screen is displaying technical codes.
    from where to change the settings so that it should show the description
    Regrads
    Manvir

    Hi ,
    goto se38 ..give ur code name and select change...now on the top u will see Goto..
    follow this path Goto >Text Elements > Selection text.
    Now you can give the name u want..
    regards,
    Anuj

  • How to avoid "Cannot display source code at this location"?

    This debugger message really annoys me. It seems to me that
    sometimes when my program fails the debugger returns nice friendly
    messages telling me exactly what line numebr an object is
    undefined. This is great. But half the time I get message of this
    nature.
    at main_fla::MainTimeline/ot()
    at main_fla::MainTimeline/buttMouseEvent()
    Cannot display source code at this location.
    Why does the debugger refuse to show the line number of the
    code sometimes?
    Is there acoding practice that one should use to avoid these
    unhelpful debug messages?
    It is very annoying when you have a 200 line function that
    tells you that somehting is undefined SOMEWHERE in the function
    without giving you a line number. Granted at least AS3 does
    actually warn you....(unlike AS2) but I am constantly plagues by
    these "Cannot display source code at this location" messages.
    An anyone offer any explanation to why these messages dont
    display line numebrs or how to code in a way that avoids them?
    thanks

    JLundan,
    I want to thank you for responding to the thread I started on the forum at java.sun.com. Your solution to my problem of needing to print the code of the html pages that the file I included generates was just what I was looking for. However, I have some further questions to ask, if you don't mind. To clarify my task I should say that your rephrasing of the problem is accurate: "You wan't to display the contents of the HTML file that the web server produces in response of client's request?"
    Yes, this is what I need to do, but also it needs to display the source code of that html file that the server produces in response to the client's request. Also, in this case, I am the client requesting that the server return some html file, and I'm not sure where the server is. But the webserver.java file that I shared on the forum is on my local machine. I was wondering if I could modify this webserver.java file at my home so that any html file the server returns to me would automatically display the source code. This is a school project of mine and I am stuck on this one thing here.
    Further, where would I put the "foo.html" file so it can be written to?
    FileOuputStream fos = new FileOutputStream("foo.html");
    fos.write(bytes);
    fos.close();
    Thanks so much for your help. I look forward to your response, at your convenience.
    Regards

  • Latest IOS displays fault code 1671, what does this mean?

    latest IOS displays fault code 1671, what does this mean?

    If it has NEVER been jailbroke, here are some standard repair procedures:
    First, try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  It could take well over an hour!  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow the on-screen directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore (or it doesn't help), go into Recovery Mode per the instructions here.  You WILL lose all of your data (game scores, etc,) but, for the most part, you can redownload apps and music without being charged again.  Also, read this.

  • Notification mail display garbled code !

    Hello experts,
    I had configurated UWL and integrated CRM system.
    The workflow of CRM will create mail automaticly , and display the mail in Portal notification iview.
    All of the English mails work fine , but all the Chinese mail display garbled code.
    Is there any guys met this problem too?
    Please give me some advice.
    BR,
    Jianguo Chen

    Hi,
    To see list of mail u can user SOST T-code and for Mail Admin you can use SCOT.
    Regards
    Deepu

  • Displaying html code in JSP page

    Hi.
    How do I display HTML code in an jsp page, so that the actual code is printet on the screen
    fx:
    <html>
    <head>
    </head>
    <body>
    </body>
    </html>

    I can't get my reply to show properly, but the answer is;
    Change < into &lt ; and > into &gt ;
    but with the semi-colons stuck next to the &lt and &gt if you get my drift

  • Lyrics display wrong code

    When I use the software 'Tag&Rename3.2" or iTunes to edit lyrics(use ANSI or Unicode Code),the lyrics can display correctly in iTunes,but on the nano it display wrong code.I think the reason maybe the lyrics code is ansi code,but when I change it into unicode to paste into iTunes,and it can't display correcly on nano either.How can I do?
    iPod nano 4GB Black   Windows XP Pro   OS and iTunes 6 are Simflied Chinese(PRC)
      Windows XP Pro  

    this is an easy way for lyrics,
    first, find the lyrics on google.
    second copy and paste them into the lyics tab
    third click done.
    you dont really need a program for it and its much easier this way,
    Nano 4GB black,Moto RAZR V3 black, PSP, all kinds of cases for nano,radio/remote   Windows XP   <img src="http://i36.photobucket.com/albums/e13/superman5656/s.gif"align="right"</span>

  • Why "You do not have authorization to display company codes" ? Thanks

    Hello,
    Using the Tutorial BAPI which comes with the JCO Tutorial,I just wanna call the first function.
    When I run the code, it display "You do not have authorization to display company codes".
    Could any body please help me to explain why?
    Thanks a lot
    BELOW IS THE CODE:
    package com.sap.slc.teamweb.test;
    import com.sap.mw.jco.*;
    public class TestBapi1 extends Object {
        JCO.Client mConnection;
        JCO.Repository mRepository;
        public TestBapi1() {
            try {
                // Change the logon information to your own system/user
                JCO.createClient("001", // SAP client
                  "<userid>", // userid
                  "****", // password
                  null, // language
                  "<hostname>", // application server host name
                  "00"); // system number
                mConnection.connect();
                mRepository = new JCO.Repository("SAPJCO", mConnection);
            } catch (Exception ex) {
                ex.printStackTrace();
                System.exit(1);
            JCO.Function function = null;
            JCO.Table codes = null;
            try {
                function = this.createFunction("BAPI_COMPANYCODE_GETLIST");
                if (function == null) {
                    System.out.println("BAPI_COMPANYCODE_GETLIST" + " not found in SAP.");
                    System.exit(1);
                mConnection.execute(function);
                JCO.Structure returnStructure = function.getExportParameterList().getStructure("RETURN");
                if (!(returnStructure.getString("TYPE").equals("") || returnStructure.getString("TYPE").equals("S"))) {
                    System.out.println(returnStructure.getString("MESSAGE"));
                    System.exit(1);
                codes = function.getTableParameterList().getTable("COMPANYCODE_LIST");
                for (int i = 0; i < codes.getNumRows(); i++) {
                    codes.setRow(i);
                    System.out.println(codes.getString("COMP_CODE") + '\t' + codes.getString("COMP_NAME"));
            catch (Exception ex) {
                ex.printStackTrace();
                System.exit(1);
            try {
                codes.firstRow();
                for (int i = 0; i < codes.getNumRows(); i++, codes.nextRow()) {
                    function = this.createFunction("BAPI_COMPANYCODE_GETDETAIL");
                    if (function == null) {
                        System.out.println("BAPI_COMPANYCODE_GETDETAIL" + " not found in SAP.");
                        System.exit(1);
                    function.getImportParameterList().
                    setValue(codes.getString("COMP_CODE"), "COMPANYCODEID");
                    function.getExportParameterList().
                    setActive(false, "COMPANYCODE_ADDRESS");
                    mConnection.execute(function);
                    JCO.Structure returnStructure = function.getExportParameterList().getStructure("RETURN");
                    if (!(returnStructure.getString("TYPE").equals("") ||
                    returnStructure.getString("TYPE").equals("S") ||
                    returnStructure.getString("TYPE").equals("W"))) {
                        System.out.println(returnStructure.getString("MESSAGE"));
                    JCO.Structure detail =
                    function.getExportParameterList().
                    getStructure("COMPANYCODE_DETAIL");
                    System.out.println(detail.getString("COMP_CODE") + '\t' +
                    detail.getString("COUNTRY") + '\t' +
                    detail.getString("CITY"));
            catch (Exception ex) {
                ex.printStackTrace();
                System.exit(1);
            mConnection.disconnect();
        public JCO.Function createFunction(String name) throws Exception {
            try {
                IFunctionTemplate ft = mRepository.getFunctionTemplate(name.toUpperCase());
                if (ft == null)
                    return null;
                return ft.getFunction();
            catch (Exception ex) {
                throw new Exception("Problem retrieving JCO.Function object.");
        public static void main(String args[]) {
            TestBapi1 app = new TestBapi1();

    Hi Mao,
    R/3 comes with some predefined Company Codes and we also
    can define our own Company Codes.
    visit this link this may help you.
    http://help.sap.com/saphelp_erp2004/helpdata/en/8e/1a5217171311d28e1d080009b6ab29/frameset.htm
    Regards,
    Narinder Hartala

  • Query does not display the code.

    Hi Experts,
    I created a query joining SKA1 and SKB1 with the following requirements:
    Query of the chart of accounts total for each company code with the following additional information:
    - reconciliation list: yes or no / for which sub-ledger (cutomer, accounts payable, assets or others)
    - binding on interim transaction: yes or no.
    I have successfully created a query but instead of displaying the code (for example AA01-company code) the name of the company was displayed.(example: ABS Company) this is also the same with other fields like the GL account, instead of displaying the numerical value, the text description was displayed even if I have selected the correct field assignment (SKB1-BUKRS).
    Your inputs are very much appreciated. thanks in advance!

    Hi,
    Are you creating this query under SQVI TCode?
    Because when i am doing the same thing... its working. i can see he company code coming up as AA01.
    SKB1-BUKRS is for Company code number... then how it can display Company code Description.
    Best Regards
    Guneetinder

Maybe you are looking for

  • How can I view two emails at the same time

    Is it possible to view two mail messages at the same time. We are testing iPads at work and this is the biggest problem

  • Moving folders to an external hard drive - LR3.2, Mac Snow Leopard

    I apologize for this right off, but after reading other threads in this forum, buying a book, and watching a video, I'm more confused than ever! I want to move (not copy), 6 months of folders, with their subfolders, meta-data and keywords, off my lap

  • Help:  New PC / Lost Music

    I have a new PC. I downloaded iTunes from the Web and all my prior purchases were there once my iPod synced. Or all my tunes were there before I synced. In either case my music was there. So, I purchases 14 new songs. A couple days later when I synce

  • 2 Cheques assigned to 1 document - Vendor Payments

    Hi all, At our end, while posting one payment, 2 Cheques have been assigned to one payment document. Doc. No.:- 150000577 Co. Code:-  3000 Fiscal Year:-  2011 Posting Date:-  09.01.2012 Amount:-  Rs. 180/- Chq. No. 305760 & 305763 have been assigned

  • Error in passing internal table as returning parameter

    Hi Im new to ABAP OO. I declared a parameter ret_kna1 Returning Type KNA1. Inside the method, I am retrieving data from table KNA1 into internal table and then I want return the interal table value. But Im not able to assing the internal table for eg