Activating HTML Help and MS Help

What I like to know is : What do I need to call HTML pages in some application from my Forms ? That is :
- what steps should be taken
- what settings do I need
- what are the necessity registrations
If possible I sshould like a short overview.
Thanks and greetings.
W.P.
null

We do it this way:
/*Procedure to call context sensitive Help from any Item in a Form
called by Key-Help / When-Button-Pressed an other triggers
PROCEDURE PG$CON_HELP IS
id_Appl PLS_INTEGER;
v_CallingForm VARCHAR2(40) := NAME_IN('SYSTEM.CURRENT_FORM'); -- The current form
v_URL VARCHAR2(100); -- Variable to hold the URL to pass to the browser
v_HelpPath VARCHAR2(80);-- The standard location of the help files
v_ItemName VARCHAR2(80) := NAME_IN('SYSTEM.CURSOR_ITEM'); -- The current item name
-- Find the location of the separator from the full item name (which is BLOCK.ITEM)
v_DotLoc INTEGER := INSTR(v_ItemName, '.');
-- Variable to hold the anchor name
v_Anchor VARCHAR2(40);
v_true boolean;
BEGIN
tool_env.getvar ('FORM_HELP',v_helppath);
-- Start with the filename which is named after the form name
v_URL := v_HelpPath| |v_CallingForm| |'.HTM';
-- Build the anchor name which is <BLOCK NAME>__<ITEM NAME>
v_Anchor := SUBSTR(v_ItemName,1,(v_DotLoc-1))&#0124; &#0124;'__'&#0124; &#0124;SUBSTR(v_ItemName,(v_DotLoc+1));
-- Put the full URL together
v_URL := v_URL&#0124; &#0124;'#'&#0124; &#0124;v_Anchor;
-- Now start the browser
id_Appl := DDE.app_begin('iexplore.exe '&#0124; &#0124;v_URL, DDE.APP_MODE_NORMAL);
END;
null

Similar Messages

  • SVS, EVS, and OVS, Value Help and Search Help

    what and how to use SVS, EVS, and OVS, Value Help and Search Help  in abap webdynpro...Can anyone please give example link or document...As i am able to get on ovs but unable to get rest of other

    SVS and EVS are Web Dynpro Java specific types of value help.  They do not exist in Web Dynpro ABAP.  In Web Dynpro ABAP we have Data Dictionary based Search Help, OVS, and Freely Programmed Value Help.  In WDA 7.02 we have the slight variant on DDic Search Help called Suggest Values.  It doesn't change the development model, just the runtime user experience. 
    You can read more about each of the types of WDA based value help in the online help:
    http://help.sap.com/saphelp_nw73ehp1/helpdata/en/47/9b298c66eb3376e10000000a421937/frameset.htm

  • Files needed to be present to use HTML help and Web help

    For using RoboHelp for word generated .hlp files, we kept
    .hlp and .cnt files in the production environment for the users.
    Now, we are planning to migrate to Robohelp for HTML help and
    gradually to WebHelp.
    In that case what are the files that are required to be
    present in the production environment?

    With HTML Help all you need to ship are the CHM files. That
    is because these are compiled files that contain all the essential
    ingredients to see and use the help. The only exception to this
    rule is if you are using a glossary or browse sequences. In this
    instance you'll need to ensure all your users have the
    HHACTIVEX.DLL file installed on their PC. If they don't they won't
    be able to see them. You cab get the install routine for your
    application to install and register this file.
    With regards to Webhelp, you'll need to publise all the files
    generated by the compile. Part of the compile process is setting up
    the location of the published files (e.g. Intranet, FTP). You don't
    have to worry about what to publish. As long as you have your
    location correctly defined all the files are copied there.

  • Illustrator Help and InDesign Help won't open

    Hi,
    I am having issues with the Help option within all of the CS5 programs such as Illustrator and InDesign.  In past versions I could open up the help and it would bring up the electronic manual right inside the program.  Now it just launches an application and I get an error message saying "Adobe AIR...The installation of this application is damaged.  Try reinstalling or contacting the publisher for assistance."  Same thing in IDD.  What does AIR have to do with Illustrator Help?
    Thanks

    It's the little intermediary app that manages the help. Since as of CS5 help can also be stored locally (again), this tool would allow you to download pages for offline viewing. There's a standalone icon for this in your CS5 program group. try to launch it standalone. If that doesn't help, reinstall Adobe AIR and download the patch for this help client from the support pages. There was an issue at some point, but it should have long been fixed with an automatic update., Apparently that hasn't happened on your system...
    Mylenium

  • A question about search help and input help,PLZ take a look at it.

    hi everyone,
    i want to know the difference between search hlep and inpu help
    can anyone tell me about that?
    thanks

    HI
    BOTH ARE SAME
    you can define F4 help in 2 ways
    in SE11 or in the report program
    IN SE11
    Attaching a search help to a table field
    Choose the field name, click on search help tab and
    provide the name of the search help.
    A search help is attached to a field of a table or structure in the maintenance transaction for this table/structure, analogously to attaching to a table. You must assign the interface parameters of the search help to any fields of the table/structure. The search field must be assigned to an EXPORT parameter of the search help at this time.
    Attach the search help to the table field
    The search help ZSTRAVELAG_NAME is therefore directly attached to the field AGENCYNUM of table ZSTRAVELAG.
    Attaching a search help to a data element
    Provide the search help name and the parameter name
    under the further characteristics tab of the data element.
    If the input help of a field is defined by its data element, no further screen fields can be used in the input help.
    Also note that the input F4 help would be available wherever the data element is used.
    Attaching a search help to a screen element
    A search help can be directly assigned to a screen field in two ways.
    The name of the search help must be entered in the Screen Painter in the Attributes for the field in the field Search help.
    The name of the search help can be defined for selection screens in ABAP reports in the PARAMETERS or SELECT-OPTIONS statement directly following the supplement MATCHCODE OBJECT.
    However, input help is only available for this particular screen.
    in REPORT PROGRAM
    in this way we declare in report program
    TYPES : BEGIN OF ST_OBJID_SH,
    OTYPE TYPE HRP1000-OTYPE,
    OBJID TYPE HRP1000-OBJID,
    END OF ST_OBJID_SH.
    DATA : IT_OBJID_SH TYPE STANDARD TABLE OF ST_OBJID_SH.
    DATA : WA_OBJID_SH TYPE ST_OBJID_SH.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    *SELECT-OPTIONS : S_OTYPE FOR HRP1001-OTYPE NO INTERVALS .
    SELECT-OPTIONS : S_OBJID FOR HRP1001-OBJID NO INTERVALS .
    SELECT-OPTIONS : DATE FOR SY-DATUM NO-EXTENSION OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK B1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_OBJID-LOW.
    IF S_OBJID IS NOT INITIAL.
    SELECT OTYPE OBJID FROM HRP1000
    INTO TABLE IT_OBJID_SH
    WHERE OTYPE = 'D'.
    IF SY-SUBRC EQ 0.
    SEARCH HELP FOR QUALIFICATION.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    DDIC_STRUCTURE = ' '
    RETFIELD = 'OBJID'
    PVALKEY = ' '
    DYNPPROG = SY-REPID
    DYNPNR = SY-DYNNR
    DYNPROFIELD = 'S_OBJID'
    STEPL = 0
    WINDOW_TITLE =
    VALUE = ' '
    VALUE_ORG = 'S'
    MULTIPLE_CHOICE = ' '
    DISPLAY = ' '
    CALLBACK_PROGRAM = ' '
    CALLBACK_FORM = ' '
    MARK_TAB =
    IMPORTING
    USER_RESET =
    TABLES
    VALUE_TAB = IT_OBJID_SH
    FIELD_TAB =
    RETURN_TAB = RETURN_TAB
    DYNPFLD_MAPPING =
    EXCEPTIONS
    PARAMETER_ERROR = 1
    NO_VALUES_FOUND = 2
    OTHERS = 3
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDIF.
    Check this out
    http://www.sap-img.com/abap/value-request-for-parameter.htm
    ******************************8
    sample program
    report zrich_0001 .
    data: begin of ihelp occurs 0,
    field type char10,
    ftext type char50,
    end of ihelp.
    data: a_field(20) type c.
    select-options s_field for a_field.
    initialization.
    ihelp-field = 'A'.
    ihelp-ftext = 'Description A'.
    append ihelp.
    ihelp-field = 'B'.
    ihelp-ftext = 'Description B'.
    append ihelp.
    ihelp-field = 'C'.
    ihelp-ftext = 'Description C'.
    append ihelp.
    at selection-screen on value-request for s_field-low.
    call function 'F4IF_INT_TABLE_VALUE_REQUEST'
    exporting
    retfield = 'FIELD'
    dynprofield = 'S_FIELD'
    dynpprog = sy-cprog
    dynpnr = sy-dynnr
    value_org = 'S'
    tables
    value_tab = ihelp.
    start-of-selection.
    one more program....
    REPORT ZHELP .
    TABLES : MARA.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    PARAMETERS : P_MATNR(10) TYPE C.
    SELECTION-SCREEN END OF BLOCK B1.
    DATA : BEGIN OF ITAB OCCURS 0,
    MATNR TYPE MATNR,
    END OF ITAB.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_MATNR.
    SELECT MATNR
    FROM MARA
    INTO TABLE ITAB
    UP TO 10 ROWS.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    RETFIELD = 'MATERIAL NUMBER'
    DYNPPROG = SY-REPID
    DYNPNR = SY-DYNNR
    DYNPROFIELD = 'P_MATNR'
    VALUE_ORG = 'S'
    TABLES
    VALUE_TAB = ITAB
    EXCEPTIONS
    PARAMETER_ERROR = 1
    NO_VALUES_FOUND = 2
    OTHERS = 3.
    Create it from SE11.
    enter search help
    and create elementary
    enter description and below Table name
    and the fields
    see the doc
    1) Elementary search helps describe a search path. The elementary search help must define where the data of the hit list should be read from (selection method), how the exchange of values between the screen template and selection method is implemented (interface of the search help) and how the online input help should be defined (online behavior of the search help).
    2) Collective search helps combine several elementary search helps. A collective search help thus can offer several alternative search paths.
    3)An elementary search help defines the standard flow of an input help.
    4) A collective search help combines several elementary search helps. The user can thus choose one of several alternative search paths with a collective search help.
    5)A collective search help comprises several elementary search helps. It combines all the search paths that are meaningful for a field.
    6)Both elementary search helps and other search helps can be included in a collective search help. If other collective search helps are contained in a collective search help, they are expanded to the level of the elementary search helps when the input help is called.
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee38446011d189700000e8322d00/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee45446011d189700000e8322d00/content.htm
    pls go through this for search help creation
    http://help.sap.com/saphelp_nw2004s/helpdata/en/41/f6b237fec48c67e10000009b38f8cf/content.htm

  • Please take a survey about Help and Community Help.

    Now that youve all had a chance to use the new Community Help system, please take a few moments and let us know what you think.
    The best way is to fill out the survey that is behind the
    "Give us feedback" link here.
    In case you havent been exercising the new
    Community Help system, please give it a spin.
    If youd rather just send me a message instead of filling out a survey, go ahead and send me email at kopriva [at] adobe {dot} com.
    Im especially interested to know how easy it is for you to find the information that youre looking for and how you feel about F1 taking you to the Community Help and Support page instead of the home page of the After Effects Help document.

    The question that most individuals ask is how can a person be sure that it is the good time to perform an alcohol or drug intervention. Some signs can be seen and once one is aware of them, its easier to decide a great time for an intervention. For example, a dependent person that drinks alcohol or does drug on a regular basis might begin changing his or her habits, spend ridiculous quantities of money to continue their dependency, less communication with the people that surround him or her, loss of weight, etc
    mukesh
    Paid Surveys-Paid Surveys

  • NEED PODCAST HELP AND PLAYLIST HELP!@#$

    A)I just upgraded my 20 gig plain to 5g 30 gig. I downloaded video podcasts like nba playoffs and abc news(free you know). It comes up on my itunes library and I then dragged it onto the Ipod. It appears. Fine and good. Disconnect the ipod and its nowhere on the entire ipod. I read alot of forums before writing this and I tried alot but not working. Its set to tv out off and My video tab on ipod otions is grey because i use two comps and had to set songs to manual download.
    B)My old Ipod had helfull buit in playlists like top 25 and recently. Here only itunes has but not on the ipod???
    PLEASE HELP!! Thanks
      Windows XP  

    Welcome To Apple Discussions!
    Make sure on your iTunes settings that you have your iPod on "Update Videos Automatically"(or something like that). IF it still doesnt work then I suggest that you simply reset the iPod or restore it.
    Reseting iPod:
    1. Press and hold the menu button + the center button
    2. Wait untill the Apple logo appears.
    Restoring the iPod:
    Restoring iPod

  • Robohelp 8 JavaHelp and Oracle Help

    It is said that JavaHelp Help and Oracle Help can be the output format of RoboHelp project in the help of RoboHelp. But I can not find a way to generate JavaHelp or Oracle Help. Could you tell me does RoboHelp 8 support it?
    Generate and publish output from the command prompt. I use the command as below:
      "e:\test_RoboHelp\robotest\robotest.xpj -l WebHelp -o E:\test_RoboHelp\a"
    "e:\test_RoboHelp\robotest\robotest.xpj" is a project which does exist. But Why the output folder is not "E:\test_RoboHelp\a" as I have set?
    by the way, Does RoboHelp have a plan to support HTML Help 2.x?

    Hi there
    Indeed RoboHelp *CAN* produce JavaHelp and Oracle Help as advertised. However, it isn't configured out of the box to do this. I consider it to be similar to advertising that a pickup truck (errr, sorry Peter, Craig and Colum - I mean LORRY) is able to tow a Boat or a Camper to a lake. Sure, you can tow these items, but there are a few requirements!
    You must have a Boat or Camper to tow
    You need to install the optional towing package
    In order to produce these help output types you will need to separately install the Java Development Kit. Fellow Adobe Community Expert Peter Grainge has some information on his site at the link below.
    Click here to visit Peter's site
    That covers JavaHelp. I'm unsure about Oracle Help, but would expect it to be similar.
    Are we to assume the code referring to E:\test... is your own code?
    If so, I see an issue with it. E:\ likely refers to a network location. In my many years of supporting RoboHelp via the forums I can't begin to tell you how many folks have arrived reporting issue after issue after issue that was caused by working on projects while they are stored on network locations.
    HTML Help 2 never took off for public use. Mostly Microsoft used it internally. As there is no real generic public outcry for it, I'd be shocked if RoboHelp were to suddenly begin offering it. If you would like to cast your vote for it to be added as an output option, visit the Wish Form.
    Hopefully this helps... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • How do I reinstall help and support center?

    compaq notebook Presario V2552US, Window XP home,  a friend cleaned up my computer to speed it up and deleted this, I assume.
    cannot troubleshoot USB problem.  error message "Windows cannot open Help and Support because  a system service is not running."    To fix this problem, start the service named 'Help and Support'

    Your XP Help and Support Center is at your computer's HP Webpage:
    Software & Driver Downloads - Compaq Presario V2552US Notebook PC
    Here is the specific download file for Help and Support:
    Help and Support Center sp35451 V4.3 C
    You might take a look at that main page and make sure you have everything else you want / need from for later.  Why?  There will come a time when XP is no longer supported and it will be harder to get software - if you download your drivers and software now and put them on a flash drive you will be better prepared in case you have issues down the road.
    Kind Regards,
    Dragon-Fur

  • Regarding f1 and f4 helps

    Hi...
    good morning..
    here is a  question.
    1.wht is the difference between f1 help and f4 help.
    thanks and regards,
    k.swaminth reddy.

    hiii
    Field help (F1) and input help (F4) are standard functions throughout the system. You therefore cannot assign any other function codes to the F1 or F4 keys.
    If the user chooses the F1 key or the corresponding help icon (This graphic is explained in the accompanying text), a help text appears for the field in which the cursor is currently positioned.
    If the user chooses F4 or the input help button (This graphic is explained in the accompanying text) to the right of a screen field, a list of possible entries appears for the cursor in which the cursor is currently positioned. The user can then choose one or more values, which are then copied into the screen field.
    There are various ways of making field and input help available to users. For example, you can either use ABAP Dictionary functions, or program your own help functions.
    Another special way to display lists of values is to use a dropdown box.
    Regards
    Hitesh
    <b>'REWARD POINTS IF HELPFUL'</b>

  • Help: Problem with scrolling my html items and placed objects they keep cutting through my top menu

    Basically whenever i place an html item in my Muse site or an object I encounter a problem when scrolling down past that object in the preview. I have a horizontal menu bar that sits on the top of my site and whenever I scroll down the html items and objects
    cut through my menu. Is there any way to rectify this? - i've tried pinning objects but can't figure it out. Any help would be greatly appreciated.
    Thanks,

    So you have a pinned Menu in the Master page but is being overlayed by the objects in page when you scroll down? If that is the case, select the Menu in the Master, right click on it and Move To Master Foreground.
    Thanks,
    Vinayak

  • HT201365 hello sir i purchase second hand iphone4s now my iphone ask for activation with id and password i contact with previous owner and use that id and password but that also not work what i do ola help me

    hello sir i purchase second hand iphone4s now my iphone ask for activation with id and password i contact with previous owner and use that id and password but that also not work what i do ola help me i try all other method restore ' upgrade etc but none work plz say what i do if u find some solution tham msg me on [email protected]

    First, we're not Apple here (Apple does not participate in this forum).  We're only users like you.
    The previous owner has not given you the correct ID and password for you to use.
    If the iphone has iOS version 7, then read through the following...
    http://support.apple.com/kb/HT5818

  • Hello sir i purchase second hand iphone4s now my iphone ask for activation with id and password i contact with previous owner and use that id and password but that also not work what i do ola help me i try all other method restore ' upgrade

    hello sir i purchase second hand iphone4s now my iphone ask for activation with id and password i contact with previous owner and use that id and password but that also not work what i do ola help me i try all other method restore ' upgrade etc but none work plz say what i do if u find some solution tham msg me on
    iPhone 4S

    oenkz33 wrote:
    this does not help at all for the second owner, after making the first owner id with careless, sorry for my english ...
    Careless? Possible, but unlikely. Most likely the phone was stolen from the first owner. It would be a VERY careless iPhone owner who did not erase their personal information from a phone before selling it, and to do that it is necessary to disable Activation Lock. In most places in the world knowingly using stolen property is a crime, so the fact that the phone doesn't work may be the least of one's risks.

  • I am trying to make a signature in MS Word (2007) which includes a jpg image, but when I save it as a HTML file and attach it the text appers OK but the image doesn't. I have tried various formats but still no luck. Can anyone help?

    I am trying to make a signature in MS Word (2007) which includes a jpg image, but when I save it as a HTML file and attach it the text appers OK but the image doesn't. I have tried various formats but still no luck. Can anyone help? edit

    C'mon! Anyone???? I'm desperate!

  • Converted WinHelp to HTML Help and context-sensitive topics aren't working.

    Converted WinHelp to HTML Help and context-sensitive topics
    aren't working. Anyone run across this?

    I am a developer and we have big project that needs to be
    converted from winhelp to HTML help. I received only the .CHM help
    file from the help auther. I added the HTMLhelp.lib file and
    HTMLhelp.h file in to my project. I tried to change atleast one
    page of the dialog. I added on helpinfo function htmlhelp function
    call and hard coded the .chm file path and for the right click I as
    well did the same thing. But I am getting "No Help topic is
    associated with this item" upon F1 key and crash after the right
    click with wincore.cpp error.
    The code is as below.
    BOOL CCnvCfgGenNRecPage::OnHelpInfo(HELPINFO* pHelpInfo)
    // TODO: Add your message handler code here and/or call
    default
    if (pHelpInfo->iContextType == HELPINFO_WINDOW)
    int nCtrlId = pHelpInfo->iCtrlId;
    DWORD dwContextId = pHelpInfo->dwContextId;
    //THE NEW HTMLFUNCTION CALL
    ::HtmlHelp((HWND)pHelpInfo->hItemHandle,
    "D:\\vista_setup\\Patmob\\PatMob.chm",
    HH_TP_HELP_WM_HELP,
    (DWORD)&IDARRAY(nCtrlId, dwContextId)) ;
    THE OLD CODE
    ::WinHelp ((HWND)pHelpInfo->hItemHandle,
    AfxGetApp()->m_pszHelpFilePath,
    HELP_WM_HELP,
    // HELP_WM_HELP flag brings up pop-up help and expects an
    array
    // of DWORD pairs of the control ID and the context help ID
    (DWORD)&IDARRAY(nCtrlId, dwContextId));
    return TRUE;
    DO I NEED ANY OTHER FILE? Should I checked out the dialog h
    file and .hm file which compling the html related code?
    Regards,
    Kreena

Maybe you are looking for