Setting Variants for Help (SAP Library)

Hy, when i open rsa1 i receive a message for Help.
If i select ok, receive a error message: Could not find ...
Can i customize this link in SPRO?If yes, How i can add a  address link to SAP Help?
Thank's a lot. 
Andrea

You will have to modify the ITS service "BBPHELP" and template "BBPHELP_1000".
You may add the URL : help.sap.com in the foll line:
var helpURL="`FRONTEND_URL`";
Here in the std,you will have to provide the link to the HTML page.
(extract from other thread)
BR
Dinesh

Similar Messages

  • Set variant for PNP LDB select option of pernr

    Hi All,
    I want to set variant for PERNR of PNP LDB in one of the program through other program using RS_CREATE_VARIANT FM.
    Please help to solve this problem.
    Thanks,
    Shailesh S. Malkar.

    REPORT  ZTEST.                   .
    tables: pa0003.
    ranges pernr for pa0003-pernr.
    * Fill neccesary PERNRs
    pernr-low = 1000.
    pernr-sign = 'I'.
    pernr-option = 'EQ'.
    append pernr.
    pernr-low = 1112.
    pernr-sign = 'I'.
    pernr-option = 'EQ'.
    append pernr.
    SUBMIT RHINTE00 WITH PNPPERNR IN PERNR.

  • 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

  • Doubt help SAP Library Objects

    I don´t understand the next paragraph (help SAP Library)
    link sap library
    Is there a error? CREF1 to
    CREF3?
    If it could not be so,why CREF2?
    "The effect of the assignment statement is to copy the reference from CREF1 to CREF2. As a result, the reference in CREF3 also points to the object C_COUNTER<1>. No more references point to the object C_COUNTER<2>, and it is automatically deleted by the garbage collection. The internal name C_COUNTER<2> is now free again." 

    Hi abapers,
    thank you for you attention.
    I have debuger the next code:
    REPORT  zcu04_prueba.
    CLASS counter DEFINITION.
    PUBLIC SECTION.
      DATA A TYPE I.
      METHODS: increment.
    ENDCLASS.
    CLASS counter IMPLEMENTATION.
    METHOD increment.
       A = A + 1.
    ENDMETHOD.
    ENDCLASS.
    START-OF-SELECTION.
    DATA: cref1  TYPE REF TO counter,
               cref2  TYPE REF TO counter,
               cref3  LIKE cref1.
    1º):
    cref1 = 0<>
    cref2 = 0<>
    cref3 = 0<>
    CREATE OBJECT: cref1, cref2.
    2º):
    cref1 = 9
    MOVE cref2 TO cref3.
    3º):
    cref1 = 9
    CLEAR cref2.
    4º):
    cref1 = 9
    cref3 = cref1.
    4º):
    cref1 = 9
    http://help.sap.com/saphelp_nw70/helpdata/en/73/f6b832b3fd11d194f20000e8353423/content.htm
    I don´t understand the next sentence (help SAP Library)
    The effect of the assignment statement is to copy the reference from CREF1 to CREF2. As a result, the reference in CREF3 also points to the object C_COUNTER<1>. No more references point to the object C_COUNTER<2>, and it is automatically deleted by the garbage collection. The internal name C_COUNTER<2> is now free again."
    I don´t understand. I think that the sentence:
    "The effect of the assignment statement is to copy the reference from CREF1 to CREF3  is the correct. 
    Why it is no correct?
    Thanks.
    Cordial greetings

  • Set Variant for RHINTE00 using RS_CREATE_VARIANT

    HI All,
    I want to set variant only for employee id select option in report RHINTE00 using RS_CREATE_VARIANT. Since there is no direct access to Select Option so how can i achieve it.
    Thanks,
    Shailesh S. Malkar.

    Hi,
    Please reffer below code for implemeting 'RS_CREATE_VARIANT'
    *----- varid
      move sy-mandt             to i_varid-mandt.
      move 'RPCTXFU0'           to i_varid-report.
      move var_name1            to i_varid-variant.
      move sy-uname             to i_varid-ename.
      move sy-datum             to i_varid-edat .
      move sy-uzeit             to i_varid-etime.
      move 'A'                  to i_varid-environmnt.
    *----- varit
      move sy-mandt             to i_varit-mandt.
      move sy-langu             to i_varit-langu.
      move 'RPCTXFU0'           to i_varit-report .
      move var_name1            to i_varit-variant.
      concatenate 'Customer Variant'(o01) var_name1 into i_varit-vtext.
      append  i_varit.
          call function 'RS_CREATE_VARIANT'
             exporting
                  curr_report               = 'RPCTXFU0'
                  curr_variant              = var_name1
                  vari_desc                 = i_varid
             tables
                  vari_contents             = rsparams_tab
                  vari_text                 = i_varit
             exceptions
                  illegal_report_or_variant = 01
                  illegal_variantname       = 02
                  not_authorized            = 03
                  not_executed              = 04
                  report_not_existent       = 05
                  report_not_supplied       = 06
                  variant_exists            = 07
                  variant_locked            = 08
                  others                    = 99.
    Regards,
    Arun

  • How to set variant for ALV grid from ABAP

    Hello,
    I have a program which displays some data with ALV grid. Then after some operation I would like to set different layout for the grid, but not by choosing it manually but by the program. I thought that it would be enough to use the method SET_VARIANT, so I'm setting DISVARIANT structure properly, using SET_VARIANT method and after that I'm calling REFRESH_TABLE_DISPLAY but layout is not changed. What else should I do? Is that possible?
    Best regards,
    Marcin

    Hi,
    Check this
    * While declaring select-options
    parameters: p_vari        like ltdx-variant.  " Layout
    * then add the following code in
    at selection-screen on value-request for p_vari.
      perform f_variant_f4 using p_vari.
    * Code for f_variant_f4
    form f_variant_f4 using  p_vari.
    * private variables
      data : v_exit    type c.
      clear gs_variantt.
      v_variant_save = 'U'.
      call function 'LVC_VARIANT_F4'
        exporting
          is_variant    = gs_variant
          i_save        = v_variant_save
        importing
          e_exit        = v_exit
          es_variant    = gs_variantt
        exceptions
          not_found     = 1
          program_error = 2
          others        = 3.
      if sy-subrc ne c_0.
        message i999(yscc) with text-064.    " No Layout Available for F4
      endif.
      if v_exit is initial.
        gs_variant-variant = gs_variantt-variant.
        p_vari             = gs_variantt-variant.
      endif.
    endform.                                 " F_variant_f4
    * In PBO
        call method grid1->set_table_for_first_display
          exporting
            is_layout                     = gs_layout
            is_variant                    = gs_variant
            i_save                        = 'A'
            it_toolbar_excluding          = i_exclude[]
          changing
            it_outtab                     = i_output[]
            it_fieldcatalog               = i_fieldcat[]
          exceptions
            invalid_parameter_combination = 1
            program_error                 = 2
            too_many_lines                = 3
            others                        = 4.

  • How do I set up for Help with CS5.5? I don't have CS6 but that is the only thing I seem to be able to get help on.

    When I select Help from the toolbar, I get more help than I ever imagined, for versions I don't have. How do I narrow it down to JUST the version I have?

    Any devices connected to the same icloud account can sync all the data on that account.  For this reason an icloud account is really for a single user.
    On a mac, if each user has their own account, then the itunes for that mac account should be set up to connect to that user's icloud account (System preferences>icloud).

  • Unable to set tooltip for item (sap.ui.core.Item)

    sap.ui.core.Item does not have the property 'tooltip'. But it borrows 'tooltip' property and setTooltip( ), getTooltip( ) methods from sap.ui.core.Element.
    Still, if I set the tooltip for item, it is not reflected. What might be wrong?
    Consider the following piece of code for example:
    var item = new sap.ui.core.Item({text:'Item'});
      item.setTooltip('tooltip');
      var oCollection = new sap.ui.ux3.Collection({ items: item
      var oCollectionInspector = new sap.ui.ux3.CollectionInspector({
      'fitParent' : false,
      'collections' : [
      new sap.ui.ux3.Collection({
      'title' : 'My Accounts',
      'items' : [ item]
      oCollectionInspector.placeAt('content');

    Tooltip is applied on the Item, but it seems Collection Inspector set its own tooltip for the Item. You can do something like this to set your own tooltip,
    var item = new sap.ui.core.Item("myItem",{text:'Item'});
    var oCollectionInspector = new sap.ui.ux3.CollectionInspector({
      'fitParent' : false,
      'collections' : [
      new sap.ui.ux3.Collection({
      'title' : 'My Accounts',
      'items' : [ item]
      oCollectionInspector.placeAt('content');
      oCollectionInspector.onAfterRendering = function(){
           sap.ui.ux3.CollectionInspector.prototype.onAfterRendering.apply(this,arguments);
           $('#myItem').attr('title','My Tooltip');

  • Telecommunications - SAP CRM for Industries - SAP Library

    To add a comment, please log in or register on the top of this page and choose Reply. Please write your comment in English.
    You can also go back to the SAP help page.

    Super. It's exactly what I was looking for.
    I searched and looked at numerous notes with the search term "Relationships" but with no result. Had I known to search for Employee Responsible...
    Thanks a million, will have Basis resolve it.

  • Basic Functions for Industries - SAP CRM for Industries - SAP Library

    To add a comment, please log in or register on the top of this page and choose Reply. Please write your comment in English.
    You can also go back to the SAP help page.

    Shankarappa H L wrote:
    Please share about partner management functionality.
    I have written to our expert to point you to public sources of information other than the User and Admin guide available on the service marketplace. Thank you.

  • For help ,请教sap公司的大侠们,sapshow 无法显示教材中的notes

    hello ,  Ke Wu
        当我把IE浏览器升级到8.0后,再使用sapshow 4.5B ,就再也无法查看教材中的notes ,请问sap 公司是否已经更新了sapshow的版本,如果有,请告诉在那里可以下载到,
        特别需要,非常感谢。
    Edited by: kai xu on Apr 16, 2009 11:25 AM

    Hello :
         我参照了这种方法,但是对于XP系统,都是适用的,最近升级到vista ,ie 是8.0的,再使用在XP中的方法就无法适用了,就是无法显示sapshow 打开的NOTES ,请大家给个好的意见。
        致礼!

  • SE93 - There are no variants for screen 1000

    Hello experts,
    We cannot set variant for report transactions from se93.In our case, system prompts a warning as "There are no variants for screen 1000" But standard system variants (which are starting with CUS& or SAP&) are working fine. However, we can set them if we enter the variant name instead of using f4 input help.
    There are a lot of entries about this issue on SDN but we want to do that on relevant system with using our own variants (using f4 search help) not system variants and I don't know how but we can also create transactions with own variants on different systems without any problem (which have same components and support package level)
    Please note that, problem occurs only in se93 while creating tcode, there is no problem while using existing variants with tcode.
    Please also see the below patch level information of relevant system ; (for core components)
    EHP4 for ERP 6.0                    
    SAP_ABA     701     6     SAPKA70106     Cross-Application Component
    SAP_BASIS     701     6     SAPKB70106     SAP Basis Component
    PI_BASIS     701     6     SAPK-70106INPIBASIS     Basis Plug-In
    ST-PI     2008_1_700     2     SAPKITLRD2     SAP Solution Tools Plug-In
    SAP_BS_FND     701     6     SAPK-70106INSAPBSFND     SAP Business Suite Foundation
    SAP_BW     701     6     SAPKW70106     SAP Business Warehouse
    SAP_AP     700     19     SAPKNA7019     SAP Application Platform
    SAP_APPL     604     6     SAPKH60406     Logistics and Accounting
    Can you please help us on this issue ?
    Thanks in advance.
    Kind regards,
    Alper Ozdemir
    SAP R/3 NetWeaver Consultant

    I have to respectfully disagree - any variant can be assigned to the transaction code.
    Please try the following:
    1) Start your report (I'm assuming it is a report?) in SE38 and create a variant.
    2) In SE38, open the report and open its object list (menu Utilities -> Display Object List)
    3) If you have already created a transaction, you should see the node Transactions in the left-hand window (i.e. object list). Double-click on the transaction name and switch to Change mode. In the field Start with variant type in the variant name from step 1. Note that if you try to use the dropdown it will say "No variants exist...", but if you just type in the name, it will take it.
    Activate and do the same thing with the second transaction or create the new ones, if you prefer. Note that non-system variants will have to be either created in each environment or manually added to the transport. This can also be done in SE38 - click Variant radio-button, click Display, then go to the menu Utilities ->Transport Request and follow the instructions.
    All above may also be done in SE80, I just prefer SE38 personally.

  • How to call a variant for a transaction

    Is it possible to call a specific variant (say test) for a transaction like MMBE?

    Dear Pinkey,
    You can use transaction SHD0 (Transaction Variant)
    http://help.sap.com/saphelp_webas620/helpdata/en/eb/5fab41d79b11d296190000e82de14a/content.htm
    In the SAP Reference IMG, you can create transaction variants. Choose Basis Components -> Application Personalization -> Tailoring of Application Transactions -> Configure Transaction-Related Display Values for Fields (Transaction SHD0). Transaction variants allow you to preset values for fields in a transaction, set field attributes, or hide entire screens.
    To execute a transaction variant, you define a variant transaction using the Transaction Maintenance transaction (SE93).
    Once you have entered a transaction code and short description, choose transaction type Transaction with variant (Variant transaction).
    To define a variant, enter the name of the transaction and the name of the variant. You can then use the new transaction code to start the special variant of the transaction.
    Hope this will help.
    Regards,
    Naveen.

  • Transaction variant for f-58

    hi all,
    i need to know how to create screen variant & transaction variant for transaction code : F-58 ?
    When i try to create screen variant for F-58 I get an error:
    "screen variants are only possible for dialogue transactions".
    Thanks & regards.
    Message was edited by: annie sidd

    Screen Variants
    http://help.sap.com/saphelp_nw04/helpdata/en/7d/f63a22015111d396480000e82de14a/content.htm
    Screen Variants Course
    http://www50.sap.com/useducation/curriculum/course.asp?cid=60142840
    If you find this answer useful, please reward me for the same.
    Good luck

Maybe you are looking for

  • Downloads Folder Help Please :(

    Hi all, A friend sent me a RAR file, i unpacked it and nothing appeared in the downloads folder where i unpacked it to ???? after doing this a couple of times as i thought it might be a blip, i deleted everything in the folder. but the folder states

  • MIRO : exits and badis

    Hi, i'm looking for exits/badis in the MIRO transaction (Enter Incoming Invoice) after pushing the Save-button. For transaction/event : - Invoice : for some conditions a subprocess with creation of a sales order must started (---> done in badi INVOIC

  • Me59n

    how to configure automatic purchase order based on purchase requisition can anyone explain step by step. Failed to search properly. Locked. Edited by: Csaba Szommer on Apr 22, 2011 7:54 AM

  • Erasing only free space

    With regard to an iBook G4, OSX 10.5.8 - would I be correct in thinking that the "Erase Free Space" command does just and only that, and does not affect the OS, installed programs, or all non-deleted data ?  In other words it is safe to run on the iB

  • Want to upgrade to infinity option 2 but sales hav...

    Trying to upgrade to infinity option 2 and like another used tried the online way first that failed. Called sales on  0800 800 900 and explained this. Operator was helpful but thought this to be a tricky upgrade thought they may have call me back the