Input help of the org. hierarchy

Hello all,
I have two similar enviroments, one with ish version 4.6 and another with version 6.00
The input help of the organizational hierarchy when it is called from nv2000 or report RNLORG01
in 6.00 is very slower than 4.6. (Both enviroments have the same parameters OE_LEVEL and OE_LOAD) There is something I can do to optimize this input help? Thanks in advance.
Regards.

There are two more recent notes related to this input help:
Note 1272171 - IS-H: OrgUnit input help does not display all OrgUnits
The input help for organizational units does not display all inter-departmental organizational units
Note 1292719 - IS-H: Input help for nursing OU displays incorrect info
If you call the input help in NV2000 in the field "Nursing OU", the system may not display the name of the nursing OU correctly in some cases. The system displays the name of higher-level departmental OU instead.

Similar Messages

  • How can I do this input help in the Input ready query

    Dear all,
    Do you konw this function?
    The following steps is that:
    1,I create the Input ready Query.
    2,I can insert the new record.
    3,I can use the input help for the characteristics.
    4,When I double the space, I got the pop-up for input help.
    5,I want to get the function is that:
    for example:
    char1 is the char2 attribute.
    char2 - - - - - - - -- - char1
    m- - - - - -- -- - - - -a
    n-- - - - -- - - - - - a
    u- - - - -- - - - - - - -a
    v- - - - - - - - - - - -b
    w- - - - - - - -- - - -b
    x- - - - - - - - - - - - b
    when I write the "a" for the char1 in the new record at input ready query, I only want to got "m","n","u" for char2 from the char2 input help.
    How can do it?
    Thank you so much.
    Best regards,
    Leon

    Hello Leon,
    As you have already set char1 as an attribute of char2, what you would need to do is create an attribute variable for char2 of type exit.
    Using a variable exit, you can pass the value of char1 to char2. This would then automatically restrict the selection list to "m", "n", "u" as values for char2 when you enter "a" as the value for char1.
    Hope this helps.
    Sunil

  • Can we default the latest organization hierarchy when opening the org hierarchy form?

    We have several versions of the organization hierarchy. The older versions are end dated and the newer version(say version number 5) is active now.
    When the users go into the organization hierarchy form, it takes us to the first version and then users have to use the down arrow on the key board to get to the latest active version. Sometimes, the users are forgetting they have to go to the new version and making changes in the incorrect version. Is there a way to always default the latest version to show up first when the form is opened?
    Thanks for your help..
    -Jay

    One thing I noticed is that the default numbering given to the hierarchies is 1,2,3,4 and 5 ...etc with 1 being the oldest. For my hierarchies, If I give numbers as 5,4,3,2,1 with 5 being the oldest, it is showing the latest version 1 as soon as we open the form. This is helping me address my requirement. Any ideas if this is going to cause any problems anywhere if I change the default numbering of the hierarchies?
    Thanks
    Jay

  • INPUT HELP FOR THE TABLE CONTROLLS

    Hi all.
    I have an issue in table controlls.
    I need to give input help(drop box )in the field of table controlls in the module pool program.
    Can any body help me to solve this issue.
    Thanks in advance,
    regards,
    venkat

    Hi,
    As suggested,this will help you.
    RSDEMO_TABLE_CONTROL
    If you observed,then you can find that the particular field is maintained as listbox.
    In PBO,populate the required values into internal table.
    After that loop at the internal table and put it in table control.
    The follg. part of code explains it.
    LOOP at sdyn_itab into sdyn_sdw4 WITH CONTROL TABLE_CONTROL.
    ENDLOOP.

  • F4 Input Help in Variable Screen takes about 30 Minutes to display.

    Hello Experts,
    We have a web-report in which the time taken to display all the entries in F4 Input Help of the variable screen takes about 30 minutes. Have anyone experienced so long a wait time while accessing F4 Input Help in the variable screen and is there anything that we can do to reduce this wait time.
    Thanks
    Arvind

    For BEx Web 7.0 make sure you have the attributes suppressed in help with the instructions from note below:
    https://service.sap.com/sap/support/notes/1144979
    Also apply the optimizations provided in the notes below:
    https://service.sap.com/sap/support/notes/1374724
    https://service.sap.com/sap/support/notes/1379804
    https://service.sap.com/sap/support/notes/1266510
    Also you could try changing the read mode of the F4 help depending on the size of the cube and MD tables.

  • Input Help from Internal table.

    Hi All,
    I have created a screen with fields from an internal table and I can't access the Input help calendar for dates. I would also like to access the domain values that are linked to the original transparent table for two other fields on the screen (both from the internal table in the program) when I click on the input help in the field or press F4.
    Relevant assistance will be rewarded.
    Thanx in advance.

    HI
    try like this
    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 DESIGN***********************
    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.
    **********END OF SELECTION SCREEN DESIGN*****************
    *****INITIALIZATION VENT TO ASIGN DEFAULT VALUES TO OTYPE
    *INITIALIZATION.
    S_OTYPE-LOW = 'D'.
    S_OTYPE-SIGN = 'I'.
    S_OTYPE-OPTION = 'EQ'.
    APPEND S_OTYPE.
    CLEAR S_OTYPE.
    *************END OF EVENT INITIALIZATION*****************
    *********VALIDATION FOR SCREEN FIELDS********************
    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.

  • Help required on Freely Programmed Input help

    Dear all,
    I have developed a component, say comp1, in which i have implemented the interface IWD_VALUE_HELP.
    In the respective view(MAIN) of Comp1 i have a dropdown which contains a list of company codes fetched from T001 table.
    Apart from these two, I have also embedded the Main view into the window WD_VALUE_HELP.
    Now, I have created another component, say Comp2, in which i Used the dynpro component Comp1, and also in the MAIN view of my Comp2. Now in the MAIN view of Comp2 I have created a input field from the node T001 in the context which contains the single attribute BUKRS type String. In the properties of the BUKRS attribute I have also changed the Input help to "Freely Programmed" and linked to the component for the Input help.
    After this, I have created the application for my component Comp2. When i run the application and when i press F4 on the input field i am able to get the window from Comp1 component, and a dropdown with values.
    Now the question is, How can i pass the value selected in that window of Comp1 into the input field of Comp2? we do the same in OVS, when ever a value is selected from the Hitlist, it will be cascaded into the input field, just like that i want to do here.
    Please suggest me how to do this, and also please tell when to go for Freely programmed Input help and its advantages.
    Thank you,
    Shashi.

    You can do as suggested already and use interface nodes and cross component mapping; but that is all really not necessary.  It creates a situation where you calling application is too dependent upon the freely programmed input help.  You want to try to avoid the situation where the calling application needs code or mappings to communicate with the input help.
    That is easy to do because the framework passes all the information you need into the freely programmed input help via the value_help_listener object. 
    Part of the Freeley Programmed Input Help Component should be the component interface IWD_VALUE_HELP.  This comes with a component controller method called SET_VALUE_HELP_LISTENER.  This allows your freely programmed value help to capture this object called listener of type IF_WD_VALUE_HELP_LISTENER. I generally just store it awa into a component controller attribute.
    With this listerner object you have direct access to the context attribute in the calling component. You can query information about the calling UI element and of course set values directly back into it.  The listener is a hugely helpful object and should be the way you interact with the calling component whenever possible.  Here is small example:
      set single attribute
      wd_this->value_help_listener->f4_context_element->set_attribute(
      exporting
        name = wd_this->value_help_listener->f4_attribute_info-name
        value = l_time

  • Dropdown lists or F4 (input help) on custom field

    I created a custom field and would like to either add a dropdown or an F4 input help.  I know how to do the input help  or the dropdown, but I would like the user to type in their own data on the field if they don't want to select from the list provided.
    Does anyone know how to do this.

    Check out this code.... This module does F4 help for a screen field called P_TRFAR.   It gets its values from the data base,  you could easily build this internal table in your program without going to the database.
    MODULE HELP_ON_TRFAR.
    data: begin of help_trfar occurs 0,
           trfar type t510a-trfar,
           tartx type t510a-tartx,
          end of help_trfar.
      select * into corresponding fields of table help_trfar
                  from t510a
                        where molga = '10'.
      call function 'F4IF_INT_TABLE_VALUE_REQUEST'
           exporting
                retfield    = 'TRFAR'
                dynprofield = 'P_TRFAR'
                dynpprog    = sy-cprog
                dynpnr      = sy-dynnr
                value_org   = 'S'
           tables
                value_tab   = help_trfar.
    ENDMODULE.
    In you flow logic, you need the following line to trigger the help when the user presses F4.
    PROCESS ON VALUE-REQUEST.
      FIELD P_TRFAR MODULE HELP_TRFAR.
    That should be all you need.
    Please don't forget to award points accordingly for helpful answers.  Thanks.
    Regards,
    Rich Heilman
    Message was edited by: Rich Heilman

  • Drop-Down-Box (F4 Input Help) for formula variable in BEx Analyzer (BI 7.0)

    Hi Gurus,
    is it possible to get a drop down box for a ready for input formula variable in the BEx Analyzer (not BEx Web!)?
    We want to let the users choose scaling factors 1, 1000 or 1000000 (implemented via this formula variable). In the settings of the formula variable you can only choose a default value but there seems to be no option to provide all three factors in a drop down box like the ones for characteristic value variables.
    We could prevent other entries in the variable pop up via customer exit (i_step 3) but the business is wishing an F4 input help like the ones for characteristic values.
    Thanks for your help,
    Marco

    Hi Macro,
    Its not possible to get drop down box for a ready for input formula variable. Because it is possible only for characterstic value variables but not formula variable.u donnot get any drop down box like ready for input for formula variable.
    Regards,
    Premalatha.C

  • Adding Input Help to a Field in WebClient

    Thanks Tanja for the input but I need to add input help to the u201CValueu201D field in conditions for alert rules to facilitate the input of Sold-To Party values. For example, the user can click the input help icon and that select the desired Sold-To Party from the list.
    I inadvertently deleted my original posting so I am reposting again.
    Thanks,
    bam

    Hi Corwin,
    You can have Process on Value-Request on your screen where the field exist. You can use SE80 to edit the screen of the function group that table maintenance generator created.
    1. Edit the screen using SE80.
    2. Place a 'process on value-request' at the bottom of the flow logic.
    3. Below that, put this line
    field fieldname module get_help.
    4. Double click on GET_HELP and create an input module pool program.
    5. In this module pool, pass the values of the other fields in your screen to the function module that can provide you the list of values
    6. Use function module F4IF_INT_TABLE_VALUE_REQUEST within this module pool to popup the values.
    However, please keep in mind that the values from other fields on the screen are not populated in its field unless you hit enter.

  • Nakisa Org Hierarchy view setup

    Hi,
    Does anyone have any information on setting up the Org Hierarchy view in TVN? Currently I only have a single, blank box displaying on the Nakisa webpage in the Org view (under Position tab).
    Also, I'm looking for the full document set and a config manual (other than the installation guide and administrator guide available after installation).
    Any assistance will be greatly appreciated.
    Dirk.

    Hi David,
    Usually these fields are stored by default. They are a standard set of names that are used by the BAPIs that get and return the data from SAP. These are:
    OrgUnit Hierarchy:
    Hierarchy ID: Object_ID
    Parent ID: ParentNo
    Element ID: Object_ID
    Position Derived:
    Hierarchy ID: Object_ID
    Parent ID: <blank>
    Element ID: EmployeeID
    Sucession:
    Hierarchy ID: Object_ID
    Parent ID: <blank>
    Element ID: Object_ID
    Youalso  need to make sure the link settings are also populated.
    If you have already used these and only get part of the structure your SAP user ID may not have the required authorisations to view all of the structure. Nakisa can recommend how to setup the user.
    Good luck.
    Luke

  • Input Help Frame too Narrow in WAD

    Hi everyone,
    We have a problem with some of our Web Applications. When we want to select values by using the input help in the variable screen, we can't see the values we have selected at the right side of the selector screen because the frame is very narrow.
    Is there any place where it is configured? or we'll have to wait for foward support packages.
    Thanks in advance.
    Edited by: Carlos Iglesias Fernández on Jul 22, 2008 6:59 PM

    Hi again.
    the problem only appear when the variable is a Selection-Option variable.
    Thank you.

  • Input Help Validations

    I have certain fields on my ALV grid that are tied to input help.
    When the user disregards the input help and enters an invalid value
    an error is displayed indicating that the entered value is invalid.
    Is there a way to prevent these messages from being displayed?  I want
    to do my own validations, but I do not want to disable the input help.

    When the error message is displayed?
    Is it displayed after entering wrong value in the ALV and pressed enter or some event is triggered?
    Is erroneous field becoming red after error message?
    According to me, If above things are happening then this is related to the field level validation. Try to change the data element of that field to something else (e.g. string or char) this will bypass the field level validation if any. Then attach same search help to it.
    I hope it will help.
    Regards,
    Saket.

  • Input help on 0Fiscper taking a lot of time

    Hi all
    1. Whenever i open the input help for the 0fiscper from the Variable selection screen it takes a lot of time (huge amt of time)
    2. Whereas there are only 24 values present for it.
    3. But when I open the input help through the ´select filter value´ it opens pretty fast.
    4. This problem is with only 0fiscper which is BI Content InfoObject & happens only on particular ODS 0FIGL_O02 which is again a SAP std Object .
    5. This problem has started just in the last few days , wasnt there earlier.
    Thanks
    Ramesh

    Hi!
    Did you find any solutions because I'm facing on the same problem. When I launch it in RSRT, there is no problem but whern I try it in the Java partal, it runs and doesn't work.
    Thanks in avdvance.
    Ronan

  • Table Contents - Input help

    Hi all,
    When I view table contents by giving a specific value to one of its field as selection criterion, it is found that some records exist for that value.
    But instead of viewing contents directly, if I click on the input help for the same table field, the above mentioned value doesn't appear in the help list.
    What is the reason for this ?
    Regards,
    - Shankar.

    Yes, I had found that TKA01 is the required table.
    However, surprisingly, the table TKA01 does not contain record for the controlling area value, which I am looking for in search help of CSKS table. And its search help list is also identical to that of CSKS.
    Does this mean that -
    1) some KOKRS search values are manually 'added' somewhere ?
    2) some other table than TKA01 is being referred ?
    Thanks,
    -Shankar

Maybe you are looking for