SAP Library: TreeMenu is not defined

when i start the sap library (link: http://help.sap.com/saphelp_470/helpdata/DE/73/69f5c755bb11d189680000e829fbbd/frameset.htm), there is no menu on the left and i get a javascript-error: "TreeMenu is not defined".
does anybody know what to do?

Hi,
well, SAP does not want the customers to directly link the systems to the help.sap.com for application help.
Cause if they do they have to provide full time support (which I wouldn't do either if I were SAP).
The tree is the navigation in the left hand side of the screen, and probably the navigation information was not correct - and this resulted in a "tree menue not found" error. As you were using the SAP help directly and didn't use an installation of your own, there's nothing you could have done to solve the problem.
kind regards,
Carl

Similar Messages

  • Some of the datatypes used in the SAP BSP Tutorials are not defined

    Hello friends
    I am trying to learn BSP using the tutorials from SAP website.
    http://help.sap.com/saphelp_nw04/helpdata/en/1a/c5133a62983c0ae10000000a114084/frameset.htm
    I have checked and re-checked the steps and I have done everything correctly.
    During tutorial 2, it fails to activate giving erros like
    ERROR 1:
    ========
    Type AUTHOR_TAB doesn't exist. Following is the screen that gives the instruction of using it.
    http://help.sap.com/saphelp_nw04/helpdata/en/47/113ef6c77911d4ad320000e83539c3/content.htm
    ERROR 2:
    =======
    The Type 'BSBOOKLINE' is unknown. This is due to the code on page
    http://help.sap.com/saphelp_nw04/helpdata/en/47/113ef9c77911d4ad320000e83539c3/content.htm
    Since these types don't start with Z or Y, I can't even create on my own.
    Also, when the installation of IDES version was done, everything went perfectly fine without any issues and installation was 100 percent successful.
    Has anyone seen this problem before and is there any workaround for this?
    Your response will be highly appreciated.
    Thanks
    Ram

    I'm having the same problem.  I guess it may due to the missing of the Package SBOOKSHOP, please see thread Problem in creating BSP
    But I have no idea how to find or install this SBOOKSHOP Package....

  • Unable to Define SAP Library in SR13

    Hi gurus, I have installed ECC6 with EHP3 in windows servers 2003. All the front end users are using Windows XP. So i want to install the HTMLHelpFIle. So i have copied the Sap Library DVD into the server. Then i go to SR 13 and setup the variant. But when i try to access it's say the path was not found. Please Help me through on this. Thank you.
    Varian Detail in SR13. Please verify if i entered the variants correctly.
    Variant : Sap Library
    Platform :win32
    Area      :IWBHELP
    Path      :
    193.169.1.136\Sap_Library\HTMLHELP\EHP3
    Default : Enabled
    It seems the path is not correct but i dont know how to define a correct path. The sap Library file in copied into C drive.
    Program path =     C:\Program Files (x86)\SAP\FrontEnd\sapgui\HTMLHELP\SHH.EXE
    SHH version  =     7.1.0.5
    Command line =     "TYPE=5&SERVER=&PATH=
    193.169.1.136\Sap_Library\HTMLHELP\EHP4\EN&SYSTEM=ITD&_CLASS=IWB_STRUCT&_LOIO=&_SLOIO=e18e51341a06084de10000009b38f83b&LANGUAGE=EN&RELEASE=603&IWB_COUNTRY=&IWB_INDUSTRY=SEM-BW&_SCLASS=IWB_STRUCT&FRAME=X"
    Info:          --- Default settings from command line ---
    Info:          HelpType=HtmlHelpFile
    Info:          HtmlHelpFilePath=
    193.169.1.136\Sap_Library\HTMLHELP\EHP4\EN
    Info:          --- Contents of profile "C:/WINDOWS/sapdoccd.ini" ---
    Info:          Could not read profile "C:/WINDOWS/sapdoccd.ini"
    Info:          --- Contents of profile "C:/Program Files (x86)/SAP/FrontEnd/sapgui/sapdoccd.ini" ---
    Info:          Could not read profile "C:/Program Files (x86)/SAP/FrontEnd/sapgui/sapdoccd.ini"
    Info:          --- Contents of profile "C:/Program Files (x86)/SAP/FrontEnd/sapdoccd.ini" ---
    Info:          Could not read profile "C:/Program Files (x86)/SAP/FrontEnd/sapdoccd.ini"
    Warning:     Could not read any profile
    Info:          --- Starting HtmlHelp ---
    Info:          CHM file="
    193.169.1.136\Sap_Library\HTMLHELP\EHP4\EN\e18e5134\1a06084d\e1000000\9b38f83b\frameset.chm"
    Info:          HTM file=""
    Error:          Could not find file "
    193.169.1.136\Sap_Library\HTMLHELP\EHP4\EN\e18e5134\1a06084d\e1000000\9b38f83b\frameset.chm"

    Hi Gurus, Thanks for the reply. In my case i cannot configure the HTMLHELPFIle type. I have found a note related to that.The CHM file cannot be open through shared folder for some reason. Since there are users working on the server i dont want to restart or made any changes on the operating system. i decided to install and configure the PlainHTML file type and its works fine.
    Note 920997 - Help files (.chm) cannot be opened through Shared Folder
    So to resolve the problem i have installed the PlainHTML type and it's working fine.
    Thank you.

  • Shared library extended class Error #1065: Variable is not defined

    Right, bit of a complicated set-up  here. I've got a class structure which includes the View class:
    com.website.buttons.MyButton
    Then i've got a shared library swc called sharedassets.swc  that contains a MovieClip in the library that uses  'com.website.buttons.MyButton' as its 'Linkage Properties' base class,  extending with the following empty class:
    com.website.timeline.sharedassets.BackButton
    Then i've got a second  swc that  imports the BackButton mc into its own library as a shared library asset, and uses an instance of  it on the stage in a MovieClip of it's own called LinearNavBar.  LinearNavBar's Linkage Properties are thus:
    Class: com.website.timeline.sequence.LinearNavBar
    Base class: com.website.navigation.LinearNavbar
    Again, 'com.website.navigation.LinearNavbar' is an actual class in the code base, whilst 'com.website.timeline.sequence.LinearNavBar' does not exits (ie: its dynamically created by the swc at compile time). 'Automatically declare stage instances' is unchecked
    Over in the class structure in my  Flash Builder project, I've got another class
    com.website.navigation.Sequence
    Which instantiates a new version of  LinearNavBar and adds it to the stage:
    var navBar:Navbar = new LinearNavBar();
    addChild(navBar);
    At which point the following error is  shown:
    ReferenceError: Error #1065: Variable BackButton is not defined.
    It seems Flash Builder cannot find 'com.website.timeline.sharedassets.BackButton', even though BOTH compiled swcs are included as part of the projects.
    What gives, my friends? I am most heartily perplexed.

    I have on the permit debugging option but it says nothing but these errors
    ReferenceError: Error #1065: Variable Button is not defined.
    ReferenceError: Error #1065: Variable ComponentShim is not defined.
    ReferenceError: Error #1065: Variable LoaderProV3AS3 is not defined.

  • RFC destination not defined for SAP global trade services

    HI friends,
    I have created a delivery against a sales order. Maintained the storage location and the picking quantity for the item.
    Now trying to post the goods issue but system is giving short dump and error message says:
    "RFC destination is not defined for SAP global trade services"
    We are not using SAP global trade services module and no IDocs are involved in the process.
    Please help
    Thanks in advance
    Veer

    Hi Mohit,
    Thank you for replying.
    It was not an issue with RFC destination but to do with transfer of outbound delivery processes to SAP global trade services.
    As we were not using global trade services, we had to deactivate the transfer of data from SD application to global trade services.
    The settings are under IMG>SD>foreging trade>SAP global trade services-plug-in> control data transfer to SAP global trade services
    Deactivate all the activities.
    Now this issue has been resolved.
    Thank you again for replying.
    Regards
    Veer

  • "Limits not Defined " error while saving IT0008 in sap hr

    Hi Experts
    While trying to Hiring an employee, infotype0008 showing Limits not defined error and not allowing to save the record. I checked table V_T510 and V_T510N. All the limits defined in right way. Please check and advice. I attached copy of screen shot for your reference.
    Regards
    Prakash Bhave

    Hi Remi
    Thanks for your reply. As per your reply I followed procedure and it allowed me to save Basic Pay Infotype (0008)
    Thanks a ton.
    Regards
    Prakash Bhave

  • Selected Parent is not defined in CONSGROUP dimension ( SAP BPC 7.5 SP08)

    Helllo
    While updating the Dynamic Hierachy getting the below error.
    Selected Parent is not defined in CONSGROUP dimension
    Any Clues.
    my Consgroup dimension is below
    ID     EVDESCRIPTION     PARENT_GROUP     CURRENCY_TYPE     ENTITY     GROUP_CURRENCY     STORE_ENTITY     STORE_GROUP_CURR
    Thanking you in advance

    Hi,
    I think you have resolved this issue
    I am able to mapped all entity except 1 in DHE.
    I even updated ORG_INTCO as I_NONE.
    Still I am unable to mapped this entity with group entity as I am getting subject  error.
    Mine is sub-parent scenario, ie. the parent in question has 2 child which are properly mapped but linkage of this sub-parent to parent is not showing due to subject  error.
    Any thoughts.
    Regards,
    Paresh

  • Error in Jco Destination Create (MsgServerName is not defined).

    Hi,
    When I try to create a Metadata Jco Destination, the system show the message "MsgServerName is not defined" and cancel the operation.
    I can create Modeldata Jco Destination correctly. The problem is only on Metadata Jco Destination.
    Thanks.
    Ariel.

    Hi Alex,
    Please see the below link in which discussed the issue for "MsgServerName is not defined". 
    JCo Destinations: Message Server connection not defined
    /message/8658127#8658127 [original link is broken]
    Maintain JCO Destination, cannot set the server and logon group
    Also check the [System Landscape Directory Process and JCo Configuration|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0c1d495-048e-2b10-babd-924a136f56b5?quicklink=index&overridelayout=true]
    Hope it helps
    Regards,
    Arun

  • Cbs build portal application dc fail.  Build Plugin IS NOT DEFINED for this

    hi all
    I use NW7.0 ehp1,have portal and a nwdi.
    I create a track at nwdi . and develop a portal application .
    local build is ok . but when i check in .run a activitce.  dc is broken.
    log is -
    CBS Request Log - [  300/DEP_PESKM_D  ]
    Build number assigned: 314
    Change request state from QUEUED to PROCESSING
    REQUEST PROCESSING started at 2010-11-05 02:17:38.921 GMT
        ACTIVATION request in Build Space "DEP_PESKM_D" at Node ID: 13,975,650
         [id: 300; parentID: 0; type: 4]
         [options: NO OPTIONS]
        Waiting for access: 79 ms
        ===== Pre-Processing =====  started at 2010-11-05 02:17:39.000 GMT
            List of requested for activation activities:
                'deep.com_PESKM_1' compartment
                    tet
                        [ISN 111][created by YANLIANG at 2010-11-05 10:17:31.0][OID 6b2f604ae87c11df94ff000000d54062]
                There is 1 activity in compartment deep.com_PESKM_1
                1 activity will be processed by this request
            Analyze dependencies to predecessor activities... started at 2010-11-05 02:17:39.031 GMT
                Analyzing predecessors in compartment "deep.com_PESKM_1"
                    No dependencies to predecessor activities found.
            Analyze dependencies to predecessor activities... finished at 2010-11-05 02:17:39.046 GMT and took 15 ms
            Analyze versions... started at 2010-11-05 02:17:39.046 GMT
                List Active Versions Report: "HTTP/1.1 207 Multi-Status" finished at 2010-11-05 02:17:41.812 GMT and took 2 s 766 ms
                Synchronize metadata for [deep.com.cn/dc_logo_par] started at 2010-11-05 02:17:41.812 GMT
                    Verification of DL [ws/PESKM/deep.com_PESKM/dev/active/] finished at 2010-11-05 02:17:41.906 GMT and took 0 ms
                    Verification of cache (level 2: Comparison of attributes) finished at 2010-11-05 02:17:41.937 GMT and took 31 ms
                Synchronize metadata for [deep.com.cn/dc_logo_par] finished at 2010-11-05 02:17:41.937 GMT and took 125 ms
                < CHANGE > 'deep.com.cn/dc_logo_par' DC
            Analyze versions... finished at 2010-11-05 02:17:41.937 GMT and took 2 s 891 ms
            Analyze activities... started at 2010-11-05 02:17:41.937 GMT
                Loading component definitions
                1 component to be build in compartment "deep.com_PESKM_1"
            Analyze activities... finished at 2010-11-05 02:17:42.000 GMT and took 63 ms
            Calculate all combinations of components and variants to be built...
            Analyze request DC BV... started at 2010-11-05 02:17:42.109 GMT
                    'deep.com.cn/dc_logo_par' variant 'default'
                    'deep.com.cn/dc_logo_par' variant 'default' cannot be built. ACTIVATION will fail.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
            Analyze request DC BV... finished at 2010-11-05 02:17:42.140 GMT and took 31 ms
        ===== Pre-Processing =====  finished at 2010-11-05 02:17:42.187 GMT and took 3 s 187 ms
        Change request state from PROCESSING to FAILED
        Error! The following problem(s) occurred  during request processing:
        Error! The following error occurred during request processing:Activation failed due to component "deep.com.cn/dc_logo_par" variant "default". The component is BROKEN.
    REQUEST PROCESSING finished at 2010-11-05 02:17:42.187 GMT and took 3 s 266 ms
    No build logs available for the request.
    Edited by: yan liang on Nov 5, 2010 3:12 AM

    Hi Yan,
    please check the NWDI troubleshooting guide:
    http://wiki.sdn.sap.com/wiki/display/TechTSG/%28NWDI%29%28CBS%29Q0030
    --> Understanding Broken and Dirty DCs
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/30b7c94e-fc6b-2910-30b8-d34a7b51309e
    Did you import the dependent build plugins for the track in question?
    (tab "development" in the /devinf --> CMS webui --> Transport studio)
    See also the sap note: #1080927 - Creating CMS Tracks for Common Application Types (http://service.sap.com/sap/support/notes/1080927)
    Best Regards,
    Ervin

  • Transaction code to SAP Library

    Hi Experts,
    I need to define some user defined functions using BAdis, the help says follow the below path:
    To find out how to define individual functions using the BAdI, go to the SAP library and call up SAP NetWeaver -> Key Areas of SAP NetWeaver -> Information Integration -> Business Intelligence -> Data Warehousing -> Transformation -> Rule Type -> Transformation Library and Formula Builder -> Implement Own Functions .
    I couldn't find SAP library. Any help greatly appreicated. Thanks.
    Best Regards,
    Reddy.

    Hi Lars,
    It seems not all the planning function from SEM BPS are available in BW BPS. Please check the links below: -
    what is the difference between BW 3.5 BPS and SEM BPS 4.0
    BW- BPS and SEM- BPS
    SEM-BPS VS BW-BPS
    BCS Doc
    Regards,
    SK

  • Why would I get ReferenceError #1065: "Variable title is not defined."

    Well of course it's not defined.  It's a dynamic class, and strict mode compilation is turned off so that I don't have to declare the property to compile it.
    I've created a library item named "Page" with a single TextField instance named "title".
    Page's class is defined in an ActionScript file, and it's assigned to the library item in export for ActionScript.
    Page's ActionScript file defines the class as a "dynamic" class, so I should not be getting this runtime error.  I turned off strict mode compiling, since it seems to be designed to check the presense of property definitions at compile time for dynamic classes like MovieClip.
    public dynamic class Page extends MovieClip
        public function Page()
            super();
            var text:String = title.text; //title can be moused over in the debugger here and shows the correct value, but the flash player throws a runtime error when it tries to access it, but it shouldn't because this is a dynamic class.
    So why am I getting a runtime error for the field "title".  It makes no sense, because if I step to that line in the FlashDevelop debugger and hold the mouse over "title", it shows that it is in fact the instance of the TextField that I'm trying to access.  Yet the player throws an error when I actually try to access it.
    Is it a problem or limitation with the access style (i.e. would it work fine if I accessed it as "this.title" or "this["title"]"?

    Nevermind.  This was apparently a browser caching issue.   The Page base class is defined in the main interface swf, and is externally referenced through its swc in an external "lesson" file that declare a subclass of Page.  It was this custom subclass of Page which was throwing the error (basically the same as the simplified example I wrote for my post, where it simply tried to access "title" as a dynamic property of the Page).  What happened is the browser was caching an old version of the lesson file with the old definition of the class that was not declared as dynamic.  I had received the error before, then updated the class, then I was surprised to see the error persist.  It suddenly dawned on me that the browser was probably caching the old version, so I cleared the cache and it seems to work fine now.
    Actually, it is a problem after all.  I forgot I had updated it to use "this.title" syntax on the page I tested after clearing the cache, but the other pages that try to access title directly as "title" still throw the error.  So it seems to be some sort of quirk in how flash accesses properties of a dynamic class.  If you try to access them direclty, it must do so in a way that requires the property to be defined, but if you access it via "this.title" or this["title"], the it seems to resolve the property value without throwing the error.
    This sucks.  I was really trying to not have to write "this." for every property.  The entire display list is dynamically generated from some custom XML that allows me to call constructors and set complex type-safe properties, and during construction it was copying each item into a Dictionary by name.  This Dictionary was then assigned to the page class as "items", so I was accessing each display object as "item.name".  Then I got the brilliant idea of just making Page and its subclasses "dynamic" so that I could just add the DIctionary values on the Page instance itself.  I thought I would be able to access the dyamic properties just by their name such as "title", but lo and behold, Flash strikes again, and I have to use dot notation anyway.  What do you all think?  Any solutions?

  • Logical System is Not Defined in EBP...

    Hi SAP GURU's,
      Please do Accept My Thanks for Kind Help
      Rendered So far ..
      My issue is whie working wih Accoutn Assignment is EBP ,I Tried to Maintain Logical System ..But system  is throwing Error Massage Logical System is Not Defined in EBP..
      Where as it was Defined and Assigned to the Client
    in the Configuration ...
      The Same thing has been defined in R/3 also ...
      what Could be the Reason..?  ? ?
      Could Any Gentleman through Some light on this
      Suitable Points Assigned for the Right  Answer
       Thansk in Advance
       Adarsh

    Hi,
    Pl define the same logical system names in the Define Back end systems or in the Table
    bbp_backend_dest.
    Thanks & Regards,
    Nagarajan

  • Payment order are not defined for extended withholding  tax

    Hi Gurus,
    Would you please help me with the message below. It appears on F110 when I try to pay a vendor open item with extended withholding tax:
    Message FZ626 -Payment orders are not defined for extended withholding tax
    In my company payment orders are created in F110 for accounts payable, as we use another ERP system (Baan) to perform the local accounts payments, and now I've just activated Extended withholding tax functionality With accumulation (necessary in Brazil) but I get this error.
    Is it not possible to user payment order with extended withholding tax + accumulation? I find it hard to believe...
    I've tried to unflag the payment order only for the payment method I'm using in FBZP t.code, but then no payment order were created but instead a payment document were posted with the withholding tax accumulation, but this is not the way we are working, and nothing is sent to Baan
    any help is welcome

    The payment method "Y" the option "payment order only" was marked?
    For a withholding tax type with accumulation in a company code with extended withholding tax payment
    methods that create only payment orders can´t be used. Payment orders can only be created only if there are
    no tax types with accumulation involved in the paid items of the payment run.
    The functionality extended withholding tax works fine for Brazil
    however, you can´t use the payment order with this functionality.
    Please, review your customizing for payment method 'Y" in transaction
    FBZP.
    Best regards,
    Leonardo Vedovelli
    FI Support Engineer
    SAP Active Global Support

  • Data Source Z*** is not defined in the source system

    Hello All,
    I am facing a well known problem extracting data from R3 to the BI side. On both sides I've got SAP ALL.
    I created data source on R3 DEV side, tested it and it extracts data. I've replicated metadata on BI side and activated the data source. The problem starts once I create the info package as no data is availble in PSA.
    I went to extractor checker and tried to start the extraction and I could see the message: data source Z**** not defined in the source system.
    I tried to locate the data source through RSA5 and I cannot see that it is availble there.
    Can you please help and advise where the problem is?

    Hi Neb,
    It can be related to many issues, one of them can be RFC connection issue. Please check the link below :-
    Datasource xxx is not defined in the source system
    It might give you some of ideas. Also if possible can you tell what Datasource are you having problem with.
    Regards
    Sunny

  • Creating Sales Order- Item Category TAN is not defined.

    Hello all,
    I am working on Creating sales order for Global Bike Inc case. But when I enter the material and quantity number and click check mark it says "Item category TAN is not defined". Can some body help me how can we define TAN or why it is giving me that error.
    Thanks in advance.
    Sujan

    Hi SujanB,
    As your question is already answered. An indicator that defines the characteristics of a document item.
    For example, the item category controls the type and scope of:
    Pricing
    Billing
    Delivery
    Inventory posting
    Transfer of requirements
    Providing further deatils ;--
    01. How item category is determined :--
    Depending on the item category group that you apply & the sales doc type you are processing the system automatically proposes an item category in the document.
    1.sales document type (source: order type)
    2.item category group (source: material master)
    3.item category of the higher-level item (source: user defined)
    4.item category usage (The usage is defined by SAP and is hard coded in the programs)
    SPRO- IMG- SD- Sales- Sales Document- Sales Document Item- Assign Item Category (VOV4)
    Pls refer following link for furter details ;--
    general item category group
    item category usage  in item category determination
    http://help.sap.com/saphelp_46c/helpdata/en/dd/55fb13545a11d1a7020000e829fd11/content.htm
    http://www.slideshare.net/magnatraining/item-category
    Hope it helps....
    Thanks/Rajesh

Maybe you are looking for

  • HT1782 storage system fail or repair failed

    When I use the disk utility, I click on the first volume which reads ST9500325ASG, it gives me a message "storage system fail or repair failed". When I click on the disk below which reads Macintosh HD. It says the volume 2FE etc.....appears to be ok.

  • How to get the resulting XML as string

    Hello, I think my question is very simple but i'm new in this area. What i'm try to do is to parse a XML document with the DOM parser. Then i manipulate the DOM tree. After finishing the process i want to get the resulting XML document as an InputStr

  • Mail.app suddenly stops moving Junk mail

    I leave Mail.app running at home, because its spam filtering is the only thing that makes reading my mail on my iPhone bearable, since the iPhone does not have any spam capabilities of its own. But a couple of days ago, Mail.app just stopped moving m

  • Need query to determine current logged in user

    Because I see no way in sccm 2012 to determine if someone is currently logged into a domain joined computer.  Does anyone have a query or know of a way to get the current logged in user of a computer? I am surprised that SCCM does not show that infor

  • Parallel Approvals -- How to send Input to Data preparation process

    Hello, I have created a parallel process with using gateways to send a form through 8 concurrent approvals; the problem is that the form only gets updated with the formdata of the quickest completed route; so ultimately data is lost from some branche