Thursday, November 19, 2015

CRM WebUI - Change text in Custom filter

Problem: Change Text description for an element in drop down (in this example:  From ‘Does not equal’ to ‘not equal’ – as user displaying them in alphabetical order, and want ‘equal’ to come first in dropdown)
Transaction SE80 -> BSP Application crm_thtmlb_util:
Method get_possible_operators:
Transaction SOTR_EDIT:

Friday, November 13, 2015

CRM Product status Locked mapped to ECC status

BADI  ‘PRODUCT_CUSTOMER2’ is used in CRM to map material status between ECC and CRM

Status from Material master’s Basic data and Sales data flow to CRM.

SAP Note 497101  

Thursday, November 12, 2015

CRM - Clear buffer for BOL entity

To reset (clear) buffer for BOL entity – use below code.
For eg: This is used in Search on quotes, which was retrieving old data of quote just after save.

    DATA lr_core TYPE REF TO cl_crm_bol_core.
    lr_core 
cl_crm_bol_core=>get_instance( ).
    lr_core
->reset
( ).