Quantcast
Channel: SCN : Unanswered Discussions - Customer Relationship Management (SAP CRM)
Viewing all 7573 articles
Browse latest View live

ELEMENT_NOT_FOUND in CL_TRIGGER_COLL_PPF

$
0
0

Hi,

 

I wish someone has come across this before and had cracked it.

 

This error is triggered by multiple applications, however at one stage below active calls for all errors has these:

 

   82 METHOD       CL_TRIGGER_COLL_PPF===========CP    CL_TRIGGER_COLL_PPF===========CM005     6

      CL_TRIGGER_COLL_PPF=>GET_NEXT_ELEMENT

   81 METHOD       CL_TTYPE_PPF==================CP    CL_TTYPE_PPF==================CM005   463

      CL_TTYPE_PPF=>DETERMINE

   80 METHOD       CL_CONTEXT_MANAGER_PPF========CP    CL_CONTEXT_MANAGER_PPF========CM003    59

      CL_CONTEXT_MANAGER_PPF=>DETERMINE

   79 METHOD       CL_MANAGER_PPF================CP    CL_MANAGER_PPF================CM002    93

      CL_MANAGER_PPF=>DETERMINE

   78 FUNCTION     SAPLCRM_ACTION                      LCRM_ACTIONU03                        127

      CRM_ACTION_DETERMINE

 

 

Below source code where error occurred behaves strangely and leaves no clue on what happened:

 

Line  SourceCde

    1 method GET_NEXT_ELEMENT .
    2
    3 *  if get_number_of_elements( ) <> 0.
    4     read table ref_table index iterator into ro_element.
    5     if sy-subrc <> 0.
>>>>>       raise element_not_found.
    7     endif.
    8     iterator = iterator + 1.
    9 *  else.
   10 *    raise no_elements.
   11 *  endif.
   12
   13
   14 endmethod.

 

 

This method is called in loop as below:

 

*---------------------process triggers at once-----------------

  current_trigger_list->reset_iterator( ).

  counter = current_trigger_list->get_number_of_elements( ).

DO counter TIMES.

    lo_trigger = current_trigger_list->get_next_element( ).

*   reset the relevant date (l_relevant is initial)

    lo_trigger->set_relevant( l_relevant ).

*   set the trigger at the medium to make sure both instances are

*   registered for saving                               "note 1474344

    lo_medium = lo_trigger->get_medium( ).

    lo_medium->set_trigger( lo_trigger ).

*   if an optimization rule is used, (re)calculate relevant date;

*   date might have been changed; will be set within the evaluation;

*   we do not care about the return value here          "note 1288535 >>

    if lo_trigger->get_optrule( ) is not initial.

      lo_trigger->evaluate_startcond( ip_check_opt_rule = sppf_true ).

    endif.                                              "note 1288535 <<

*   process triggers that are unprocessed and have the correct

*   processing time (3)

    IF lo_trigger->get_status( ) EQ sppf_status_unprocessed  AND

       lo_trigger->get_dispatch( ) EQ sppf_process_at_once.

*     EXECUTE method checks for locked an inactive triggers,

*     no need to check outside of object

      CALL METHOD lo_trigger->if_action_ppf~execute

        EXCEPTIONS

          OTHERS = 1.

      IF sy-subrc NE 0.

*        Ignore all errors

      ENDIF.

    ENDIF.

  ENDDO.

 

On every error, the iterator in "read table ref_table index iterator into ro_element" is always one greater than counter, implying that do loop has looped one extra time. The code above should not call get_next_element third time if counter is 2.

 

When looped for third time and read on REF_TABLE fails raising exception. The only way this can happen is if the counter value is subtracted / reset inside the loop which can not happen. This can not be reset by other called methods inside the loop as counter is local variable declared in method.

 

Did someone come across such issue before? any information regarding this / suggestions on where possible would really help the analysis.

 

 

Thanks and regards,

Nadh

 

 

 


Credit Check in SAP CRM Quotation

$
0
0


Hi Everyone,

 

We have a requirement to have credit check available at Quotation level can anyone suggest how to activate credit check at quotation level and what are the steps to configure it in both the systems.

 

 

SAP CRM (Front End System)

 

SAP ECC (Back end System)

 

 

Regards,

 

Shishir

if user click the URL in Third party system user click the url iam getting error?Iframe error.

$
0
0

Hi Team,

 

 

If user clicks the link iam getting error like as below..I have checked the note- 1888001. Coud you please help here..

 

crm-ext-integration=true  this parameter i have added in my URL ...but what settings we need to for displaying in IFRAME..

 

 

 

Error - To help protect the security information you enter into this website

the publisher of this content does not allow it to be displayed in a frame.

 

 

Thanks

Kalpana

issue in partner function:"responsible group"

$
0
0

Dear all,

 

please help me.

 

  1. responsible group should determine after the Business partner enter to the transaction .

but in my case when i open any transaction it is already determined to transaction and after i enter the Business partner  again another  responsible group also determine. it should not be two responsible group for one business transaction type .

 

please suggest me to configuration.  so  after enter the business partner  only responsible group should determine.

 

attached some screenshot.

 

regards

Debasis

 

 

qurey 1.PNGqury 2.PNG

CRM_MKTBP_CHANGE_BP not working

$
0
0

Hello friends,

 

We are using the FM CRM_MKTBP_CHANGE_BP to update the marketing attributes.

 

But this is removing the maintained values for that set and updating the new values. But we are expecting it should add the new values to the BP.

 

Please find the code

**  Maintain marketing for business partner.
     CALL FUNCTION 'CRM_MKTBP_CHANGE_BP'
       EXPORTING
         iv_profile_template_id = ls_mkt-attr_set
         iv_bp_guid             = ls_mkt-partner_guid
         iv_fcode               = 'C'
         iv_commit              = lv_commit
       TABLES
         it_imp_seltab          = ls_mkt-imp_seltab
         et_return              = lt_return.


Kindly suggest whether it is a standard behaviour or something else need to be passed.

Let me know if you need more details.


Thanks,

Ravi Teja

Mandatory field Error in Crm Web UI - Campaign Wizard - CPG_SALES_GA

$
0
0

Hello Experts,

 

I have the Camapign Wizard Screen(please refer the attached screen shot).

CPG_SALES_GA.GIF

 

When I execute the Campaign Wizard, the field values are stored somehwere. And the same values are getting displayed in these feilds next time when I execute the transaction(even If I execute the Capamign Wizard after logging off and then logging in).

 

Now the problem is that if I try to navigate to the next screen, it gives the Mandatory field error - Make an entry in field XXXX. Even if the values are filled form the previous transaction(as shown above).

 

The workaround is that I have to press enter in each of these fields to get rid of these errors and to navigate on the next screen.

 

I had debugged the GETTER Methods for each of the Mandatory fields and to my surprise the value of these fields are showing as blank in the GETTER methods. Still the values are getting populated in the screen. This is the reason for getting the Mandatory field error.

 

And when I press the enter button on each of these fields, then only I see the value in SETTER method.

 

I would like to know how I can clear the values in the Mandatory fields before coming to this screen. So that the screen will not come pre-populated and hence the user will enter the values. Is it controlled by some config?

 

 

The component name is CPG_SALES_GA and the view name is CampaignSetup.

 

Thanks,

Nitin

Categorization Schema

$
0
0

Hi All,

 

I have created a Categorization Schema in the Config. Client of the Development Server and now want to import it in the Testing Client of the same server.

 

Tried to import it through the program CRM_ERMS_CAT_AS_IMPORT  but the schema didnt show up.

 

Please suggest the guidelines to transport the schema.

 

Currently the schema is in 'Draft' state, is it necessary to make it 'Active' before transport?

 

Best Regards

Tree view - add childs

$
0
0

Hi ,

 

I am preparing the Tree view with 10 nodes .

 

But here I am facing the to add the childs( particual rows) to that node statically .

 

depends on the node, I need to add 2 to 3 childs manualy  .

 

How can add required child to particural node .

 

Node1 ->

     label                  Input field1                  Input field2

     label                  Input field3                  Input field4

     label                  Input field5                  Input field6

     label                  Input field7                  Input field8

Node3 ->

     label                  Input field1                  Input field2

     label                  Input field3                  Input field4

  

 

Node3 ->

     label                  Input field1                  Input field2

     label                  Input field3                  Input field4

     label                  Input field7                  Input field8


I referred all the documents in SDN, i didn't find the exact solution .


Regards,

rama


Change content in adobe forms of Print Preview in Appointment screen

$
0
0

Hi ,

 

I have a requirement in which I have to change content of adobe forms which comes after clicking on Print Preview in Appointment screen,

 

I am new to Smart forms and Adobe forms , request expert suggestion onto this.

 

 

 

Thanks.

Exception condition "JAVABEANNOTSUPPORTED" raised

$
0
0

Hi When I am trying to launch the report program via the transaction launcher I am getting the following error when I click on execute button,

 

We are reading the XL file from the desktop that is on one network drive, transaction launcher is launching the Tcode properly and we can see the complete GUI report program screen but when we I am clicking on EXECUTE  I am getting following dump.

 

 

Regards

Vani

 

 

error abap.png

 

Message was edited by: Joaquin Fornas

Deleting EEC User stops data flow of customers to CRM-SMP-REX

$
0
0

Good Day

 

We have a user who used to have access to both ECC and CRM via SMP and REX.

The ECC username was deleted and this automatically delimited HR Info Record 0105.

 

Since then the user does not get any data in SMP and REX although the relationships to the customers are still visible in CRM.

 

We have activated the end date in HR Info Record 0105 again and sent with PFAL to CRM, but still no data visible in SMP when syncing to REX.

 

Any advice or suggestions will be highly appreciated.

Thank You

Lizél

Pricing in ERP ISA

$
0
0

Hi experts,

I'm using program ISA_CATALOG_REPLICATION to replicate the product catalog from ERP to TREX (no CRM involved at all). I would like to show zero price for some materials based on material sales data. It's unclear how to achieve this. Is it best to enhance the build catalog program (I have custom program to build the product catalog) or the replicate product catalog program? and how?

 

Could you please advise the best approach?

 

Thanks,

Satish

Error: Address still in use; change to validity not allowed

$
0
0

Dear Experts,

 

we have a business partner (Company) with 2 adresses as company is changing from one city to another one. This business partner has several contact persons assigned and this contact persons use the reference address of the company.

 

Now we want to put an end date (Transaction BP) to the old adress and make the new address the standard address. When trying to save we get an error "Address still in use; change to validity not allowed". We found out that the old adress is still assigned to the contact persons and the system we think for this reason does not allow us to make the adress changes on the company.

 

Is there any SAP Standard way so that the new standard adress is automatically referenced to the contact persons too? We want to avoid of making all the changes to all of the contact persons. Can this be switched of with change of parameter CRMADDR in view SMOFPARSFA?

 

Any hints are welcome.

 

BR/

 

Oliver

How to update the status field of the Lead using ELM?

$
0
0


Hello All,

 

I have created the BP and Lead using ELM. Now I need to update the status field on the existing Lead.

How can I achieve it using ELM?

 

Will appreciate your inputs on the same.

 

Thanks,

Mathangi

TREX search interaction records in SAP CRM

$
0
0

Hi,

 

Is there any way to do a free form TREX text search on the 'NOTES' field in the interaction records?

 

Please let me know if there is any BADI enhancements available to configure this.

 

 

Thanks

Kishore Pagadala


OPSM Creation Using Workflow?

$
0
0

Greetings to SCN Family Members,


We can Create  Standard Opportunity from Lead Using Workflow settings, Fine  But I want to  understand  can we create Opportunity sales Methodology   From Lead using workflow?


After receiving OPSM Sales Employee will maintain the all details like Sales cycle, Sales team and Competitor information,

 

Regards

 

Sudhakar

Org unit not visible in the search

$
0
0

Hi All,

 

In the master data maintenance of the organization management , we have created an sales organization unit (O 50000XXX).

Function and attribute values for sales scenario has been maintained.

Object permitted in determination check box also checked.

 

 

while assigning the pricing procedure determination for the sales org (O 50000XXX) we are not able to find the sales org in the F4 search help.

When we are trying to key in it manually it is giving an error msg 'Sales Office O 50000XXX not available'.

 

Please suggest any inputs.

 

Thanks

Syam

Data exchange with CRM is not possible; define the standard BP role

$
0
0

Hello,

 

Create a business partner (CRM), but when you send in the ERP system, an error occurs.

Do not tell me how to solve? Thx

 

1. Transaction BP (CRM) creat ......

33333.JPG

2/ Tcode CRMM_BUPA_SEND

send.JPG

 

send2.JPG

 

send3.JPG

 

3/ TCODE: SMW01

send4.JPG

 

 

Do not tell me how to solve? Thx

postal code in sap crm

$
0
0

Hello everybody.

 

I have a problem with address - sap cuts 1st digit into postal code. My address - Kazakhstan, and in country we have Atyrauskaya region, whish has a postal code 060000. but when i would like to check correctness of entered address and push "check address" button. When in postal code field code should appear. But it works incorrect, because instead of 060000  it gives 60000 - cuts first zero.

Can anybody has the same thing and to fix  it? I found check rule for country in t005 table but do not know what to do. Now for Kazakhstan check rule is #4. Maybe this  could resolve a problem?

Thank you

How to disable HRPIQ00HRBP when transferring BP CRM tou CEN?

$
0
0

Hi,....

 

How to disable HRPIQ00HRBP when transferring BP CRM tou CEN?

 

Thanks

Viewing all 7573 articles
Browse latest View live


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