F4 Help in sm30

Hello developers.
I created a table contained 3 fields (MANDT, ID, NAME) then I made a projection view and the dialog for that.
When I try to insert the value and press F4 all I can see is only the one field: ID. I would like to see NAME too.
Popup is called using FM DD_SHLP_CALL_FROM_DYNP.
Where I can configure this popup ?

I found the solution. Created the search help and added my fields there.

Similar Messages

  • Match code help in sm30

    Hi all,
    Requirement is while entering values into a Ztable by SM30 ,
    we need to have a standard search function (match code) for a field.
    We are succeded till populating values to all the fields based on primary field in sm30,
    stuck while creating search help for one of the field.
    Regards,
    Anil.
    A suggestion can make a difference.

    Without programming, you may provide a search help with
    ● Attaching a search help to the data element
    ● Attaching the data element to a domain with values (in domain or a value table)
    ● Creating a foreign key with another table
    Look also at standard SAP documentation like [Attaching to a Table Field or Structure Field|http://help.sap.com/saphelp_nw70/helpdata/EN/63/1b70bfc32111d1950600a0c929b3c3/frameset.htm] in [Search Helps|http://help.sap.com/saphelp_nw70/helpdata/EN/8b/415d363640933fe10000009b38f839/frameset.htm]
    NB: Remember that when you define a maintain view you may change the Data Element, so you may substitute a custom  Data Element with a custom search help.
    Regards

  • Help on SM30 screen maintenance!

    Hi!
    I have some difficulties to generate the screen maintenance of my table...
    When I generate the screen using Utilities > Table Maintenance Generator some columns dispare...
    Structure of my table:
    MANDT
    BUKRS
    SAKNR
    DATAB
    DATBI
    TEXT
    When I generate the Maintence type with One step all the columns are here => OK.
    When I generate the Maintence type with 2 step all the columns are DATAB and DATBI are missing on the first screen (preview) => KO.
    I generate and generate but the results are the same.
    Why?
    David31

    Hi,
    We found a solution but not an explanation...
    1. We generate the screen maintenance for one step. => The columns DATBI and DATAB are present.
    2. We change the maintenance type to 2 step.
    3. We click on the button Change and check the box Maint. type changed and we validate.
    ==> The result seems to be ok.
    According to me it seems more to be a temporary solution but we do not have the real explanation.
    We type the 2 columns with standard data element and specific but no change.
    Thanks for your indications.
    David31
    NB:
    I do not close the post in order to have have an explanation on this problem and to understand.

  • F4 help values in SM30 - Table maintenence

    Hello Guys,
    can anyone of you advise how to do the F4 help in SM30. I have a Z table and generated a table maintenence. I want the F4 values for customer or material or cocode..etc..to appear in SM30.Thanks
    Senthil

    Hi Senthil,
    If the data element or the domain you have used for the field of your table, has search help attached to it, then you will automatically be able to use it in SM30..
    Thanks and Best Regards,
    Vikas Bittera.
    **Reward if useful**

  • How can I to obtain the value selected in a search help?

    Hi Gurus,
    I have a search help and it has a "search help exit" (a FM).
    At FM search help exit I am calling the standard FM RHF4_RFC_FIELD_VALUE_REQUEST to another system ( assigning the corresponding "destination" ).
    The FM RHF4_RFC_FIELD_VALUE_REQUEST display a screen where the search is done. When a field is selected returns the values in the internal table RETURN_TAB.
    At FM search help exit I assign the selected value ( in RETURN_TAB ) to internal table's field RECORD_TAB-STRING.
    The search help is assigned to a table field and when I want to obtain a value through search help in SM30 transaction, the screen created by FM RHF4_RFC_FIELD_VALUE_REQUEST appears, but when I select a value, this is not "copy" to the table field.
    In what am I wrong? What am I omitting?
    Thanks

    Hi,
    Probably you are not mapping the right fields from source to destination structures.
    plz check RETURN_TAB-STRING(this is an example) assigned to RECORD_TAB-STRING.
    put a break point at this line and check.
    Thanks,
    Sree.

  • Search help for field in SM30

    Hi Experts,
    This is a Z table with first field as GROUP and second field as KEY.
    User can select values for first field using a search help. It has three possibel entries
    1. Purchasing Org
    2. Region
    3. Coutnry
    In second field the user has to enetr value based on selection in first field, for eg. if 1 is chosen in 1st field user will enter name of a purchasing organisation.
    Can we dispay a search help for second field based on the selection in first field?
    Like if 1 is selected in 1st field second field should display search help for Purchasing Org
    if 2 is selected in 1st field second field should display search help for Region....in SM30?
    How can we achieve this?
    Thank you,
    Anubhav

    Hi Anubhav,
    1.Go to the table maintenance generator screen from SE11 (Utilities -> Table Maintenance Generator).
    2. In the Table maintenance generator screen , navigate to Environment -> Modifications -> Maintenance Screens
    3. Select and Edit the screen where you need this new search help
    4. Create a Process on Value Request module for your second field at the end of the screen flow logic after MODULE LISTE_AFTER_LOOP.
    5. In the POV module, use funcntion DYNP_VALUES_READ to read the value of field 1 on the screen
    6. Fill your own table with the values for field 2 based on field 1 and display selection using the function F4IF_INT_TABLE_VALUE_REQUEST
    Hope this helps.
    - Puneet

  • F4 help for custom table field - to be used when populating data thru SM30

    Hi,
    I have a custom table with 5 fields - say A, B, C, D and E. While populating data to the table through SM30, I need to create a F4 help for the field C. A  custom function module needs to be used.
    I have created a module for the same in the event PROCESS ON VALUE-REQUEST of the function group of the table.
    But the F4 for field C depends on the values put in fields A and B.
    I am not able to get the values of fields A and B from within the module PROCESS ON VALUE-REQUEST.
    Please help me to create the F4 help.

    hii,
    This is the piece of code i have used in one of my SM30 to get f4. mopdify according to ur need and use.
    revert back for further help.
    w_dynpread-fieldname = 'ZSITEDCDATA-SITE'.
      APPEND w_dynpread TO i_dynpread.
      CALL FUNCTION 'DYNP_VALUES_READ'
        EXPORTING
          dyname               = 'SAPLZSITEDCDATA'
          dynumb               = sy-dynnr
          translate_to_upper   = 'X'
        TABLES
          dynpfields           = i_dynpread
        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.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      READ TABLE i_dynpread INTO w_dynpread INDEX 1.
      IF sy-subrc IS INITIAL.
        SELECT land1 FROM t001w
          INTO TABLE i_site
          WHERE werks EQ w_dynpread-fieldvalue.
        IF i_site[] IS NOT INITIAL.
          DATA: lv_line TYPE i.
          CLEAR lv_line.
          DESCRIBE TABLE i_site LINES lv_line.
          IF lv_line GT 1.
            CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
              EXPORTING
                retfield        = 'ZSITEDCDATA-SITE_COUNTRY'
                dynpprog        = 'SAPLZSITEDCDATA'
                dynpnr          = sy-dynnr
                window_title    = 'Site Country'
                value_org       = 'S'
              TABLES
                value_tab       = i_site[]
                return_tab      = i_return
              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.
            ELSE.
              READ TABLE i_return INTO w_return INDEX 1.
              IF sy-subrc IS INITIAL.
                zsitedcdata-site_country = w_return-fieldval.
              ENDIF.
            ENDIF.
    Thanks ,
    Gaurav

  • How to create F1 help for fields of a table in SM30

    I have a z-table which is being maintained using SM30. while creating new entries for the z-table using this SM30 i want to create F1 help which will be useful for the user to create new entries. can anyone pls help we this requirement?

    Hi Lalitha,
    To have F1 help documentation, you need to create Documentation by pressing Documentation button in the Change Data Element screen (SE11)
    If you need certain values for the field through F4 help then you need to specify the values in the Domain of this Data element (SE11)
    Jogeswara Rao K

  • Dynamic search help for one field of the SM30 generated maintenance view

    Hi experts,
    I have one Z* table with three fields. For that table I have generated maintenance dialog in SE55 so I can now run the maintenance in SM30. My requirement is: as soon as a user enters a value for the first field, the search help for the second field should be depended on the value in the first field. Let's say when user entered value 01 into the first field then the search help for the second field should be S_HLP01. For other values entered into the first screen the search help for the second field should be S_HLP02. Both search helps are standard (the names differ).
    Is there any change how to achieve this without making completely new dynpro transaction?

    Hi ,
    You can try it this way.
    pass your match-code( search help to function ) HELP_VALUES_GET_WITH_MATCHCODE and get the value and update it in  your screen field.
    But you have to modify the flow logic in POV event. it would be better if you create your own transaction because once the maintenance is regenerated your modified flow logic will vanish

  • Help on maintenance view SM30

    Hi all,
    Can someone help me with giving step by step detials of how to create Maintenance View using SM30, or atleast a pointer showing the information location..
    Regards,
      -Ashok Hansraj

    <b>Please take time to read all the responses given to you in other posts, reward them appropriately and close them if answered.</b>
    SM30 uses the maintenance view you create, it does not create it. You have to create maintenance view by following the path in SE11>Change>Utilities-->Table Maintenance Generator.
    Alternatively, you can also use SE54. Enter your table name and then select 'Generated Objects' radiobutton, press 'create'.
    Srinivas

  • F4 help based on another column value in SM30

    Hi All,
    I have two fields in the view to maintain in SM30. The second field possible values are dependent on the first field value.
    View has two fields - Feild1, Field2.
    Field2 value table is varied based on what is filled in Field1.
    I have created POV for the field F2 in the screen directly.
    PROCESS ON VALUE-REQUEST.
      FIELD ZVIEW-Field2 MODULE f4_field2.
    When I click on new entries, i do not have access to the value ZVIEW-FIELD1.
    I can manage for the existing records as the data exists in standard internal table TABLE. But for the new ones, can any one please let me know their ideas?
    Thanks
    Pavan

    No, it works very well, I guess you didn't code it correctly. By the way you must also get the cursor position to determine the line of the current table control:
    * code in the POV
    data lt_dynpfield type table of DYNPREAD.
    data ls_dynpfield type DYNPREAD.
    REFRESH lt_dynpfield.
    clear ls_dynpfield.
    ls_dynpfield-fieldname = '<your other field name>'.
    GET CURSOR LINE ls_dynpfield-STEPL.
    APPEND ls_dynpfield to lt_dynpfield.
    CALL FUNCTION 'DYNP_VALUES_READ'
      EXPORTING
        dyname                               = sy-repid
        dynumb                               = sy-dynnr
      tables
        dynpfields                           = lt_dynpfield
    EXCEPTIONS
       OTHERS                               = 11.
    * here lt_dynpfield[1]-fieldvalue contains the value entered in the other field

  • POV-After creating Tcode for a table SM30 I want F4 Help here

    Hi All,
    After creating Tcode for a table, When I am trying to give table entries thro' this Tcode, I want F4 help for those fields. Apart form assigning "Fixed values" in Domain level how can I achieve this.
    Points Assured.
    Regards,
    Suresh

    Hi,
          You need to create search helps based on this table for each filed or one for all the fields with proper import and export paramters. Or else you can give check table entries for each of the table fields for which you need the F4 help. Check table us assigned to a field using the Foriegn key assignment.
    Best Regards,
    Sesh

  • SM30 Table KMaintanence help

    Hi Seniors,
    Pls. let me know is there any way to monitor the Z-table changes(updation , insertion , deletion ) which is happening through the SM30 by user.Any user exit or steps for monitiring???
    Any inputs on this will be highly appreciated..
    Thanks in advance.
    Rgds,
    Lakshmiraj

    Hi,
    When i'l clicking sm30 - change log..
    i am getting this
    None of the tables concerned is currently
    Continue with the analysis anyway?
    Yes  no
    after selecting Yes.. it shows ...
    Customizing objects: Change logs
    Parameters for evaluation:
             System ID:            TK1
             SAP Release:          46C
             Client:               200
             Date :                20.12.2007
             Time:                 16:17:47
             User:                 ENGDEV
    Selected period:
             from (date/time)      14.12.2007 00:00:00
             to (date/time)        20.12.2007 16:16:04
    Selected Customizing objects:
    ZAUTH            Authorization for Discounts / Payment Terms / Costs
    Analysis without archived log data
    No logs found for the selected period
    and also through this FM ...DBLOG_READ_TABLE.. i can't able to read the data which is changed via SM30...

  • Unable to edit maintenance view in SM30

    hi everyone.
    need your help, I have one custom table, let's call it YTAB.  This table has several maintenance views created for it, depending on company code.  For YTAB, i have created a maintenance view YTABX. 
    When we moved YTABX to PRD, we cannot edit it in SM30.  The user ID has the right authorization.  The error message is "client 100 not modifiable".  When I try to edit the mother table YTAB in PRD, I am able to go in and do the changes.
    I have already compared the settings for YTABX with the other existing views, they are the same.  My settings for the view are:
    Access: Read, change, delete & insert
    Delivery Class: C
    In the table maintenance generator, i have a 2-step maintenance type, recording routine is Standard recording routine and compare flag is automatically adjustable. 
    Attributes for table YTAB also has delivery class C, table category is transparent table, table maintenance is allowed.
    Thank you in advance.

    Hello roch,
    the direction in which mark points is right but i think you should get some more information on the principles of table types and sap system landscape.
    Usually you should not be able to directly maintain any table. This is not only bad style but also a huge risk for the system consistency. That's why application data is always maintained via some kind of application which ensures that the data is vilidated before it is stored.
    Customizing data should only be maintained within a development system and then transported through the landscape. To maintain these table you can use generated views, customer developed maintenance views, view clusters which all include automatical link to the transport system. If you would maintain these tables directly in the productiion system it would have another configuration than the development and the quality/test system which makes them more or less useless as you can no longer make any serious test if the server configurations differ.
    To prohibit changes of customizing tables on production and test servers the admins lock the systems which results in the message you got. This setting is made in TCODE SCC4. Even if you have for any reason the authorization to use this transaction you should in no case change these settings without approval of basis / system owner. 
    Kind Regards
    Roman

  • Error while creating the support message through "Help" in sol Man system

    Hi All,
    I am creating the support ticket in solution manager system through "Help". After entering priority, short & long description, i am getting following error:
    Error in Local Message System: Access via 'NULL' object reference not possible. Message was Not Created
    Message no. BCOS088
    Note: Component is getting defaulted.
    Please guide me on this
    Regards
    Senthil

    check this IMG activity
    SPRO --> SAP Solution Manager Implementation Guide --> SAP Solution Manager -> Configuration -> Basic Settings -> Standard Configuration of Basic Settings -> Specify Satellite Systems Connection -> Define Service Desk Destination in the Satellite Systems
    Define Service Desk Destination in the Satellite Systems
    Use
    In this IMG activity, you make the necessary settings in the satellite systems to enable users working in those systems to send problem messages to the central SAP Solution Manager system.
    Requirements
    Basis/ABA Support Packages have to be installed on the satellite systems. For further information, see the SAP Solution Manager Configuration Guide.
    Activities
    In the satellite systems :
    In view 'Create Messages: Customizing' (Transaction SM30, view BCOS_CUST), make the following settings for the application OSS_MSG:
    Column 1: Application: OSS_MSG
    Column 2: + : W
    Column 3: RFC Destination:  
    Column 4: + : CUST620
    Column 5: + : 1.0
    Note:
    We recommend to use the back destination you have already created.
    If you want to use a back destination you have created before SAP Solution Manager Release 3.20 SP05, proceed as follows in the SAP Solution Manager System:
    Generate the following roles in transaction PFCG.
    Assign the following roles additionally to the user for the back destination:
    SAP_SUPPDESK_CREATE
    SAP_SV_FDB_NOTIF_BC_ADMIN

Maybe you are looking for

  • Is it possible to use boot camp to install windows xp from only an update disk?

    Hello,   I have recently come across some of my old windows applications and an update disk for windows xp sp1. All I have is the update disk and I partitioned my drive and booted into the CD. Whenever I got through some of the processes of the initi

  • Software to watch TV online

    Hi, I'm not sure which forum to ask about this, but here goes. There are dozens and dozens of sites that claim to offer a multitude of TV stations to watch in HD and/or live for about $50 for the purchase of software. Below are several such sites, si

  • All purchased films - Removed

    i don't know who decided to start tinkering around with the interface but removing the "all" purchased tab was a terrible idea. The movie layout is already bad but now it's worse. I honestly don't know what movies are supposed to be in what genre. I

  • Install tar.gz???

    Hello!!!!!!!!!!! Someone knows how to install files source i saw a package in the aur repositeries for my printer but it's *.tar.gz how could i use it???? Thanks for your concern!!! hope you'll find a solution...not too hard to release... Last edited

  • WCS Database Won't Start

    We have WCS running on a VM, and due to some issues with the VM Infrastructure everything shut down abruptly.  The VM came back OK, but I just noticed that WCS no longer loads properly when attempting to access it via a browser.  Checking out the ser