Custom field not found in in the definition of EAI Integration Component

Hi,
I added a custom field to Account with integration tag "FirmsOfficesType". I got an error when I'm adding an account:
Element with XML tag 'FirmsOfficesType' is not found in the definition of EAI Integration Component 'Account'(SBL-EAI-04127)
Here is the soap message for adding a account:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" s:mustUnderstand="1">
<wsse:UsernameToken>
<wsse:Username>user</wsse:Username>
<wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">passwd</wsse:Password>
</wsse:UsernameToken>
</wsse:Security>
</s:Header>
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<AccountInsert_Input xmlns="urn:crmondemand/ws/ecbs/account/10/2004">
<ListOfAccount xmlns="urn:/crmondemand/xml/Account/Data">
<Account>
<Status>Active</Status>
<PrimaryBillToCity>KANSAS CITY</PrimaryBillToCity>
<PrimaryBillToCountry>USA</PrimaryBillToCountry>
<PrimaryBillToPostalCode>64150</PrimaryBillToPostalCode>
<PrimaryBillToState>MO</PrimaryBillToState>
<PrimaryBillToStreetAddress>1805 ABC ROAD</PrimaryBillToStreetAddress>
<PrimaryBillToStreetAddress2>STE 300</PrimaryBillToStreetAddress2>
<ExternalSystemId>OF222652</ExternalSystemId>
<IntegrationId>OF222652</IntegrationId>
<Location>OF222652</Location>
<MainPhone>+1 1235877526</MainPhone>
<AccountName>ABC Inc</AccountName>
<AccountType>INDEPENDENT BD A</AccountType>
<FirmsOfficesType>Branch</FirmsOfficesType>
<FirmName>ABC SECURITIES CO</FirmName>
</Account>
</ListOfAccount>
</AccountInsert_Input>
</s:Body>
</s:Envelope>
thx

Hi
Please go through the related pointers ->
The OSS note 672960 has already indicated you need to use BADI to address it.
For Search criteria
You can also use user-defined fields as search criteria. To do this, you have to set fields XINPUT and XDISPLAY to 'X' in table ET_FIELDS for the fields you want to use in BADI BBP_CUF_BADI_2 in method MODIFY_SCREEN. The fields defined this way are displayed if you choose the 'Extended search' link.
Re: Custom field in Create Bid Invitation..
Re: Search Help for Purchasing Group..
Re: urgent help request - How to add custom fields to  header BID.
Re: New Screen with table control information in Process Bid Invitation
Do let me know.
Regards
- Atul

Similar Messages

  • Custom field not getting populated in the "Show Results where" drop down

    Hi all,
    In appointment detail page by clicking on Add button on the user related information section , it takes us to a search layout showing the list of available users.
    Here we have to filter the user's based on a custom field which has already been created in the user object. But I am not able to add the custom field in the "Show results where" drop down for which the search has to be done.
    It is getting reflected in the normal search layouts.So Can any one tell me why the change is not getting reflected in the user related info search layout?

    I tested your use case and you are correct. I would recommend that you submit a service request to CRM On Demand customer care in reference to this issue.

  • Address Book, importing text tab file, custom fields not there

    Searched thru all past posts. Found some that are close but not what I am trying to do.
    Open Address Book, go into Preferences, select Template and under the Names field (friend, assistant, father, etc) I add a custom field called "Keyword".
    I also add two more custom fields in the Phone area called "Work 3" and "Work 4". There are other custom fields I need but I want to keep this short.
    Quit Address Book then relaunch. Add a new contact and the new custom fields, Keyword, Work 3 and Work 4 are there. All good so far.
    I have a Now Contact file with about 800 contacts in it. I export all fields as a Text file, Tab delimited. No problems there. With Address Book launched, select Import, pick the text file, leave Text Encoding on Automatic and click Open.
    The window that shows the fields for Address Book and fields for the text file side by side opens. This is where you match up the correct fields for importing. If I go to one of the fields from the text file that I created a custom field for, click under the Address Book heading on the Do not import, scroll thru the Apple choices of fields, none of the custom fields show up. Only the original Apple ones are there. Why does Apple let you create them in the Template area but not have them available for importing?
    That is my problem.
    Adding new contacts as I get them, is fine. Importing 800 contacts with these custom fields is not possible.
    I could map them to go to the Notes field along with actual notes but that is inelegant. The custom fields are there, why can't we use them to their full potential.
    This appears to be a bug to me. Let me know what you think.

    Hi Adam,
    Thanks, but the problem is not importing to AddressBook, it is exporting.  I did discover from another that I can export very easily to a Numbers spreedsheet.  It is exceptionally simple.  But it will not export custom fields.  Someone said that is because of a vcard standard.  My custom fields are just "name" fields that I have labeled differently.  But Numbers does not support the name (it only takes the name of the card).
    Christine

  • Adding Customer Fields - Note 672960

    Hi All,
    Forgive me for this but I am new to BAdI programming and need a bit of help.
    I have been given a spec to add customer fields to a screen. The Analyst has given me the list of fields and reference to SAP Note 672960.
    I have appended the fields to structure INCL_EEW_PD_ITEM_CSF_SC and everything seems to be fine.
    In the BAdI BBP_CUF_BADI_2, method MODIFY_SCREEN what code do I have to put in so the fields now appear on the screen for the user?
    Many Thanks for any help,
    Colm
    P.S. The fields I have appended to the structure are:
    ZZSTAWN
    ZZBRGEW
    ZZMEINS
    ZZXFELD
    ZZTAXID

    From another thread I found this code and implemented it into my MODIFY_SCREEN method. Should this be sufficient to display the items or is there anything else I need to do?
    DATA: wa_fields TYPE bbps_cuf_display,
      p_index TYPE sy-tabix,
      p_return.
    *IMPORT P_RETURN TO P_RETURN FROM MEMORY ID 'RETURN'.
      IF NOT et_fields[] IS INITIAL.
        CLEAR: wa_fields, p_index.
        LOOP AT et_fields INTO wa_fields.
          p_index = sy-tabix.
          IF wa_fields-fieldname = 'ZZSTAWN' AND
          wa_fields-structure_type EQ 'ITEM' .
            wa_fields-xdisplay = 'X'.
            wa_fields-xinput = 'X'.
          ENDIF.
          IF wa_fields-fieldname = 'ZZBRGEW' AND
          wa_fields-structure_type EQ 'ITEM'.
            wa_fields-xdisplay = 'X'.
            wa_fields-xinput = ''.
          ENDIF.
          IF wa_fields-fieldname = 'ZZMEINS' AND
          wa_fields-structure_type EQ 'ITEM'.
            wa_fields-xdisplay = 'X'.
            wa_fields-xinput = ''.
          ENDIF.
          IF wa_fields-fieldname = 'ZZXFELD' AND
          wa_fields-structure_type EQ 'ITEM'.
            wa_fields-xdisplay = 'X'.
            wa_fields-xinput = ''.
          ENDIF.
          IF wa_fields-fieldname = 'ZZTAXID' AND
          wa_fields-structure_type EQ 'ITEM'.
            wa_fields-xdisplay = 'X'.
            wa_fields-xinput = ''.
          ENDIF.
          MODIFY et_fields INDEX p_index FROM wa_fields.
        ENDLOOP.
      ENDIF.

  • Custom fields not getting updated in Mass Maintenance-MM17

    Hi,
    I have created a custom field in MARC table and the data is getting updated to the MARC table through MM01/MM02 but it is not getting updated by MM17.  I have checked the notes 44410, 576160, 414020 and 116311.  I have done the following changes as per the sap notes.
    1. Created a custom segment ZE1MARCM by copying the standard segment E1MARCM and added the custom field in that  
        segment.
    2. I have extended the IDOC 'MATMAS03' and added the custom segment ZE1MARCM to E1MARAM.
    3. Created a new entry in we82 and provided the extension type 'ZMATMAS03' and release '701'.
    4. Adjusted the partner profile in we20 for matmas with port and providing the extension idoc type.
    5. Added the custom field in the table MASSFLDLST.
    6. Implemented the code in BADI 'MG_MASS_NEWSEG' and exits 'EXIT_SAPLMV01_002' , 'EXIT_SAPLMV02_002' as per the 
        sap notes.
    The custom field is not getting updated through mass maintenance.  Please let me know if i have missed anything?
    Thanks,
    Geeta

    I had this same question several years ago. Please check my answer at Initialize MARC Custom Fields Using MM17 Does Not Work

  • How to add a customer field or extn coll in the tab1&2&3..of a UDO doc?

    Hi Experts,
    Does anybody know how to add a customer field or extn collection in the unused  tabs like tab1&2...in a UDO document?
    Thanks for your reply in advance.
    Thanks & Regards,
    David

    Hi Subhasini - <br><br>
    It seems you have discovered that adding an extension field to the Project Suppliers collection is not possible; many of the collections in E-Sourcing do not support extensions and, even when they do, typically, the table view of the data cannot be changed to show the extension value (it would only show on a "details" page, for example.<br><br>
    The solution that you have proposed may work, although I think there is a slight mistake in your logic. I believe you are saying that the script would take data from the newly created extension collection and populate data in the out-of-the-box vendor collection. <br><br>
    In thinking about your solution, I believe the benefit is that any logic and reporting based on the standard collection continues to function correctly (e.g., creating an RFx from the Project will use the out-of-the-box vendor collection).<br><br>
    That being said, I generally am reluctant to do a "replace" of a standard collection with an extension collection as you propose. My recommendation is that you challenge the customer on the importance of this requirement. For example, could the code be maintained on the vendor record? Why is it maintained in Projects? If it is maintained in the vendor record, could you just populate a read only collection the Projects that shows the vendor and code? Could a report be written that can be launched from within the Project to show the values? How does the customer intend to use this field? Could the display name of the vendor object be the right place for it?<br><br>
    I hope these ideas are helpful.<br><br>
    Regards,<br><br>
    Rob<br><br>

  • 1 custom field not showing up for modification in new List Variant for KS12

    Dear SAP Experts,
    I need some help regarding list variants using custom fields.  I made a new List Variant for transaction KS12 using a few custom and standard fields.  The custom fields are in CI_CSKS structure. I did all this according to not 95080 using option two (Adjust screen 1399 in function group KMA1).  I got the header to display the name of the fields in SE51.  The strange things is that after I start KS12 with the new list variant one of the custom fields doesn't show up for modification if there is no value in it where this is not the case with the others.  That is if there is no value in it already (even on character) I can't enter new values in to it, which beats the purpose.  I checked the attributes of the the custom fields and they are all the same, unless I missed something.
    Does anyone have an idea why this could be?

    Hi Michael - I too have exactly the same problem in Lion. It seems to be a bug.
    A minor one, given all the other much larger issues I have with Lion.
    I'm living with it in the expectation that someone will fix it. I notified it ages ago - long before the recent Lion update.
    I am mainly using Snow Leopard. This problem doesn't happen in Snow.

  • Java.sql.SQLDataException: ORA-01878: specified field not found in datetime

    I am getting the exception mentioned in the subject field. Here is the query
    select * from tabel_abc where from_tz(cast(LAST_RECEIVED_TIME + timeout_duration/86400 as timestamp),'UTC') <systimestamp at time zone 'UTC';
    This is happening only for the during the daylight saving, because the date operation is returning the incorrect time value.
    timeout_duration holds the value in terms of number of seconds.
    Please suggest how to resolve the issue.
    Caused by: java.sql.SQLDataException: ORA-01878: specified field not found in
    datetime or interval
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:457)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:889)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:476)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:204)
    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:540)
    at
    oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:217)
    at
    oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.ja
    va:1079)
    at
    oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1
    293)
    at
    oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1
    419)
    at
    oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedState
    ment.java:3752)
    at
    oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatemen
    t.java:3806)
    at
    oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedS
    tatementWrapper.java:1667)
    at
    weblogic.jdbc.wrapper.PreparedStatement.executeQuery(PreparedStatement.java:13
    5)
    at

    >
    When I run the following expression on this value I get the ORA-01878 error:
    (EXTRACT(DAY FROM ((ETD_ZULU - 4/24) - SYSTIMESTAMP)))
    >
    That isn't the same as the snippet you first posted
    This works
    select EXTRACT(DAY FROM ((ETD_ZULU - 4/24) - SYSTIMESTAMP)) from
    (select cast (systimestamp as timestamp(6)) etd_zulu from dual)The first snippet you posted was
    >
    select * from tabel_abc where from_tz(cast(LAST_RECEIVED_TIME + timeout_duration/86400 as timestamp),'UTC') <systimestamp at time zone 'UTC';
    >
    And it includes time zone. All of the web references I have found indicate the problem is either a missing timezone or a timezone mismatch.
    I can't reproduce the problem with the last snippet you used. Are you certain that ETD_ZULE is timestamp and does not include timezone?
    Do you have a complete query that fails? If so, try to narrow the query down to one record that is causing the problem. If you have to you can use brute force approach. Assume that 60 records should be produced. Add
    WHERE ROWNUM < 30to the query. If it runs clean the problem is in the second half so use '< 40', and keep testing until you know which record. Then examine the contents of the field for that record.
    Without some code to try to reproduce the problem there isn't much other help to offer.

  • Custom field not appearing in Japanese language in some pages of SRM portal

    Hi,
    We have a requirement to add a customer field(a check box) to the shopping cart. To do this we have enhanced a Webdynpro component along with the desired changes in the shopping cart header table.
    The problem that we are facing is that, this custom field appears perfectly fine in the SRM portal in English language. However, in Japanese language(By changing the language settings in the browser), we find that the check box label is not displayed in certain views, and is displayed in some other views (Note that the check box is visible in both views). I believe that this problem is not related to translation.
    Kindly help us if you are aware of a solution to this problem.
    Thanks.

    Hi,
    See the foll note:
    Note 1082243 - Customer field in account assignment tab
    Although this note is for SRM 6.0,you can check the required settings.
    Also as mentioned in note Note 672960 - User-defined fields 2,please carry the foll steps:
    If you define fields for the first time, the system generates a screen for the display. If you create or delete fields, the screen must be regenerated. To do this, start report BBP_DYNPROS_GENERATE, change the proposed program to SAPLBBP_PDH_CUF and execute the report. Select the checkbox for the screens with the descriptions BBP_PDS_HCF for the table-like fields at the header and/or with the description BBP_PDS_ICF for the table-like fields at the item. You can use the 'Copy' button to enforce a regeneration of the screens.

  • Custom fields not displayed inside 'Add. fields' tab of KS01/KS02 tcodes

    Hi Experts,
    I have created a new sub screen 0999 inside program SAPLXKM1 . This subscreen is being called from PBO of screen 0399 / 3399 of SAPLKMA1. During cost center creation (KS01) , one new tab 'Add. fields ' has been added but 0999 screen fields are not being displayed (tab page is blank).
    CALL CUSTOMER-SUBSCREEN custflds INCLUDING 'SAPLXKM1' '0999'.
    Enhancement : COOMKS01.
    Please help what i have missed in this enhancement. Please let me know if there is any step step documentation for the same.
    Thanks,
    Arnab

    Hi
    Please check whether
    1. you have added the custom fields and related texts to the subscreen 0999
    2. you  have written code in function exits for data export and import from screen to screen
    Try passing the values to screen by using the below exits.
    EXIT_SAPLKMA1_001              Flow Logic PBO
    EXIT_SAPLKMA1_002              Flow Logic PAI
    Shiva

  • Business graphics Customizing chart not found; contact administrator in MSS

    Hi All,
    We are getting error Business graphics Customizing chart not found; contact administrator in MSS-->Home Service only for one user but for remaining users it is working fine. Please find the below screenshot.
    Please provide your inputs......
    Regards,
    Rahul.

    go to t -code st01 and switch on the trace on top and tick the buttons in that and after that ....check for working  manager user id  first and do it  with this user which is not working u can know  any authorisations are missing assign them for this user ..ur issue will be solved

  • ORA-01878: specified field not found in datetime or interval

    I have TIME_SOLD field which is a date data type. WHen I run a simple query against this table with the where clause below, I get ORA-01878: specified field not found in datetime or interval. Please help?
    and to_char(from_tz(cast(time_sold as timestamp), 'Australia/Sydney') at time zone 'US/Pacific', 'yyyymmdd') >= '20091001'
    and to_char(from_tz(cast(time_sold as timestamp), 'Australia/Sydney') at time zone 'US/Pacific', 'yyyymmdd') < '20091101'

    just to give an exampe I've created a table called your_table with a date field (time_sold).
    I've inserted 100 random values plus this one: 20090329 02:30:00 (read it using the format yyyymmdd hh24:mi:ss).
    It's a non valid time in Rome because on March 29 we went to the DST so time skipped from 02.00 to 03.00.
    Here's my script's result:
    SQL> declare
      2    x varchar2(100);
      3    cursor c is
      4      select time_sold from your_table;
      5  begin
      6    for r in c loop
      7      begin
      8       x:= to_char(from_tz(cast(r.time_sold as timestamp), 'Europe/Rome') at time zone 'US/Pacific', 'yyyym
    mdd');
      9      exception
    10        when others then
    11           DBMS_OUTPUT.PUT_LINE(SQLCODE||' '||to_char(r.time_sold,'yyyymmdd hh24:mi:ss'));
    12      end;
    13    end loop;
    14  end;
    15  /
    -1878 20090329 02:30:00Max

  • How to get content of custom fields that were created via the EEWB for CIC?

    Hi
    Can anyone tell me how to get the content of custom fields that were created via the EEWB for CIC? This is required at a time when the data has not been written to the database.
    I would like to know how to read this data in the CRM_APPOINTMENT_MERGE method of CRM_APPOINTMENT_BADI.
    Thanks

    Hi Michael,
    I have a requirement to replicate custom setype data created for CRM sales order to R/3 sales order.These fields have been created at item level.
    Do you know the set of steps to achieve the same.
    Any help would be appreciated.
    Thanks,
    Chamu

  • Field not found for column exception

    Hi,
    I have a MBO using SAP RFC so i made changes on RFC added a newfield. Then i recreated MBO but im getting ":Field not found for column " Runtime exception. Anyone has faced some problem ?
    Thanks in Advance.

    Thanks guys!
    I wasn't able to restart the relay server, because I think I have insufficient rights, but I told the admin to do so.
    My MBOs contain new attributes and when I click on "Preview" to check the connection it works fetching the data. Anyway, I will not have to time to fix this issue now. I guess restarting the relay server makes most sense to me.

  • Custom Field not showing in analytics?

    We have a custom field on the account object called sales stage. It is a simple pick list (our organization does not use the opportunity object). The custom field is not available in analytics. Is there something on the field setup that needs to be flagged? All of our other fields seem to appear just fine. This is so bizzarre!!
    Any help is greatly appreciated.

    Hm. Still no answers.
    We have a similar problem concerning custom fields not available in Answers. It concerns a custom field for an additional tel no. in the user record type. I thought it might have something to do with the fact that it can only be utilized through the other data types, using "owned by user".
    But as you have the same problem, maybe there is a solution... Any idea would be appreciated.

Maybe you are looking for

  • Events problem with (Java and ActiveX)

    Hi, I use an ActiveX component with Java and i've got a problem with events. Java classes were generated with Bridge2Java (IBM). In order to manage events I added a listener in my application :      javaMyActiveX = new MyActiveX();      javaMyActiveX

  • Installing OAM 11gR2

    Hi, I wanted to integrate OIM11gR2 with OAM. For this, I did the below so far. 1) Installed WLS server, OIM and SOA for OIM 11gR2 2) Trying to install OAM. Can you please let me know the order in which I need to install.? Also let me know do we need

  • Inconsistent Behavior from Bluetooth Audio

    I've noticed very inconsistent behavior from my bluetooth headset and my iPhone 4. Work fine for voice calls, but doesn't work for a GPS Navigator or Voip. Works for Facetime most of the time, but sometimes won't. Anyone else having this kind of inco

  • Html/xml coding help for SMIL

    We are just switching over to using Flash and I've got a Event URI but my hosting company is having trouble on how to show the player/stream on our webpage. Is there a sample I can show them for the below stream I've got out there? http://hwcdn.net/e

  • Exchange 2013 - Client Access Servers - Disk Space C:\ Running Low Space

    Currently having an issue with both of our client access servers with exchange 2013. The issue is that the C:\ drive will run low on disk space on one of the cas server and the other one will be fine.  We have cleaned up all the logs etc to free spac