Account assignment search help in SC.

We currently implement stand-alone scenario and looking for solution how to maintain account assignment data in EBP. As far as I know account assignment data managed in back-end system and not replicated into EBP.
We would like to manage account assignment data in EBP in Z-table. This table required to have F4-search for WBS-elements in SC transaction.
So the question is how to create F4-search based on Z-table. Can BADI BBP_F4_READ_ON_ENTRY help me to resolve this issue? It seems like this BADI does not work in SC transaction.
Is it possible to show WBS-element description on account assignment overview screen?
Thanks,
Alexander

Hi
Which R/3 back-end are you using ?
Are you not replicating the same A/c Assignment caetgories from R/3 into SRM
system ?
Do let me know.
<b>Meanwhile, Please go through the following SAP OSS Notes below -></b>
Note 945158 - F4-Help Validation in local Scenario
Note 815849 - FAQ: Account assignment system response
Note 791465 - PPOMA_BBP:Incorrect search help in back-end for WBS elements
Note 725247 - Search help and BAdI BBP_F4_READ_ON_ENTRY in accnt assgn scr
<u>The 2 Related Notes for Note 725247</u>
1) Note  925890 - Cost centre drop down not working
2) Note  839534 - Problems with dropdown list in Acc. ***. overview
Note 856914 - Cost Assignment search returns incorrect description
Note 712701 - Backend search help for WBS elemnt (Work breakdwn structure)
Note 693795 - Search help for activities for the network
Hope this will help.
Regards
- Atul

Similar Messages

  • FI account assignment search help enhancement

    We are looking to either link html text or enhance SAP search help so when staff our choosing GL accounts in PR's & PO's they can look at guidance on what should be charged to specific accounts. Can such user defined help text be added to matchcode or SAP standard help in any way, or links to html info be added?
    I am curious as to what customers have created in this area
    Thanks
    John

    Dear,
    Just checked with ABAPer, Yes you can add custom texts to F4 help. We tried picking data and go to transaction SE11 editing the help text we can add any info text to the standard text. Like wise you can do with search also.
    But what we discussed is changing standard is not suggestible, since we have many help texts to be included and modified. If any patches will require to updated, the changes will be overwritten.
    Regards,
    Syed Hussain.

  • How to assign search help using ovs for select options for ALV in web dynpr

    how to assign search help using ovs for select options for ALV in web dynpro

    Hi,
    refer http://wiki.sdn.sap.com/wiki/display/WDABAP/InputhelpofObjectValueSelectioninWDABAP
    http://www.****************/Tutorials/WebDynproABAP/OVS/page1.htm
    and http://wiki.sdn.sap.com/wiki/display/Snippets/WebDynproAbap-OVSsearch+help
    Thanks,
    Chandra

  • Assign search help for a screen field in standard program?

    Hi All,
    Is there any other way to assign search help to a standard SAP screen field? (to be precise i want to assign search help to Recipient field in table control of components tab in transaction IW32/IW31)
    I know we can do this by assigning search help through screen painter (by changing standard program, which is my last option).
    Any advice/help will be greatly appreciated.

    Hi,
    I think you will find solution in below <b>threads</b>:
    Re: Search Help for standard field
    How to assign a search help
    Search help for Standard SAP field
    <b>Reward if helpful</b>
    Rgds,

  • How to assign search help for an input field by fetchign values from an int

    i have an input field ,
    i want to assign search help for the same by fetching values from a table.
    how to achieve this ?

    Using the below ways you can assign search help to a field.
    1) [OVS Search Help|http://wiki.sdn.sap.com/wiki/display/Snippets/OVSsearchhelp]
    2) [Freely Programmed Search Help|http://wiki.sdn.sap.com/wiki/display/WDABAP/Freelyprogrammedinput+help]
    3) Dictonary Help - Use the Data element for that purpose.

  • Assigning search help (F4 functionality ) for recipient field in IW32

    Hi,
    my requirement is to assign search help (F4 functionality) for recipient field in components tab of IW32. anybody help me to assign search help for it. same way i need to assign that in MIGO, MB21, MB1A goods recipient field.

    hi,
    refer to the following link:
    http://www.saptechies.com/how-to-add-f4-help-to-a-field-on-screen-module-pool/
    i hope it helps
    regards

  • Assign Search help in report program

    Dear All,
    I facing problem to assign search help in report program.
    I crated one elementary search help in which three fields i include
    -carrid
    -carrier name
    -booking  
    all three fields having import and export parameter in search help.
    while executing this search help in se11 it gives proper output.
    but while assigning this search help in report program it only fetch one carried.
    my report is also having three parameter
    -carrid
    -carrier name
    -booking
    i assign search help like
    PARAMETER :  p_carrid TYPE scarr-carrid
                               MATCHCODE OBJECT z01_carrid,
    with all three field but it fetch only carrid ...

    Hi Chintan,
    For such types of requirements you can use this Function Module:
    F4IF_INT_TABLE_VALUE_REQUEST.
    Use this functiom modue under AT SELECTION-SCREEN ON HELP-REQUEST FOR P_CARRID.
    With this function module, you can fill your remainng parameters : P_carriername and booking also.
    Sample Code:
         DATA : TMP_RETURN_TAB  LIKE TABLE OF DDSHRETVAL,                                TMP_RETURN      LIKE DDSHRETVAL,                    
                    TMP_FIELD       TYPE  DFIES-FIELDNAME.               
    CASE AKIND.                                        
       WHEN '1'.                                        
         TMP_FIELD = 'AENNR'.                                        
       WHEN '2'.                                        
         TMP_FIELD = 'VBELN'.                                        
       WHEN '3'.                                        
         TMP_FIELD = 'ZZTEHAI'.                                        
      ENDCASE.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'                                                                 
       EXPORTING                                                                                     
         RETFIELD               = TMP_FIELD                                                                      
         WINDOW_TITLE           = ATITEL                                                                      
         VALUE_ORG              = 'S'                                                                                
       TABLES                                                                                          
         VALUE_TAB              = ATABLES                                                                           
         RETURN_TAB             = TMP_RETURN_TAB                                                                      
       EXCEPTIONS                                                                                
         PARAMETER_ERROR        = 1                                                                           
         NO_VALUES_FOUND        = 2                                                                           
         OTHERS                 = 3.                                                                                
      IF SY-SUBRC =  0.                                                                                
        READ TABLE TMP_RETURN_TAB INDEX 1 INTO TMP_RETUN.                                                            
        AVALUE = TMP_RETURN-FIELDVAL.                                                                      
      ENDIF.                                                  
    Jus analyze this code, you can get ur requirement done.
    Regards
    Sandeep Reddy

  • How to assign search help for custom cost centre field in SRM 7.0

    Hi Experts!!
    We are currently working in SRM 7.0.As per our business requirement, in account assignment tab we need to use a custom
    cost centre field (ZCOST_CENTRE) instead of standard cost centre field.It is observed that for standard cost centre field there is a standard web-dynpro search-help assigned where it will return the F4 search help values from backend.
    Can any one of you please help me how can I assign the search-help for the custom cost centre field. Is there any FM to call the backend cost centre search help for custom field or any other way how can I achieve this?
    Thanks in advance.
    Regards,
    Kalyani

    kalyani,
    i can see your requirement in below way..
    as it just reads: you need to assign the standard cost center help to a z cost center field in component /SAPSRM/WDC_UI_DO_ACC.. which actually is fetched though the component /SAPSRM/WDC_UI_BACKEND_SH
    so, if you see the component controller of SAPSRM/WDC_UI_DO_ACC you will see the component
    USAGE_SH_F4     /SAPSRM/WDC_UI_BACKEND_SH                        
    USAGE_SH_F4     /SAPSRM/WDC_UI_BACKEND_SH     INTERFACECONTROLLER
    so you can replicate the same functionality for your z field.
    but can you clarify one thing.. why are you going for this z field in place of standard field ?

  • Language Key Default for Account Assignment Search

    Hi,
    We are on SRM 4.0, Extended Classic.  We are rolling out our implnetation from Uk to Italy, therefore have installed Italian Language Pack etc.
    UoM/ Currency etc has been automatically translated .  Our English description for Product Categories will be copied straight over for Italian usage without manual translation. 
    However, when using the 'Find Account Assignment Data' search help.  Language Key 'IT' is defaulted and no entries are found from R3. 
    I want to know if this can either be defaulted to 'EN', even though the user has logged in with 'IT'.
    'EN' would then bring back a complete list of Cost objects from R3.  I dont want to undertake a translation for each bk-end Cost Center/WBS etc to 'IT'.  Or does anyone know of another way to solve this issue?
    Thanks

    Hi,
    Please check RFC (Dialog) in Define Backend System customizing, then chek logon user and language in SM59.
    Regards,
    Masa

  • Assign Search help dynamically

    Hi,
    I have two fields(issue_status and remarks)in a table control. I want to assign a search help to the 'REMARKS' field of the table control only when the user selects the value 'REJECTED' in the 'issue_status' field of the table control.
    could some one please help me in solving this problem.
    Regards,
    Makam

    If you are building a ABAP application you should post this in the ABAP Forum and if it's a BSP application you should post it in the BSP Forum.

  • Assign search help to a field in PCUI

    Hi Friends,
    Here is my requirement. I have designed a PCUI application which searches the address based on the post code entered. Now the standard method to assign this application as search help is to specify the name of the application in the "input help" property of a field in the field group.
    I have implemented the same for the field POST_CODE1 of the field group ADR_DETAIL_POSTAL which is a part of service order application in PCUI. Now when i try to use the same thing in street field, it does not work. the F4 help just does not come. It works fine for STR_SUPPL2 field, House_num1 field and all other fields in the field group except for the Street field. ANd the client wants in only on the street field.
    I am not able to understand that what might be the possible mistake. Any help in this matter will be highly appreciated.
    Thanks in advance,
    Karan

    Check the FM: HELP_VALUES_GET_WITH_TABLE_EXT
    Check the documentation for example code.
    regards,
    Ravi

  • Vendor Account Group Search Help

    Hello MM Experts,
    We would like to search Vendors by Account Group. Surprisingly it appears that SAP has not provided a standard Search Help for this. I would think that a lot of SAP users would want this.
    Does anyone know why SAP has not provided this search help in the standard system?
    Would it be ok to go ahead and create one ourselves?
    Can someone please give me some pointers on how to proceed with creation of this search help?
    Thanks!
    Anisha.

    Hi,
    Go to any vendor field, press for selection (F4)......you get many search options there.
    One of those search option is vendor by account group.
    You can also do it thru LFA1 table.
    Sk.

  • Cost assignment search help not working

    Hi,
    I have looked in to the SD thread already, but none of the notes seems to be of interest as we are on support package of the notes!.
    Here is the problem, when trying to select cost assigment values, cost center and GL account search helps/f4 functionality is not working.
    Can u pls tell me which all settings inside the system I should be looking into, also any possible notes ?, we are on SRM4.0, pack 13.

    The reply can be more professional. People here are not hunting for points. They are here to help struggling people to solve their problems. The points are in no way a match for the time and the valuable answers they suggest. There should be more courteousness in thanking. Points are just the least way to thank. But some questioners take it as if they are paying something and doing a great return. Anyway great to hear that your problem got solved!
    Regards, IA

  • Assign Search Help to Table

    Hi All,
      I have created a custom check table which also has a text tables assigned to it. I have created a Elementary Search help for the check table and the selection method for the search help is the check table itself.
      The issue is when I goto the check table using SE11, I click on Extras --> Search Help for Table, it does not display the search help that I had created however the search help is displayed for a similar customizing table created by SAP, TVK8.
      I think I need to assign the search help to the custom table that I have created. I would greatly appreciate if anyone can tell me as to how I can assign the search help to the check table.
    Thanks,
    Vamseedhar K

    Check this link..Attaching to Check Tables
    http://help.sap.com/saphelp_nw04s/helpdata/en/63/1b70bfc32111d1950600a0c929b3c3/frameset.htm
    Also check this link.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/70260b78-ff89-2a10-5eb0-d2f51467560b
    Also check the steps to create search help.
    This is how u can create "Search Help" for the fields of the ztables that u have created.
    SE11- Create Search Help for 1 field, "Selection Method" box put the Table name to which the field belongs to. "Dialog Type" box write: "Display Value Immediately".
    Search Help Parameter is the Field name for which u want the Help. Tick Imp & Exp options and assign LPOS = 1 and Enter. , save and Activate.
    SE11- Go to the table , Click on the Field that needs to be assigned a search Help....Click at the left side of the Field so that all the corresponding data Elements, Key field etc also gets selected.
    Click on the "Search Help tab" just above the "Data Type " column.
    Put the "Search Help" name that u just created. Mention the Field and Enter. it takes up the required values. Now Copy.
    U can repeat the process for whatever fields u want to assign a Search Help.
    se51- Go to Screen Painter, Select Fields from Dictionary table to which u want search help to be assigned.
    Double click on the Text box of the corresponding field,......> Screen Painter Attributes.......> Search help Text box.........> Enter the name of the Search help that u created for a field.
    Ok....>Save.........> Activate
    Now u should be able to get the Search help for the fields that u wanted to.

  • Dynamically assign Search Help to the field

    Hi All,
    I have creates one search help from se11 like zshlp. i m not assign this search help to the database field. bocz i used this search help at runtime. so how can i assign this search help during execution time of my program. 
    Reward for helpful answer.
    THANKS & REGARDS,
    SAHIR

    Hi Sahir,
       Creating dynamic search help means the f4 help will come on the context bases.
    that will achieved with function module
    1. F4IF_INT_TABLE_VALUE_REQUEST  : Display internal table as search help (documented in SAP)
    *---Report with selection screen and to display the list of
    possible entries for field 'B' as per the value in field 'A'.
    REPORT ZTEST_F4HELP .
    parameters: p_vbeln type vbak-vbeln,
    p_posnr type vbap-posnr.
    at selection-screen on value-request for p_posnr.
    data: begin of help_item occurs 0,
    posnr type vbap-posnr,
    matnr type vbap-matnr,
    arktx type vbap-arktx,
    end of help_item.
    data: dynfields type table of dynpread with header line.
    dynfields-fieldname = 'P_VBELN'.
    append dynfields.
    call function 'DYNP_VALUES_READ'
    exporting
    dyname = sy-cprog
    dynumb = sy-dynnr
    translate_to_upper = 'X'
    tables
    dynpfields = dynfields
    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.
    read table dynfields with key fieldname = 'P_VBELN'.
    p_vbeln = dynfields-fieldvalue.
    call function 'CONVERSION_EXIT_ALPHA_INPUT'
    exporting
    input = p_vbeln
    importing
    output = p_vbeln.
    select posnr matnr arktx into table help_item
    from vbap
    where vbeln = p_vbeln.
    call function 'F4IF_INT_TABLE_VALUE_REQUEST'
    exporting
    retfield = 'POSNR'
    dynprofield = 'P_POSNR'
    dynpprog = sy-cprog
    dynpnr = sy-dynnr
    value_org = 'S'
    tables
    value_tab = help_item.
    Hope this is helpful to you. If you need further information, revert back.
    Reward all the helpful answers.
    Regards
    Nagaraj T

Maybe you are looking for

  • Trying to understand how to use RAW files

    Dear all, When I shoot in RAW mode on my Canon D40, and import files, Looking at "photo info" shows an extension name as JPG... Does that mean I Photo has imported my pictures in JPEG mode, although they were shoot as RAW? Same happen when I shoot RA

  • My Ipad is locked saying Icloud back

    My Ipad is locked showing Icloud not backed up in last 2 weeks & willnot let me in

  • Error in SP12 TemSe: Data Consistency Check

    Dear All, I am getting error in SP12 TemSe: Data Consistency Check. Please suggest. this are only few there are may in thousands. There is one thing more we have resent upgrade from ecc5 to eccc6. Please suggest how to solve it. Consistency check of

  • Untrusted forest and right click tools

    I just installed right click tools and it's really a great tool. We manage clients in untrusted ad forest and right click tools doesn't work for them because of the authentication problems. Does anyone know is there something that can be done to bypa

  • Created Items need a Heading Template

    I have created 3 items with labels that need to be put into some type of style template. When you create a report you can choose a report template 2, standard, but if you create items that are placed into that same region they are not part of that st