Custom fields in webdynpro SRM 7.0 while upgrade from SRM 5.0

Hi Experts,
We are upgrading from SRM 5.0 to 7.0. We created 2 custom fields using configure field control in Meta data handling (SPRO) and enabled them for visibility. When we tried to see these two custom fields, they didnt appear in the web dynpro component.
Web dynpro details are below.
Webdynpro: /SAPSRM/WDC_UI_DO_ACC
Window : IV_L_FPC_CA_DETAILS
view : V_DO_ACCOUNT_DETAIL
Field : zzXXXX
We have to manipulate the data of those fields.
Since we couldn't see those fields, unable access the data. Could you pls suggest what was the solution you found for your issue.
Thanks
Dhivya

Hi,
Please check the Meta configuration on which set key you configured.
you have to configure the fields as show in the below link for accounting.You have to use set key as 31 for accounting.
http://wiki.sdn.sap.com/wiki/display/SRM/CustomerAccountFieldsatDefaultsettingsonShoppingCart
Regards
Devi prasad

Similar Messages

  • Custom Field values are not saved. when MPP imported from another instance.

    Hello Mate-
    Currently I am merging one small instance (I2) of PWA in our corporate instance(I1). as the corporate instance is huge, we are doing manual merge of groups, securities, users, custom fields etc. also downloading the MPP as xml from I2 and then planned
    to publish from I1.
    There are few project level custom fields which are being used in MPP. and those fields may have formulas too.
    I created same custom field in crporate environment(I1) but while trying to open the projects in our corporate environment(I1), the project custom fields are gone.
    Could you please guide me here, I am lost. I can not do a data base migration ans it would override all data from I1 instance so need to do it manually.
    Many thanks
    Deb
    Dev EPM Consultant

    Hi
    You may not be able to do this as the custom field GUID's are different in both the instance.
    You may write a macro to copy the custom field data from one to another one
    refer :http://msdn.microsoft.com/en-us/library/office/ff867798(v=office.15).aspx
    --Happy Troubleshooting
    Thanks --Ajith

  • BAdi & user-exits while upgrade from 4.6c to ECC6

    Hello all,
    Can anybody put light on how User-exits and BAdi will be effected while upgrade from lower version to ECC6.
    Many Thnanks.....
    Apps.

    Hi,
    The main concept of enhancements is to keep the code unaffected during version upgrades
    Hence all the BADI implementations and User Exit/Customer exits implementations will be in place and no effect due to upgrade...I hope in case of badi, some new BADI(as part of enhancement framework-GET BADI/CALL BADI) will be added up and the old BADI(Those in 4.6c or below) will not get affected.
    Regards
    Shiva

  • Challenges while Upgrading from OBIEE 10g to 11g

    Hi Gurus,
    This is Kiran again. This time I am back with the upgradation issues. We have a client which is currently on OBIEE 10g. All components are already configured in OBIEE 10g with client on RPD, Catalog and implemented all security levels for those.
    Now the challenge is to upgrade all activities which we have configured in OBIEE 10g. I have seen lot of stuff online and understood how to upgrade from OBIEE 10g to OBIEE 11g by simply clicking on ua.bat file. But I am unable to understand the process how it is upgrading the securities and environments.
    Can anyone help me out by providing necessary stuff I need to take care of before taking the decision to upgrade from OBIEE 10g to 11g.
    And also please clear me whether we will have any challenges in upgrading process. If yes, then what kind of challenges we will face and what kind of necessary steps we need to implement to resolve it.
    What kind of Architecture we need to follow?
    How Schedulers will get upgraded?
    Please help me out with your real experiences (Not the online websites). Your response will be highly appreciated and it will help lot of OBIEE professionals who are in the process of upgradation.
    Thanks in Advance to all OBIEE GURUS.
    Kiran

    Hi Valli,
    There is really great information available in this link. But I would like to know whether any one faced any issues while upgrading from OBIEE 10g to 11g. Please do share us few issues....
    Edited by: 949144 on Nov 27, 2012 9:44 AM

  • Unicode error while upgrading from 4.6 to ECC 6.0

    Dear All,
    I am getting unicode errror while upgrading from 4.6 to ECC 6.0, when iam trying to open downloaded file in excel.
    In debugging, error occurs while executing statment "CALL METHOD OF obj_ex_sheet " in the code given below:
    FORM open_downloaded_file_in_excel            *
    FORM open_downloaded_file_in_excel.
      DATA:
        lv_ole_books       TYPE ole2_object,
        lv_ole_sheets      TYPE ole2_object,
        lv_subrc           LIKE sy-subrc,
        lv_title(70)       TYPE c,
        lv_text1(70)       TYPE c,
        lv_text2(70)       TYPE c.
    start excel
      CREATE OBJECT obj_ex_sheet      'EXCEL.SHEET'.
      IF sy-subrc NE 0.
        lv_subrc = sy-subrc.
        FREE OBJECT obj_ex_sheet.
        PERFORM error_handling_ms_excel USING lv_subrc.
      ENDIF.
      CALL METHOD OF obj_ex_sheet     'Application' = obj_ex_app.
      IF sy-subrc NE 0.
        lv_subrc = sy-subrc.
        FREE OBJECT obj_ex_app.
        FREE OBJECT obj_ex_sheet.
        PERFORM error_handling_ms_excel USING lv_subrc.
      ENDIF.
      SET PROPERTY OF obj_ex_app 'Visible' = 1.
    open data file: main file
      CALL METHOD OF obj_ex_app        'Workbooks'  = lv_ole_books.
      CALL METHOD OF lv_ole_books      'Open'       = obj_ex_wbook
        EXPORTING #1  = gv_filename
                  #2  = 2
                  #3  = 0
                  #4  = 1
                  #5  = 0
                  #6  = 0
                  #7  = 1.
      IF sy-subrc NE 0.
        lv_subrc = sy-subrc.
        FREE OBJECT obj_ex_wbook.
        FREE OBJECT obj_ex_app.
        FREE OBJECT obj_ex_sheet.
        PERFORM error_handling_ms_excel USING lv_subrc.
      ENDIF.
      FREE OBJECT lv_ole_books.
      CALL METHOD OF obj_ex_wbook      'Worksheets' = lv_ole_sheets.
      CALL METHOD OF lv_ole_sheets     'Item'       = obj_ex_wsheet
        EXPORTING #1 = 1.
      FREE OBJECT lv_ole_sheets.
      GET PROPERTY OF obj_ex_wsheet    'UsedRange'  = obj_ex_usedrange.
      CALL METHOD  OF obj_ex_usedrange 'AutoFormat'
        EXPORTING #1 = 18.
      SET PROPERTY OF obj_ex_wsheet    'Name'       = sy-tcode.
      FREE OBJECT obj_ex_usedrange.
      PERFORM free_ole_objects.
      CALL FUNCTION 'FLUSH'
           EXCEPTIONS
                OTHERS = 0.
    ENDFORM.                              
    regards,
    Divya

    hi,
    In the OPEN DATASET STATEMENT ADD THE ENCODING ADDITION IN TEXT MODE.
    Regards,
    Balakumar.G
    Reward Points if helpful.

  • What are the key points to beconsider while upgrading from 4.7 to ECC 6.0

    hai
    What are the key points to beconsider while upgrading from 4.7 to ECC 6.0
    please provide sufficient material
    points will be rewarded
    regards
    v.sridhar

    Hi Sridhar,
    Please visit the following links:
    http://service.sap.com/erp
    http://solutionbrowser.erp.sap.fmpmedia.com/ (Functional perspective)
    http://service.sap.com/instguides --> mySAP Business Suite Applications --> mySAP ERP --> mySAP ERP 2005 --> Upgrade
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/LOVC/LOVC.pdf
    For Functionality Differences pls refer to the below site -
    http://solutionbrowser.erp.sap.fmpmedia.com/
    After opening the site, please select the Source Release Version which is 4.6 b Then Select the Target Release Version which is "mySAP ERP 2005" or ECC 6.0
    Select the Solution Area like Financials, Human Capital Management, Sales....
    Select module like MM, PP, SD, and QM.....
    Click on Search
    then it displays the Release Version and the Delta Functionality. Which can be downloaded to a word document if required.
    And also check the release notes of ECC 6.0 in service.sap.com.
    When you are upgrading from 4.6C to ECC6
    Nothing major, follow the same process you'd follow if you were updating PI service packs in R/3 or enhancing data sources. Empty queues in RSA7 and lbwq. Also empty setup tables through lbwg as the upgrade doesn't like it if these tables contain data. This is all on the R/3 side (although you empty RSA7 by running each delta TWICE in BW).
    To transfer queues from lbwq to rsa7, execute jobs through LO cockpit (lbwe).
    Some of your data sources could also be using sm13 instead of lbwq, so do check it out as well.
    For installing ECC 6.0 you required a solution manager key. With out solution manager key you cannot install ECC6.0.
    For ECC 6.0 is called net weaver component here you have ABAP+JAVA stack.
    ECC6.0 supports UNCODE.
    For installing 4.6 you don't require solution manager key. It only having ABAP stack.
    4.6C supports NONUNICODE.
    Major difference is ECC6 is netwear product having WASJAVA+ABAP
    secondly support unicode apart from this we have other diff. you can get form master guide from service.sap.com/instguides.
    Please go through the link that is shown here and if there is any doubts then feel free to ask.
    Major difference is ECC6 is net weaver  product having WASJAVA+ABAP
    secondly support Unicode apart from this we have other diff. you can get from master guide from service.sap.com/instguides
    For installing ECC 6.0 you required a solution manager key. With out solution manager key you cannot install ECC6.0.
    For ECC 6.0 is called net weaver component here you have ABAP+JAVA stack.
    ECC6.0 supports UNCODE.
    For installing 4.6 you don't required solution manager key. It only having ABAP stack.
    4.6C supports NONUNICODE.
    Please also Refer sdn thread and make a small search where u can find lot of information Reg this
    olution Browser would give the differences (Features):
    http://solutionbrowser.erp.sap.fmpmedia.com/ Give source and target versions.
    Release Info:
    ECC 6.0:
    http://help.sap.com/saphelp_erp2005/helpdata/en/43/68805bb88f297ee10000000a422035/frameset.htm
    Refer below and search for posts on this topic on sdn
    There are so many differences between the version in different objects
    I
    These are the some of the settings that are differed in the two versions and in that two objects
    Please visit the following links:
    http://service.sap.com/erp
    http://solutionbrowser.erp.sap.fmpmedia.com/ (Functional prespective)
    http://service.sap.com/instguides --> mySAP Business Suite Applications --> mySAP ERP --> mySAP ERP 2005 --> Upgrade
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/LOVC/LOVC.pdf
    For Functionality Differences pls refer to the below site -
    http://solutionbrowser.erp.sap.fmpmedia.com/
    Upgrade from 4.6c to 6.0 ECC
    upgrade from 4.7 to ecc 6.0
    Please Do Reward If Really Helpful,
    Thanks and Regards,
    Sateesh.Kandula

  • OUI-10091 error, while upgrading from 10.2.0.1 to 10.2.0.2

    Hi,
    While upgrading from from 10.2.0.1 to 10.2.0.2, im prompted with OUI-10091 error,
    i tried to find out in google...but couldn't(incomplete answers)
    Help me on how to proceed and install the ptach.
    Regards,
    - Sri

    I guess troubled u lot.. but this what the README says:
    Note:
    If you attempt to install this patch set in an Oracle home directory that does not contain an Oracle Database 10g release 10.2.0.1 or 10.2.0.2 installation, Oracle Universal Installer displays a warning dialog with the following error:
    OUI-10091: There are no patches that need to be applied from the patch set Oracle Database 10g Release 2 Patch Set 2
    10.2.0.3
    The Oracle Universal Installer does not allow the installation to proceed. Click OK, then click Cancel to end the installation.
    Log on as a member of the Administrators group to the computer on which you are going to install Oracle components. If you are installing on a Primary Domain Controller or a Backup Domain Controller, log on as a member of the Domain Administrators group.
    Start Oracle Universal Installer located in the unzipped area of the patch set. For example, Oracle_patch\setup.exe.
    On the Welcome screen, click Next.
    In the Specify Home Details Screen, select the name of the Oracle home that you want to update, or select the Path that you want to update from the list, then click Next
    If you are installing the patch set on an Oracle RAC cluster, click Next when the Selected Nodes screen appears.
    Regards,
    - Sri

  • Customer fields addition in SRM 7

    hi,
    i am new to SRM 7. i went through some documents in sdn and tried to add a field at SC item level. i have extended the structure and the view layout. i have created a cell editor of type input element and binded the source attribute to the new customer field added the to the context. now i want to fill this field with some value for all the items. i have implemented the badi /SAPSRM/BD_PDO_FE_FILL_ITEM. i have done the debugging and saw that ct_item_data table is having the customer field i had created and it is getting filled with the value i had hard coded in the badi method. but when i go to web ui i am not able to see the value. what is going wrong? am i implementing the correct badi?
    wd component i have changed :/SAPSRM/WDC_UI_SC_DOTC_BD
    view V_SC_DOTC_BASIC
    thanks
    Edited by: SRM7CON on Jan 22, 2012 8:53 AM

    Hi  ,
    to populate the values you need to enhance the webdynpro component and write the code in the  particular method or you can write the code in BBP_DOC_CHANGE_BADI
    Thanks & Regards
    Pradeep Kumar Dondeti

  • Custom field position control - SRM 7.0

    Hi all,
    In SRM 7.0,when  we add custom fields at the headre/item level,how do we control the position of the fields?

    Hi
    Right click on the part of the screen where you want the field to appear. Click on More Field Help and then you will see a popup having the WebDynpro Application Details.
    Go to SE80 and open the WebDynpro Application. go to Layout tab of the WebDynpro View, Check if the field is there or not in the layout.
    You can decide the position of the field in the layout tab of webdynpro application view. You will need to enhance the same if required , to suit to your needs.
    Note: If you have multiple fields in header of the document and only few of them are supposed to appear depending on your custom logic then the fields will appear in the same manner as you put them in Layout tab. If there is any field missing in between, the lower level fields will move upwards.....
    Regards
    Virender Singh

  • Default value in custom field in webdynpro screen

    Hi.
    We have added a custom field in the Item level for Shopping Cart (SRM 7.1).
    I however want a default value to show up or get populated in that custom field all the time. What is the best way to achieve this?
    Thanks.
    Anuradha.

    depends upon how you have added it.
    if its just though the structures and not added in the WD then you need to do it with doc-change badi.. and this is a preferred option.
    if you have done it though WD then you can default the values using the post exits in the INIT method.
    you can check if the value is blank then populate this default value (so that it does not overwrite the edited values).
    moreover, do you want it as a non editable field or just a default value which user can change on the screen as well?

  • Data entered in the custom field in the SRM portal not getting saved..

    Hi Experts,
    I have added a custom field in Contract Screen of the SRM portal by adding the field as an append structutre in structure INCL_EEW_PD_HEADER_CSF_CTR.
    The custom field now appears in the header (basic data ) of the 'Process contract' screen.
    NOw It allows me to enter data in the custom field .
    The problem is ..
    When I  'CHECK' or "RELEASE'   the contract, the value entered in the custom field disappears..
    How do i capture the data entered in the custom field ...please HElp!!!
    Thanks in Advance.
    Vidya

    Hi Pradeep,
    Thanks for the reply!!
    We have upgraded our SRM system from 3.0 to 5.5
    I have added the custom field in structures INCL_EEW_PD_HEADER_CSF_CTR  and
    INCL_EEW_PD_HEADER_CSF  as the field has to appear in the basic data tab of 'Process Contract'.
    Regarding debugging:
    1. I tried to debug in BBP_DOC_CHECK_BADI by calling the FM BBP_PD_CTR_GETDETAIL. inside the badi and the parameter e_header of the function module contained the custom field but had no value...!!
    2. I tried to debug the badi BBP_CUF_BADI_2  method MODIFY_INPUT..
       The import variable iv_fieldname contains the field name amd the variable iv_value has the value entered in the custom field .........but another import structure ls_header also contains the custom field but no value....
    Method  MODIFY_INPUT has only one export parameter ev_value,,,,,,,,,,,,,,,,!!!!!!!!!!!!
    Edited by: vidya vidya on Apr 24, 2009 6:06 PM

  • Number of Custom Field Restriction between SRM MDM OCI Mapping to SRM

    Hi Experts,
    We have a project requirement to cater to 70 Plus custom field which is NON Standard fields transferred from SRM MDM to SRM Shopping cart
    We need to understand if this is achievable??? by enhancing OCI mapping and Catalog Transfer BADI.
    We appreciate your response in this regard.
    Regards
    Prashanth

    Hi,
    There are 5 pre defined custom fields in the OCI, NEW_ITEM-CUST_FIELD[1-5] are available, each with different structures (i.e. field length etc) to support different requirements. All are of type CHAR though I am pretty sure.
    These fields can be passed via the OCI interface and then mapped to standard PROCDOC fields using the BBP_CATALOG_TRANSFER Badi.
    Regards,
    Jason

  • Dump after custom field creation in SRM shoppinc cart

    I have created a custom field(using a custom data element and a custom domain) and it is displayed in the Item Basic Data screen.
    Then I create a basket assigning a value for this field.
    The dump occurs when I try to view the basket after creation, from the Status Select or from the link in Approval Screen
    Runtime Errors:  GETWA_NOT_ASSIGNED
    Short text: Field symbol has not yet been assigned.
         The current ABAP program "SAPLGCNV" had to be terminated because it has
         come across a statement that unfortunately cannot be executed.
    Screen: SAPLBBP_PDH_CUF 0100

    Hi
    <b>Please ensure that the Z structures (Append Structures) created in this case are Activated completely (and should not be in Partially Active or InActive State).</b>
    <u>Since these structures will be used in the BADI Tables (SC Item level / Header level), these must be activated once again, incase you add / modify/ change the structures in the meanwhile.</u>
    If you want to define fields on item level in shopping carts, use structure INCL_EEW_PD_ITEM_CSF_SC. If you want to see the fields defined on item level in the search results for the shopping carts (for example, in the status), use structure INCL_EEW_PD_SEARCH_ITM_CSF_SC.
    If you have defined document-specific fields on header and/or item level, you also have to define them in structures INCL_EEW_PD_HEADER_CSF (for the fields of the header) and INCL_EEW_PD_ITEM_CSF IF THEY HAVE NOT BEEN DEFINED THERE YET. Consequently, these structures contain the combination of header or item fields of all document-specific fields.
    For more details, please refer to OSS note - 672960 (User-Defined Fields 2) Please carefully read the documentation.
    <b>Few other related OSS notes to refer -></b>
    <u>1018714 Change documents: Time stamp of the application server
    1006898 Deleted vendor not displayed in Change hist of Shopping cart
    731037 Converting SUS 1.0 and SUS 2.0 documents to SUS 3.0
    820201 Document changes for attachments does not work
    691880 Changes in tolerances not displayed in purchase order</u>
    Let me know incase you still face any issues.
    Regards
    - Atul

  • SoCo : new customer field only in SRM

    Hi All,
    I would like to have some information concerning the possibility to add customer field in SoCo.
    My customer want to see some customer field only in SoCo, but he don't want to send this info to the backend.
    I try to explain better ....
    i receive the RdA from ECC and every time i receive the same one, i need to verify if the quantity are the same. if the quantity are different I need to show this different in the SoCo. To do the calculate I use the BADI BBP_DOC_CHANGE_BADI, but where I must define the new field in ddic and how show it in SoCo ?
    can you help me giving some documentation or something else ?
    thanks
    barbara

    Hi Barbara,
    To add customer fields to the SOCO screen you need to add these fields to the shopping cart first.
    You need to add these custom fields to custom structure and append those structure to the following structures:
    INCL_EEW_PD_ITEM_CSF_SC and INCL_EEW_PD_ITEM_CSF.
    See OSS Note: Note 672960 - User-defined fields 2
    After adding these fields to the above given structure you need to activate them and then you need to regenerate the sourcing cockpit screens.
    For regenerating SOCO screens follow the step in below given OSS Note:
    Note 632982 - Generation of the screens for the sourcing
    Hope this Helps.
    Thanks,
    Pradeep

  • How to create new field while upgrading from CRM 4.0 to 7.0

    Hi ,
    How do we create new field on UI and store data into existing field in database?
    Is there any option in AET to skip the creation of new field in the database table ?
    Custom field is already created in GUI and database table while using CRM 4.0
    Now, after upgrading to 7.0 EHP3 , I need to bring this field on the UI .
    Using AET may create new field again in the database table.Please suggest.
    New filed needed to be created in Marketing Campaign Element Header data.
    Thanks
    Jayasri

    Hi Jayasri,
    As a custom fields are already there in crm 4.0. You don't need to use AET again to add field.
    These enhancements still exist after the upgrade. Dependent on the enhancement object and type some manual steps are necessary.
    For example regarding a single field enhancement for the BP the whole framework is enhanced after the upgrade. There is only one manual step to bring the field on the relevant view(s) via the UI Configuration Tool. For whole BP tables some more manual steps are necessary, these steps are described in the note 1069791 - CRM WebClient UI for EEW enhancements (reference to more notes regarding the EEW after the upgrade).
    For set types, we need to generate UI With the help of the UI configuration tool the settypes could become visible in the Web UI.
    I didn't understood your scenario, can add little more information why you want to add field by AET if available in DB?
    Refer
    FAQ - SAP CRM Upgrade from release 4.0 to 7.0 
    Regards,
    Arjun

Maybe you are looking for

  • Facebook app unable to load friends list

    Hello everyone. About 3 days ago my facebook app stopped loading my friends list. I get a message saying "your friends list is unavailable". Because of this, I've been unable to post on someones wall, send a msg, or poke. The only thing I can do is u

  • Error In Obfuscating with Proguard in KToolbar

    Hi... I'm using Proguard 4.2 with my Ktoolbar and even tried this with Proguard 4.0.1 When I create an obfuscated package... it creates it properly.. Building "MobileLocalTrains" ProGuard, version 4.2 Reading program jar [C:\WTK22\apps\MobileLocalTra

  • Query take long time in fetching when used within a procedure

    The Database is : Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bi Query just takes a second from toad but when used inside a procedure as a cursor it takes takes 3 to 5 minutes. Following is the Tkprof information when running from p

  • Extracting from DVD to FCP

    Greetings, I need to extract a 30 sec commercial from a DVD to edit it in FCP and then add subtitles to it in DVD SP and burn it to DVD again. My question is, for a 30 second commercial that is 720x480 NTSCP, what are the best settings fo extracting

  • Release of sale bill....

    Dear SAP Gurus, I am creating sale bill through VF01. As soon as I save it , its getting released. I want to release it through VF02. Means I want its accounting document to be generated when I later release it through VF02. With VF01 I just want Bil