Help other than SAP help to be integrated

Dear All,
Can you please help me regarding the following issues
1) My customer wants us to integrate a help other than SAP help or a help using RWD infopak. Is it possible?
2) We are planning to develop the help in a HTML format or something similar to it. Can anyone tell is it possible from a field in transaction to call a URL whre the help for that field will be displayed.
3) Any suggestions on how to develop the help and integrate??
Expecting a reply soon
Regards,
Sujith

you can place (install) the help files on any machine you want, at least it has a web server on it.
you can then specify the "Server Name" and "Path" in SR13 to this server (e.g. Server Name = mywebserver.mycompany.com:1080, Path = helpdata)
the clients open the associated program to the extension of the files (in case of .chm and .html it would be most likely the Internet Explorer)
kr, achim
check this link: https://websmp106.sap-ag.de/~sapdownload/011000358700002110712004E/SAPLibInstGuide_640_EN.pdf
Message was edited by: Achim Hauck

Similar Messages

  • Implementation Focus other than "SAP Cloud for Customer"?

    Hi all!
    Am just wondering if there had ever been other options other than "SAP Cloud for Customer" in Step 2 of the First Implementation project - where there other options in the past?
    Thanks!
    Jeffrey

    Yes, this started in Business ByDesign. 

  • WT SynchManager instl. on a different Server other than SAP/SQL Server.

    Hi,
    Is it possible to move/install WebTools SynchManager on a different server other than the SAP/SQL Server? Please let us know.
    Note: 
    1. We are aware of the recommendation:  u201CInstall the SynchManager on the SAP Business One server on which the DI API is installedu201D in the "Business One Web Tools SynchManager Guide.pdf".
    2. But, SAP/SQL Server at our Client is starving of RAM due to a high number of windows services/application trying to run at the same time (although the maximum amount of RAM possible under the current configuration is installed (4GB)).
    3. So, we are evaluating as to which of these application (WebTools being one of them) can be moved to a different server.
    Thanks and Regards,
    Kafil Shumon.

    Hi Kafil,
    You can put the synchmanager on a different server as  long as the DI API is installed and that server can access the B1 licensing server.

  • HANA DB install other than SAP Provided appliance--testing restore

    Hi All,
    We want to test HANA DB backup and restore procedures.Can we install HANA DB on any other hardware or OS pther than SAP provided appliance?
    Regards
    Purna

    Hi,
    HANA appliance is the hardware and software combination and that too buy from the authorized partners only. So, you can't test on the other hardwares.
    Regards,
    Neha Singla

  • Any Netweaver EP training in Chennai? Other than SAP or SIEMENS PLZ

    I am trying to find any training programme avalable in chennai on SAP Netweaver Enterprise Portal. If someone has any idea if other than SIEMENS or SAP doing this in chennai, please let me know.
    Thanks!
    Narayana Babu Reddyvari

    Hi Narayana,
    Apart from SAP & Siemens below is the SAP authorized training institute in Chennai:
    Aldea Infotech Private Limited
    1st Floor
    New no:28, Venkatakrishna Road
    Mandaveli
    Chennai � 600028
    Tamilnadu
    INDIA
    Tel: +91 44 45535000
    Mobile: +91 9952966888
    Contact Person: Chandru Muthukkaruppan
    E-mail: [email protected]
    Website: http://www.aldeainfotech.com
    Regards,
    Subhasha

  • Other than SAP RFC

    hi
    i have gone through the Documentation providing all necessary details about how to get connected to SAP RFC access through SAP Widget Foundation, however ,please tell me how to access other backends through coding or using tools in SAP Widget development tool
    Viswas

    Hi,
    for example to access MS Access on the computer, you can use COM (on Windows).
    Please check http://manual.widgets.yahoo.com/ in the section System DOM Reference / COM.
    Maybe you'll also find this link useful for accessing Microsoft Applications: http://support.microsoft.com/kb/222101
    Hope it helps,
    Ladislav

  • Notification of Work item via email other than SAP mail

    Hi folks!!
    I am new to workflow.
    We have implemented workflow for Purchase Orders and getting workflow notification into SBWP-Workplace.
    Now we want to send notification to the private e.mail address, for this I have already made setting through T.Code SO13....Automatic forwarding.
    But the workflow notification is only appearing in SAP-Workplace and is not appearing in private mail box.
    Kindly guide me if there is any other setting required for this
    Best regards

    In SO16 Tcode in the Mail Sys GRP tab you should select the radi button send to home adddress of the user. Please note that this address is the email address maintained in SU01d along with SAP User Id.
    Thanks
    Arghadip

  • Can we give  SAP ABAP CERTIFICATION exam from other than SAP TECHED

    Dear,
           I busy with my project if i won't get chance to attend the SAP TECHED can i  give SAP ABAP ASSOCIATE LEVEL CERTIFICATION in any other way . i possible please tell me fee and process to attend the exam .

    >
    Jurjen Heeck wrote:
    > Oh, and have your keyboard fixed. Your CAPS LOCK gets stuck everytime you type SAP
    >
    lol... laughing my guts out.
    pk

  • Experiences on JPA persistence providers other than standard SAP's

    Hi developers,
    in this thread I would like to gather experiences from all those who have tried using JPA persistence providers other than SAP standard implementation in productive environments
    It would be very interesting if you could share you experiences, for instance with regards to:
    - advantages of a specific implementation
    - disadvantages (if any)
    - new features available (e.g. Lazy support for Lob and single-value relationships)
    - ease of transport (did you manage to somehow use the java dictionary DCs or what?)
    - ease of build (e.g. EclipseLink requires additional build plugins to be developed)
    - ease of overall setup: how long did it take to set the DI stuff up (SLD SC creation/track creation/check-in/check-out/activate/transport/...)?
    thank you so much for sharing your experiences.
    Regards
    Vincenzo

    Hi Vincenco,
    yes, semantic IDs do not have a place in JPA. Semantic keys are needed, but not as IDs.
    Both SAP JPA and EclipseLink use @GenerationType.TABLE generation if you define @GenerationType.AUTO. ("AUTO" just means that the persistence provider "should pick an appropriate strategy for the particular database" (javadoc)
    Both TABLE and SEQUENCE are somewhat automatic.
    I guess the fact of lost-values is because the fetching of IDs is done in another transaction (probably for performance reasons, not to have the sequence table as a bottle neck).
    On Oracle, the combination of allocationSize on JPA side and INCREMENT BY / CACHE on Database side is as follows: allocationSize must be equal to INCREMENT BY, but JPA uses the intermediate numbers (which is not the case in normal (PL)SQL programming. There is no annotation-JPA-pendant to CACHE. But that JPA uses the intermediate numbers from memory may be considered as a JPA way of sequence caching (that may be further improved by Sequence CACHE for really big mass insers in one transaction).
    CACHE>1 will give you lost values even with allocationSize = Increment BY = 1.
    On the other hand, allocationSize=1 may give bad performance on mass inserts because the JPA provider must ask the database for every instance. allocationSize>1 (e.g. 20) is better but will again yield lost values. (But who cares with "long"?)
    There is one important issue with both automated value creation strategies - GeneratorType.TABLE and GeneratorType.SEQUENCE: The ID cannot be set by yourself on instantiation of an Entity object. JPA spec defines that the ID is set at the latest on EntityManager.flush or EntityManager.commit, which is sometimes too late if you have container managed transaction boundaries.
    But both SAP JPA and EclipseLink assure that the ID with Table and Sequence is set already after call EntityManager.persist(newObject). This improves a lot, but may be not enough.
    Example:
    @Entity(name="T_ORDER")
    public class Order {
         @OneToMany(targetEntity=OrderItem.class, mappedBy="order", cascade=CascadeType.ALL)
         private List<OrderItem> items = new ArrayList<OrderItem>();
         public void addItem (OrderItem item) {
              this.items.add(item);
              item.setOrder(this);
    @Entity(name="T_ORDERITEM")
    public class OrderItem {
         @ManyToOne(targetEntity = Order.class)
         private Order order;
    EntityManager em = emf.createEntityManager();
    em.getTransaction().begin();
    Order o = new Order();
    OrderItem i1 = new OrderItem();
    o.addItem(i1);
    em.persist(o);
    OrderItem i2 = new OrderItem();
    o.addItem(i2);
    At the end of this snippet, o and i1 have ID != null but i2 has ID==null. there is no way to "auto-persist" an object which gets into a relation to an already persisted object. i2 gets an ID!= null after flush or commit.
    This may be tricky if your business logic that adds items is "pojo" without acces to EntityManager or if you do not want to mess up your business logic with flushes.
    How to "broadcast" the  unique IDs of just inserted order items to the User Interface if they are not yet set in the last line of your SLSB?
    We switched to simple UUIDs that are generated on instanciation. long VARCHAR2s, but it works fine and is very common.
    Regards
    -Rolf

  • Read flat file form other than sapserver(not in sapser) in background mode

    Dear Friends,
    I want to upload data from flat file to sap in background mode.
    I know how to read file for application server in background mode, but my requirement is , i need to read the flat file data from other than sap server in backgound mode.
    please help me,
    Regards,
    prabhu

    hi
    you can do like this way.
    fist should get de directory file name.
      CALL FUNCTION 'RZL_READ_DIR_LOCAL'
        EXPORTING
          NAME           = FILE_PATH
        TABLES
          FILE_TBL       = I_FILES
        EXCEPTIONS
          ARGUMENT_ERROR = 1
          NOT_FOUND      = 2
          OTHERS         = 3.
      IF SY-SUBRC EQ 0.
        FILES_TAG = 1.
      ENDIF.
    second
       LOOP AT I_FILES.
    open datafilenaem.
    close datafilename.
    endloop.

  • How to see the Table Names & Field Names by other than F1 help

    Hi Experts
       How to see the Table Names & Field Names by other than F1 help, & How to see the List of MM Table Names.
    Rgds

    The only option to see the active table/ field name is through F1 --> Technical Information. Apart from this, you can use any 3rd part application like GUIex (INbuilt in SAP ECC 6.0 ... can be activated by clicking on the tri-color button on the top right), but you need technical knowledge to understand the information. As far consolidated list of MM tables is concerned, SAP don;t provide you the same at one place, it experience and knowledge which help you in this regard. For your immediate reference MM tables are as under :
    EBAN  - Purchase Requisition 
    EBKN  - Purchase Requisition Account Assignment 
    EBUB   - Index for Stock Transport Requisitions for Materi
    EINA    - Purchasing Info Record: General Data 
    EINE     - Purchasing Info Record: Purchasing Organization D
    EIPA     - Order Price History: Info Record 
    EKAB   - Release Documentation 
    EKAN   - Vendor Address: Purchasing Document 
    EKBE    - History per Purchasing Document 
    EKBEH - Removed PO History Records 
    EKBZ    - History per Purchasing Document: Delivery Costs 
    EKBZH  - History per Purchasing Document: Delivery Costs 
    EKEH    - Scheduling Agreement Release Documentation 
    EKEK    - Header Data for Scheduling Agreement Releases 
    EKES     - Vendor Confirmations 
    EKET     - Scheduling Agreement Schedule Lines 
    EKETH   - Scheduling Agreement Schedules: History Tables 
    EKKI      - Purchasing Condition Index 
    EKKN    - Account Assignment in Purchasing Document 
    EKKO    - Purchasing Document Header 
    EKPA     - Partner Roles in Purchasing 
    EKPB     - "Material Provided" Item in Purchasing Document 
    EKPO    - Purchasing Document Item 
    EKPV    - Shipping-Specific Data on Stock Tfr. for Purch. D 
    EKRS    - ERS Procedure: Goods (Merchandise) Movements to b 
    EKUB    - Index for Stock Transport Orders for Material 
    EORD    - Purchasing Source List 
    EQUK    - Quota File: Header

  • I uploaded that new IOS 8.0 and now I cannot open my mail, Safari, or the new "TIPS" app. Does Apple have some sort of help, other than going to a store that is over 40 miles away?

    I uploaded that new IOS 8.0 and now I cannot open my mail, Safari, or the new "TIPS" app. Does Apple have some sort of help, other than going to a store that is over 40 miles away?

    Purplehiddledog wrote:
    I do backup with iCloud.  I can't wait until the new iMac is available so that I can once again have my files in more than 1 location without needing to rely solely on the cloud. 
    I also rely on iTunes and my MacBook and Time Machine as well as backing up to iCloud. I know many users know have gone totally PC free, but I chose to use iCloud merely as my third backup.
    I assume that the restore would result in my ability to open Pages and Numbers and fix the problem with deleting apps, but this would also mean that if my Numbers documents still exist solely within the app and are just not on iCloud for some reason that they would be gone forever.  Is that right?
    In a word, yes. In a little more detail.... When you restore from an iCloud backup, you must erase the device and start all over again. There is no other way to access the backup in iCloud without erasing the device. Consequently, you are starting all over again. Therefore, it would also be my assumption that Pages and Numbers will work again and that the deleting apps issues would be fixed as well.
    If the documents are not in the backup, and you do not have a backup elsewhere, the documents could be gone forever.

  • HELP!  Is there a way to change column information in iTunes such as name of artist, genre etc, other than deleting them one at a time? Such as the way you delete an entire group of songs by holding down control keys or selecting the Select All command.

    HELP!  Is there a way to change column information in iTunes such as name of artist, genre etc, other than deleting them one at a time? Such as the way you delete an entire group of songs by holding down control keys or selecting the Select All command. Thanks.

    If you select all the songs you want to change, Be it one song or an akbum, or an Artist, Or Genre, or playlist. Then Right mouse click  and Get Info. You then get a slightly different from normal Get Info box as this is the One for Multiple items.
    In there have a look at the tags and see if the one you want to changes is in there. There are a few tabs so if for example you wanted to change the Media Type from Home Movie to Movie go to the Options tab and select Movie and OK and it will change the whole selection.

  • My hard disk crashed and I cannot find out how to "contact customer service" other than this forum.  The website seems to just take me in a circle. I need to de-activate a license but cannot access the software due to a crashed hard drive.  Please help.

    My hard disk crashed and I cannot find out how to "contact customer service" other than this forum.  The website seems to just take me in a circle. I need to de-activate a license but cannot access the software due to a crashed hard drive.  Please help.

    Hi Anthony ,
    Here is the link to connect with Adobe Chat Support.
    https://helpx.adobe.com/adobe-connect/kb/connect-chat-support.html
    Hope your query gets resolved .
    Regards
    Sukrit Dhingra

  • How do I get the pages to be another color other than white? I have my theme chosen but all the pages background are white! Please help.

    Please help me change the color of the pages in Firefox to be other than white. My hotmail page, my ebay page, my facebook pages are all white backgrounds. I have my theme chosen but the pages are still all white. How do I change this. Thanks, Laura

    There is an extension called NoSquint that might help.
    * https://addons.mozilla.org/en-US/firefox/addon/nosquint/
    After I got a 27" screen, I had problems with the interface text being too small as well. That can be fixed with Mozilla applications if you set up a userChrome.css file in the profile inside a subdirectory called chrome. The code I used:
    @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
    *{font-family: Trebuchet MS !important; font-size: 15px !important;}

Maybe you are looking for

  • HT203164 Converting error message:  "the file name was invalid or too long?""

    Any ideas about how to handle this block to importing CDs into iTunes?  It appeared suddenly, I think after updating iTunes.  Disk Drive is OK per iTunes diagnostic.  I also have tried to "repair" iTunes in Programs section of Control Panel.   No err

  • ITunes 7.3.1.3  skips with Firefox Please Help!

    Dell P4, Win XP SP2, 1 GB DDR SDRAM Hi all, I am using the latest version of FF 2.0.0.6 and I just upgraded to the latest version of iTunes 7.3.1.3 and am having a skipping problem. There seems to be a compatibility issue with FF and iTunes v.7, as I

  • Default settings for characteristics in CCM 2.0

    Hello All, We have implemented CCM 2.0 at customer with SRM 5.0. To avoid changing the default settings of the characteristics for every catalog they create I would like to change the defaults. I have changed a few characteristics in table /CCM/C_CHA

  • Image Edit Trouble

    Hi, I was given a logo by my client and unfortunately all they have is a lo-res jpg. It consists of black lines and black text. I am trying to select the white background and fill it with a specific color. The "black lines" in the logo and the text a

  • IE, ActiveX and installing Flash Player

    I'm stuck in a loop. I hit a page that reqires the flash player and it doesn't show the content. Then I install the flash player, then it tells me it needs activeX. I try to install that and it never works. It keeps prompting me to install ActiveX...