Quantcast
Channel: SCN : All Content - SAP CRM: Master Data & Middleware
Viewing all 1796 articles
Browse latest View live

Tax jurisdiction code while replicating BPs

$
0
0

Hi All,

 

We are replicating BPs from ECC into CRM. These BPs already have the tax jurisdiction assigned in ECC.

 

The issue - When we replicate BPs from ECC to CRM, system tried to determine the tax jurisdiction again in CRM. We want to avoid this and the system should just copy paste whatever value comes in for tax jurisdictiton from ECC into CRM.

 

Any idea on how to achieve this ?

 

Thanks,

Ashish


Quote Replication to ECC for Serial number

$
0
0

Hi All,

 

I am creating quote at CRM, in CRM_DATAEXCHG_BADI BADI I had created implementation and written logic for populating Item Serial number

at method 'CRM_DATAEXCH_AFTER_BAPI_FILL' and filled the item number and Serial number like below

 

    loop at it_orderadm_i into wa_orderadm_i.
    wa_serialno-ITM_NUMBER = wa_orderadm_i-NUMBER_INT.
    wa_serialno-SERIAL_NO = wa_orderadm_i-ZZFLD00002W.
    append wa_serialno to CT_BAPISERIAL_NO.
  endloop.

 

while Debuging queue its properly filled but how we need to check whether it is flowing to ECC or not,

BDOC Status at SMW01 is showing green.

 

Thanks,

VjmHyd

Schedule Line Entered and Schedule Line was deleted

$
0
0

Dear All,

 

 

Required your help

 

I am facing a issue between the CRM and ECC .

 

when i have created sales order and in CRM it is replicating in ECC. but in the SMQ1. the order is in running status.

 

when checked the change document it is keep showing two lines Schedule line entered. and schedule line was deleted and it keep going.

 

 

 

is there any issue with Middleware that i have to look.

 

please help

 

Thanks

Thiruneelan.S

BDocs not generated

$
0
0

hi All,

 

I'm working in SOLMAN system (7.1 EhP1). I need to setup the system in order to sent out business documents (e.g. incidents) created/changed in solman to external non SAP system. I'm using XIF to achieve that. I went through all customizing of CRM middleware but still whenever I change or create the incidents no BDoc are generated.

When I create new business partner (BP) or I change BP assignment I'm able to see corresponding BDoc in tcode SMW01. Based on this I judge that middleware is working in general however I do miss some customizing with regards to BDoc Type = BUS_TRANS_MSG.

 

can you suggest where I should look?

thanks

m./

How to replicate plant(Location) details based on customer master in CRM service request from ECC

$
0
0

We are replicating only customer details from ECC to CRM for Service Request process. We need to determine the plant while creating service request for the issues that customers are facing during transit of order items(We are not replicating products to CRM). Can anyone help me to get the plant details from ECC to CRM so that we can display the same in service request?

Parallel processing while BP replication

$
0
0

Hi All,

 

We are replicating BPs from ECC to CRM using requests (R3AR2). We've divided the entrie load into 20 parts as follows :-

REQ1 - 10,000 BPs

REQ2 - 10,000 BPs and so .... till REQ20

 

When we start these requests from R3AR4, we noticed only one request is running at a time; meaning when REQ1 is completed then REQ2 is started, when REQ2 is completed REQ3 starts and so on.

 

We want all of these requests to run in parallel since we've 40+ Dialog work processes in ECC and CRM.

 

Any idea why are the requests not running in parallel ?

 

 

Note - We've already set the parameters as follows :-

MAX_PARALLEL_PROCESSES = 20

CRM_MAX_NO_QUEUES_PER_REQUEST = 10

 

Thanks,

Ashish

Parent not O.K.:MATERIAL issue while uploading CMIR data in CRM

$
0
0

Hi All,

 

I am facing the issue while doing the initial load for customer material information record. As per the information of the sap note i have deleted parent adapter object BUPA_MAIN and added customer_main. i have tried but still the problem coming by saying Parent not O.K.:Customer_main. i have removed this customer_main also but now again am getting Parent not O.K.:MATERIAL. So finally it is not even moved a bit ahead. Please have a look and revert me.


Shyam K Gangisetti

CRM_DATAEXCHG_BADI - Field not saving in CRMD_ORDERADM_H Table

$
0
0

Hi All,

 

I am facing an issue where the Posting Date from crmd_orderadmh table is clearing out for some of the Contract somewhere in the system during processing of the contract (Reason for this is unknown and probably it is clearing out in ISU System and root cause is being worked upon ).

So as a work around I am trying to fill the posting date in the BDOC. I am filling up the posting date from the 'creation date' of the contract by below code.

After the code fix I can see that the BUS_TRANS_MSG contains the posting date but it is not updating the CRMD_ORDERADM_H Table finally. I have written the code in BADI CRM_DATAEXCHG_BADI in method CRM_DATAEXCH_AFTER_MBDOC_FILL. I am not a middleware guy and have been suggested to write the code in this BADI.

 

Can anybody please help me out why the field is not getting updated into the table. Is the method correctly choosen. A quick help will be appriciated.

 

 


    DATA : lv_posting_date TYPE crmt_posting_date,
           lv_crm_guid     TYPE crmt_object_guid,
           ls_orderadm_h   TYPE bad_orderadm_h_mess,
           lv_created_at   TYPE comt_created_at_usr.
    TYPES :BEGIN OF lty_crmd_orderadm,
             guid         TYPE crmt_object_guid,
             posting_date TYPE crmt_posting_date,
             created_at   TYPE comt_created_at_usr,
           END OF lty_crmd_orderadm.

    CONSTANTS : lc_0 TYPE crmt_posting_date VALUE '00000000'.

    DATA : lt_ty_crmd_orderadm TYPE STANDARD TABLE OF lty_crmd_orderadm,
           ls_ty_crmd_orderadm TYPE lty_crmd_orderadm.

    CHECK ct_message_ext-orderadm_h[] IS NOT INITIAL.

    SELECT  guid created_at posting_date FROM crmd_orderadm_h INTO TABLE lt_ty_crmd_orderadm FOR ALL

ENTRIES IN ct_message_ext-orderadm_h
      WHERE guid EQ ct_message_ext-orderadm_h-orderadm_h_guid.
    IF sy-subrc  = 0.
      SORT lt_ty_crmd_orderadm BY guid.
    ENDIF.

    FIELD-SYMBOLS: <fs_orderadm_h>  TYPE bad_orderadm_h_mess.

    LOOP AT ct_message_ext-orderadm_h ASSIGNING <fs_orderadm_h>.
      IF <fs_orderadm_h>-posting_date EQ space OR <fs_orderadm_h>-posting_date EQ lc_0 .
        lv_crm_guid = <fs_orderadm_h>-orderadm_h_guid.

        READ TABLE lt_ty_crmd_orderadm INTO ls_ty_crmd_orderadm WITH KEY guid = lv_crm_guid BINARY SEARCH. "binary search
        IF sy-subrc = 0.
          lv_created_at = ls_ty_crmd_orderadm-created_at.
          CALL FUNCTION 'ADDR_CONVERT_TIMESTAMP_TO_DATE'
            EXPORTING
              iv_timestamp = lv_created_at
            IMPORTING
              ev_date      = lv_posting_date.

          <fs_orderadm_h>-posting_date = lv_posting_date.
        ENDIF.
      ENDIF.
    ENDLOOP.

 

Many Thanks,


Error at Table Level Refer note 513550

$
0
0

Hi experts,

 

When I try to replicate the Master Data information of the Materials from SAP ERP to SAP CRM using the Initial Load with a filter added in R3AC1, the SMQ1 Queue returns the following error "Error at Table Level Refer note 513550" and the information are not replicated to SAP CRM.

 

I reviewed the notes 1598587 and 2052113 and are implemented at CRM system.

 

I reviewed all the tables (CRMCONSUM, CRMPAROLTP, CRMFILTAB, CRMRFCPAR...) and it seems everything ok.

 

Can anyone help me¿?

 

Thank you,

David

Technical error occurred (2) BUPA_MW_EXCHANGE 103

$
0
0

Hi experts,

 

In Our system update related to customer has stuck up in inbound system and not clearing while reprocessing.All cusomer updated are are not updating in CRM hence all business partner relationship also are in intermediate stage not updated.

Please suggest. It's crtical.

error.PNG

Thanks

Prem

DNL_CUST_CNDALL is in running state for long

$
0
0

Hi Guys,

 

I am trying to replicate new condition types and pricing procedures from ECC.

For this I started customizing download using T-code :R3AS ,object DNL_CUST_CNDALL,but its in running state for long time and never done.

 

Pls suggest.

 

Regards

Jaya.

In SMWP Background Jobs showing status - Not running

$
0
0

Hi Experts,

 

Please help me to find out the solution/reason for the following issue :

 

In our SAP CRM PRD system in SMWP transaction under Background jobs - Monitoring nodes we have for

 

Administration Console Subscription Agent Not running

 

Administration Console Site Scheduling Not running

 

Can anyone tell me why is this happening and what steps needs to carry out to fix this ASAP.

 

Please find word doc attached.

 

Regards,

Senthil,

How to get product id from a huge BDoc errors ?

$
0
0

Hi Experts ,

 

We have requirement were in SMW01 bdoc error type PRODUCT_MAT which are of 400 odd records in which we need to get only product id's to process the request download as it has come from SAP ECC and got struck in SAP CRM as bdoc error.

 

I need to get all these bdoc errors which has product id in extended view to get in an excel or word is there any way to do so if so please share your view ASAP.

 

Thank you!!!

 

Regards,

Senthil

CRM Product Master Data

$
0
0

Hi together,

 

I've a question regarding the CRM product master data. The question is releated to the functionality of product master deactivation.

We have a SAP ERP and a SAP CRM system landscape.

If I set the product master deactivation flag in SAP ERP (MARA-LVORM) it will be automatically transfered to the SAp CRM product master.

Now my question:

In SAP CRM table CRM_JEST (Individual Object Status) are following fields:

CRM_JEST-STAT - Object Status

CRM_JEST-INACT - Indicatior: Status is Inactive

 

What is the different between these fields?

 

If I read the table CRM_JEST (via QuickViewer) I get entries with blank in the field CRM_JEST-INACT (material/product is deactivated), but also entries with X in field CRM_JEST-STAT.

 

Is there anybody who can explain it?

 

Many thanks in advance.

 

Best regards

Frank

CRM 7.0 => ECC 6.0: Upload BUPA_MAIN Filtering

$
0
0

Dear Experts,

concerning filtering of BUPA_MAIN in CRM 7.0 => ECC 6.0 Upload we have already learned from SAP (to our surprise) that the only way is to redefine publication BUPA_MAIN as "simple intelligent" (Standard is simple bulk). BUPA_MAIN as "simple intelligent" offers a couple of fields (e.g. partner_no, is_customer) which can be defined as filter criteria.

We have the requirement to filter by a bp status field which is not part of this set. By the way, we expected the filtering in object management (TX R3AC1, filters are only valid for ECC=>CRM Dowload) or at least in the TX CRMC_BUT_CALL_FU by registrating a ZFunction module in CRM outbound for BUPA_MAIN. Under certain circumstances the later leads to errors in the subsequent middleware processing.

 

Has anybody a similiar requirement or does face the same problems?

 

Thanks for your help.

 

Regards, Mark


BDocs not generated

$
0
0

hi All,

 

I'm working in SOLMAN system (7.1 EhP1). I need to setup the system in order to sent out business documents (e.g. incidents) created/changed in solman to external non SAP system. I'm using XIF to achieve that. I went through all customizing of CRM middleware but still whenever I change or create the incidents no BDoc are generated.

When I create new business partner (BP) or I change BP assignment I'm able to see corresponding BDoc in tcode SMW01. Based on this I judge that middleware is working in general however I do miss some customizing with regards to BDoc Type = BUS_TRANS_MSG.

 

can you suggest where I should look?

thanks

m./

BOM middleware

$
0
0

Hi All,

 

 

we have an issue on BOM down load from ECC to CRM.

 

In quality system first we down loaded BOM from ECC to CRM successfully by executing the adapter object BOM, and delta load was working fine. But when BOM was created in Multiple plants in ECC delta load was stopped, then we maintained BOM in a specific plant, and we deleted BOM relation ship in CRM system by running a report COM_BOM_DELETE_ALL, then we executed initial load through R3AS with the adapter object BOM after this all Bill of materials successfully down loaded from ECC to CRM, delta load is also working fine.

 

 

now in production system similar issue raised on BOM there were 50 BOM materials are there in ECC production system and we executed the initial load it is successful but only for 49 materials BOM components are transferred, for one material BOM components are not transferred for the reason is component is maintained multiple times. now when we try to execute again initial load for BOM the bdoc is generating Bom initial load operation failed.

 

 

 

can any one have solution for this,

Change Account Group (BU_GROUP) in ERP --> CRM replication

$
0
0


Hi experts,

 

We are running CRM 7.02.

 

Customer has a requirement to change the account group in CRM, between 2 account groups in different number ranges.

 

They currently do this via XD07 in ERP, however, the changes do not replicate fully to CRM.

(CRMM_BUT_FRG0041-ACCOUNT_GROUP is updated by middleware, but BUT000-BU_GROUP is not)

 

We are thinking to use BADI BUPA_INBOUND to make an enhancement in CRM that will force the account group to be changed in field BUT000-BU_GROUP.

 

We understand that the account group will no longer align with the assigned number range.  This is acceptable from customer perspective.

 

Are there any other issues that we should be concerned about or made aware of ?  Any other customers facing similar requirement / experience ?

 

Thanks.

How to transfer data between Quality and Development (Delta)

$
0
0

Hi,

 

I would like to know how to transfer BP, Products, and other related data from quality to development server.

Can you please provide a step by step process.

 

Points will be awarded for accurate and fast answer.

 

Thanks,

Vivek.

Update Ibases triggering inconsistent bdocs

$
0
0

Hi all,


 

We are updating CRM Ibases with warranty data via RFC.

In this function module we passing multiple equipments and looping for each equipment to fetch the ibase and the linked components.

For these ibase/components we are updating the warranty data. This is triggering bdocs, but these bdocs contains the previous processed ibases as well.

Because of this the bdocs (and so triggering to BI) is growing exponentially.

 

Please find attached detailed explanation of the issue.


Any help would be very appreciated!

 

Kind regards,

Brecht

Viewing all 1796 articles
Browse latest View live


Latest Images

<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>