Quantcast
Channel: SCN: Message List - SAP CRM: Master Data & Middleware
Viewing all 4270 articles
Browse latest View live

Re: Billing Engine with Contract Accounting - How does CRM know the account in FI-CA?

$
0
0

Below is from Help file

 

Determination of Contract Account in ERP System    

 

In the ERP system, the determination of the contract account from a generic contract account key (from any external system) takes place in the BAdI FKKINV_BAPIBILL. This program model also applies for CRM invoicing as source system. A customer implementation of the method CONTRACT_ACCOUNT_DETERMINE for BAdI FKKINV_BAPIBILL is required.

Procedure

If the master data was actually replicated, add the following program lines:

 

METHOD IF_EX_FKKINV_BAPIBILL~CONTRACT_ACCOUNT_DETERMINE.

  DATA: wa_fkkvkp TYPE fkkvkp.

  CLEAR wa_fkkvkp.

  SELECT * FROM  fkkvkp

                  INTO  wa_fkkvkp

                  WHERE guid EQ x_cont_acct_id.

    EXIT.

  ENDSELECT.

  IF NOT wa_fkkvkp IS INITIAL.

    MOVE: wa_fkkvkp-vkont TO xy_cont_acct,

          wa_fkkvkp-gpart TO xy_buspartner.

  ENDIF.

  1. ENDMETHOD.

You have to differentiate between the source systems since there is no master data replication between a non-SAP system and the ERP system. You may have to evaluate a customer table that contains the information.


Re: Bdoc Error: Mat. for Initial Download: Table not supported by function

$
0
0

Hi Dnyanesh,

 

Thanks for your reply.

 

I have checked note 1121999 which you mentioned, it cannot be implemented in the system because we are in higher version for PI and SAP_APPL and when these bdocs are in red, there status is E04. After reprocessing it then status is F02. We are using CRM 7.1 and ECC 6.0.

So, this note is not valid for our system.

 

Any more inputs are welcome!

 

Regards,

Varun

Re: Bdoc Error: Mat. for Initial Download: Table not supported by function

$
0
0

Hi Varun,

 

Before you proceed with Material master replication, may be to first replicate and synchronise -

 

1. Currencies

2. UOM

3. Defined Item catefory group in your CRM system

 

Also please check the R/3 tables used in object in MATERIAL and also validate your filter settings (if any)

 

Hope this will be helpful

 

Thanks and Regards

DJ

Re: Bdoc Error: Mat. for Initial Download: Table not supported by function

$
0
0

Hi Varun,

 

If you are already on higher release, then kindly raise an OSS message, so that SAP can

investigate further and provide you the solution.

 

Best Regards,

Shanthala.

Strange Queues

$
0
0

Hi.... in Middleware can someone please let me know what it means by Queue name MCEX*? Thannks...

 

I see these Queues with No Send status would like to know what they are intended for.

 

regards,

marry.

Re: Strange Queues

$
0
0

Hi

 

BW/BI queues usually start with MCEX*

 

Regards

a

Re: Queues stuck, user locked-deleted

$
0
0

Hi Christophe,

 

Thanks for your reply.

I can reprocess the Queues but I get the same error on a SYSFAIL queue.

 

Some of the Queues are orders, but others are WorkForce Updates which I cannot replicate.

 

Problem I believe is that each Queue with a problem is related to a User ID that was either locked or deleted, and I need to find a way to reprocess them with a generic User ID or to avoid that validation on the user.

 

On the past we used to ask our Security guy to temporaly unlock those users for us to process the Queue, but it would seem that now that is not possible due to Security Measures.

Category for product hierarchy does not exist

$
0
0

Area:  COM_Product_API

This is also true in our ECC system.  Not sure how to clean this up.


Error while calling a proxy from crm system

$
0
0

Hi All,

 

I am trying to call an OB proxy from report program. However i am getting an exception .

 

The method in the proxy is being called. I tired to debug and this is what i found.

In the method i am calling, one more method is being called if~proxy~client~execute. All is fine till this method is called

proxy_framework->call_execute_out( ). In this method , i am getting an exception at this code.

 

IF

me->runtime = runtime_xi.

   
TRY.

       
TRY.

            xi_call_outbound
( ).

         
CATCH cx_xms_system_error INTO lo_error.

            cl_proxy_runtime_errors
=>system_fault_from_xms_sys_err( lo_error ).

       
ENDTRY.

 

The exception says Error (id = GET_BUSINESS_SYSTEM_ERROR) : An error occured when determining the business system(SLD_API_EXCEPTION)

 

I did a check n SLDCHECK t-code and i could not find any server. I have attached the Screenshot of the sldcheck t-code. Please guide me what should the course of action?

 

Regards

Chandrakant Kulkarni

Re: After replicate the Equipments and ibase from ECC to CRM. where i can see the equipments and ibase in crm system.

$
0
0

Hello Mahi

 

IBIB --     Installed Base/Ibase

IBIN --     Installed Base Components

COM_TA_R3_ID - Equipment ID (field R3IDENT )

 

Hope it helps

 

Regards, EL

Re: Error while calling a proxy from crm system

Re: Queues stuck, user locked-deleted

$
0
0

User is locked. Please inform person responsible

 

Message no. SR053

 

That's the message I get the I check the SYSFAIL status on SMQ1

 

In this case for Queue: WFM_CORE2PUBLISH

Function Module: /SAPAPO/LRP_PUBLISH

 

Thanks!

Re: Territory Management: Is Exclusion Possible?

$
0
0

Can anyone help? We have same issue.  but little different scenario.

A customer can exist in multiple territories but for same partner function if a customer assigned explicitly to a territory (XXXXX ) by BP ID, system should not assigned this customer to another Terriroty ZZZZZ based on geenric rule say zip code and region .both Terriroties are mapp to same partner fucntions (e.g. Area Sales Rep). The customer can be in another terriroty say YYYY based on YYYY rule  which is mapped for different partner fucntion (Area Manager)

Re: Business partner L29640 does not exist as a creditor; changes not possible

$
0
0

Hi,

 

The BDOC monitor (transaction SMW01) shows error messages XR062, when you created a business partner first in a role like sold-to party, and added the role vendor/supplier afterwards.

 

Check :- In the R/3 system, you do not have any entry in table CRMROLECAT for customer-related role categories like CRM000, but only entries for supplier-related role categories like BBP000 or BBP003.

 

An additional check function is necessary in the CRM R/3 adapter which checks the existence of the vendor master record in addition.

 

Please Check with transaction SE37.

Name:       CRM_BUPA_VENDOR_CURRSTATE_SET

Function group: CRM_BUPA_VENDOR_OUTBOUND

Importing:  I_BP_STRUCT  type BUS_EI_EXTERN

Changing:   EV_FLG_CURRSTATE type C

Activate the function.

 

 

Activate the function by the following customizing setting:

Go to transaction SM31.  Choose table CRMC_BUT_CALL_FU.

Create a new entry:

Event = R3AOU (R/3 adapter outbound)

Object = BUPA (Business partner)

Position = 120000

Function = CRM_BUPA_VENDOR_CURRSTATE_SET

Active = 'X'

Save the new entry.

 

after above setting please reprocess the bdoc or create new BP and check bdoc for that

 

Regards,

Vaibhav Shah

Re: Category for product hierarchy does not exist

$
0
0

Hi Jasneil,

 

Could you please elaborate more on the issue you are facing ?

 

Also, if possible give the relevant error screen shot.

 

Thanks and Regards

DJ


Re: Territory Management: Is Exclusion Possible?

$
0
0

Could you consider whether ACE can be used.

 

Regards

 

 

Waza

Re: Category for product hierarchy does not exist

$
0
0

Error :COM_PRODUCT_API 003 - Category for product hierarchy & does not exist

 

Check whether that Category is assigned to Product hierarchy or not in ECC if assigned than start initial load for object DNL_CUST_PROD1 through txn :  R3AS

 

if everything is perfect than check below mention note is applicable to your system

 

Please Refer

Note 1722604 - Error Message COM_PRODUCT_API003

 

Regards,

Vaibhav Shah

PRODUCT_INDOBJ issue

$
0
0

Hi Experts,

 

There are several PRODUCT_INDOBJ bdocs with error " Partner function XX can only be used once " Message : IX011.

 

What is the reason of such kind of messages, how we can investigate this?

 

Thanks

Re: BDoc's are failing while reprocess Error Bdoc

$
0
0

Hi Vimal,

 

If you get an error message in the bdoc this would need to be dealt with first.

 

If it is more of a middleware issue please see the attachment in note 768503. It is a very helpful document as how to analyse and handle midddleware issues.

 

Best regards

 

Christophe

Urgent: Getting dump by SAPLCRM_BUPA_MAP_SAVE

$
0
0

Hi Experts,

 

We are getting dump in CRM system every second with following details:

 

What happened?
    Error in the ABAP Application Program

    The current ABAP program "SAPLCRM_BUPA_MAP_SAVE" had to be terminated because
     it has come across a statement that unfortunately cannot be executed.

Error analysis
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_SEND_DYNPRO_NO_RECEIVER', was not caught and therefore caused a runtime error.
    The reason for the exception is:
    During background processing, the system attempted to send a screen to a user.

    Current screen: "SAPMSDYP " 0010.

    Additional system information: "no window system type given"

Source Code Extract

Line  SourceCde

    1 FUNCTION bupa_map_save_cont_tabs.
    2 *"----------------------------------------------------------------------
    3 *"*"Verbuchungsfunktionsbaustein:
    4 *"
    5 *"*"Lokale Schnittstelle:
    6 *"       TABLES
    7 *"              IT_CONT_INSERT STRUCTURE  CRMM_BUT_CONTNO
    8 *"              IT_CONT_UPDATE STRUCTURE  CRMM_BUT_CONTNO
    9 *"              IT_CONT_DELETE STRUCTURE  CRMM_BUT_CONTNO
   10 *"----------------------------------------------------------------------
   11
   12 * Workarea are no used.
   13   CLEAR it_cont_insert.
   14   CLEAR it_cont_update.
   15   CLEAR it_cont_delete.
   16
   17   IF NOT it_cont_insert[] IS INITIAL.
>>>>>     INSERT crmm_but_contno FROM TABLE it_cont_insert[].
   19   ENDIF.
   20

 

There is no BDoc flow between CRM and ECC. It looks like there is some process trying to update contact details and creating dump every second.

 

Your suggestions are highly appreciated.

 

Thanks and Regards,

Viewing all 4270 articles
Browse latest View live


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