Need to add a Transaction in the SAP menu in the Given path

Hi All,
I need to add a transaction in the enhancement menu in the specified path.
Kindly share the method.
Thanks in Advance!
Chirag Shah

Hi ,
Go to SE43 and give the AREA MENU , and press the create button and add the Tcode...
Regards,
Bharani

Similar Messages

  • Need to add Standard transaction code to User Menu.

    Hi All,
    I need to add Standard transaction code to User Menu. How this can be accomplished?
    Thanks

    Your Security and/or Basis team probably have control of the user menu settings.  On the other hand, if this is for YOUR user menu, you could choose to simply adjust your favorites.

  • Need to add a link to the masthead area of the Portal

    Hi
    I need to add a link to the masthead area of the portal. That link needs to be able to print the content of the current page.
    Ihave downloaded the com.sap.portal.navigation.masthead into the NWDS.
    Can anybody please let me know where exactly to modify the code.
    i am guessing i may need to use window.print() to print the page.
    Thanks
    Sharath
    Thanks
    Sharath

    Step 1: Adding new link in the masthead
    1. Rename the par file to your own namespace and import the PAR using eclipse
    2. To add your link - modify HeaderiView.jsp appropriately
    3. Build the PAR and export using Eclipse
    Step 2: Create an iView
    1. Content Administrator -> Portal Content -> Select the folder in which you need to create the masthead iView. Right click on the selected folder and "Select New From PAR" -> iView
    2. Select the PAR file name created by you in Step 1 a
    3. Choose "default" in Portal Component Selection
    4. Provide the properties for the iView and save
    Step 3: Modify Portal Masthead
    1. Add the iView created in Step 2 to the Framework Page of your application
    2. Remove the existing Masthead iView from the framework page and add iView created in Step 2 in the framework page.
    3. Note that the position should be the same where the previous masthead is removed.
    Logoff and logon with the user who is assigned the framework page - you should be able to see the new masthead with links
    Incase you are changing the default framework page and default masthead ensure that you have a backup so that you can revert.

  • I'm creating an epk and I need to add a bio to the menu.  Can I import the text file or do I need to retype the bio somewhere?  What is the best way to proceed?

    I'm creating an epk and I need to add a bio to the menu.  Can I import the text file or do I need to retype the bio somewhere?  What is the best way to proceed?

    Electronic Press Kit.
    Usually in the form of video outtakes, movie trailers, cast and crew interviews. Basically, the stuff that gets bunged onto commercial DVDs as extras or ends up on late night TV "Making Of..." shows.
    To answer the OP, you want a button on the menu that leads to a still image, or series of them, set up as a slide show. You can copy/paste the text in DVD Studio and then add formatting via the Text menu. (Highlight the text and right click to access formatting controls). Or do it in a graphics application using the appropriate video image preset.

  • Need an add on that changes the tabs like pages of an book

    need an "add on" that changes the tabs like pages of an book. I had this years ago, but dont remember the name and how to find it. Thanks

    Maybe this extension or one of the others mentioned has that feature:
    Tab Utilities: https://addons.mozilla.org/firefox/addon/59961

  • Urgent -Need to Add new values for the LOV field in forms

    HI,
    I am customizing an existing form. In that i need to add some values for the LOV fied which can be used during run time.
    Please Can some one help me in doing this?
    Thanks
    Suresh P

    Go to Navigator and edit the LOV or create a new one.
    hope that helps!

  • Cannot see Transaction BP in sap menu path

    Hi gurus,
    Why is that i cannot see Transaction BP in sap menu in SAP CRM system?
    Do i need to configure this or if i am missing any information, please throw some light on this.
    Thanks to all,
    regards,
    Chakri.

    Hi,
    This is normal situation:
    Please read this note:
    Note 1400876 - BP transaction is not supported on SAP CRM
    As you can see in note 1118231,
    The SAPGui transactions are not supported any longer for business applications. So the transaction BP is not supported anymore.
    This means that if you have an error on BP transaction we are not going to give you support, because you should use the new CRM Web UI instead.
    Denis.

  • The Given Path Format is Not Supported in MenuI'ds of Add-on

    Hi Experts,
    Im working on Add-On with Visual Studio 2008 and Database Sqlserevr2008,BidSetup with version 2.1.Afetr Building the Addon and After Registering the Addon .My Screens are Not Gettin Opened all the Screens(Menus) are throwing the Error with The Given path format is not supported(Here,Im Using Xml Conversion)To the open the screen..How do i solve this problem..
    Help would be appreciated
    Regards,
    Vijay Kumar

    Hi ,
      Can you explain load xml coding so we can get actual problem

  • I can't add play framework on the system path

    I can't add play framework on the system path. Can you help me? I couldnt find anything on the web!

    That means that your tablet driver is not working correctly and telling Photoshop that it is available.

  • HOw to create a text file in the given path and delete it after the use?

    Hi all,
    I am trying to create a text file at the given path and delete the created file after the use.
    I am using following code.:
    import java.io.*;
    // write binary data as characters
    public class RanIO {
                                            public static void main(String f[])
                                                      // First illustrate append
                                                      String lineSep = "\n";
                                                      try {
                                                                     File temp= new File("C:/Ash","cute.txt");
                                                      boolean ch=temp.createNewFile();
                                                      if(ch)
                                                           System.out.println("file created");
                                                      else
                                                      System.out.println("file Not created");
                                                      //writing to file
                                                 /*     PrintWriter p = new PrintWriter(new BufferedWriter(new FileWriter("cute.txt",true)));
                                                      p.print("Emp NO");
                                                      p.close();*/
                                                                // Open fileWriter in append mode
                                                                               FileWriter fos = new FileWriter(temp, true);
                                                                               BufferedWriter bw = new BufferedWriter(fos);
                                                                               PrintWriter pw = new PrintWriter(fos);
                                                                               double d=550;
                                                                          // lineSep = System.getProperty("line.separator");
                                                                          pw.print("Hello");
                                                                          //pw.print( lineSep );
                                                                          pw.print( d );
                                                                          pw.close();
                                  boolean det=temp.delete();
                                                 if(det)
                                                      System.out.println("File deleted");
                                                 else
                                                      System.out.println("File not deleted");
                                                 } catch (IOException ioe)
                                                                System.out.println( "Append IO error:" + ioe );
    My problem:
    1)
    I am not able to write to the file. I want to know, where i am going wrong.
    It is giving error message like
    "Canot resolve Symbol: temp,"
    But, FileWriter Constructor should accept a File type parameter.
    here temp is a file parameter.
    If i am not using file=new file();
    i can't delete the file after the use. i.e if i use
    PrintWriter p = new PrintWriter(new BufferedWriter(new FileWriter("cute.txt",true)));
    how can i delete cute.txt after the use?
    2)
    I am not able to write to the text file. file is created but, a blank file.
    "Hello" is not written into the text file.
    can anyone help me in this regard
    Thanks in advance
    Ashvini

    Thank you Ram,
    But, i want to create a text file in Append mode.
    for that i used
    FileWriter fos = new FileWriter(temp,true); But, it is not accepting FileWriter constructor in
    this format. if i use
    FileWriter fos = new
    FileWriter("c:/ash/cute.txt",true); it works fine. !!!!!Here's the javadoc
    public FileWriter(File file,
    boolean append)
    throws IOExceptionConstructs a FileWriter object given a File object. If the second argument is true, then bytes will be written to the end of the file rather than the beginning.
    Parameters:
    file - a File object to write to
    append - if true, then bytes will be written to the end of the file rather than the beginning
    Throws:
    IOException - if the file exists but is a directory rather than a regular file, does not exist but cannot be created, or cannot be opened for any other reason
    Since:
    1.4
    Are you using jdk.13 or lower ?
    >
    ONe more doubt, Does flush method deletes a file?
    if not, then i need to use
    File temp=new File("c:/ash/cute.txt");
    FileWriter fos = new FileWriter(temp,true); //which
    is again a problem
    if(temp.delete())
    out.println("File is deleted");
    }I don't know whether i am taking it wrong ! or
    anything wrong with my coding ! but, after creating
    and writing data into a text file. I must delete it
    as it contains confidential informations.
    Regards,
    Thanks.'flush' writes to a file immediately. Else you should explicitly call 'flush' to write contents from buffer to underlying source.
    javadoc again
    PrintWriter
    public PrintWriter(Writer out,
    boolean autoFlush)Create a new PrintWriter.
    Parameters:
    out - A character-output stream
    autoFlush - A boolean; if true, the println, printf, or format methods will flush the output buffer
    cheers,
    ram.
    Question; What do you gain by opening a file, writing to it and deleting it in the same program ?

  • Back ground job to download data into excel in the given path on sel-screen

    Hi Friends,
      I have 2 radion buttons on the selection screen 1. Online 2. Back ground.
    If i select the back ground radion button all program should run in back ground only, and finally the data should be downloaded to excel file on the given path in selection screen.
    Does any one have code for this.
    Thanks in advance
    Ajay
    Edited by: Ajay kumar on Aug 30, 2010 11:03 AM

    Hi Ajay,
    try this way..
    If sy-batch = 'X' . "background Job
    *   Submit report in background and creating spool
      SUBMIT (w_rname) USING SELECTION-SET p_var
          TO SAP-SPOOL WITHOUT SPOOL DYNPRO
          SPOOL PARAMETERS wa_pri_params AND RETURN.
      COMMIT WORK AND WAIT.
    *   To fetch the spool number from TSP01 table
      IF sy-subrc EQ 0.
        SELECT rqident
               FROM tsp01
               INTO p_spool
    *             UP TO 1 ROWS
               WHERE rq2name = wa_pri_params-plist.
        ENDSELECT.
      ENDIF.
    ENDIF.
    * Fetching Spool data into internal table
      CALL FUNCTION 'RSPO_RETURN_ABAP_SPOOLJOB'
        EXPORTING
          rqident              = p_spool
        TABLES
          buffer               = t_Excel_data.
    "Now format the Data into excel format or Comma seperated format and download to Appl server.
    Prabhudas

  • Getting no file found under the given path- VNX-Family Monitoring and Reporting

    Server- Windows-2012 R2
    Using v21 of setup-vnx-mr-v21-win64
    Using NAVCLI-Win-32-x86-en_US-7.33.6.0.96-1
    Installed VNX-Family Monitoring and Reporting w/o any issues. Set user permissions.getting 
    Attempting to add VNX5400
    I am using direct IP address: 10.X.X.X, Getting no file found under the given path error.
    Any suggestions?
    An using correct permissions
    Thanks
    This topic first appeared in the Spiceworks Community

    Server- Windows-2012 R2
    Using v21 of setup-vnx-mr-v21-win64
    Using NAVCLI-Win-32-x86-en_US-7.33.6.0.96-1
    Installed VNX-Family Monitoring and Reporting w/o any issues. Set user permissions.getting 
    Attempting to add VNX5400
    I am using direct IP address: 10.X.X.X, Getting no file found under the given path error.
    Any suggestions?
    An using correct permissions
    Thanks
    This topic first appeared in the Spiceworks Community

  • PCK installation : misssing  aii.properties file in the given path

    Hi all,
    i am doing installation for PCK from PCK installation guide, i want a aii.properties file in the given path  usr/sap/<sapsid>/JC00/j2ee/cluster/server0 but it's missing
    can anyone knows from where i can get this file .
    thanks

    You find it on the installation DVD. You can also use the aii.properties from an XI installation.
    Regards
    Stefan

  • I get the error "the given path's format is not supported report" when trying to edit a Report from SharePoint 2013 is SSDT 2012

    I downloaded a copy into my project and I get these errors when I try to Preview

    Have a look at these links please:
    Convert existing project the given path's format is not supported
    Unable
    to open Project File of SSRS 2008 into Visual Studio 2012
    sqldevelop.wordpress.com

  • What are the roles need to add for webservice user in SAP ECC 6.0

    Dear SDNS,
    Can you please help me to understand , what are the roles needed to add while creating a webservice user in ABAP STACK.
    Really appreciate your immediate help and response.
    Thanks and Regards.
    Suraj

    Hi Suraj,
    Please refer to this link & apply the role/s as per the requirements for the web service user:
    [http://help.sap.com/saphelp_nwpi71/helpdata/en/2b/07074155bcf26fe10000000a1550b0/content.htm]
    Best Regards, Trevor

Maybe you are looking for