Extend offline SAP library

Hi all,
under "Help->SAP Library" it is possible to start the offline SAP Library (it consists of many .chm files).
This exact location of our offline library has been customized with transaction SR13.
I would like to know if it is possible to extend the offline SAP library?
Greetings Fred.

ExtendScript is modular… so if you have a bunch of functions you use regular stick them in a library file *.jsxinc and include them…?

Similar Messages

  • Want to configure SAP Library

    Hi  Experts,
    I want to configure SAP Library  I had downloaded Library files too, one is of CHM and other one is of HTML. I wanted this file to be available in my SAP Library OFFLINE on server insted of online, so the persone who is not using internet in my LAN can also be able to access those files. So please help me to configure this CHM files.
    Regards,
    Prashant Chauhan

    hi prashanth,
    1. Create folder for the installation, e.g. G:\documentation.
    2. Start sapinst.exe from the installation master DVD or from ur dump.
    3. In SAPinst you have to give the language folder on the Documentation DVD,
    e.g. G:\ADM110_62A\Installation Media (DVDs)\SAP ECC 6.04\SAP ECC60
    SP14 Documentation\HTMLHELP\EN.
    4. Wait some minutes until the installation has finished and close SAPinst.
    5. Now you can open the SAP Library by double clicking on <local
    folder>\HTMLHELP\<Language>\00000001.chm.
    this might help you
    thanks and regards,
    santosh.

  • SAP Library setup

    Hi Everybody,
    I want to install the latest SAP Library in my laptop(personal).
    Please help me to find the information regarding the installation file of the SAP Library documentation which contains the documentation about the NW.
    Thank you very much.
    Kind regards,
    Ramesh.

    hi,
    if you want the actual help sources among the transactions (context sensetive)
    you have to make:
    call transaction SR13:
    switch to tab PlainHTMLHTTP:
    for online access:
    make entries like:
    docu_en - WN32 - IWBHELP - help.sap.com - saphelp_nw2004s/helpdata - EN - default=yes
    for offline access:
    change help.sap.com - saphelp_nw2004s/helpdata
    to to the corresponding path on your laptop:

  • How can I configure SAP Library

    Dear Experts,
    I would like to configure SAP Library OFFLINE on my server can somebody guide me step-by-step.
    Regards,
    Prashant Chauhan

    > Hi Reiner,
    > Thank you very much for response, this is helpful
    > information.
    If you consider an answer as helpfull, please mark it with the button on the left side :-).
    > My options are pretty much limited,
    > I can't use NTLM since, AIX will not accept trust
    > -- NTLM Auth will not work with AIX
    > -- Kerberos auth have to have third party tool like
    > CyberSafe for SNC trust relationship.
    As I wrote, you can use any SNC provider. Especially Secude would be interesting, as it is available on all platforms.
    > I planning to try using SSO as mentioned in "Enabling
    > Single Sign-On for ASP.NET Applications in Enterprise
    > Portal 6"
    > Is this approach works with EP 5.0?
    This is a completely different approach: In the stuff I was writing to you before I was assuming that IIS would do the authentication. The other approach is that SAP Portal does it. This also works - EP 5.0 should be fine - but it works completely different. E.g. you doesn't need a trusted connection for SSO with MYSAPSSO2 ticket.
    > If any one has "sapsecu.dll" please send me at
    > [email protected] with same size as stated in
    > this document.
    This DLL is not allowed to be exported into some countries because it contains strong cryptography. You usually get it via your local SAP subsiduary.
    > My SSO ticket did not get created after following
    > steps in document, I am suspecting either sapsecu.dll
    > or veryfy.pse is wrong?
    Did you find a MYSAPSSO2 cookie in the request?

  • Is it permissable to extend an SAP-provided table index?

    (Please note I realize this might not be the best forum for this post; I did look at ABAP development, SAP on Oracle, and a few others, but given some other threads, it seemed like this might be the best place for it.  Apologies if not).
    We have a very large table (GMIA), and I noticed that two customer-created indexes can essentially be combined into one because the first index is RGRANT_NBR plus fields A and B, and the second index is RGRANT_NBR plus fields A, B, C, D, and E.  So I might as well get rid of the first index and just keep the second one having RGRANT_NBR plus fields A through E.
    However, I noticed that SAP-provided index 4 contains simply one field - RGRANT_NBR.  So ideally, I could just add fields A, B, C, D, and E to index 4, then I could get rid of my second customer-created index.
    Question:  Is it permissable to extend an SAP-provided index like this?  As a developer, I'm not in the modifying SAP objects business, but this is the first time I've been presented this situation with a table index.  Given that our GMIA table has MILLIONS of records in it, getting rid of another customer-created index completely might be a great opportunity.
    Thoughts?
    Dave

    I really don't have a requirement for this.  I'm a developer, and I've noticed some of our biggest timeout issues concern programs that hit table GMIA.  So I thought I'd take a look at GMIA and our indexes to learn more about it via SE11 and DB02.
    In our Production environment, we have over 88 million records in this table for a table size of 38.23 GB.  Aside from the 6 SAP-provided indexes, 8 customer indexes have been created by others over time.  It was in looking at these indexes that I noticed our 8th customer index, ZS8, is essentially the same 3 fields as ZS3, plus a few more fields.  Ideally, ZS8 should NOT have been created, and ZS3 should have simply been extended with the additional fields.
    It was suggested to me in another thread a long while back that I could potentially get rid of ZS3 as well and just make SAP index 4 look like ZS8 because SAP index 4 is just indexed by Grant Number (RGRANT_NBR).  ZS8's first index field is Grant Number followed by 5 or 6 additional fields.  That's why I was wondering if it was even a "thing" or a possibility to extend an SAP index, but customizing an SAP component makes Dave a very, VERY nervous boy.
    Basically, I'm alarmed at the number of records in the table and the number of indexes we have.  There's no archiving strategy here, so I probably can't do anything about the number of records in GMIA, which go back to 2006 when we first went live with SAP.  But I can clearly get rid of one customer-created index (ZS3).  And if I can deactivate SAP index 4, I would assume the system would then automatically use ZS8 since the first field is Grant Number for situations where it would have used SAP index 4.
    So that's the background here.  Honestly, I don't know how much improvement these things will make, but getting rid of ZS3 will save 5 GB of space, and presumably "deactivating" SAP index 4 would save almost 5 GB as well.  I'm assuming we might see some negligible performance gains on our table operations involving GMIA, but it's still a beast with a large number of indexes, so I don't know.
    I'm really, really interested in hearing from others' thoughts and recommendations -- your input is MOST welcome here!
    Dave

  • How to import the SAP library into the XI / PI

    Dear All
    Thank you for your help and support
    I am not able to get any help from the Help Menu. I think SAP library is not installed in my system
    Is there any way to install the SAP library.. or does anyone has link to download the SAP library and install in my system
    Regards
    Blue

    Can i download the sap xi library to my pc
    refer that thread

  • SAP Library Download.  Is it possible...??/

    Hi all,
    Is it possible that I can download SAP Library from internet and study LSMW from that....???
    Please give me some links if its possible.  I have internet access at work and I dont have internet access at my home orelse I would use help.sap.com.
    Help me!!!!!!
    Thanks,
       -Ken

    You could order it from the SAP shop.  But then it would cost you some money.
    https://pgwshop.sap-ag.de/scripts/wgate/ww20/!?theme=66&okcode=start&zzkunnr=1040875&selected_area=1&ostore=doku02en&language=en&login=ITS-ww20-01
    Regards,
    Rich Heilman

  • 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.

  • Error when I click on Help -- SAP Library

    Hi guys,
    When I click on Help --> SAP Library or Help --> Application Help or Help --> Glossary
    I get an error message as follow:
    Error in SAP HTML-HELP (SHH.exe)
    Could not find file
    "L:\Data\Saphelp\htmlhelp\HELPDATAR347x200
    NE\e18e5134\1a06084d\e11000000\9b38f83b\frameset.chm
    For details please check the entries in the files SAPDOCCD.LOG in the windows directory.
    SO how to solve this problem...
    And is there a way to change the path in which the system look to when i click SAP Library from the path shown above (L:\ Data\....) to another path??
    Please I need your help
    Thanks & Regards

    Hi,
    Are the html help files installed on the "L:\DATA\..." drive ? and are the help files installed in language "NL" (Dutch) ?
    You can control the path where to look for the files in 2 ways (as i remember):
    1) by customizing the SAPDOCCD.INI file on your local workstation (if exists). (User specific)
    2) by customizing in transaction SR13 within your R/3. (System specific)
    But in the SAPDOCCD.LOG file you should be able to see how the location is found, and from where.
    Every thing however (including basic trouble shooting) is described in SAP's document "Installing the SAP Library" or something like this....
    I hope this helps...
    Regards
    Rolf

  • Problems for display SAP Library on SAP Menu.

    Hi SAP Gurus, I have I problem with SAP Library:
    I take the following evaluation path:
    Menu SAP - Help - SAP Library
    and when a click on this option it appears the following msg:
    Error in SAP HTML-Help (SHH.EXE)
    Please install /update Microsoft HTML-Help. Using unsopported versions may cause problems in help display. For details please check the entries in the file SAPDOCCD.LOG in hw windows directory.
    Can Anybody help me with this issue?
    Best Regards to All.

    Hi,
    Same problem here since we upgraded to Sapgui 7.10.
    Any solution?
    Thanks,
    Jon

  • SAP Library

    Hello guys,
    Is it true that there is some SAP books and papers from SAP Library very intersting to read to set up easly for example the different infoproviders and extractor from SD, CRM for BW
    It seems that the books deals with how to and where to use the several extractors, about the Business Content ..by Domaine

    The Best Practice are usefull when my need match with existing scenario. but always I can not find any help. So I was wondering if any book exists with maximum details about each Domaine
    if we are talking about MM or SD implementation, I think it is better to have some book talking about the existing infoproviders and extractors for this matter.
    the best practice for Logistiques are 5 scenario, it is not enough
    Thanks for your replies

  • Printing SAP Library document on a paper

    Hi,
    I'd like to print out the document "SAP Smart Forms (BC-SRV-SSF)" from SAP Library, because I just don't want to read the whole document on a screen.
    When I right-click the node "SAP Smart Forms (BC-SRV-SSF)" and select Print target, my browser prints the first page only. I just cannot print the whole document page by page, because printing would take several hours.
    Is it possible to print this whole document at all? Or, is there any way to get the document on a paper?
    Here is the document itself: http://help.sap.com/saphelp_470/helpdata/en/a9/de6838abce021ae10000009b38f842/frameset.htm
    Thanks in advance for your help.
    Regards,
    Jarmo Tuominen

    Hi
    You could download the print file from help.sap.com, this is the link:
    http://help.sap.com/printdocu/core/Print46c/en/Data/htm/english.htm
    Here go to Basis Components/Basis Services-Comunication Interfaces/SAP SmartForms
    The file is in PDF format.
    Max
    Message was edited by: max bianchi

  • Sap library help

    Hi,
       To install sap library help on my development server.my development server on linux and maxdb.
    how i have to set the path.
    thanku

    Hello,
    You can put the help files on a windows server or a windows system on the same network and configure the online help documentation as shown below:
    In Transaction SR13
    a) Go to the Tab "HTMLHELPFILE"
    b) Click the "New Entries" Button
    c) Type the following input in the respective fields as given below.
    variant: SAPHELP
    Platform:
    : WN32
    Area: IWBHELP
    Path:
    SERVER_NAME\Software\SAPHelp\HTMLHELP\HELPDATA
    Language: EN
    Default: Click the check Button
    Then click "SAVE" Button . This will prompt for change request which you can
    transport it to Quality and Production System.
    Hope this helps..
    Regards,
    Jazz

  • SAP Library 4.7 in iSeries

    Dear Gurus,
    Can you post some documentations on how to install the SAP Library in iSeries? We are version SAP R/3 4.7 and running on V5R4 iSeries. i can't seem to find procedures on it.
    Thanks in advance!

    Hi Francis,
    yes for sure, it will work on i5 as well
    But, it is NOT service.sap.com, it is just help.sap .com as follows:
    - SR13: Activation Online Help via Internet help.sap.com
        "PlainHtmlHttp"
        Variante   Plattform  Bereich        Server            Pfad                              Sprache  Default
        help32en   WN32       IWBHELP  help.sap.com  saphelp_47x200/helpdata  EN        yes
    It is totally eazy and works great ))
    Regards
    Volker Gueldenpfennig, consolut international ag
    http://www.consolut.de - http://www.4soi.de - http://www.easymarketplace.de

  • 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

Maybe you are looking for

  • Cost of goods sold report

    Hi all, Is there any standard report for Cost of goods sold by production order?Please let me know how to see cogs report by production order. Let me know how to calculate this cogs . Thanks, Sai. Edited by: fico sap on Jul 11, 2008 1:42 PM

  • Multiple schedule line and reschedule for product selection

    Hi, Is it possible to mainatine multiple sechedule line for sales order where product selection is active Let me explain the problem in detail. We are using product selection functionality while creating sales order. Say for example in VB11 transacti

  • V4.1 "You cannot perform this action in this region of the page" Bug?

    I am receiving an "You cannot perform this action in this region of the page" error when I try to add a link to an image. And yes I am in an editable region. The weird thing is, for the images that already have links, I can edit them successfully, bu

  • Select...for update and close()

    I am seeing unexpected behaviour when working with select for update, and I hope to get some clarification about it. I have RTFM and checked out any online information I could find, but didn't see too much about row level locks. See below for the pro

  • Java API for SOAP Messages

    Hi I need Java library for dealing with SOAP messages (e.g., serializing, deserializing, etc.). I don't actually need a complete server, only a library. Is SAAJ, http://java.sun.com/webservices/saaj/index.jsp, the right choice? Or JAXM, http://java.s