Implementing F4 Help

Hi All,
I need to implement a functionality similar to F4 help in ABAP screens. Is it possible to implement such functionality in a web dynpro java application?
If it is possible then can you please provide some information on that?
Regards,
Bhargav

Hi,
Its very easy in webdynpro
Please check
1.[F4 Help|Re: F4 Help;
2.[OVS in Webdynpro for Java|OVS in Webdynpro for Java;
3.[F4 Search Help |Re: !!HELP!! F4 Search Help using SAP Web Dynpro;
Best Regards
Satish Kumar

Similar Messages

  • How to implement secure help in SharePoint 2010?

    Hi,
    We are having a sharepoint site running over HTTPS. When I click on help link given on top right side, I get a security warning saying that only secure content content can be displayed. This is probably due to the non secure content(http) used by microsoft
    help.
    Can anyone please suggest how to implement microsoft help having secure content?
    Please see screenshot below:

    Yes office.microsoft.com URL works when I use https:// instead of http:// .
    Can you please let me know in which file this help function is used?
    Please provide me with an example if possible.

  • How to implement Search Help in Interacive Form based on WebDynpro Java?

    Hi Experts,
    How to implement Search Help in Interacive Form based on WebDynpro Java?
    Could someone please provide the prerequisites and the code for the same.
    Regards,
    Shobhit

    Extend the controller and get the handle of the current row of the VO. Set set the attribute context filed accordingly. Also get the handle fo the flexbean and set the context. According rendering would change.
    Regards
    Sumit

  • To implement search help for date and time fields details

    how can i implement search help for date and time fields in screen painter

    Hi
    Declare the variables as sy-datum and sy-uzeit or any other pre-defined data typ of date and ime types. Serach help will automatically comes.
    Aditya

  • How to implement a help feature in iView Tray

    How to implement a help feature in an iView Tray?

    Hi Gregor,
    Could the answer be connected to the class com.sapportals.portal.prt.component.SystemModes ?
    I can't really see how this class is called, but it gives the error message you are talking about
    The method doHelp for SP2 Patch3 is provided below
    public void doHelp(IPortalComponentRequest aRequest, IPortalComponentResponse aResponse)
            IPortalComponentContext context = aRequest.getComponentContext(IPOMConstants.DEFAULT_MODE);
            IPortalComponentProfile profile = context.getProfile();
            String helpName = profile.getProperty("com.sap.portal.iview.HelpName");
            if(helpName == null)
                helpName = profile.getProperty("HelpName");
            String helpURL = profile.getProperty("com.sap.portal.iview.HelpURL");
            String isolationMode = profile.getProperty("com.sap.portal.reserved.iview.IsolationMode");
            if(context != null)
                if(helpName != null)
                    String componentName = context.getComponentName();
                    Locale locale = aRequest.getLocale();
                    String language = locale.getLanguage();
                    String helpPath = "help/" + language + "/" + helpName;
                    IResource resource = aRequest.getResource(componentName, "page", helpPath);
                    if(resource.isAvailable())
                        aResponse.addResource(resource);
                    else
                        aResponse.write("<b>Sorry, no help available.</b>");
                } else
                if(helpURL != null && helpURL.length() > 0)
                    if(helpURL.startsWith("http://"))
                        if(isolationMode != null && isolationMode.equals("URL"))
                            HtmlIFrame frame = new HtmlIFrame();
                            frame.setStyle("width:100%; height: 100%;");
                            frame.setSrc(helpURL);
                            aResponse.write(frame.toString());
                    } else
                        String componentName = null;
                        if(helpURL.charAt(0) != '/')
                            componentName = context.getComponentName();
                        } else
                            int componentNameIndexEnd = helpURL.indexOf('/', 1);
                            componentName = helpURL.substring(1, componentNameIndexEnd);
                            helpURL = helpURL.substring(componentNameIndexEnd);
                        IResource resource = aRequest.getResource(componentName, "page", helpURL);
                        if(resource.isAvailable())
                            aResponse.addResource(resource);
                        else
                            aResponse.write("<b>Sorry, no help available.</b>");
                } else
                    aResponse.write("<b>Sorry, no help available.</b>");
    The doOnNodeReady method is also rather interesting. Perhaps another way to solve it?
    protected void doOnNodeReady(IPortalComponentRequest request, IEvent event)
            NodeMode nodeMode = request.getNode().getNodeMode();
            if(nodeMode == NodeMode.HELP_MODE)
                IPortalComponentContext context = request.getComponentContext(IPOMConstants.DEFAULT_MODE);
                IPortalComponentProfile profile = context.getProfile();
                String helpName = profile.getProperty("com.sap.portal.iview.HelpName");
                if(helpName == null)
                    helpName = profile.getProperty("HelpName");
                String helpURL = profile.getProperty("com.sap.portal.iview.HelpURL");
                String isolationMode = profile.getProperty("com.sap.portal.reserved.iview.IsolationMode");
                if(context != null && helpName == null && helpURL != null && helpURL.length() > 0 && (isolationMode != null && !isolationMode.equals("URL") || isolationMode == null) && helpURL.startsWith("http://"))
                    request.redirect(helpURL);

  • How to implement SEARCH HELP for input field in WDA

    Hi All,
    I am doing a tool for my team. in this tool there are 4 input fields to show different processes. I implemented the 4 input fields and also bind the respective tables to these fields successfully. Actually I want to filter the data between 2 fields . Means the data in the 2nd input field should be based on the 1st input field. Means when I'll select for example 'CHI' (code for CHINA) in the 1st input field the 2nd field meant for country name should show all country name with value 'CHINA'. But the problem is that all values related to each field are in different table with no foreign key relationship and also some combinations are in single table..
    I have tried the import and export parameter method for search help but no luck till now.
    Can anyone please suggest me how to implement this scenario..
    Thanks in advance...
    sekhar

    Hi sekhar,
    Your Requirement can be implemented by OVS(Object Value selector) This is the custom search help .So that you can define on what basis the value has to be fetched.
    Look at the below link
    http://wiki.sdn.sap.com/wiki/display/WDABAP/ABAPWDObjectValueSelector(OVS)
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/606288d6-04c6-2c10-b5ae-a240304c88ea?quicklink=index&overridelayout=true
    You need to use the component WDR_OVS.
    It has 3 phases
    In phase 1
         You will fetch the value from input field to F4 help dialog box.
    In phase 2
         You will generate the search results , in this phase look for the input value given in field 2 and accordingly generate search result for the field 3.
    In phase 3
         The selected value will be returned to the original screen.
    Regards
    Karthiheyan M

  • How to implement Value Help for Product ID?

    Hi,
    I have a Z-Component where I want to use the value help of the Product ID. I found several components which use this value help for Products but I can't get it to work in my component properly.
    Does anybody have a short tutorial how I need to proceed?
    Thanks in advance.

    There is a search component that can be used for this purpose.
    This is one function out of several. I don't have the complete implementation at hand but this will give you the first idea.
    CALL METHOD cl_crm_uiu_prod_tools_search=>eh_onclosepopup_return_product     
       EXPORTING       
          ir_search_popup = search_popup     
       CHANGING       
          cr_context_node = lv_target_node       
          cv_index        = gv_tableindex. 

  • Image Adjustments doesn't implement changes - help.

    Hope someone can help me with this:
    I am using Photoshop 11.0.1. I have two copies, one for myself and one for student workers in my office. For some reason, when we try to make an image adjustment -- such as changing levels or contrast -- we can see the preview of the change, but then when we click OK to implement the change, it jumps back to its original state and doesn't make the change.
    Any ideas why? This is driving me kind of nuts.

    I would try resetting the preferences by keyboard method or the manual way. I didn't see the operating system listed so you will have to scroll down to find the operating system if you do the manual way. Link:
    http://kb2.adobe.com/cps/405/kb405012.html
    Edit. windows 7 pref location is same as Vista.

  • Implementing JAAS  Help

    Hi All Dear ones
    I am trying to implement a standalone Java application using JAAS. I tried samples but i am unable to understand. Please help me to get some good tutorial for JAAS and some sample.
    This is my id [email protected]

    Please provide me with a reply as this is an urgent situation.
    Thanks in advance,
    Geet

  • Implementing F4 Help functionality of ABAP work bench on Adobe form

    Hi ,
    http://help.sap.com/saphelp_nw2004s/helpdata/en/42/c8a3ccc84e136ee10000000a1553f7/frameset.htm
    Above link gives following description about Web Dynpro Form – UI Element ValueHelpDropDownList
    <b>ValueHelpDropDownList contains the script that is required for the link to the server in order to retain the elements of the list field from the back end at runtime. This Library object enables the end user to set up an input help request to the SAP server.  This request always works in online mode, but not in offline mode. A server-side update of the input help is possible.</b>
    Please explain me how ValueHelpDropDownList  UI Element works .
    Please correct my understanding -
    We use a RFC adaptive model BAPI to retrive data from R/3 system and bind the variable to ValueHelpDropDownList  UI Element . This means we get the data from backend in intialization of PDF form ( It means it is one time activity which will be used to extract data from R/3 system to display to end user ).
    Is there any alternative by which we can get data from R/3 system ( some thing similar to F4 help in ABAP work bench ).
    Please let me know if any one implemented this functionality .
    Regards,
    Nanda

    Hi Ankit,
    Thanks for a reply. Could you please explain the details? I am mapping a context attribute to the whole column and the value help button besides the field.
    Thanks
    Samatha.

  • Failure in implementing search help

    Dear forumers,
    I'm trying to implement a search help function in my selection screen but it's not working (for program name, TADIR-OBJ_NAME).
    What could possibly be wrong and how can I fix the problem (kindly refer to the codes below - I_TADIR is always empty without any records, so it is impossible to have data for search help)?
    Please help.
    REPORT  ydt_abap.
    TABLES: tadir.
    TYPES: BEGIN OF t_tadir,
             obj_name  TYPE tadir-obj_name,
           END OF t_tadir.
    CONSTANTS: c_program(4) TYPE c VALUE 'PROG'.
    DATA: i_tadir     TYPE STANDARD TABLE OF t_tadir.
    DATA: i_f4_result TYPE STANDARD TABLE OF ddshretval.
    DATA: w_f4_result TYPE ddshretval.
    PARAMETERS: p_dclass TYPE tadir-devclass.
    PARAMETERS: p_author TYPE tadir-author.
    PARAMETERS: p_prog   TYPE tadir-obj_name OBLIGATORY.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_prog.
      CLEAR: i_tadir,
             i_f4_result,
             w_f4_result.
    " Retrieve program names
      SELECT obj_name
        FROM tadir
        INTO TABLE i_tadir
        WHERE object   = c_program
          AND author   = p_author    " Debug mode: P_AUTHOR is always empty eventho a valid value has been entered
          AND devclass = p_dclass.   " Debug mode: P_DCLASS is always empty eventho a valid value has been entered
      IF i_tadir IS NOT INITIAL.     " Debug mode: I_TADIR is always empty here
    " Customize search help
        CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
          EXPORTING
            retfield        = 'P_PROG'
            value_org       = 'S'
          TABLES
            value_tab       = i_tadir
            return_tab      = i_f4_result
          EXCEPTIONS
            parameter_error = 1
            no_values_found = 2
            OTHERS          = 3.
    " Check return code
        IF sy-subrc EQ 0.
          READ TABLE i_f4_result INTO w_f4_result INDEX 1.
          IF sy-subrc EQ 0.
            p_prog = w_f4_result-fieldval.
          ENDIF.
        ELSE.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      ENDIF.
    START-OF-SELECTION.

    Hi,
    insert this:
      DATA: BEGIN OF DYNPFIELDS OCCURS 0.
              INCLUDE STRUCTURE DYNPREAD.
      DATA: END   OF DYNPFIELDS.
      DYNPFIELDS-FIELDNAME = 'P_AUTHOR'. APPEND DYNPFIELDS.
      CALL FUNCTION 'DYNP_VALUES_READ'
        EXPORTING
          DYNAME               = SY-REPID
          DYNUMB               = SY-DYNNR
        TABLES
          DYNPFIELDS           = DYNPFIELDS
        EXCEPTIONS
          INVALID_ABAPWORKAREA = 1
          INVALID_DYNPROFIELD  = 2
          INVALID_DYNPRONAME   = 3
          INVALID_DYNPRONUMMER = 4
          INVALID_REQUEST      = 5
          NO_FIELDDESCRIPTION  = 6
          INVALID_PARAMETER    = 7
          UNDEFIND_ERROR       = 8
          DOUBLE_CONVERSION    = 9
          STEPL_NOT_FOUND      = 10
          OTHERS               = 11.
      IF SY-SUBRC = 0.
        READ TABLE DYNPFIELDS WITH KEY FIELDNAME = 'P_AUTHOR'.
        P_AUTHOR = DYNPFIELDS-FIELDVALUE.
      ELSE.
        EXIT.
      ENDIF.
    befor   SELECT obj_name
    Regards, Dieter

  • How to implement F4 help in table control

    Hi all,
    I am working on a table control in a module pool program. I have three fields in table control , material no. , material description and quantity. my requirement is , in table control , i need to provide the F4 help for material no. and material description, in a way, if i select material no. using F4, the corresponding material description field would be entered automatically in the table control field.
    Pls suggest me on this , if possible pls give me code or logic to do this.
    Thanks
    Saravan
    Moderator message: please don't post the identical question again after the first attempt was locked for good reasons. Search for available information before asking.
    Edited by: Thomas Zloch on Mar 3, 2011 11:54 AM

    Hi Saravana,
    Please search in SCN before posting. You will find many threads related to this question. The basic logic is you have to get the selected row of table control  using DYNP_GET_STEPL function in your POV. Then using function DYNP_VALUES_READ read the material and create the description to be displayed. You have use function F4IF_INT_TABLE_VALUE_REQUEST to display search help.

  • How can i implement a help file to my program?

    i have to add a help to my program's users so how can i do that in java?

    I googled "java help".
    The first link points to the "JavaHelp" open source project
    that makes it easy for you to incorporate help into your program.
    The help files can either be on the client side (included in the program),
    or be on the internet (residing on some server):
    http://java.sun.com/products/javahelp/
    Next time, try google first. Please.

  • FI - AP ( Accounts Payable) implementation -  Please help

    Hi,
    We are planning to implement the FI-AP now and we have the following questions.
    1. We have already implemented FI-AR, AR- Credit Management, FSCM ( Collection and Dispute Management) and PCA ( Profit Center Accounting). Can we use any of these modules to integrate with FI-AP?
    2. We don't have FI-GL or FI-SL yet.  Is this mandatory that we need to implement FI-GL or FI-SL before we implement FI-AP?  If yes, how it is  related?
    3.  What is the effort we can plan to implement only the standard FI-AP business content? Do we need to do any configuaration in ECC6 side for this or simply implementing Business content will take care of FI-AP related information?
    Advance Thanks,
    BW Learner

    1) FIAP is a separate subledger in FI.... when you say integrate? how would you want to integrate...
    you cal always get Multiproviders to integrate any info (logical offcourse) you want. we have integrated FIAP with SCM cubes.
    2) the new FIAP delta extractors can be used independently with out FIGL or FISL. So, you can implement FIAP before implementing FIGL or FISL.
    3) only FIAP business content setup can be done in a day... you dont need any special setup in ECC side... just activate BC extractors and off you go
    Thanks

  • BI implementation for help

    We organization are interested in Oracle BI solutions, and can anyone be kind enough to provide the price list of oracle BI components for different licenses?
    thaks a lot

    You can get good summary of checklist from this article about
    DBA checklist for data warehousing.
    Which highlights on below pointers:
    New system or old. (I.e. Up-gradation vs starting from scratch)
    Complexity of SQL Server architecture 
    SQL Server storage
    Determining SQL Server processing power
    SQL Server installation consideration 
    SQL Server configuration parameter
    SQL Server security
    SQL Server Database property
    SQL Server jobs and automation
    Protecting SQL Server data
    SQL Server health monitoring and check ups
    SQL Server ownership and control 
    based on my real time experience, I will suggest you to keep an eye on 
    Load performance (It will be useful when your database(Warehouse) will have huge amount of data)
    System availability (Check for Windows update and up time configuration) 
    Deployment methodology should be planned in advance. Development of packages and respective objects should be done systematically.
    Source control mechanism 
    Disk space and memory usage
    You might or might not have full rights on production environment, so be prepared to analyze production environment via Select statements [I guess you got my point]
    Proper implementation of Landing , Staging and Mart tables.
    Column size (this can drastically decrease your database size)
    Usage of indexes (Index are good, but at what cost?)
    I hope this will assist you in building your check list.

Maybe you are looking for

  • Print with pasta and getting error

    hello, i have customs printing driver for pasta but as i print report i find an error, APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN. Program exited with status 1 Cause: AFPPRN received a return code of failure from the

  • WUT-133 Error Message is showing in different languages??

    I have a user that is showing the WUT-133 error in French in the English environment and I am showing the English message in both environments??? Is there a setting in the webutil.cfg or formsweb.cfg file to set? Thanks, Terry

  • Loading Alias from EBS to planning through erp integrator

    Hi all, Can anybody tell me how to load the member properties from EBS to Hyperion Planning using ERP integrator. My trial only loaded the members with few default properties. My planning application is classic. And i used mapping type as "single seg

  • Airport doesn't recognize Wifi at night.

    During the daylight hours everything works fine. My airport connects to my wifi network and recognizes surrounding ones. At night (some time between 8 and 10 it seems) it not only refuses to connect to my network, but it does not recognize any networ

  • Cold boot problem with X-FI Fata1ty card... Need serious help!

    Hey guys: I just finished upgrading my computer. Realized that I have a cold boot problem. In order to identify the source of problem. I began the following test. . Remove everything except, cpu, heatsink, ram, video card. Tried to boot with those de