Adding a new SAP standard field to complaints result BOL

Hi Experts,
There is a requirement to add SAP standard field 'Posting date' to Advance search result BOL of complaints.
This field already exists in search BOL and visible on WEB UI advanced search.
The field is added as attribute in result context node of BT120S_CPL/AdvSearchComplRL through wizard.
But, unable to see the values getting populated. Could you please let us know if any code to be written for getting values populated.
Regards,
Santosh

Hi Santosh ,
My previous post was based on the fact that you have added a model attribute. Since you have added the field as a value attribute and you want to use it for querying , then you would have to do the following
a) Extract the value from the value node.
b) Add the selection param so that 'posting date' is passed to the GENIL. You can use add selection param method in the Advanced query. Use the name of the field in the BOL & the value as yours.
c) Get the result & show it on the way you want.
This is same as it would have been when you had a model field. In that case also you would have extracted the value from model node. I see no difference here except that fetching the field. Rest of the steps remain the same if the field is available in BOL for advanced query.
Yes the difference lies in showing it in the WebUI as now you would have to fill this value node manually. If you had a model node , the framework would have done this for you.
But don't base your choice of model/value node on the ease of coding but on the business case.
Regards
Kavindra

Similar Messages

  • Modify SAP standard fields in an Infotype

    Hi friends!
    We have enhanced an Infotype successfully added few extra fields and they work perfectly.
    In Infotype 28, there are already 3 SAP standard fields and we have added 4 more.
    Now, we need to enable/disable according to the our added fields. For Eg by a Custom check box, I need to enable/disable SAP standard field for an infotype.
    We tried by LOOP at SCREEN and all but due to SAP standard fields we are unable to do it.
    Any ideas?
    Please help.
    Thanks.

    Hi Park,
    Standard Infotype Fields configured (enable/disabled/hidden) in the view V_T588M (Tcode-SM30). You can disable any standard infotype field here if it is independent of other fields (i.e. before screen opens itself field is disabled).
    If you want the field to be disable at runtime you may need to edit the feature 'PNNNN' (where NNNN is your standard infotype number (transaction -pe03)).
    Also have you tried to code (loop at screen. endloop) in badi HRPAD00INFTY (method BEFORE_OUTPUT). I am not sure whether this will work or not.
    Regards,
    Shrinivas

  • SAP Standard Field Attributes for ME21n and ME

    Hi,
    Can anyone suggest me where i can see all the display,Hidden,Mandatory, optional SAP Standard field attributes for ME21N and ME51N.
    I looking for Configuration settings
    Thanks
    Venki

    Hi ,
    All i see is Field Label                    Reqd.entry  Opt. entry  Display for ME21N and ME51N
    I want to see what SAP Standard Fields are Hidden for these T-codes.
    I want to use and Non Used Field ( Hidden SAP Field) for new Enhancement instead of creating a custom Tab
    Thanks
    Venki

  • Userexit at Purchase Order Save to influence SAP Standard field

    Hi All,
    I am looking for a userexit/BADI that will allow me to influence the value of a SAP standard field in EKPO right before save of a Purchase Order in Create mode.
    I have not yet found anything that lets me do it.
    Could you help me please?
    Regards,
    Atul

    Hi Atul,
    in standard way you can influence SAP fields in the beginning of the transaction. In later user-exits / BADI you aren't allowed to change e.g. EKPO any longer. Of course you might do it anyway (see dynamical assign), but it's as bad as a modification.
    Regards,
    Christian

  • How to make SAP standard field as mondatory in a screen

    hi all,
    i need to make SAP standard field as mondatory in a screens EG31, EG34,EG71
    TO DO THAT   I HAVE TO USE : EXIT_SAPLE30D_002 
    so can anybody tell me how that

    You can use standard program RSMODPRF.
    Execute this standard program without giving any input
    and select the data element whatever you want to make mandatory and click on Assign prog/screen button click OK and come back.
    now give required data element and execute the program again
    and write the code to make that datea element mondatory.
    hope it helps...

  • FMDERIVE: adding a new MM source field

    Hi, I'd would to know how to add the field KNTTP (Account assignement category) in a derivation rule.
    So far, I've done this steps:
    1) Adding the field in the structure FMDERIVE inside de APPEND "AFMDERIVE"
    2) Activating the user exit EXIT_SAPLFMDT_002
    *--- Copy additional fields from the structure COBL.
    MOVE-CORRESPONDING i_cobl TO c_fmderive.
    *--- Copy additional fields from the structure COBL_AD
    MOVE-CORRESPONDING i_cobl_ad TO c_fmderive.
    3) Creating the new derivation rule in transaction FMDERIVE, like this:
    SOURCE FIELDS: KNTTP (Account assignment category) & PLANT (Plant)
    TARGET FIELDS: FUND_CENTER (Funds Center)
    CONDITIONS: FM_AREA = XXXX & COMPANY_CODE = 1000 & KNTTP = A
    Unchecked all in Attributes tab.
    RULE VALUES = For example: PLANT = 1000 & KNTTP = A ==> FUND_CENTER = A
                                                      PLANT = 1000 & KNTTP = K ==> FUND_CENTER = Z
    SAVE
    But when I'm creating a purchase requisition (ME51N) and I choose the plant 1000 and the account assignment category A, the derivation is not working.
    We have made a debugging and we've realised that the structure i_cobl doesn't have the field KNTTP, so the exit always move to a blank space in field KNTTP.
    Anybody can help me? Is there a way to add fields in the i_cobl structure?? Should I use another User exit because the field belongs to MM??
    If anybody have any other idea, I will be glad to read it!!
    Thanks in advance!
    Lorena

    Hi, there is a way of using KNTTP in derivation (this also applies to other fields not available in COBL/COBL_AD), not sure if it is a recommended approach because it requires reading the values from memory, it does work though.
    Read the value of KNTTP from memory and assign it to C_FMDERIVE in EXIT_SAPLFMDT_002, include ZXFMDTU02. then it is available in derivation as source field, provided that you have added it to the structure. See code below:
    DATA: lv_field(100) TYPE c.
    FIELD-SYMBOLS: <ekpo> TYPE ekpo.
    CONCATENATE '(SAPLMEPO)' 'EKPO' INTO lv_field.
    ASSIGN (lv_field) TO <ekpo>.
    IF sy-subrc = 0.
       c_fmderive-usertemp1 = <ekpo>-knttp.
    ENDIF.

  • Adding a New Check Box field in Business Partner

    Experts,
    I know there are hundreds of thread on this topic. But i'm not clear with that.
    I have to add a new Check box in the Business Partner Screen. We are on SRM 5.0.
    The check box should be placed in "Business Partner Status" Frame of "Company Data" Tab.
    How to go about this, Kindly please expalin the steps.
    More over the Check box will be used for further processing in other tabs.
    Pl throw some light on that aspect also.
    Rgds
    Immediate Rewards for Sure
    SV

    Hi
    Try this link, already copied by ..
    Re: vendor master extensions by customer
    It is not possible to display F4 help for customer fields in BBPMAININT Transaction.
    Supporting link ->
    F4 for customer table fields
    Other useful links ->
    Note 675800 - Business partner enhancement SRM on maintenance screen
    Re: How I can save customer fields in Vendor master?
    Re: Adding new fields in VEndor master data in EBP
    Hope this will help.
    Regards
    - Atul

  • Help Required : Adding new Wagetype to IT 0402 Payroll Results

    Dear Experts,
    I am adding a new Wagetype to show in Payroll results. At the step of setting up payroll infotypes a workbench request is created. When I transport this request from my Development server to Quality server I get the following error
       "Table CI_P0402 could not be activated"
    Can anyone please guide me regarding this issue.
    Regards,
    Talha Aftab

    For anyone else facing the same issue : You have to make sure the data elements part of CI_P0402, like ZZTELXXXXX are transported as well. They were not automatically part of my transport, which is why it worked fine on my DEV server, but couldn't be activated when I transported to QAS (The data elements are created for each new wagetype when they are added to 0402, and it is set up)
    Regards,
    Talha Aftab

  • Adding a new field to a standard webdynpro component's layout

    Hi all,
      I need to add a new field to a standard webdynpro component's( in my case the component is ''/SAPSRM/WDC_UI_SC_DOTC_BD')  layout.How do i go about adding a new field to the standard component's lay out?
    can anyone help me with the necessary details?
    Regards,
    Abhinay.

    Check if this is useful to you (Login required)
    https://websmp105.sap-ag.de/~sapidb/011000358700001969972008E.pdf
    Rgds/Kiran

  • How to remove all the fields added to CI_Include in Sap Standard table

    Hi, 
    I have added a new custom field in the CI_include structure in a standard SAP table. However now I want to remove that field but it not allowing me to remove the field as there is no field left in that CI_Include.
    Has anybody tried this before?

    Hi,
    I think you have to delete the whole CI. Go to SE11 enter the name of the CI and press delete.
    Not sure, but maybe this is the solution
    Regards Rudi

  • Creating a new Search Help on a standard SAP table field?

    Good day, everyone!
    As part of a report I am writing, the customer would like to have Search Help added to the AUFEX field in table AUFK.  They would like this functionality so that when they are changing an order via t-code ko02, they can get a list of valid values to put in field AUFEX.  I would like to tie it to a zTable I've created; in my zTable, I have just 2 fields:  a key value (that will go into AUFEX) and a text description of the key value.  This zTable is used in my report.
    While I've created a Search Help on this table already for table maintenance, I've never added a custom Search Help to an existing standard SAP table field before.  I've done some Googling and other searching to see what I need to know, but I've only been able to find information on Collective Search Helps.  AUFEX doesn't yet have a Search Help field, so I don't think Collective Search Helps is my answer.
    Is this possible?  Can I add a custom Search Help to a standard SAP table field that doesn't have any Search Help linked to it yet?  Is there an existing thread or guide somewhere that can tell me how to do this?
    Thank you!

    Hi
    Yes u can: u can assign the search help to (A) data element livel or (B) field table livel.
    After creating your search help:
    A) Run SE11, insert your data element (AUFEX), press edit and insert the search help in "Search Help" area on DEFINATION tab;
    B) Run SE11, insert your table (AUFK), press edit, place the cursor on your field (AUFEX) and go to GoTo->Search help->for field
    But u should consider it'll mean to change a standard object for both cases: so u need to get the access key from your OSS.
    Max

  • SAP Work Manager customization - adding a new field to equipment details screen (Syclo Agentry)

    Hi Experts,
    I am trying to add a field (NAME1) on the Equipment details screen under work orders in work manager 5.3 application.
    I have performed the following steps, but I am getting an error while connecting to the application.
    1) Create extension for Equipment class to add a new field.
    2) added the new field (Name1) as the property to the standard object Equipment.
    3) Added the field on the screen.
    4) Added the field (name1) to the complex table ctEquipment.
    5) Added the JAR file to Agentry.ini file.
    6) Changed the Class mapping for parameter "Equipment" under group "SAPOBJECT" to point it to the custom (Extended) class.
    7) Changed the class mapping for complex table parameter "ctEquipment" under group "CT_SAPOBJECT" to point it to the custom class.
    8) after publishing the changes and re-starting the server, I get following error.
    the log file generated (message.log) also has the same description.
    What am I missing here? Any help would be really appreciated.

    Hi Emanuel,
    Thanks for looking into this issue.
    I have performed the following steps as suggested by you, still it doesn't seem to work and gives the same error.
    Below are the changes done on the ECC Side.
    1) Copied the standard equipment class /SYCLO_CL_PM_EQUIPMENT1_DO to custom class ZSYCLO_CL_PM_EQUIPMENT1_DO. Changes made in the GET Method to get custom equipment related data
    2) Modified the standard equipment structure /SYCLO/PM_EQUI_STR by adding one custom field
    3) Configured this custom class as the object handler in the equipment mobile data object
    4) Configured this custom class as the object handler for the equipment complex table
    5) We are still using the standard BAPI Wrapper itself for getting the equipment data and the added field is reflected in the BAPI Wrapper table parameter
    Is there something we are missing?

  • Adding a new field in a standard ALV reort

    HI,
    I have a requirement of adding a new field to Standard ALV report. The TCODE is CN50N. When you execute it and gives the project as input it will display an ALV report. i want to add another filed to that ALV report. The program it 's using is RPSISKB000. How to do it???
    regards
    sandeep

    Hi,
         Check in the ALV output whether these fields are already there and not displaying in the ALV output, if the fields are not at all printing in the ALV output,then copy the Program to Z program and change it.
    write the Code to add the new fields to the internal table and change the Field catalaog to come your fields in the ALV output then print it
    Regards

  • Additional field to be added in sap standard report

    hi
    when we run fbl1n for vendors or fbl5n for customer we are getting only vendor or customer code, how to get vendor name and customer name in same sap standard report
    please suggest
    regards
    yuvraj singh

    hi lande
    i opened the report RFITEMAR and checked FM FI_ITEMS_DISPLAY as below :,
       call function 'FI_ITEMS_DISPLAY'
         exporting
           caller_repid  = c_repid_ar
           acctype       = c_koart_ar
           x_change      = x_change
           i_u_save      = gd_alvsave
           is_u_variant  = gs_variant
           it_u_fieldcat = gt_fieldcat[]
    then i click on gt_fieldcat[], and get the following :
    data: it_t021s       like t021s occurs 1     with header line,
           it_spectab     type tpit_t_tabstat     with header line,
           it_specfld     type tpit_t_fldstat     with header line,
           it_movefld     type tpit_t_fldmove     with header line,
           it_moveref     type tpit_t_refmove     with header line,
           it_kkcurr      type tpit_t_kkcurr      with header line,
           it_selscreen   like rsparams occurs 10 with header line,
           it_dyn_trange  type rsds_trange        with header line,
           it_dyn_texpr   type rsds_texpr         with header line,
           it_callback    like ldbcb occurs 10    with header line,
           gt_selscreen   like rsparams occurs 10,
           gt_dyn_trange  type rsds_trange,
           gt_searchpattern type syldb_sp,
           gt_dyn_texpr   type rsds_texpr,
           it_central     type tpit_t_central     with header line,
           gt_fieldcat    type slis_t_fieldcat_alv with header line.
    now what next, where to add name1, please suggest
    regards
    yuvraj

  • Adding a new field to the Address Data for a business partner

    Hi Experts,
    I am trying to add a new custom field to the address data (all structures and tables) that is linked to a business partner on SAP CRM via EEWB. Structure is the address structure wthin BUS_EI_EXTERN. Table is BUT020. I have been told that it is not possible as there is no Business Object that allows this. When doing an EEWB, the only business object is BUPA, which when selected, adds the new custom field to BUT000. I would like the field to be added to BUT020 (Address Table). This leads me to believe that there is no standard way of doing this, which ultimatley means that it would need to be done manually. Please help me with this predicament.
    Regards
    Yusuf

    The search help exit allows you to modify functionality of search help. If you add a new field to the
    parameter list that is not contained on the selection method you can manually populate it within the search
    help exit.
    This  would be performed within the u2018STEP DISPu2019 section. Once within this section all search help
    data has been retrieved and is stored in table RECORD_TAB (record_tab-string) as one long string value.
    Therefore you need to read table SHLP in-order to locate position of value within string.
    Example:
    To find position of personnel number (PERNR) within elemenory search
    help M_PREMN you would use the following code:
    Loop at record_tab.
         read table shlp-fielddescr into wa_shlp
                                       with key tabname   = 'M_PREMN'
                                                fieldname = 'PERNR'.
    You could then use this information in the following way, for
    example, to find a persons organisation unit:
          select  orgeh endda
            up to 1 rows
            from pa0001
            into (ld_orgeh,ld_endda)
           where pernr eq record_tab-string+wa_shlp-offset(8)
                                                      u201Cpernr length is 8
           order by endda descending.
          endselect.
          select single orgtx
            from t527x
            into ld_orgtxt
           where orgeh eq ld_orgeh and
                 sprsl eq sy-langu and
               ( endda ge sy-datum and
                 begda le sy-datum ).
    If you have added a new field to the end of the parameters list
    the next step is to populate it by adding this data to the end of
    the record_tab string:
      concatenate record_tab-string ld_orgtxt into record_tab-string.
      modify record_tab.
    endloop.

Maybe you are looking for

  • Ibok will not boot up

    When I turn on my ibook it goes straight to the blue screen and a small folder pops up in the middle of the screen and blinks back and forth between a question mark and the folder (with the 2 faces on it). Does anyone know what this means? It does th

  • I bought my iPhone in Canada ,but I live in Europe,how can I mend my iPhone?

    My friend bought a iPhone 4s for me from Canada,and I live in Italy.the bad story started from that time,when we open the phone ,we found there were 2 dirty spot inside the phone!!!it seems like pieces of material inside the front cover,and then we w

  • Urgent , Pls help me in solving this problem

    Hi Pls let me know how do I present the following code using decode or case when. I need to select a column value based on the following condition. How do I put this condition while querying data using select statement. if optpremccy='usd' then histo

  • A pain to edit each bookmark names, please advice~~

    I have copied a bookmark folder from Firefox to Safari 4. In Firefox, most bookmark names are automatically appeared quite meaningfully (seems it captured the headline from the website) once they are added and I didn't have to rename them. But those

  • How to print 1 to 100 using threads

    Hi, I have 5 threads (t1, t2, t3, t4, t5) and I want to print the values as t1 - 1 t2 - 2 t3 - 3 t4 - 4 t5 - 5 and again t1 - 6 t2 - 7 and goes on upto t5-100 and the condition is that it should print as 1,2,3,4,5,6,7,...,99,100. Any help would be gr