Custom Field in Account Assignment with search help functionality..

Hello friends,
  I have added a custom field(Profit Center) in account assignment frame which is having search help also attached..
  the data for search help read from R/3.. When i click the search help in WEB , I got an error message saying that 'No input help available ( Search help PRCTR_EMPTY is empty )
  Any one have found this kind if issue?
please help out
Regards,
john.

Hi
You can create a custom search help (simialar to R/3 srch help for profit center) and create a corresponding search help exit for this purpose.
You need to call the R/3 table from SRM to get the required data and then map the data in to the search help fields.
Hope this will solve ur problem.
Regards
- Atul

Similar Messages

  • Customer field account assignment - F4 - search help exit

    Hi all,
    I have a question with regard to a F4 search help exit I'm try to build for a new CUF in the account assignment (include INCL_EEW_PD_ACC_CSF).
    I've successfully created everything (search help + F4 search exit (read R/3 table)), but when I want to include restricted the search with certain filter values entered on the screen I'm stuck.
    I tried to achieve this by passing the parameters entered on the search screen to the RFC read table function, but in fact I'm not able to read the <b>screen values</b> (using 'DYNP_VALUES_READ'):
    CALL FUNCTION 'DYNP_VALUES_READ'
            EXPORTING
              dyname               = lc_dyname_1
              dynumb               = lc_dynumb_1
              translate_to_upper   = 'X'
            TABLES
              dynpfields           = li_fields_filter
    I'm always getting an invalid dynpro error (I've tried passing SAPLBBP_PDH_ACC, SAPLBBP_SC_UI_ITS, SAPLBBP_CUF,...).
    Does anybody know how I can include de filter values of my search screen in my search ?
    Thanks in advance,
    Kristof

    Hi
    Which SRM version are you using ? What's your detailed requirement ?
    <b>You need to call these function modules inside your search help exit to fetch the user-entered value and then process it accordingly as per your requirements.</b>
    <u>Please go through these function modules.</u>
    *--- Get the user-entered fieldname
    <u>    CALL FUNCTION 'F4UT_PARAMETER_VALUE_GET'</u>
    *--- Map the Results
    <u>    CALL FUNCTION 'F4UT_RESULTS_MAP'</u>
    <b>Other related links -></b>
    Re: Search helps - CASE sensitive
    Re: Search Help - format problem
    Hope this will help.
    Regards
    - Atul

  • Problem  with search help and date fields

    Dear experts,
    I have two text fields and to each i assigned cacs_calendar search help.
    It works well normally but if i make text box output only then i cannot select date.
    I want that text box in its disabled form can be used to select date from cacs_calendar search help
    that i assigned.User should not provide manual input which means fiedls should be otherwise listed in grey.

    Hi Aditya
    If a I/P output field is provided an attribute as output only and though search help is provided , the values in the search help list will also be in read-only mode and u cannot select them at all, may be you can solve ur problem thru different approach.
    when a manual entry is done with wrong value which is not present in F4 help/search help list and
    execution is done SAP will by default throw error saying invalid value

  • Adding f4 help to wbs element field in account assignment tab of me21n

    My requirment is to create f4 help for wbs element field in account assignment tab of me21n,
    I have to pick wbs elements according to plant and storage location assigned in item overview of purchase order.
    for that i have created a ztable. and use it in f4 code,  or help me if any  other suggestion u have.
    thanks,
    Amol.

    Try to use screen-exit for assigning the serach help. There is one screen exit for PO ..
    Check the enhancement - MM06E005 ,
    Create project in cmod and use this enhancement.
    use the PROCESS ON VALUE-REQUEST event and  use FM 'F4IF_INT_TABLE_VALUE_REQUEST'
    hope this will resolve the issue.
    anya

  • Search Help functionality for Custom Field in CRM 6.0

    Hi,
    We have added custom field  PRODUCT_ID into component BT120H_CPL.  For this field, I need to provide search help in WebUI.  Can you please give some suggestion on the same.
    Regards,
    Ramki.

    Hi Ram,
                     Here is the sample code.
    Outbound plug:
    Global attribute : GR_CITYCODE_F4     Instance Attribute     Private     Type Ref To     IF_BSP_WD_POPUP
    data declaration
      DATA: LT_COL_DEF       TYPE TABLEVIEWCONTROLTAB,
            LS_COL_DEF       TYPE LINE OF TABLEVIEWCONTROLTAB,
            LV_REGION        TYPE REGIO,
            LV_COUNTRY       TYPE LAND1,
            LR_ENTITY_HEADER TYPE REF TO CL_CRM_BOL_ENTITY,
            LR_ENTITY_ADDR   TYPE REF TO CL_CRM_BOL_ENTITY.
      TRY.
          LR_ENTITY_HEADER ?= TYPED_CONTEXT->header->COLLECTION_WRAPPER->GET_CURRENT( ).
        CATCH CX_SY_MOVE_CAST_ERROR.
      ENDTRY.
      CHECK LR_ENTITY_HEADER IS BOUND.
      LR_ENTITY_ADDR ?= LR_ENTITY_HEADER->GET_RELATED_ENTITY( IV_RELATION_NAME = 'BuilStandardAddressRel' ).
        CHECK LR_ENTITY_ADDR IS BOUND.
    getting region and country
      CALL METHOD LR_ENTITY_ADDR->GET_PROPERTY_AS_VALUE
        EXPORTING
          IV_ATTR_NAME = 'REGION'
        IMPORTING
          EV_RESULT    = LV_REGION.
      CALL METHOD LR_ENTITY_ADDR->GET_PROPERTY_AS_VALUE
        EXPORTING
          IV_ATTR_NAME = 'COUNTRY'
        IMPORTING
          EV_RESULT    = LV_COUNTRY.
    appending citycode and description to internal table
      LS_COL_DEF-COLUMNNAME = 'ZZCITYCODE'.
      LS_COL_DEF-TITLE      = 'City Code'.
      APPEND LS_COL_DEF TO LT_COL_DEF.
      LS_COL_DEF-COLUMNNAME = 'TEXT'.
      LS_COL_DEF-TITLE      = 'Description'.
      APPEND LS_COL_DEF TO LT_COL_DEF.
      CLEAR: GT_CITYCODE[].
    fill the internal table  GT_CITYCODE whcih must appear in popup.
      FREE GR_CITYCODE_F4.
      GR_CITYCODE_F4 = COMP_CONTROLLER->WINDOW_MANAGER->CREATE_DECISION_POPUP( IV_TITLE             = 'City Code'
                                                                               IV_DESCRIPTION       = 'City Code'
                                                                               IV_VISIBLE_ROW_COUNT = 10
                                                                               IV_DISPLAY_TABLE     = GT_CITYCODE
                                                                               IV_VISIBLE_COLUMNS   = LT_COL_DEF ).
      GR_CITYCODE_F4->SET_ON_CLOSE_EVENT( IV_EVENT_NAME = 'CITYCODE_F4_SELECTED'
                                          IV_VIEW       = ME  ).
      GR_CITYCODE_F4->OPEN( ).
    on close event ****************************************************************
    where you can set the value of the  field *********************************
    METHOD EH_ONCITYCODE_F4_SELECTED.
    Added by wizard: Handler for event 'CITYCODE_F4_SELECTED'
    data declaration
      DATA: LR_OUTPUTNODE  TYPE REF TO CL_BSPWDCMP_BSPWDCOMPONEN_CN01,
            LR_ENTITY      TYPE REF TO IF_BOL_BO_PROPERTY_ACCESS,
            LR_HEADER      TYPE REF TO ZL_BP_HEAD_ACCOUNTDETAILS_CN00,
            LV_ROW_INDEX   TYPE STRING,
            LV_EVENT_NAME  TYPE STRING,
            LV_VALUE       TYPE STRING,
            LS_CITYCODE    TYPE ZTB0000A31PL2T .
      LR_OUTPUTNODE ?= GR_CITYCODE_F4->GET_CONTEXT_NODE( 'OUTPUTNODE' ).
      LV_ROW_INDEX = LR_OUTPUTNODE->GET_SELECTEDROWINDEX( ).
      LV_EVENT_NAME = LR_OUTPUTNODE->GET_EVENT_NAME( ).
      GR_CITYCODE_F4->CLOSE( ).
      IF LV_EVENT_NAME = 'OK'.
        LR_ENTITY ?= ME->TYPED_CONTEXT->HEADER->COLLECTION_WRAPPER->GET_CURRENT( ).
        READ TABLE GT_CITYCODE INTO LS_CITYCODE INDEX LV_ROW_INDEX.
        LR_HEADER ?= ME->TYPED_CONTEXT->HEADER.
        LR_HEADER->GS_CITYCODE_F4 = LS_CITYCODE.
        LV_VALUE = LS_CITYCODE-ZZCITYCODE.
      setting city code
        LR_ENTITY->SET_PROPERTY_AS_STRING( IV_ATTR_NAME = 'ZZCITYCODE'
                                           IV_VALUE     = LV_VALUE ).
      ENDIF.
    ENDMETHOD.
    Hope this helps.
    Regards,
    Ruby.

  • How to assign a search help

    Hi
      How to assign a search help for the particular field
    in any screen.
    By
    Prashanth

    Hi,
    **How to assign a search help for the particular field
    in any screen.
    -  insert the event PROCESS ON-VALUE-REQUEST in the program and add a field statement for the field that should trigger the F4 help. In the mdoule called from <b>PROCESS ON-VALUE-REQUEST</b>, call function module
    F4IF_FIELD_VALUE_REQUEST.
    <b>Samples code:</b>
    PROCESS ON VALUE-REQUEST.
    FIELD it_zsd00003-prctr MODULE f4_help_for_pctr.
    MODULE f4_help_for_pctr INPUT.
    CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
    EXPORTING
    tabname = 'ZSD00003'
    fieldname = 'PRCTR'
    SEARCHHELP = ' '
    SHLPPARAM = ' '
    dynpprog = 'ZSD00002_BRUGERKONV_LISTE'
    dynpnr = '0100'
    dynprofield = 'IT_ZSD00003-PRCTR'
    STEPL = 0
    value = '50*'
    MULTIPLE_CHOICE = ' '
    DISPLAY = ' '
    SUPPRESS_RECORDLIST = ' '
    CALLBACK_PROGRAM = ' '
    CALLBACK_FORM = ' '
    TABLES
    RETURN_TAB =
    EXCEPTIONS
    FIELD_NOT_FOUND = 1
    NO_HELP_FOR_FIELD = 2
    INCONSISTENT_HELP = 3
    NO_VALUES_FOUND = 4
    OTHERS = 5
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    There is <b>on more example with code</b> , just copy and paste the code and design the screen and you will be able to find ur search help.
    Find the code:
    Re: Creating customized search helps in Dialog Programming
    Hope this will help you.
    Cheers
    Sunny
    Rewrd points, if found helpful

  • Customizing for multiple account assignment in OME9

    Hello,
    We want to create a specific account category with different account assignment fields (cost center, WBS, order, etc).
    This account category will be used for PO items with single account assignment or multiple account assignment.
    One more information is this specific account category will be used only for PO replicated from Supplier Relationship Management. This means PO document type will not be created directly in R/3.
    We use ECC6 with EhP4 with business function LOG_MM_MAA_1 active, so we make MAA for GR valuated.
    According to those elements, iI would like to have confirmation regarding customizing we implemented, especially for fields:
    - "Indicator: Account assignment screen" populated with value '2' (Multiple account assignment)
    - "Distribution" empty (Single account assignment),
    - "Partial Invoice" populated with value '2' (Apportion IR quantities to GR quantities proportionately).
    While creating PO in SRM and after replication in R/3, cost distribution is done correctly for item with multiple account assignment (Account Assignment tab with Partial Inv. =  "Distribute Proportionately" and Distribution = 1, 2 or 3, depending on cost distribution type chosen) whereas for item with single account assignment, Partial Inv. is "Derive from Account Assignment Category" and Distribution is "Single Account Assignment Category").
    So, it seems OK. Nevertheless, i would like to have confirmation values i gave with above fields are correct in order to not have to change them later, i mean after PO were created, if problems occured.
    Thank you for your help.
    Regards.
    Laurent.

    Hello,
    During PO replication from SRM to R/3, customizing from OME9 is not read and "Partial invoice indicator" is always defaulted to "1" when item has a multiple account assignment.
    This behaviour can be overwritten by implementing:
    - either BBP_PO_INBOUND_BADI for method BBP_MAP_BEFORE_BAPI,
    - or BBP_ECS_PO_OUT_BADI for method BBP_B46B_PO_OUTBOUND.
    So, no need to take care of OME9 customizing.
    Regards.
    Laurent.

  • Disable G/L Account field in Account Assignment tab of ME22N

    Hi experts,
    My requirement is to disable G/L account field in account assignment tab of ME22N. Tried using badi ME_PROCESS_PO_CUST.
    I have searched forum for the same and tried out some solutions. But was unable to disable the field.
    Any help in this regard would be highly appreciated.
    Thanks in Advance.

    Hi farhan,
    Go to SHD0.
    write tcode : ME22N.
    Then write a transaction variant with Z..XYZ (Any name)
    then click on create. it will open Me22n screen.
    Then go to Account assignment category and simply come back it will record that screen.
    it will ask to give screen name just give it.
    then there is a chk box for OUTPUT ONLY. click that for GL Account.
    and save it and come to SHD0 screen.
    then in STANDARD VARIANT tab, activate that transaction variant u created.
    Now chk tcode ME22N. it will reflect.
    REMEMBER: after transporting to Quality or Production server, u have to activate this variant manually.Otherwise it will not reflect.
    Regards,
    Ankur.

  • Issue With Search Help in Module Pool

    Dear All,
    I have an Issue with Search help. I have created a Module Pool Program. In this module pool, User requires the search helps for the fields.
    Imagine there are 3 fields on a screen. Field1, field2 and field3.
    Field2 entries depends on field1 and field3 entries depends on field1 and field2.
    I have created a collective search help. and created the corresponding Ztables to maintain the search help entries.
    Now I assigned the same collective search help to both the fields . i.e. field2 and field3. But when i execute the module pool program, and press F4 on these fields , the data shown is write. BUT for the 3rd field, when I select F4, The second field values are transfered to the screen, instead of third field value.
    Any Idea will be appreciated .
    Help me , Its very Urgent.
    Regards,

    Did you check the screen field names & search help name? is it identical & unique?
    Raja T

  • Customer-Fields for accounting

    Hello,
    i have a question about adding customer-fields to accounting. According to SAP-Note Note 458591, its easily possible to create additional fields by only create them in append-structures. For me it sounds like you only have to do this and additionally add the new fields to the table BBP_C_ACC_F etc to see the new fields input-ready within the accounting-tab of Purchase Order maintenance etc, like me21n.
    Sadly the note is only for SAP SRM. Could anybody tell me if thats also possible for SAP ECC 6.0 ? The problem is, that ECC doesnt seem to have a table like BBP_C_ACC_F mentioned in the note.
    Or is the only way to add maintenance of further fields in accounting over new tabs with Badi ?
    any help would be appretiated.
    thanks and regards,
    oliver

    No one ?
    Maybe i wasnt able to write down my point, so here i go again.
    Theres the standard "Accounting"-Tab within the item-level details of PO-transactions like ME21N. That tab holds informations about the using accounts of the selected order-position (EKPO). Now i need to add one new customer-field to this tab. For this i extended the structure CI_COBL which is included in the structure COBL. That one holds the data for this tab. The structure is extended now - but how do i get this new field onto the displayed Subscreen on that accounting-tab ?
    Thats my point. I already tried to do it over generate a new subscreen over SPRO->IMG->MM->Purchase->Accounting->Create Subscreen for Accountingblock   and adding the field of COBL by hand but its still invisible on the screen even the subscreen is used. The logic must make it invisible.
    Can anyone help me out and give me some hints on that ?
    Thanks alot and regards,
    oliver

  • Help needed with search help with ina search help

    Hi all,
    i have a field fld1 (non primary key )and to the dataelement of that field a search help is assigned in table ztable1.
    That search help is referring to a table in which fld1 is primary key in ztable2.
    I have created another search help with all the fileds in ztable1 and iam using this search help in a selection screen returning another field say fld2.
    in this search help i have drill down for fld2, which in turn gives the fields of ztable2.
    This is working fine.
    i have created another search help with the fields of ztable1 but this time its its returning the value of fld1. for some reason in this search i am not able to see the drill downn for fld1 .
    can anyone tell me how to get the drill down even the import parameteris fld1
    Thanks

    hi,
    any suggestions on this
    thanks

  • Issues with Search Helps

    Hi Experts,
    Anyone have any advice or suggestions for this problem?
    Problem:
    When running standard SAP search helps (let's say search for material by material type - from MM03) the system seems to truncate my last character.  For example if I enter ERSA for material type - and look at the dynamic selection criteria all I see is 'ERS'.  Thus when I run my search - no results are returned.
    It is very odd behavior.
    Notes:
    - This occurs with standard and custom search helps
    - This only occurs with search helps - other fields do not have this issue
    - I recently downgraded my GUI version from 710 back to 640.  Since then I have uninstalled and re-installed many times - this does not seem to help.

    Why don't you try to login thru some other desktop that have SAPGui 7.10 and check whether its working or not.

  • Account assignment with business Place

    Hello Gurus,
    Can any body say me the Process of account assignment with bsiness place
    Please the path and the tcode.
    I have checked the FTXP OB40, OBYC

    Dear Joydip
    When posting a taxable document in the financial accounting application, the document must be assigned to the business place which eventually reports the VAT to the tax authorities. Therefore the R/3 System contains the field business place in every tax relevant transactions.
    The business place is a obligatory entry field in the posting screen whenever a document is posted and has a tax code (only for Korean Company Codes). Only one business place per document is allowed, even if a company has to issue Tax Invoices between business places (Stock transfer between plants which are different business places). How to handle the VAT between business places will read VAT on Stock Transfers between Business Places.
    The business place can be customized in the IMG.
    You enter only a part of the financial documents directly through FI. Most of the documents are transferred to financial modules from other integrated SAP modules. When passing taxable transactions to the FI module, the field business place must be correctly filled with the key of the responsible business place. To achieve this, the other modules have to be configured.
    Materials Management
    The plant is the central organization unit in Material Management. Material movements always occur either within one plant or from one plant to another. By allocating the business place to the plant, we can determine the business place that purchased the material. If plant 0001 is allocated to business place ‘BP01’ and plant 0002 is allocated to business place ‘BP02’, then the movement of material between plant 0001 and plant 0002 is also a movement between business place ‘BP01’ and business place ‘BP02’.
    The section code cannot determined by the plant automatically. The section code as a reporting unit for withholding tax has to be entered manually for each invoice by using the Logistic Invoice Verification. The section code can be found in the Document header of the invoice (Logistic Invoice Verification).
    The 'normal' Invoice Verification does not support the allocation of the business place and section code!
    Sales and Distribution
    Similar to the MM module, goods are managed on plant level. When goods are sold, the system can determine the delivery plant. This plant is stored in the SD document. When a billing document is passed to the financial accounting application, the system reads the business place assigned to the plant and writes it into the document. The allocation between plant and business place can be done in the IMG.
    Asset Accounting
    Asset transactions are posted automatically from the Fixed Asset module to the FI module. To indicate which asset belongs to which business place in the FI-AA module, the 4-character evaluation group fields are used. One of the available evaluation groups (4-character) must be determined for the use as the business place. In this chosen evaluation group in the asset master data you have to enter the business place. In the screen layout rule for the asset master records, the 4-character evaluation group should be configured as a mandatory field. But before entering the business place in the asset master data you should customize all business places in the chosen evaluation group. You find this transaction in the IMG. Financial Accounting --> Asset Accounting --> Master Data --> User fields --> Define 4-character evaluation groups.
    Thanks
    G. Lakshmipathi

  • How to update a custom field in declarative workflow with VS 2013

    Hello,
    How to update a custom field in declarative workflow with VS 2013
    any help would be appreciated!!!!!
    Thanks regards, Vignesh.

    Dear all,
    I'm using 4.6C right now, i already implement BADI MEREQ001, but this only valid
    for creating PR via ME51N.
    I found an EXIT_SAPLEBND_001 and tried to implement it,
    but i got another difficulties since how i transfer CEBAN structure to EBAN structure.
    thanks very much.
    Regards,
    Billy

  • Custom field in Account Partners Edit page

    Need to display a new custom field in Account Partners Edit page. We are not able to find the object definition of "Account Partners" which we can edit. Is option of adding a custom field in Account Partners Edit available in CRMOD? Will enabling "Partner Relationship Management" help in this regard?

    At this time it is not possible to add a custom field in the Account Partners Edit. I would recommend submitting a enhancement request to CRM On Demand customer care.

Maybe you are looking for

  • Add songs from folder

    I would like to add songs from a folder into itunes but itunes takes a max. of 5 songs and not more. The whole folder is possible but i want a part of it. Please be so kind and help me. Thank you very much. Toshiba   Windows XP Pro   Toshiba   Window

  • How can i see my device on itunes

    how can i see  my device on itunes

  • ORA-32036 unsupported case for inlining of query name in WITH clause

    I have a query with a WITH clause. In the WITH clause I am using the TABLE command to pull multiple records from a PL/SQL function in the FROM clause: WITH select_a AS (select x.col1, x.col2 from A, TABLE(schema1.function1) x where ...) select ... fr

  • Web Services, Schemas, and the xsi:type attribute

    Hi List, I have several questions reqarding web services, schemas, and the use of the xsi:type attribute in messages. Schemas: Q1: How complex can a web service schema be? Q2: Is it reasonable for a schema to contain derived types by extension [1]? Q

  • How can I load my businesscatalyst stylesheets on worldsecuresystems domain?

    Helllo, Here's the problem: You use Muse to generate a site and tweak things until it's just about perfect. You fill in the rest by using the Business Catalyst Site Admin options - edit module templates and corresponding CSS styles. You manage to kee