cancel
Showing results for 
Search instead for 
Did you mean: 

CRM Sales 2.02 Missing Opportunity,Lead,Activity DATA

Former Member
0 Kudos

Hello,

I am implementing SAP CRM Sales mobile,

everything works fine on test system,

on production system ; i can receive all contact and account ( i am responsible or not !!!  well that is what i want)

but i can not receive opportunity, lead and activity .

On analytics section i can see data on "top opportuntiy" menu.

But no data on opportunity, lead and activity.

what can be the problem ?

Accepted Solutions (1)

Accepted Solutions (1)

masa_139
Product and Topic Expert
Product and Topic Expert
0 Kudos

What is the test result when you create a lead from Device? Is it created in CRM and updated in device? If it is not delivered to device, I think Sales Org filter customizing is worng or employee responsible is missing.

Former Member
0 Kudos

Hello,

Problem is the customization change in production system   and time bound parameters.

After re-installing live SAP NW Mobile (previous installition had errors)

i can see

- all accounts contacts

- oppourtunity & lead ( that i am responsible)

everything looks great,

3... 2... 1..... LIVEEE!!!

Answers (1)

Answers (1)

Former Member
0 Kudos

ET_HEADER tables are empty. but transaction customozings are same with test system.

Former Member
0 Kudos

while debugging the transaction loading from CRM to DOE, i saw that; in a loop, method is deleting all opportunites,. well i am looking for the solution.

Former Member
0 Kudos

This method causes to rows to be deleted.

se38 - > /MSA/LTA_OPPT_APIF02

CREATE OBJECT gv_question
EXPORTING
       it_query               = lt_qupart
       iv_accessrule_name     = 'CL_CRM_REPORT_ACCRULE_ONEORDER'
       iv_last_n              = plastn
       iv_item_select         = pitem
       iv_sort_last_n         = porder
       iv_ascending_last_n    = pascend
       iv_use_single_acc      = l_acc_setting
       iv_search_from_archive = parchiv.

CALL METHOD gv_question->refresh
IMPORTING
       et_return = lt_return.

SORT gv_question->gt_guidlist.

LOOP AT gv_question->gt_guidlist ASSIGNING <ls_guidlist>.
     waguid-guid  = <ls_guidlist>-guid.

APPEND waguid TO lt_guidlist2.

ENDLOOP.

gv_question->gt_guidlist is empty.

and that causes to opportuinites deleted while exporting to function.

on debugging, i changed some parameters and to DOE layer, 1 opportunity transfered.