BP - Add additional Identification type as BPCCOD in Customer during replication

Hi All,
We have transferred all business partner from R/3 to CRM via initial load. We have Sold to party & Ship to party which are also assigned the BP role of Financial Partner and being used to create the Dispute Cases however we are unable to create the dispute cases in CRM system and also unable to search open item as Identification type BPCCOD with number as Logical system:Client is missing in the Financial Partner. As far as i know as per the SAP Standard functionality during customer download in CRM ID Type CRM002 gets added with ECC Account number by default.
So is there any way through which i can get additional ID Type BPCCOD with Number Logical system:Client assigned to Customers during replication and also if there is any standard program to achieve this functionality?
Thank you
Anand Kumar

Hi Anand,
As per my understanding, you want to add additional Identification type and number while downloading the customer from ECC (Initial load).
Go to tcode BUPA_CALL_FU.
choose event CRMIN and refer BUPA_INBOUND_MAIN_CENTRAL FM as an example.
Copy the FM and create a new FM.
This FM has the changing parameter of structure BUS_EI_EXTERN.
Add the code and Modify the data CENTRAL_DATA-IDENT_NUMBER as per your requirement.
then maintain your function module in BUPA_CALL_FU in the right sequence (after standard FM call).
I hope this will help you.
Regards,
Bala

Similar Messages

  • Additional "Pricing Types"? - I need 3 pricing tiers per product

    Is there a way to add additional pricing types for individual products?  For instance, my client needs 3 pricing types (2 secure). Right now there are pricing types for consumer and wholesaler. We need pricing types for consumer, dealer, and employee. Can we create additional custom pricing types for these?
    The only way i can think to do it is by duplicating each product and their corresponding catalogs twice and putting them in their own secure zone. Although i think this should work, it will be incredibly time consuming with hundreds of products. Not to mention having to make product changes across all three copies. Is there a better way to do this?

    Karl, Although there's still not really a great way to do this we were able to make it work.
    We set up our three Pricing Types like this:
    1. (Consumer)
    We use the Consumer Price Type for this level.
    2. (Dealer)
    We use the Wholesaler Pricing Type for this. You need to set each of these customers as
    At this point I haven't shown you anything you don't already know.
    3. (Employees)
    We setup these customers as wholesalers (like 2). In addition, we give the a 10% catalog discount on all catalogs. This gives them 10% off of the wholesaler discount.
    This isn't a perfect system b/c you can't set the exact price of the 3rd tier but it works.
    I hope this helps.

  • How to add additional field to the existing report

    hi,
    report name is RHXPE_EXPIRED_QUALI
    if u execute report alv list is genereted with like this.
    object type, id of related object, object name, object type, id of related object,last name, first name like this
    where can i get these field descriptios in the prigram becoz many perform ststements r there. i want to add additional field text.
    program is:
    CORRECTIONS
    DATE       CORRECTION NOTE    AUTHOR DESCRIPTION
    09.03.2001            0388404 XSC    Wrong list output for multiple Os
    05.06.2001 AL0K023393 0410219 Lud    Wrong keydate for search with
                                         Pchbegda and pchendda.
    30.01.2002 S6BK000033 0491055 TS     Report: RHXPE_EXPIRED_QUALI
                                         doesn't provide a spool list.
    REPORT rhpk_find_pers_with_expired_qu MESSAGE-ID pq.
    TABLES : pchdy.
    INCLUDES
    INCLUDE rhxmacro.
    INCLUDE rhpeini0.
    TABLES
    DATA: objects  LIKE hrsobid    OCCURS 1 WITH HEADER LINE.
    VARIABLES
    DATA: subrc LIKE sy-subrc.
    DATA: orgeh_text LIKE t777o-otext.
    SELECTION SCREEN
    objid
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    PARAMETERS:
       pchplvar LIKE p1000-plvar NO-DISPLAY,    "plan version
       pchotype LIKE pchdy-otype NO-DISPLAY. "objecttype
    Objid
    rhx-f4-objid-data.
    SELECT-OPTIONS:  pchobjid FOR pchdy-objid_str NO INTERVALS.
    Search
    PARAMETERS:
      pchseark LIKE pchdy-seark.           "matchcode object plom.
    SELECTION-SCREEN END OF BLOCK b1.
    Objecttime
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-001.
    PARAMETERS: se_begd LIKE  p1000-begda DEFAULT sy-datum,  "'19000101',
                se_endd LIKE  p1000-endda DEFAULT high_date.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-005.
    PARAMETERS:
       h_events LIKE dynp_rhpp-gen_train,  "with training sugg
       h_qual LIKE dynp_rhpp-expired_qual. "with Qual
    SELECTION-SCREEN END OF BLOCK b3.
    AT SELECTION-SCREEN ON pchobjid.
      PERFORM check_objid_sign(rhxchk00) USING pchobjid-sign.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR pchobjid-low.
      rhx-f4-objid-low pchplvar pchotype pchobjid '' ''.
    AT SELECTION-SCREEN.
      PERFORM check_plvar(rhxchk00) USING pchplvar.
      PERFORM check_seark(rhxchk00) TABLES pchobjid
                                    USING  pchseark pchplvar pchotype.
    INITIALIZATION
    INITIALIZATION.
      PERFORM read_t77s0_parameters_for_pe.
    get user parameters/Planvariante und Beginndatum setzen:
      pchotype = $orgeh.
      CALL FUNCTION 'RHP0_USER_PARAMETERS_GET'
           EXPORTING
                fill_if_initial = 'X'
           IMPORTING
                plvar           = pchplvar
                begda           = se_begd
                endda           = se_endd
              with_key        =
              SUBSTITUTE      =
              ESSENTIAL       = only_essential
                org_unit        = pchobjid-low
          EXCEPTIONS
                OTHERS     = 0.
    SE_BEGD = LOW_DATE.   "Correction AL0K023393 0410219
      IF NOT pchobjid-low IS INITIAL.
        pchobjid-sign   = 'I'.
        pchobjid-option = 'EQ'.
        APPEND pchobjid.
      ENDIF.
    START-OF-SELECTION
    START-OF-SELECTION.
    correction 0491055
    correction was done for getting a spool list in background-processing.
      CASE sy-batch.
        WHEN space.
          SUBMIT rhpe_expired_quali
               WITH pchplvar = pchplvar
               WITH pchotype = pchotype
               WITH pchobjid IN pchobjid
               WITH pchbegda = se_begd
               WITH pchendda = se_endd
               WITH h_qual = h_qual
               WITH h_events = h_events
                      AND RETURN.
        WHEN 'X'.
          SUBMIT rhpe_expired_quali
               WITH pchplvar = pchplvar
               WITH pchotype = pchotype
               WITH pchobjid IN pchobjid
               WITH pchbegda = se_begd
               WITH pchendda = se_endd
               WITH h_qual = h_qual
               WITH h_events = h_events
                      TO SAP-SPOOL.
      ENDCASE.
    END-OF-SELECTION
    END-OF-SELECTION.

    Hi,
    I think you need to show more programs.
    you said, the report program is 'RHXPE_EXPIRED_QUALI', but you upload  'rhpk_find_pers_with_expired_qu' program.
    usually, ALV field is modifyed in 'PERFORM fieldcatalog_modify', if you use Functional ALV.
    Try to search 'fieldcatalog function', you will find easy.
    Regard,
    SY Kim

  • Payment proposal Exception list - Add additional items to the exception lis

    Hi,
    We have a requirement to add additional vendor open items (having Bank type as ABC and Payment method as Y) to the Exception list of the payment proposal when we run F110. Along with other open items which are may be blocked for payment or which require corrections that normally appear in the exception list, we also need the vendor open items satisfying the criteria of (having Bank type as ABC and Payment method as Y) to be appearing in the exception list.
    We don't want to exclude these items altogether by putting them in the 'Free selection' tab of F110 but rather want them to be in the exception list.
    Any inputs are appreciated.

    Hi
    All payments due will be selected by the payment run depending on the selection criteria you enter. I.e. if you need invoices due with payment method  Y, enter Y in the payment method  selection.
    I am not clear to what you mean by Bank type. However, do note that in the "Free Selection" tab allows you to include specific fields as well. I.e. by not selecting "Exclude values".

  • Add more "Account Types" in chart of account

    Hi,
    would it possible to add more account types to the "Account Type" drop down, and anyone who has an idea on how to do it?
    It would of course be possible to catch the FORM_LOAD event for the form and add additional ValidValues, and in a similar way catch the FORM_CLOSE event and manually save the value to the DB, but this would probably cause problems in other modules using the value..?!
    TIA
    Martin Korsbro

    I don't think it will be possible without breaking the data integrity of SBO.
    The product has processing built in based on the 3 standard values (BoAccountTypes Enumeration), if you were to provide an alternate value it would probably cause exceptions in standard SBO screens and lead to some difficult issues for support.
    It would be better to add a User Defined Field to the Chart of Accounts and specify the list of values you want there.
    John.

  • How to add additional field into output table for RFIDYYWT(Generic Withholding Tax Reporting)

    Hi Experts,
    How to add additional field into output table VENDORS/WH TAX TYPES AND CODES in RFIDYYWT(Generic Withholding Tax Reporting).
    I have no idea how to start with, please give some advice.
    Thanks!
    Ice

    Dear Ice,
    Use Append structure, see given link:
    https://help.sap.com/saphelp_nw04s/helpdata/en/cf/21eb61446011d189700000e8322d00/content.htm
    Regards,
    Abbas.

  • Add additional IP to Windows 2008 SP2 Cluster

    Dears,
    I have a 2 node SQL 2008 Cluster 64bit (non r2) on Windows 2008 SP2 64bit (non r2) Server.
    I need to add additional IP (different subnet) to the Cluster Quorum Resource. 
    Kindly guide me the steps to add the IP ?
    Thanks
    Tariq

    HI Tim,
    Well we need more than one IP address on the Cluster (Quorum) for our replication to work as for some reason we cannot use the production IP which is currently configured for this Cluster.
    Further if you are doing multi-site cluster with different subnet then you may need two IP with different subnet on the cluster (not for services or application)
    I found this usefull command and it worked on the win 2008 sp2 (non r2) server:
    C:\>cluster . res "FS IP Address" /create /group:"file server" /type:"IP Address" /priv address=192.168.1.106 subnetmask=255.255.255.0
    For win 2008 r2 servers there is powershell command through which we can achieve the same.. :)
    it took me hard time to figure out that "failoverclusters" module will not work for win2008 SP2 server.. !! 
    Thanks

  • Ability to add additional pages to scan is now missing

    Hi - 
    I am using the Officejet 6700 all-in-one printer. When scanning a document, the preview screen of the HP software used to have the + and - signs to add additional / remove unwanted scans. Now, the + and - signs are no longer there. I cannot find any other way to add additional scans to the current job.
    Any help would be greatly appreciated!
    Thanks!
    Ben
    HP Officejet 6700 Premium e-All-in-One Printer - H711n
    Model: CN583A
    Windows 8.1
    HP Envy Sleevebook 6
    This question was solved.
    View Solution.

    Hi @ChicagoVols 
    Sounds like there is a problem with the software. Since the option to add/remove pages is missing, I feel the best thing to do is uninstall and reinstall the software.
    Please complete the following steps and let me know the outcome;
    Hold down the Windows Logo key () on the keyboard and the 'R' to open the run box, type %temp%
    Delete all files and folders from the temp folder. Choose skip if any pop ups appear saying any of the files could not be deleted
    Uninstall the software again - Uninstalling the Printer Software Instructions
    When the uninstall has completed restart the computer
    Follow these steps to reset the registry settings and options for Windows Installer.
    Hold down the Windows Logo key on the keyboard and the 'R' to open the run box
    In the Open box, type msiexec /unregister, and then click OK.
    Hold down the Windows Logo key on the keyboard and the 'R' to open the run box
    In the Open box, type msiexec /regserver, and then click OK
     *Note: there is a space between the c and the /
    If you have any difficulty with this step, please use this link to perform it another way. Restarting Windows Installer
    Run Disk cleanup from Accessories\ System Tool < How to Delete files using Disk Cleanup
    Download and install the latest version of Adobe flash player http://www.adobe.com/support/flashplayer/downloads​.html
    Restart the computer
    Download and run the HP Printer Install Wizard for Windows
    The HP Printer Install Wizard for Window was created to help Windows 7, Windows 8, and Windows 8.1 users download and install the latest and most appropriate HP software solution for their HP Printer.
    Please return to let me know if this resolves the issue, thanks. Fingers crossed! 
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • Doubt On Fm FI_OPT_ARCHIVE_CORRESPONDENCE on Additional correspondence types

    I had copied the function module FI_OPT_ARCHIVE_CORRESPONDENCE to a custom function module and that is placed in the BTE  2310  and this function module has contains the correspondence types SAP01 (payment notificiation) and SAP08 (account statement) and i am planning to add new one i.e SAPP01 and what will be the Document type.
    And SAP01 and SAP08  has the document type FIOPAYCONF,FIOACCSTAT
    My question is could you please let me know where i can see the document type for the additional correspondence types  where i need to pass ARCHIVE_INDEX in the function module .

    I had copied the function module FI_OPT_ARCHIVE_CORRESPONDENCE to a custom function module and that is placed in the BTE  2310  and this function module has contains the correspondence types SAP01 (payment notificiation) and SAP08 (account statement) and i am planning to add new one i.e SAPP01 and what will be the Document type.
    And SAP01 and SAP08  has the document type FIOPAYCONF,FIOACCSTAT
    My question is could you please let me know where i can see the document type for the additional correspondence types  where i need to pass ARCHIVE_INDEX in the function module .

  • Additional correspondence types

    I had copied the function module FI_OPT_ARCHIVE_CORRESPONDENCE to a custom function module and that is placed in the BTE  and this function module has contains the correspondence types SAP01 (payment notificiation) and SAP08 (account statement) and i am planning to add new one i.e SAPP01 and what will be the Document type.
    and SAP01 and SAP08  has the document type FIOPAYCONF,FIOACCSTAT
    My question is could you please let me know where i can see the document type for the additional correspondence types so that i need to pass in that function module

    Hi,
    >>>>But, I'm not able to see the above mapping types in the drop-down list in Intf Mapping in IR.
    just type in the ABAP mapping class name from SE24
    and it will work
    Regards,
    michal

  • How can we add additional fields to the BP Search RESULT screen?

    Dear Experts,
    How can we add additional fields to the BP Search RESULT screen so that the BP's being displayed in a search result show maintained values for the particular column/field?
    Thanks!!!

    Hi Laxman,
                           I got same requirement for ibase hierarchy.I want to add new fields in Ibase hierarchy AB.Do you have any idea regarding this.My requirement is that ,i want to dispaly a fields as a check box which display that this component is in under warranty or not by checking the box.Plz tell ,how can i add a new field in tree type context node.I add a new fields using AET ,but that is not available in that AB.
    Thanks
    Vishwas Sahu
    Edited by: vishwas sahu on Nov 17, 2009 1:51 PM
    Edited by: vishwas sahu on Nov 18, 2009 5:22 AM

  • Screen exit for MM01 to add additional fields to basic data tab .

    Hi All ,
    We are working on the SAP version ECC 5.0 . Our requirement is to add additional fields to the general data section of the basic data1 tab for the tcode MM01 . I have gone through many previous queries in SDN but not able to figure out what exactly the process should be . All I could figure out is to start the process from appending the structure to MARA for the additional fields . Then follow the steps in the SPRO .
    Define Structure of Data Screens for Each Screen Sequence
    Assign Secondary Screens
    Maintain Order of Main and Additional Screens
    Assign Screen Sequences to User/Material Type/Transaction/In
    Define How Maintenance Statuses Are Determined in Data Trans
    Create Program for Customized Subscreens
    I am not able to comprehend what we are trying to do in these steps .
    Can anyone explain me in detail what we are trying to do in the whole process ?
    Thanks ,
    Varun .

    Hi varun,
    Create the append structure on the MARA table.
    The SAP note 44410 describes how to add the new fields to the screen and how the updating will work.
    1.     Make a copy of function group MGD1to ZMGDI as stated inthe Ossnote using program COPYMGDI.
    2.             Goto Se38 enter program name SAPLZMGDI Click Display and goto> program-> other object---> enter screen number '0001' and add your fields to the subscreen which should apper on the the general data section of the basic data1 tab for the tcode MM01
    2.     Make the changes stated in SAP Note.
    3.     After make the changes the functional analyst will need to make some configuration changes.
    4.     SPRO -> Logistic General -> Material Master -> Configuring Materal Master -> Define Structure of Data Screens Sequence.
    5.     Select SSq = 21 then click on Subscreens select Basic DATA1
    6.     Enter in the new screens that were built
    7.     Change the row that was create putting in the program (function group program) that was created in step 2.
    Thanks and regards,
    Pavankumar

  • Add a new type of object links (transaction CV02N)  - by material group .

    Hi experts .
    How can I create an additional screen for new tab by material group
           in DMS System ?
    I have a requirement :  1. Add a new type of object links in transaction CV02N 
                                          by material group(V023-MATKL) .
                                        Today we use 2 existing options  :  by Equipment and material .
                                      2. Save and display data .
    We did the following  steps :
    1 . In customizing  for Document Management  :
                   a. Maintained a  key fields :
                          table : V023 , tran.code : OMSF , field name : MATKL .
                   b. Maintained screen object link  for V023 .
                         Our problem is screen number  . we used at existing screen  - 500 for user exit.
                         So we get a new tab with material instead of material group .
                         How I can create a new screen with field material group
                             for set this screen number in step b ?       
                         May be I need the access key for FUNCTION GROUP CV130
                         and create this screen by myself ? .
                   c. Defined Object links for special document type  .
    2 .   Created in se19 at implementation of DOCUMENT_OBJ
                          with defined filter : V023 .
                          Regards Helena .

    Hi Nuno,
    how did you solve this problem?
    tks

  • Add additional params into existing SP

    Hello,
    please, how can I add additional params: @LastName and @FirstName into existing procedure that starts:
    @PIN nvarchar(13)
      AS
    DECLARE @v_exist int
    set @v_exist=0;
    Namely, upon adding additional params:
    @PIN nvarchar(13)
    @LastName nvarchar(20)
    @FirstName nvarchar(20)
      AS
    DECLARE @v_exist int
    set @v_exist=0;
    and adding additional table that comprises columns FirstName and LastName into existing Select statement(referenced table that comprises all possible values of PIN) by creating corresponding relationship, the SP freezes, fails without any output....
    Note: SP checks for PIN that is entered into WEB application, in certain T1. If exists, it informs user that PIN already has been entered and new one must be of different type. But, I would like the First and Last name to be checked, too, i.e., in newly
    added table T2 I would like LastName and FirstName to be extracted based on entered PIN and, upon that, to have checked these couple LastName AND FirstName in T1 (because, there are rows with missing PIN and fact that result could be more then one line is
    not problem because T1 comprises only cca 300 rows... ) 
    Tables T1 and T2 are not changeable but reference tables...The data entered via interface goes into some other tables...

    Must be because, one person with it's belonging PIN can be entered only once into e.g., T1. Evaluation in the SP checks if entered  PIN is in the T2, which comprises forbidden PINs, LastName, FirstName...etc...But, in some cases i.e., some rows, there
    is missing PIN which is to say that I had to involve new table that comprises all possible values for PINs based on which I would like to extract LastName AND FirstName and check it against T2...i.e., check T3.LastName with T2.LastName AND T3.FirstName with
    T2.FirstName...
    But, like Mr.Sorna advised, without table scripts and sample data ...etc...my thread is too ambiguous...I am afraid...

  • Need to add additional SDK to xcode project.

    Hello,
    Can any one tell me how can i add additional SDK to my carbon application.
    Thanks in advance,
    Regards,
    Sunil Adhyaru.

    Could you give us some more information about this? What SDK do you want to use? You could go about it by importing the header files (assuming the SDK is written in a type of C) then import them into your application by doing the Carbon equivalent of #import "HeaderFileFromSDK.h".

Maybe you are looking for