Mapping a field from input help screen(Using POV) to user screen

I have used the Function module 'DYNP_VALUES_UPDATE', to get the value from Description field in the search help.Now its throwing a runtime error mentioned below.
Runtime errors: CALL_FUNCTION_CONFLICT_LENG
Except. CX_SY_DYN_CALL_ILLEGAL_TYPE.
Short text: Type conflict when calling a function module
the function module was called incorrectly.
Below is the code i implemented.
ws_dynpfields-fieldname = wc_scrfld.
ws_dynpfields-stepl = tc_1017-current_line.
ws_dynpfields-fieldvalue = ws_hssr-text.
APPEND ws_dynpfields TO wt_dynpfields.
CALL FUNCTION 'DYNP_VALUES_UPDATE'
EXPORTING
dyname = 'sapmzapp01'
dynumb = '1008'
TABLES
dynpfields = wt_dynpfields
EXCEPTIONS
invalid_abapworkarea = 1
invalid_dynprofield = 2
invalid_dynproname = 3
invalid_dynpronummer = 4
invalid_request = 5
no_fielddescription = 6
undefind_error = 7
OTHERS = 8.
IF sy-subrc <> 0.
MESSAGE e800(zmdb_mda_supplier).
ENDIF.
The above code is in screen USER COMMAND OF 1017(POV-input help screen).
wt_dynpfields is the internal table.
and its fields are fieldname,stepl and fieldvalue
ws_dynpfields is the workarea of the internal table.
wc_scrfld-Constant with value zbut0000qnnyxa-ztfldg6h7np'(the description field name of the screen 1008 where i want the description value to get in automatically after selecting from input help)
ws_hssr-text= The Work area containing the value 'eg ORDER'.
kindly get back immediately....

Hi,
This function works only after POV.
So ensure that it is written in that module:
like AT SELECTION-SCREEN ON VALUE-REQUEST FOR f_name.
Hope it will guide you.
Jogdand M B

Similar Messages

  • Selection from Input help different from PA30 IT0014

    Hi Guys,
    Need advise as i'm trying to get the same result data from input help in IT0014 (wage type). I'm using normal selection from table but the result set are diffrent.
    I'm noticed more value appeared than the input help in IT0014 PA30.
    I checked on the input help seems no parameter passing.
    Attached is the screen for input help .
    Brgds
    Badz

    Finally after few debugging the logic and google searching .
    The answer is because in they wage type appeared in the search help already filtered by employee group and subgroup also personnel area.
    So each user will have different search result/input help  based on their group or pers area.

  • How can I print stuff from the 'Help' file using my MacBook Air?

    How can I print stuff from the 'Help' file using my MacBook Air?

    Open the Help viewer, select a category then from the menu bar top of your screen, click File > Print

  • Error while adding a custom field with Input help via AET

    Hi All,
    I need to add two custom field under Service orders at Item level in component BT140I_SRVP.
    One field is required to have the input search help f4 and autopopulates the second field
    I am able to add one field(not requiring help) successfully through AET .
    I have created one Zsearch_help in se11 and its successfully running  and Autopopulating seocnd field while I am testing it
    While adding second field through AET,I need to enter following details as -
    field label,search relevant ,serach help etc.
    When I type the name of my 'Zsearch_help' against field search help it gives me following error
    'Search help is not compatible'.
    Secondly,not getting getter and setter methods for the attrributes in BTAdminI.
    Last,please tell me if i create zhelp and activate it,would it automatically appear in the list on AETwhile assiging it to input field?
    Please help me out.Kindly be detailed as I am new to SAP CRM.
    Thanks,
    Shivani

    The question is answered in CRM 7.0 forum:
    Getting error while adding a custom field (with input help) through AET

  • How to delete a field from search help which is delivered

    hi
    I got a requirement to delete a field from search help which is delivered long back
    Regards
    krishna

    Hi
    Whether it exists in DEV system or not?
    Take the name of that Search Help from PRD/Quality(if it is not there in DEV system) and modify/change it by removing that field from the search help in DEV system and create a Transport request and transport the same request to Quality/PRD systems
    Now the New changes (in which the field was removed) will be over written on the old search help in the PRD system, since it is the same Name (search help)
    Regards
    Anji

  • Alv field with f4 help without using class

    Hi,
    Can any one give me a program of "Alv field with f4 help without using class".
    Thanking you in advance.

    hi
    <b>Linking F4 Help to Fields</b>
    For the last section, we will deal with linking F4 help to fields. It is easy. As usual, define, implement and register the event “onf4” at proper places in your code. For F4 help, you must register the fields whose F4 request will trigger the “onf4” event. For this you must prepare a table of type “LVC_T_F4” and register this table using the method “register_f4_for_fields”. While preparing table you must include a line for each field which will trigger F4 event. For each field in the structure;
    &#1048766; Pass the fieldname to ‘FIELDNAME’
    &#1048766; Set ‘REGISTER’ to make the field registered,
    &#1048766; Set ‘GETBEFORE’ to provide field content transport before F4 in editable mode
    &#1048766; Set ‘CHNGEAFTER’ to make the data changed after F4 in editable mode.
    DATA: lt_f4 TYPE lvc_t_f4 WITH HEADER LINE .
    lt_f4-fieldname = 'PRICE'.
    lt_f4-register = 'X' .
    lt_f4-getbefore = 'X' .
    APPEND lt_f4 .
    CALL METHOD gr_alvgrid->register_f4_for_fields
    EXPORTING
    it_f4 = lt_f4[] .
    Preparing table for the fields to be registered to trigger F4 event
    METHOD handle_on_f4 .
    PERFORM f4_help USING e_fieldname es_row_no .
    er_event_data->m_event_handled = 'X' .
    ENDMETHOD .
    A sample “onf4” method implementation
    Again, we set the attribute “er_event_data->m_event_handled” to prevent further processing of standard F4 help.
    regards
    Ravish
    <b>
    reward if useful</b>

  • Data no getting populated from input help to target field

    Hi ,
    I have made a input help for a field.
    and have used the following code to populte the data into the input help.I am having the data displayed but the data doesnot get populated on selection.
    CASE cs_dropdownlb_data-fieldname.
          WHEN 'ZZSALSPOS'.
            assign cs_dropdownlb_data to <extended_data>.
           lv_display = is_screen_structure-zzdisplay.
           clear ls_fieldcat.
           ls_fieldcat-fieldname = 'ZZSALSPOS'.
           ls_fieldcat-headertitle = 'Broker Id'.
           append ls_fieldcat to et_field_catalog.
           ls_fieldcat-fieldname = 'ZZBROKER'.
           ls_fieldcat-headertitle = 'Broker House Description'.
           append ls_fieldcat to et_field_catalog.
            CALL FUNCTION 'Z_SEARCH_HELP_SALES_ID'
             EXPORTING
               IV_DISPLAYALL        = lv_display
               IV_DIS_CHANNEL        = '11'
               IV_DIVISION           = '00'
             TABLES
               T_COST_CAT_F4        = lt_posid
            fldcat_add 'ZZSALSPOS'.
            fldcat_add 'ZZBROKER'.
            fldcat_add 'ZZREGION'.
            fldcat_add 'ZZDIVISION'.
            fldcat_add 'ZZSUBTEAM'.
            fldcat_add 'ZZTEAM'.
            SORT lt_posid BY zzsalspos zzbroker zzregion zzdivision zzsubteam zzteam.
            CREATE DATA <extended_data>-data TYPE zcrmt_mkt_broker_tab.
            ASSIGN <extended_data>-data->* TO <table>.
            <table> = lt_posid.
    I would sincerely appreciate and rewad if any solution could be suggested ....Thanking in advance...
    Narsingh

    The problem has been resolved

  • Input help selection problem in SAP GUI screen

    Hi All,
    We are using a SAP GUI based transaction for one ESS service. In this service, we have a input field. This field is defined as dictionary field And its picking F4 values from dictionary.
    Now we have a problem here.
    We have to set this field as mandatory(set in fields property using screen painter). Everything was fine, just before we did testing
    When user host this service, for above mentioned field user get to see one "?" mark. When user does not select any of the entry provided by F4. user gets a message "please fill mandatory field" and input field contains first entry from F4 help.
    Now this is very confusing, so we want to avoid selection of this entry.
    if any of you have faced similar problem ??
    any suggestions here.

    Yes Sudir ,
    We also stopped a bit at this point.
    Wht we did is impemented all the mandatory checks at module pool itself and throwed status msg by using Message class.
    Now if a user leaves any mandatory field , the status msg will point  the filed he left blank ..
    But Cursor won't point to that field .
    Regards ,
    J
    Do Award Points by clicking the left of this info.

  • ALV - refresh data after value is selected from input help

    Hello,
    I have input ALV where after I enter material number and press enter, the logic goes ahead and populates description column by utilizing ON_DATA_CHECK event.
    Is is possible to trigger some kind of event after the value is selected from search help without hitting enter key?
    When the user done with using search help and clicks on material number that he needs, the value is populated in ALV cell, and this is where I need some event trigger to fire the logic to get description without pressing enter.
    Thanks,
    Alex

    Alex, in that case, the alternative you have is to:
    - Create a Z structure where you have all the table fields
    - Bind the Standard DDIC search help to the Material ID (Importing) and the Description (Exporting)
    - Create the whole context node in WD referencing that DDIC structure.
    The important thing here is that the context node as a whole must reference the structure in order for this to work, not just the fields affected. This may not be possible or desirable in certain cases.
    If you do this, the Description will be populated by the SH through its returning parameter, so you wont have to do anything in WD to retrieve it as for the manual input + Enter cases.
    Here you have some help on SHs parameters:
    http://help.sap.com/saphelp_nw70/helpdata/EN/35/bdb6e2c48411d1950800a0c929b3c3/frameset.htm
    Hope this helps.
    Edited by: Alejandro Bindi on Sep 19, 2008 12:36 PM

  • Something is preventing me from opening attachements or using bottom of the screen in emails

    Can someone please help? For some reason there seems to be a small black triangle, like a tab set, on my screen preventing me from being able to use the bottom of my screen to scroll or open attachments. I can use the screen to scroll for all other apps but when I open my e-mail I can only use the upper portion of my screen to scroll and the bottom portion is locked out right where the triangle tab starts. Does anyone know why and how I can remove this?

    I apologize for this reply being so late.  Your idea was great but I am already operating at the largest dimensions.  The problem got temporarily solved when I installed the latest OS update but it has now returned.  As well, the follow-up from Apple gave me the option of marking your suggestion as "correct answer" or "helpful answer" and I'm sorry but I can't say either.  I have no idea what to try next -  other than to wait for another update to OS X 10.

  • Getting error while adding a custom field (with input help) through AET

    Hi All,
    I need to add two custom field under Service orders at Item level in component BT140I_SRVP.
    One field is required to have the input search help f4 and autopopulates the second field
    I am able to add one field(not requiring help) successfully through AET .
    I have created one Zsearch_help in se11 and its successfully running while I am testing it
    While adding fsecond field through AET,I need to enter following details as -
    field label,search relevant ,serach help etc.
    When I type the name of my 'Zsearch_help' against field search help it gives me following error
    'Search help is not compatible'.
    Please help me out.Kindly be detailed as I am new to SAP CRM.

    Thanks for very helpful reply. After implementing the suggested SAP note, I am able to see the getter and setter methods.
    So one of my problem has got solved with your kind help:)
    As per your another suggestion,I have created the enhanced fields without the search help from AET in the node BTAdminI with names Plant(ZZPLANT) and Storage Location(ZZStoarge_Loc).
    Now I am facing below problem:
    Since Plant needs to autopopulated by Storage Location (search Help ZOFI_SHLP_STORAGE_LOC),So I need to Implement Getter setter method.
    I have written below code into Get_V_ZZStorage_Loc Method:
    method GET_V_ZZSTORAGE_LOC.
      DATA:
        ls_map    TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping,
        lt_inmap  TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping_tab,
        lt_outmap TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping_tab.
        ls_map-context_attr = 'ZZSTORAGE_LOC'.
        ls_map-f4_attr      = 'STORAGE_LOC'. (Storage_loc is the parameter defined in search help)
        APPEND ls_map TO: lt_inmap, lt_outmap.
      CREATE OBJECT rv_valuehelp_descriptor TYPE cl_bsp_wd_valuehelp_f4descr
        EXPORTING
          iv_help_id        = 'ZOFI_SHLP_STORAGE_LOC1'
          iv_help_id_kind   = if_bsp_wd_valuehelp_f4descr=>help_id_kind_callback
          iv_input_mapping  = lt_inmap
          iv_output_mapping = lt_outmap.
    endmethod.
    But its not working.Should I write some code in Get_P_XX or some other method also?
    Kindly suggest .

  • How to skip one field from the file by using sqlldr

    Hi ,
    i'm using DB 10g R2 on Redhat ,
    my control file hereunder ,
    LOAD DATA
    INTO TABLE reber.AAA_BILL
    APPEND
    REENABLE DISABLED_CONSTRAINTS
    EXCEPTIONS reber.AAA_BILL
    FIELDS TERMINATED BY '|'
    (Streamnumber ,
    MDN ,
    USERNAME ,
    DOMAIN ,
    USERIP ,
    CORRELATION_ID ,
    ACCOUNTREASON ,
    STARTTIME ,
    PRIORTIME ,
    CURTIME ,
    SESSIONTIME  ,
    SESSIONVOLUME ,
    RATEPOLICYIDX ,
    FEE ,
    GROUPID ,
    SERVICEID)and this is one records of the file ,
    222|1|0664363446|12D0DC90||10.15.6.45|007b8aa5|3|20111029204824|20111029204824|20111029211504|1600|0|147|0|4000|10154|really i want to skip the first field in the file which is (222|) and starting from the second field ,
    any help please

    Thank you for you reply ,
    really i know the Filler to skip colomn from the table , is the Filler working also to skip field from the File . i'll read the link to check this

  • How to Change the Fields from Input mode to display mode

    Hi experts,
    Here is my business requirement. I need to show certain fields in the PRICING TAB OF SALES ORDER  in display mode. Now for this i am using the BADI definition CRM_PRICING_BADI.
       Now, can anybody tell me how to change the field type from input mode to change mode?

    Hi Karan,
      In your BADI has a parameter CT_INPUT_FIELD_NAMES with one field called CHANGEABLE with values:
         Field Can Be Changed
    A     Field Cannot Be Changed
       Assing this values to your fields according with your requirements.
    Regards.
    Manuel

  • Not adopting storagelocation field from reservation to PR using MRP.

    Hi,
    We are using MRP in our company to automatically convert reservations into purchase requisition if the stock is not available.
    Now system is not adopting storage location field from reservation while creating purchase requisition.
    Can you please help me that where should i configure to fill the storagelocation field data from reservation.
    Thanks in advance,
    Hina Zakir

    Please check below mention details in material master.
    1) Material master is maintain for storage location check with MM03.
    2) Also check storage location in MRP2 view storage location for EP in MM03.
    3) Also check storage location in MRP2 view production storage location in MM03.
    Regards,
    Mahesh Wagh.

  • How to delte empty segments/fields from input XML graphical mapping

    Hi
      I would like to delete segments which don have any values in their child segments in graphocal mapping?
    How should i use createif and existsmapping functions for this?
    Edited by: Rajesh on Jun 15, 2009 8:42 PM

    I would like to delete segments which don have any values in their child segments in graphocal mapping?
    How should i use createif and existsmapping functions for this?
    If you want to check if a value if present in a particular node or not then I dont think exists function will help you....exists function will only check if the node is existing or not.....
    <SRC>
    <Node1>
    <Field1>SAP</Field1>
    </Node1>
    <Node2>
    <Field2></<Field2>
    </Node2>
    </SRC>
    If above is your structure on which you want to implement the logic..then as per your req you dont need to have the Node2 as the field(s) within it is not having any value....then you need to implement the below logic:
    Field
                             ----------> equalS ----> Not ---> If...then / createIf ----> Target
    Constant(keep it blank)
    Regards,
    Abhishek.

Maybe you are looking for

  • Fios battery backup questions

    I am wondering if the fios battery backup is okay with generator power.  I have a generac whole house generator and I have one ups that is fine with it and a smaller one that does not like the power it puts out. Wondering if the fios ups will work wi

  • CSA - External Access Policy

    Greetings! Guys, I need some help. One of our customers bought the CSA solution in order to protect and narrow Internet access when an employee is out of the office. Here is the scenario: If an employee takes one of the company's laptop to his house/

  • USB Printer with Time Capsule (with 802.11ac)

    Hello Guys, I have a Canon MP258 inkjet printer and it's not working with my airport time capsule (with 802.11ac) . I had tried a lot of method to solve it but it can't be done. Pls, help me to solved this puzzled.Thx  Best Regards, Johnremy

  • How to start? i am puzzled...Help.

    I wanna learn JSP to make webpage.but i dont konw how to start. I need a guide. Can anyone help me? ThanX.

  • How to reduce memory usage when loading bitmaps from the library?

    When I use BitmapData.loadBitmap() to load an image from the library and then attachBitmap() to add it to a MovieClip it takes a lot more memory as opposed to just having the same image inside a MovieClip statically in a frame on it's timeline. The f