Navigation path in SAP

Hi,
from easy access or SPRO screen how can we get the navigation path of a Transaction? like
Logistics u2192 Logistics Execution u2192
Internal Whse Processes u2192 Bins and Stock u2192 Display u2192 Total Stock per Material
Is there any way to get the path directly which will be helpful in documentation

Hi
I hope I GOT YOUR QUESTION  correctly.
U want to find out the path which u dont no whr it is exactly..
If u want to find out the spro path from the field say u r in some screen say example
XK01 - Vendor Creation  - Acct Group Field n u want to know the spro path for the same Just press F1 from the field n see the next pop up window.
Thr u can find a icon called customizing.. just click on to that then ... enter the project name or click on with out project
It will guide u to goto the spro path from thr u can choose in which broad area it was say "purchasing" or "Fina Acct" which u like to find or modify the spro settings
Regards
Ram

Similar Messages

  • Want to remove the Navigation path been displayed in Address bar

    Hi All,
    I am facing a problem with the url path displayed in the address bar of browser. Whenever i select a tab in TLN the url path changes. Normally it has to be like http://<host name>: <port no>/ portal but for me it is coming http://<hoatname>/<port no>/portal ? NavigationTarget=navurl://<somestring>. Can anyone tell me why it is happening so and how will i get rid of this. I dont want the navigation path to be displayed in the address bar.
    Thanks,
    Nishant Singh

    Navigation method does not depend on image path.
    There are two standard TLN iView in portal (I do not count one from AJAX Framework Page):
    1) Top-Level Navigation is the default one and based on portal component com.sap.portal.navigation.toplevel.default and consumes EPCM API.
    2) Light Top-Level Navigation is based on portal component com.sap.portal.navigation.lighttoplevel.LightTopLevelNavigation and uses navigation method by URL.
    I have used a image as background of the LTLN
    Whatever you do with the Light TLN in the area of customizing its style, it will always remains Light Top-Level Navigation with navigation method by URL.
    So the answer to your question is do modify com.sap.portal.navigation.toplevel.par instead of  com.sap.portal.navigation.lighttoplevel.par.
    Best regards,
    Aliaksandr Zhukau
    Edited by: Aliaksandr Zhukau on Aug 23, 2010 2:23 PM

  • What is a  Logical and Physical file path in sap?

    what is a  Logical and Physical file path in sap?

    Hi,
    Physical file is what you see from the OS level.
    Logical file is what ABAP code can call certain functions to read/write.
    Transaction FILE would link them together. Typically the logical path ends with "<FILENAME>", and the logical file refers to the logical path.
    To extract the physical path from the logical path name
    DATA: lf_mandt TYPE sy-mandt,
            lf_opsys TYPE sy-opsys.
      lf_mandt = sy-mandt.
      lf_opsys = sy-opsys.
    To extract the physical path from the logical path name
      CALL FUNCTION 'FILE_GET_NAME'
        EXPORTING
          client           = lf_mandt
          logical_filename = p_unix
          operating_system = lf_opsys
        IMPORTING
          file_name        = gwa_input
        EXCEPTIONS
          file_not_found   = 1
          OTHERS           = 2.
      IF sy-subrc EQ 0.
      Concatenating the physical path and the input unix file name
        CONCATENATE gwa_input p_file INTO gf_file .
      ENDIF.
    Reward if helpful.
    Regards,
    Ramya

  • Insert a Navigation Path

    We want a short navigator on each page which shows the path. It should be possible to 'go back' level by level.
    (something like the Oracle9iAS Portal Navigator - Path: Page Groups > Corporate Pages > Pages).
    Is there something like this 'predefined' or do we have to build that from scratch (are there any samples around).
    Thanks a lot for helping
    Markus

    Which version of portal are you using?
    If you are using V2 then you have an item called Page Path just add this item in a page it will show you the path

  • Create Navigation path in IDT4.0 and how to use these navigation paths in Webi report

    Hi All, I want to know how to create navigation path in universe? I am using IDT BO4.0 SP4 and relational connection and want to create navigation path. I would like to know how to use this navigation path in Webi report? If I create a webi report where can I see my navigation paths and how to use it. If you can give any document or link which expalins this whole process, that would be great. Thanks,

    HI REMI ,
    1. ANSWER TO YOUR 1st QUESTION i.e. HOW TO CREATE A NAVIGATIONAL PATH :
        IN IDT 4.0  , YOU WILL FIND A NAVIGATIONAL PATH IN BOTTOM WHEN YOU WILL OPEN YOUR      BUSINESS LAYER , THERE YOU CAN CLICK CUSTOM NAVIGATION PATH -> THEN CLICK AT      ADD A NAVIGATIOAL PATH BUTTON->THEN GIVE NAME NAVIGATIONAL PATH NAME->THEN ADD THE OBJECTS UNDER YOUR NAVIGATIONAL PATH IN A HIERARCHICAL SEQUENCE .     FOR EX :     COUNTRY->STATE->CITY . AND YOUR CUSTOM NAVIGATIONAL PATH IS     CREATED.
    2. ANSWER TO YOUR SECOND QUESTION WHAT IS THE USE OF NAVIGATIONAL PATH IN WEBI REPORT :
    NAVIGATIONAL PATH HELPS YOU TO PERFORM DRILL DOWN ON YOUR DIMENSION OBJECTS , FOR EX : LET 'S SAY YOU CREATED A NAVIGATIONAL PATH- REGION SALES  : Containing COUNTRY->STATE->SALES. THIS WILL HELP YOU TO DRILL DOWN IN YOUR WEBI REPORT AS SHOWN BELOW :
    COUNTRY                      SALES
    INDIA                             $1000000
    (after clicking INDIA you will get below structure in your Report)
    STATE                           SALES
    DELHI                             $600000
    ANDRA-PRADESH          $200000
    MAHARASHTRA             $200000
    (after clicking MAHARASHTRA you will get below structure in your Report)
    CITY                              SALES
    MUMBAI                         $150000
    NAGPUR                        $  50000  
    ACTUALLY , DRILL - DOWN AS THE NAME SOUND HELP TO DRILL THE DIMENSION TILL ROOT LEVEL & SEE THE MEASURES VALUES ASSOCIATED WITH THOSE VALUES LEVELS.
    1ST LEVEL WILL ALWAYS CONTAIN THE SUM OF THE MEASURE OBJECTS
    CHEERS ,
    KAPIL

  • How to display the navigation path in the masthead.

    hi,
       Requriement is to display the navigation path in the masthead.
       how to achieve it.
    regards,
    Shanthakumar.

    Hi,
    I think you want to show the bread crumb in your masthead to show the path to the actual navigation node.
    This functionality already exists in page title bar iview you need to just enable the options in the page title bar iview in your active framework page.
    If you want to have this Functionality in your masthead, just check the codes of page title bar iview and do similar coding in your masthead.
    NavigationEventsHelperService has alot of helper methos which will give you the currently clicked navigation path nodes and more. So also check them.
    NavigationEventsHelperService service =
                    (NavigationEventsHelperService) PortalRuntime.getRuntimeResources().getService(
                        NavigationEventsHelperService.KEY);
                NavigationNodes navNodes =
                    (NavigationNodes) service.getNavNodesListForPath(request, INavigationConstants.NAVIGATION_CONTEXT_ATTR);
    Regards,
    Praveen Gudapati

  • Unc path in SAP XI

    How we can develope an UNC Path in SAP XI?
    Try to Provide usefull links and code, if possible.

    hi,
    You can use following java class to create OS independant path,
    http://java.sun.com/j2se/1.5.0/docs/api/java/io/File.html
    regards,
    sachin.

  • Navigation Paths in 4.0

    BO Enterprise 4.1, SP2, Patch 8
    Newly created Navigation Paths are not registering. 
    I created a report with 2 navigation paths (Date and Sales).  Everything was performing correctly in WEBI.  I added a 3rd Navigation Path (Location) and moved one of the elements from the Sales Path to the new Location Path.
    The report is still performing as if the new Path had not been created and the moved element were still in its original path.
    I have tried in both Rich Client and Launchpad, closed and reopened the report, even restarted the services.
    Does anyone know why this could be happening?

    Do you mean Firefox > History?
    Press F10 or tap the Alt key to bring up the "Menu Bar" temporarily.
    Go to "View > Toolbars" and check-mark "Menu Bar" with a click if you want to make that permanent

  • ELoad throwing error - Failed to find navigation path

    Hi,
    I have a script that runs fine in eTester but fails in eLoad with error - Failed to find navigation path when it tries to click on a dynamic link on a page. I think it records the text of the link based on what account I have searched on. If I iterate through my records in the data bank, the script runs just fine in eTester. However, it fails with the "Failed to find navigation path" error in eLoad. Any ideas?
    Thanks.

    Are you able to build the regular expression without the company data?
    For example if my html had this in it:
    <INPUT type="text" id=ticker name=ticker value="TER">
    and I want to extract TER to use somewhere else, I would create a custom variable with this regular expression:
    <INPUT type="text" id=ticker name=ticker value="(.+?)">
    I would have to make the regular expression smaller if the ticker was in there. For example if the html was
    <INPUT type="text" id=ticker name=ticker val= "Teradyne" value="TER">
    I would have to make the regular expression:
    <INPUT type="text" id=ticker name=ticker val=".+?" value="(.+?)">
    -GateCity_QA

  • Career Path with SAP

    Hi!  I am going to start SAP Foundation course from Denmark. I did MS-Entrepreneurship and SME Management and MSc. E-Commerce. I feel little difficult to track my career path with SAP. Any Suggestion that can help me.  Regards

    Hi Asif,
    Given your educational background, SAP CRM(Customer Relationship Mgmt) & SAP SRM will be a good choice for you to pursue your career in SAP.
    Please check out blogs in this community site to have a detailed formal knowledge on these modules.
    Regards,
    Gopal

  • Differences in Data Source Navigation Path

    Can anyone tell me why some instances/implementations of WebLogic have different navigation paths to Data Sources? I've seen the following:
    Example 1: Domain Structure > Services > Data Sources (Console version 12.1.1.0)
    Example 2: Domain Structure > JDBC > Data Sources (Console version 10.3.3.0)
    I thought I had seen the path Domain Structure > Services > Data Sources in 10.3.3.0! Does anyone know if these differences are due to versions of WebLogic or whether they are due to different installation options, preferences, or something else?
    Edited by: user12702338 on Mar 19, 2013 1:16 PM

    Hi,
    Difference seen in path are due to versions, no issue with configuration/installations.
    Going back there were changes made for JDBC path between versions 8.1 and 9.2 also.
    Thanks,
    Ranjan

  • How find path in SAP menu

    hi experts,
    i have TC ,how find the path in SAP menu.
    thanks.

    Hi..
    Tcode:   SEARCH_SAP_MENU
    will give the Path of any Transaction.
    <b>reward if Helpful</b>

  • Dimension Library - Security on Dimension member - navigation path please?

    Hi,
    I have been going round in ever decreasing circles trying to find the exact navigation path to ADD a new member such that users who are members of a group can see it from within Dimension Library... specifically my Account dimension has a new top level member.
    Hyperion Planning 11.1.2.0.83, can anyone enlighten me as to the precise key clicks please, the manuals / forums are not helping on this.
    thanks,
    Robert.

    Hi John,
    apologies if I do not make sense... let me explain.
    I have created a new account in the shared library and shared this with the planning application to 'hang' a whole hierarchy off which I import via the interface tables.
    This all works fine when I am logged in as Administrator, but the users do not see the new member or any of its children, so I am assuming that this is a security matter.
    Now the functional security is configured via shared services, but I had thought that Dimension / Account / Member security is configured via the dimension library - am I looking in the wrong place?
    thanks for your time,
    Robert.

  • Create a Custom Navigation Path / Custom Hierarchy in IDT

    Hi,
    I have a Bex query and hierarchy built on Navigational attributes (In other words Flat Hierarchy) but my users dont like the way hierarchy is set up when we execute the report. Bex query is built on MP. For example, In the Bex query designer I can see my Product dimension and in that dimension I can see various characteristics / nNav attributes which are used to display flat hierarchy in the report when executed.
    I know we can customize the hierarchy in IDT as a custom navigation path.
    My question is that Is it possible to use Bex query as a source for universe in IDT and then achieve this customize hierarchy objective OR Can I directly use the Bex query for Webi interface and still customize the hierarchy like Custom Navigation path.
    Can I see my Navigational attributes of Bex query in the universe (IDT) OR Webi as dimension so I can use them for custom navigation path.
    We are using BOBJ 4.1 SP 1
    Thank you
    NI

    Hi,
    you can build a Universe on a BEx Query to leverage the OLAP functionalities. You can create a relational Universe on top of a BEx Query but this is not really recommended.
    I would highly recommended you connect WebI directly to your BEx Query using the BICS interface. With the BICS interface we support more BEx Elements as via the relational Universe.
    Regards
    -Seb.

  • Finding Peoplesoft Navigation Path by component or page name

    Hi,
    I wanted to know navigation path by component name /page name. I did some Google and found that we can get this in two approaches
    Find Object navigation' is the new content reference available to do this. You can find this under the navigation 'Enterprise Components -> Find Object Navigation'.
    It is also available in the navigation: Set Up HRMS > System Administration > Utilities > Portal Navigation Path
    We are using HCM 9.0 and Tools 8.49. Unfortunately there is content reference in Enterprise component as Find Object Navigation and in Utilities (Portal Navigation Path) too.
    Can anybody share his/her experience how to get to navigation path apart from running SQL Query?
    Thanks

    If verity is setup you can build the PORTAL_INDEX which will make the portal registry searchable. This will create a search index on your process scheduler, if it's not on the same server as the application server you'll need to copy it over. If you don't have SQL access, you may not have the ability to get this working either if everything wasn't already setup for you. I'm sure a google search on this will yield results in the blogs if you need more info but here's a link to the PeopleBooks 8.49 reference, http://docs.oracle.com/cd/E13292_01/pt849pbr0/eng/psbooks/tprt/htm/tprt06.htm#g037ee99c9453fb39_ef90c_10c791ddc07_2a8 and an example of what it provides. Other option I guess would be to post your component/page name assuming it's not custom and someone else may look up the navigation for you.
    >
    Search Results for 1099
    1
    Withhold 1099 Report Job
    Withhold 1099 Report Post / 1099 Report / 1099 Copy B
    Main Menu>Vendors>1099/Global Withholding>1099 Reports>Withhold 1099 Report Job
    2
    Withhold 1099 Report Post
    Populate table used to create 1099 reports.
    Main Menu>Portal Objects>Navigation Collections>Accounts Payable Center>1099>1099 Reports>Withhold 1099 Report Post     
    3
    Withhold 1099 Report
    Print year-end 1099 report to be sent to the IRS
    Main Menu>Portal Objects>Navigation Collections>Accounts Payable Center>1099>1099 Reports>Withhold 1099 Report     
    4
    1099 to Send Detail
    >
    Edited by: RCC
    Link wasn't working

Maybe you are looking for

  • Downloaded iTunes but Windows cannot open file

    I am on my shiny new Toshiba notebook and I cannot open the iTunes program I just downloaded. When I try to open and run it I get a Windows message that it needs to know what program created it. How do I open a .pf file? I never had this problem on m

  • Timestamp to readable date

    hi, just a quickie. how do i take the Date getTime() timestamp number and produce a viewable date i assume i use SimpleDateFormat, but is there any examples of it of how to do what i want. so i have stored in a variable the timestamp (e.g. 1202343445

  • "Internal disk space low" warning question

    Last night I got the blinking amber light with the warning that Time Capsule's "Internal disk space is low". My hard drive is 1TB and has 375 GB of remaining space. My time capsule is 1TB and is used only for backing up my computer. How do I remedy t

  • BR0973W Database operation alert in DB13 - XI Production

    Dear All I am getting following error on DB13 on our XI Prd system..i serch ove the web & SDN but couldnt get any valid reason for this ..can some one assist me in resolving this warning .. "BR0973W Database operation alert - level: WARNING, operatio

  • Help with the horizontal mask tool ,please?

    I am still using the trial version of PSE 8.  I have read the help section on creating & using the type mask tool.  I also looked at the creating type mask tutorial.  Hoewever, it does not work for me.  I want to use a photo (like the zebra stripes i