"BP Category 1 does not fit the data in category 2"  "Replies Appreciated"

Hi Gurus,
When i am trying to create an "Individual Account" in UI, I am getting the error "BP Category 1 does not fit the data in category 2".
If i try to create a "group" then it says "BP Category 3 does not fit the data in category 2".
It allows me to create only "Corporate Account" i..e. Category 2.
What should i do to create "Individual Account" and "Group". (Category1 & Category 3).
Individual Account (Category 1) - "BP Category 1 does not fit the data in category 2".
Corporate Account (Category 2) - Able to create only Corporate Account
Group (Category 3) - "BP Category 3 does not fit the data in category 2".
Thanks & Regards
Rohan

Hi Rohan,
Hope this SAP Note : 1232459, Solves your problem.
You might have created a custom configuration for corporate accounts.
Unfortunately in case of custom configurations exist, they are selected with higher priority.
So in this case the configuration for corporate accounts is also shown for individual accounts,
this causes error.
In order to solve this problem, create a custom configuration for individual account also,
i.e for view BP_HEAD/AccountDetails. Object type BP_ACCOUNT and object subtype INDIVIDUAL.
Please make sure that the custom configuration includes the fields firstname and lastname for
persons instead of name1 and name2 which are only allowed for corporate accounts.
I hope the above information resolves your problem.
Best Regards
Shiven

Similar Messages

  • CRM 2007 IC : error "BP category 2 does not fit the data in category 1"

    Hi Guys,
    When I am trying to save the data on the Bupacreate page it gives the error as follows.
    "BP category 2 does not fit the data in category 1".
    Can anyone suggest what is causing this error to happen and how this error can be corrected.
    thanks & regards
    Sandy

    Hi,
    This error usually occrus when you try to set field in without specifing bptype ie person, group etc. In our scenario we were trying to set field in Person which was not present in group. but since do_prepare_output method is same in both, that feild was getting set for group as well. When we placed restriction this error got removed.
    Best regards
    Pankaj Kumar

  • Error: 'BP category 1 does not fit the data in category 2'

    Hi,
                i have written a program to create a contact person and the code for it is pasted below...when i run this program i get nothing but this message in the status bar 'BP category 1 does not fit the data in category 2'...can someone tell me wht the error means and y it is coming.
    thanks:)
    pushpa
    *table for storing the line by line records in the excel file
    TYPES: BEGIN OF TTAB,
            REC(1000) TYPE C,
           END OF TTAB.
    DATA ITAB TYPE TABLE OF TTAB WITH HEADER LINE.
    *variable for storing the name of the excel file to be uploaded
    DATA UP_FILE TYPE STRING.
    *data to be uploaded
    TYPES: BEGIN OF TDAT,
            FLD1 TYPE BAPIBUS1006_CENTRAL_ORGAN-NAME1,
            FLD2 TYPE BAPIBUS1006_ADDRESS-STREET,
            FLD3 TYPE BAPIBUS1006_ADDRESS-CITY,
            FLD4 TYPE BAPIBUS1006_ADDRESS-REGION,
            FLD5 TYPE BAPIBUS1006_ADDRESS-POSTL_COD1,
            FLD6 TYPE BAPIBUS1006_ADDRESS-COUNTRY,
            FLD7 TYPE BAPIBUS1006_CENTRAL-PARTNEREXTERNAL,
           END OF TDAT.
    DATA IDAT TYPE TABLE OF TDAT WITH HEADER LINE.
    DATA: BUSINESSPARTNER TYPE BAPIBUS1006_HEAD-BPARTNER,
          CENTRALDATA TYPE BAPIBUS1006_CENTRAL,
          ORGANIZATION TYPE BAPIBUS1006_CENTRAL_ORGAN,
          ADDRESS TYPE BAPIBUS1006_ADDRESS,
          BAPIRETURN LIKE BAPIRET2 OCCURS 0 WITH HEADER LINE.
    PARAMETERS P_FILE TYPE LOCALFILE.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE.
      CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
        EXPORTING
          STATIC    = 'X'
        CHANGING
          FILE_NAME = P_FILE.
    START-OF-SELECTION.
      UP_FILE = P_FILE.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          FILENAME                = UP_FILE
        TABLES
          DATA_TAB                = ITAB
        EXCEPTIONS
          FILE_OPEN_ERROR         = 1
          FILE_READ_ERROR         = 2
          NO_BATCH                = 3
          GUI_REFUSE_FILETRANSFER = 4
          INVALID_TYPE            = 5
          NO_AUTHORITY            = 6
          UNKNOWN_ERROR           = 7
          BAD_DATA_FORMAT         = 8
          HEADER_NOT_ALLOWED      = 9
          SEPARATOR_NOT_ALLOWED   = 10
          HEADER_TOO_LONG         = 11
          UNKNOWN_DP_ERROR        = 12
          ACCESS_DENIED           = 13
          DP_OUT_OF_MEMORY        = 14
          DISK_FULL               = 15
          DP_TIMEOUT              = 16
          OTHERS                  = 17.
    *writing out the contents of the internal table itab
      LOOP AT ITAB.
        WRITE:/ ITAB-REC.
        CLEAR IDAT.
        SPLIT ITAB-REC AT CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB
                    INTO IDAT-FLD1 IDAT-FLD2 IDAT-FLD3 IDAT-FLD4 IDAT-FLD5 IDAT-FLD6 IDAT-FLD7.
        APPEND IDAT.
      ENDLOOP.
      LOOP AT IDAT.
        MOVE: IDAT-FLD1 TO ORGANIZATION-NAME1,
              IDAT-FLD2 TO ADDRESS-STREET,
              IDAT-FLD3 TO ADDRESS-CITY,
              IDAT-FLD4 TO ADDRESS-REGION,
              IDAT-FLD5 TO ADDRESS-POSTL_COD1,
              IDAT-FLD6 TO ADDRESS-COUNTRY,
              IDAT-FLD7 TO CENTRALDATA-PARTNEREXTERNAL,
              '0001' TO CENTRALDATA-PARTNERTYPE.
        CALL FUNCTION 'BAPI_BUPA_CREATE_FROM_DATA'
          EXPORTING
            PARTNERCATEGORY         = '1'
            CENTRALDATA             = CENTRALDATA
            CENTRALDATAORGANIZATION = ORGANIZATION
            ADDRESSDATA             = ADDRESS
          IMPORTING
            BUSINESSPARTNER         = BUSINESSPARTNER
          TABLES
            RETURN                  = BAPIRETURN.
        IF BAPIRETURN IS NOT INITIAL.
          READ TABLE BAPIRETURN INDEX 1.
          MESSAGE
            ID BAPIRETURN-ID
            TYPE BAPIRETURN-TYPE
            NUMBER BAPIRETURN-NUMBER
            WITH BAPIRETURN-MESSAGE_V1
            BAPIRETURN-MESSAGE_V2
            BAPIRETURN-MESSAGE_V3
            BAPIRETURN-MESSAGE_V4.
          EXIT.
        ENDIF.
        REFRESH BAPIRETURN.
        CLEAR BAPIRETURN.
        CALL FUNCTION 'BAPI_BUPA_ROLE_ADD'
          EXPORTING
          BUSINESSPARTNER = BUSINESSPARTNER
          BUSINESSPARTNERROLE = 'BUP001'
          DIFFERENTIATIONTYPEVALUE =
          TABLES
          RETURN = BAPIRETURN.
        IF BAPIRETURN IS NOT INITIAL.
          READ TABLE BAPIRETURN INDEX 1.
          MESSAGE
            ID BAPIRETURN-ID
            TYPE BAPIRETURN-TYPE
            NUMBER BAPIRETURN-NUMBER
            WITH BAPIRETURN-MESSAGE_V1
            BAPIRETURN-MESSAGE_V2
            BAPIRETURN-MESSAGE_V3
            BAPIRETURN-MESSAGE_V4.
          EXIT.
        ENDIF.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
        WRITE:/ 'Business Partner ID:', BUSINESSPARTNER.
      ENDLOOP.

    Hi Pushpa,
             you can use following code to create relationships using BAPI. In this Business partner is organisatin. contact persion paramenter is person. other information related to relationship details
    CALL FUNCTION 'BAPI_BUPR_CONTP_CREATE'
        EXPORTING
          BUSINESSPARTNER           = SEARCH_PARTNER
          CONTACTPERSON             = CONTACT_SAP
      VALIDFROMDATE             = '00010101'
      VALIDUNTILDATE            = '99991231'
      DEFAULTRELATIONSHIP       =
      ADDRESSGUID               =
          CENTRALDATA             = WA_CENTRAL_DATA
          ADDRESSDATA             = WA_ADDR_DATA
          TABLES
        BAPIADTEL                 = I_TEL_DATA
        BAPIADFAX                 = I_FAX_DATA
      BAPIADTTX                 =
      BAPIADTLX                 =
        BAPIADSMTP                = I_EMAIL_DATA
      BAPIADRML                 =
      BAPIADX400                =
      BAPIADRFC                 =
      BAPIADPRT                 =
      BAPIADSSF                 =
      BAPIADURI                 =
      BAPIADPAG                 =
      BAPIAD_REM                =
      BAPICOMREM                =
         RETURN                    = I_RETURN
    hope this will help you
    Siva

  • Any idea what this errorr means? the data type of the reference does not match the data type of the variable

    I am using Veristand 2014, Scan Engine and EtherCat Custom Device.  I have not had this error before, but I was trying to deploy my System Definition File (run) to the Target (cRio 9024 with 6 modules) and it failed. It wouldn't even try to communicate with the target. I get the 'connection refused' error.  
    I created a new Veristand project
    I added the Scan Engine and EtherCat custom device.
    I changed the IP address and auto-detected my modules
    i noticed tat Veristand didn't find one of my modules that was there earlier. (this week)
     So, i went to NiMax to make sure software was installed and even reinstalled Scan Engine and Veristand just to make sure.
    Now, it finds the module, but when i go to deploy it getsto the last step of deploying the code to the target, and then it fails.
    Any thoughts?
    Start Date: 4/10/2015 11:48 AM
    • Loading System Definition file: C:\Users\Public\Documents\National Instruments\NI VeriStand 2014\Projects\testChassis\testChassis.nivssdf
    • Initializing TCP subsystem...
    • Starting TCP Loops...
    • Connection established with target Controller.
    • Preparing to synchronize with targets...
    • Querying the active System Definition file from the targets...
    • Stopping TCP loops.
    Waiting for TCP loops to shut down...
    • TCP loops shut down successfully.
    • Unloading System Definition file...
    • Connection with target Controller has been lost.
    • Start Date: 4/10/2015 11:48 AM
    • Loading System Definition file: C:\Users\Public\Documents\National Instruments\NI VeriStand 2014\Projects\testChassis\testChassis.nivssdf
    • Preparing to deploy the System Definition to the targets...
    • Compiling the System Definition file...
    • Initializing TCP subsystem...
    • Starting TCP Loops...
    • Connection established with target Controller.
    • Sending reset command to all targets...
    • Preparing to deploy files to the targets...
    • Starting download for target Controller...
    • Opening FTP session to IP 10.12.0.48...
    • Processing Action on Deploy VIs...
    • Setting target scan rate to 10000 (uSec)... Done.
    • Gathering target dependency files...
    • Downloading testChassis.nivssdf [92 kB] (file 1 of 4)
    • Downloading testChassis_Controller.nivsdat [204 kB] (file 2 of 4)
    • Downloading CalibrationData.nivscal [0 kB] (file 3 of 4)
    • Downloading testChassis_Controller.nivsparam [0 kB] (file 4 of 4)
    • Closing FTP session...
    • Files successfully deployed to the targets.
    • Starting deployment group 1...
    The VeriStand Gateway encountered an error while deploying the System Definition file.
    Details:
    Error -66212 occurred at Project Window.lvlibroject Window.vi >> Project Window.lvlib:Command Loop.vi >> NI_VS Workspace ExecutionAPI.lvlib:NI VeriStand - Connect to System.vi
    Possible reason(s):
    LabVIEW: The data type of the reference does not match the data type of the variable.
    =========================
    NI VeriStand: NI VeriStand Engine.lvlib:VeriStand Engine Wrapper (RT).vi >> NI VeriStand Engine.lvlib:VeriStand Engine.vi >> NI VeriStand Engine.lvlib:VeriStand Engine State Machine.vi >> NI VeriStand Engine.lvlib:Initialize Inline Custom Devices.vi >> Custom Devices Storage.lvlib:Initialize Device (HW Interface).vi
    • Sending reset command to all targets...
    • Stopping TCP loops.
    Waiting for TCP loops to shut down...
    • TCP loops shut down successfully.
    • Unloading System Definition file...
    • Connection with target Controller has been lost.

    Can you deploy if you only have the two 9401 modules in the chassis (no other modules) and in the sysdef?  I meant to ask if you could attach your system definition file to the forum post so we can see it as well (sorry for the confusion).  
    Are you using any of the specialty configurations for the 9401 modules? (ex: counter, PWM, quadrature, etc)
    You will probably want to post this on the support page for the Scan Engine/EtherCAT Custom Device: https://decibel.ni.com/content/thread/8671  
    Custom devices aren't officially supported by NI, so technical questions and issues are handled on the above page.
    Kevin W.
    Applications Engineer
    National Instruments

  • Text box does not display the date??

    I have a text box <input type="TEXT" name="invoiceDate" readonly></input>. I select the date using datepicker .The date gets displayed in the text box.Then i click on "Show" button which loads the same jsp page again.
    When the page is loaded the text box does not show the date.
    I try to save the date in the text box as
    <% String date1=request.getParameter("invoiceDate");
    <input type="hidden" name="date1" value="<%=date1 %>">
    <%>
    The value is saved in this hidden variable..
    Plz help me what to do next
    Thanks

    Its a hidden field and that's why it isnt displayed.
    Use
    <input type="text" name="date1" value="<%=date1 %>"> ram.

  • How do I transfer music and photos from my Power Mac G5 to my new iMac. Have an old FireWire but it does not fit the new iMac

    I am trying to transfer photos, music, etc from my Power Mac G5 to my new iMac. The Power Mac is too old for the migration assistant to help. I have an old Firewire but it does not fit the new iMac. Any suggestions? If a Firewire is the best option which one do I need? Thanks.

    You need a Firewire 800 to 400 adapter or cable or a external USB 2/3 drive (self powered) it can default to the old USB the G5 uses 1 or 2.
    Format the drive info here.
    Backup and restore info
    https://discussions.apple.com/message/16276201#16276201

  • I had an ipod touch 4th gen and used the apple universal dock to play music through my stereo.  I just got a 5th generation and a lightning adapter but the adapter does not fit the universal dock.  Apple tech support has no solution, does anyone?

    I had an ipod touch 4th generation and used the Apple Universal Dock to play music through my stereo.  I just got the 5th generation and the lightning adapter but the adapter does not fit into the dock.  Apple tech support has no solution, does anyone?

    That is the adapter I purchased from Apple which does not fit in the Apple Universal cradle (which apparently is no longer universal).  However, I just created my own solution.  The cradle holds the dock connector at a slight angle so the adapter, which has a straight bottom edge, will not slide down far enough to make a connection.  Since the adapter has a plastic case, I used my Swiss Army knife to whittle it down to fit.  It's a no-tech solution, and free!

  • SelectOneMenu does not show the data from the backing bean

    Here is my code:
    <!--
    Fetch the source directory
    -->
    <h:inputText id="dir"
    value="#{myBean.sourceDirectory}"/>
    <!--
    Click this button to refresh the sub-directories list below
    -->
    <h:commandButton value="fetch"
    actionListener="#{myBean.processFetch}" />
    <!--
    Show the list of sub-directories in the directory entered above as a drop
    down
    -->
    <h:selectOneMenu value="#{myBean.selection}">
    <f:selectItems value="#{myBean.dirs}"/>
    </h:selectOneMenu>
    public class MyBean{
    private String sourceDirectory;
    private ArrayList<SelectItem> dirs;
    public String getSourceDirectory(){
    return sourceDirectory;
    public void setSourceDirectory(String newDir){
    this.sourceDirectory = newDir;
    public ArrayList<SelectItem> getDirs(){
    return dirs;
    public void setDirs(ArrayList<SelectItem> newDirs){
    this.dirs = newDirs;
    public void processFetch(ActionEvent e){
    //For this example, we return some hard coded values
    dirs = new ArrayList<SelectItem>();
    SelectItem s1 = new SelectItem();
    s1.setLabel(sourceDir + "_1");
    SelectItem s2 = new SelectItem();
    s2.setLabel(sourceDir + "_2");
    SelectItem s3 = new SelectItem();
    s3.setLabel(sourceDir + "_3");
    SelectItem s4 = new SelectItem();
    s4.setLabel(sourceDir + "_4");
    dirs.add(s1);
    dirs.add(s2);
    dirs.add(s3);
    dirs.add(s4);
    When I run the above code, I notice that the first time, (and the only time), if I hit the "fetch" button the data in the drop-down menu does get refreshed.
    Subsequently, it does not change. I am not sure what I am doing wrong.
    Can someone help me?

    Hi,
    In order to use the JDBC persistence store you have to use a non XA JDBC driver for your Data Source.
    http://docs.oracle.com/cd/E23943_01/web.1111/e13701/store.htm#CNFGD221
    Point-13). When configuring a connection pool to use with WebLogic JMS JDBC Store, use non-XA database drivers.
    http://middlewaremagic.com/weblogic/?p=586
    Hope it helps

  • Pop-up allows first pop-up page and the second pop-up page (linked from the first one) but does not open the data in the second pop-up page.

    I want to print my online bank statement.
    Please see screen shots below.
    The webpage has a link that says:
    VIEW STATEMENT
    Click the link and a pop-up opens that warns you about downloading using a public-access computer or sharing a computer with others.
    If you want to continue click OKAY.
    When you click this link another pop-up appears (a pop-up within a pop-up)
    but it is blank.
    When the process used to work, the statement would appear.
    MacBook running OS X 10.6.8
    When I tried it with Safari everything worked as it should so the problem is not with the bank.
    I went back to Firefox (my preferred browser) and did the troubleshooting RESET.
    Nothing changed.
    In the Tools menu - Page Info - Permission - Open Pop-up Windows is set @ Default - Allow
    In Preference - Content - Block pop-up windows is unchecked
    or when it is checked the website is listed in the Allowed column.
    It is the correct url because when I clicked the yellow options bar to Allow it, FireFox automatically chose it.
    I also tried adding the extended url as it appears on the web page which has the first pop-up link.
    Firefox would not accept it.

    Screenshots:
    # Part of bank's webpage with the link to the first pop-up
    # The first pop-up page with link to the statement pop-up page.
    # The second pop-up page - blank where there should be the statement. The page appears but the data doesn't.

  • Peristent Store does not show the Data Source in Wenlogic 12.1.3

    Hi All,
    I have installed WebLogic 12.1.3 on my windows machine using Java 8 and am trying to configure the Data Source and Persistent Store (of JDBC type).
    I'm able to create a Generic Data Source of type -  *Oracle's Driver (Thin) for Instance connections;Versions:Any. The test connection also was successful.
    When i proceed with the creation of a Persistent Store - JDBC type, the Data Source created is not getting populated in the drop down across Data Source label.
    Any suggestions as to why this is happening?? or What needs to be done by me to fix this issue?
    I'm unable to proceed further with my configuration due to this.

    Hi,
    In order to use the JDBC persistence store you have to use a non XA JDBC driver for your Data Source.
    http://docs.oracle.com/cd/E23943_01/web.1111/e13701/store.htm#CNFGD221
    Point-13). When configuring a connection pool to use with WebLogic JMS JDBC Store, use non-XA database drivers.
    http://middlewaremagic.com/weblogic/?p=586
    Hope it helps

  • Converting to DNG in LR4 does not preserve the date

    When converting to from Canon CR2 raw to DNG (on Windows 7 x64), the newly created file has the conversion date and not the creation date of the original picture file.
    This is an issue several people have complained about for the DNG converter and one suggestion was to run a custom script: http://forums.adobe.com/message/4109737#4109737
    I hope Lightroom 4, with the goal to optimize the photo editing workflow, will give us an uption to preserve the date.

    Thats completely confusing: LR shows me first a date/time which is of no use at all – who will be ever interested in such file data when editing pictures.
    The one date/time that's really interesting - when to photo was taken - follows in the second row. And again strange: it is labeled in braces: (original)

  • REUSE_ALV_GRID_DISPLAY does not show the data

    Hello,
    I have created a report which show the alv through REUSE_ALV_GRID_DISPLAY.
    It is working fine on my development server and show the data too. but when it was transported to the production , ALV is showing, but no data in tha alv.
    I check the data in the internal table , Data is available but it still not shown..

    PERFORM create_field_catalog.
    *  display ALV Grid.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program      = sy-repid
          i_callback_user_command = k_double_click
          it_fieldcat             = gi_field_cat
          i_default               = k_x
          i_save                  = k_a
          i_grid_title            = text-015
        TABLES
          t_outtab                = gi_woplo
        EXCEPTIONS
          program_error           = 1
          OTHERS                  = 2.
      IF sy-subrc <> 0.
        MESSAGE i270(zcg340).  "Problem occured in Creating ALV.
      ENDIF.
    I have check the transport too, there is no change in the table field nor in any code in the production .
    But for the layout there is layout set to Default.. ..

  • Nokia N8 Calendar Does not Show the Dates????

    Hi, 
    I am noticing this issue from the past couple of weeks and probably after the last update. 
    When I open the calendar Icon, the dates do not load on the phone. It just doesnt show any dates?
    Also if a reminder is past, it shows a past reminder and the reminder also doesnt open up. 
    Whenever I do the hard re-boot i.e keep the power button pressed till it vibrates three times and shuts and re-starts, then initially the calendar shows the dates, but again after sometime if I have to open the calendar, it doesnt show the dates at all, and goes back to the same issue. 
    Please advise a good solutiong to this problem as a hard re-boot or a re-start or even re-setting the factory settings did not work
    Thanks

    Someone from the Nokia forum please respond to this as I am facing this issue too from quite sometime now. Its exactly he same.

  • My macbook pro does not remember the dates of when I saved files

    I have had my macbook pro since late may of 2010, but I recently noticed it has not been remembering the day I saved files. It claims that every file was saved, or last opened on 5/1/2010. How can I make it so my computer remembers the dates of when everything was saved?

    Is the clock showing the correct time. Check in System preferences > Date & Time to see how you have this set up. It may be that you are connecting (or trying to connect) to an online time server that is not right. Do you have to reset the time?  Also, are you having any problems with the battery?  I am not sure if this MacBook Pro has a separate battery for the clock, but  if that were defective that may cause symptoms like this.

  • Content does not fit the screen

    Content displayed on teh screen spills over the edge, so I have to use the mouse to repostion.  I have performed adjustments i the display seting and that did not fix the problem.

    Turn off Zoom from the Universal Access and Keyboard & Mouse panes of System Preferences.
    (101536)

Maybe you are looking for

  • Disp+work is stopped........

    Hi, Sap experts. Hope all are doing good!!!!!!! Disp+work is stopped.... i'm new to sap.... please help me how to solve this issue..... i will provide dev_disp log below.. trc file: "dev_disp", trc level: 1, release: "720" sysno      19 sid        SA

  • ORA -01115 error in db13 checkdb

    Hi expert , i am new to this fouram i have ora-01115 error in sap oracle 9i database , Please help me to solve the problem . I am using ECC 5.0 ,win2k3 enterprise edition ,Oracle 9i could anybody explain me what the relation of oracle block segment ,

  • How do you get the rest of the form to shift down when a field grows in a subform

    I am using ES2, I am trying to get a form to shift down when a field grows in a subform, and nothing I tries works.  I am not an expert in this area, but all the help I have tried on-line does not seem to workI would be more than happy to email the f

  • Shopping cart error message

    I am getting an error message when attempting to purchase songs. It tells me that my cart contents have changed... to review my cart and then click Buy. When I attempt to follow instructions.. it just repeats itself. Any suggestions? Thanks.

  • Nokia E71x Copy and Paste Wireless Key

    I have my long and obscure WEP encryption key for my wireless network in a text document on my phone. I can open the document and copy the key, but it won't let me paste it into the "Pre-Shared Key" input box. Can the OS copy and paste between differ