Quantcast
Channel: SCN : Discussion List - Customer Relationship Management (SAP CRM)
Viewing all 4296 articles
Browse latest View live

ACE: Update of access control list if new ONEORDER is created/changed

$
0
0

Hello,

 

I have read the SDN blog about ACE and the method cl_crm_ace=>process_object_change. I have used the BAdI ORDER_SAVE and implemented the interface CHECK_BEFORE_SAVE.

 

If I create a new lead for instance, the BadI will be called and the coding, especially the method call cl_crm_ace=>process_object_change is executed. But no update of the access control list is done (checked by transaction ACE_RUNTIME).

 

I also tried some events around leads (transaction CRM_EVENT), maintained view CRM_CUST_EVENT accordingly. The event will be fired and the method will be called. Here again, no update.

 

I assume that the method cl_crm_ace=>process_object_change expects already stored information of the new created lead in table CRMC_ORDERADM_H before recalucating the ACE list.

 

Does anyone know which coding / BAdI / event I should use to get the ACE updated if a new oneorder object (lead, opportunity etc.) will be created?

 

Yours

Stephan


ACE: Deletion of actors

$
0
0

Hello,

 

I'm using the interfaces IF_CRM_ACE_FROM_OBJECT, IF_CRM_ACE_FROM_USERS, IF_CRM_ACE_OBJECTS_BY_FILTER in order to determine the actor ID.

 

If new objects are created and changed (in my case selected business partners using some "attributes" in table BUT000), the actors IDs are determined correctly.

 

What happens now if my attributes (fields) in scope within BUT000 (AUGRP) will change and the ACE list has to be corrected, that means the affected actor ID for all candidates with changed attribute AUGRP should be deleted now for all users who were assigned previously ?

 

Is the export table ET_FAILED_OBJECTS the correct table within method GET_ACTORS_FROM_OBJECT (class IF_CRM_ACE_ACTORS_FROM_OBJECT) in order to fill this table with to be deleted actor IDs ?

 

Or how can this be achieved?

 

Yours

Stephan.

Authorization object CRM_ISA_UI

$
0
0

Hello,

 

does anyone know when this authroziation object will be used? What is meant by "Dynamic UI config data"?

 

Yours

Stephan

Multiple SAP CRM Boxes

$
0
0

Hi All,

 

We have multiple CRM boxes with master data,, is it possible to keep/make one CRM box to act like a portal with single sign on to all other boxes via CRM UI framework ?

 

Thanks, Sudeep..

CRM UI Print Preview not showing updated text

$
0
0

Hello,

 

please help, i have this problem:

When certain data values on the CRM UI document change, the "Print preview" is not showing an updated text. It looks like the print preview procedure reads (generates ?)  the text for display only once, when the document is opened. If i close and reload CRM_UI, the "Print preview" is showing an updated text. The document also has automatic note creation to it (when a document is saved, the note is automatically created), which gets correctly updated (change document data --> delete note --> save document --> updated note).

 

So what should i do that the "Print preview" text is generated every time a button is pressed ?

 

 

Information:
On the document transaction type ZDO1 (BT126H_APPT component) the "Print preview" button is added in the method IF_BSP_WD_TOOLBAR_CALLBACK~GET_BUTTONS. When the event triggers, it calls a method EH_ONPRINT_PREVIEW from superclass CL_CRM_UIU_BT_H_OVW_VIEWSET:

 

CALL METHOD SUPER->EH_ONPRINT_PREVIEW
     EXPORTING
       HTMLB_EVENT    = HTMLB_EVENT
       HTMLB_EVENT_EX = HTMLB_EVENT_EX.

 

 

The transaction ZDO1 has an Action profile ZPOR_ZDO1, which has an action ZDO1_PRINT defined for "Print Preview". In the CRMC_ACTION_CONF the action ZDO1_PRINT has these Properties:

1.) Overview tab:

- Schedule Condition = In the Worklist

- Action Merging = Max. 1 Unprocessed Action for Each Action Definition

- Start Condition = No Condition

- Time of Processing = Immediate Processing

 

2.) Processing Details tab:

- Assigned Processings = Smart Forms Print

- "Printer" subtab:

OutputDevice = PDF

Number of Copies = 1

- "Form" subtab:

Form Name = CRM_ACTIVITY_BUSACT01

Processing Class = ZCL_DOC_PROCESSING_CRM_ORDER

Processing Method = ZCRM_ACTIVITY_EXEC_PDF

 

In the method ZCRM_ACTIVITY_EXEC_PDF it says that for transaction ZDO1 the Smart FOrm /DURS/POR_IZPIS_01 should be used:

case ls_orderadm_h_wrk-process_type.
       when'ZDO1'.
         lv_iname = '/DURS/POR_IZPIS_01'.
       whenothers.
         lv_iname = '/DURS/POR_IZPIS_02'.
   endcase.

   CALLFUNCTION'FP_FUNCTION_MODULE_NAME'
     EXPORTING
       i_name     = lv_iname
     IMPORTING
       e_funcname = lv_name.

   ls_outputparams-nodialog = 'X'.
   ls_outputparams-getpdf = 'X'.
   ls_outputparams-connection = 'ADS'.

   CALLFUNCTION'FP_JOB_OPEN'
     CHANGING
       ie_outputparams = ls_outputparams
     EXCEPTIONS
       cancel          = 1
       usage_error     = 2
       system_error    = 3
       internal_error  = 4
       OTHERS          = 5.

   ls_docparams-country = 'SI'.
   ls_docparams-langu = sy-langu.

   CALLFUNCTION lv_name
     EXPORTING
       /1bcdwb/docparams  = ls_docparams
       I_HEADER_GUID     = ls_orderadm_h_wrk-guid
     IMPORTING
       /1bcdwb/formoutput = ls_formoutput
     EXCEPTIONS
       usage_error        = 1
       system_error       = 2
       internal_error     = 3
       OTHERS             = 4.

 

 

3.) Schedule & Start Condition tab:

Empty

 

 

 

Help greatly appreciated, thanks!

Limit to UIU authorization

$
0
0

Hello Experts,

 

I faced a issue recently where I am not able to include any more UIU_comp authorizations. The error that pop up is "All authorizations beyond the maximum number are ignored" . Is there a way where we can increase the limit of authorization objects in a given PFCG?


Thanks!

Neha

A Space for SAP CRM PFCG needed!

$
0
0

Hello Experts,

 

Suggest a separate space for SAP CRM PFCG to be available in SAP CRM space for easy accessibility and traceability. It is a huge and good topic in itself. While I was searching for contents or writing, I could not find a space. If there was a space made for it like SAP CRM - Marketing, Sales and Service, etc.It would have been much easier I hope you understand what I mean to say.

 

Looking forward to your inputs!

 

Thanks!

Neha Gupta

Action to change status of sales order

$
0
0

Hi Gurus,

Initially sales order is created with user status A . If the current date is greater than the date present in the date profile the status needs to be changed to B .

created the action profile and updated the method - 1ORD_STATUS_SET for the action definition. Updated the start and schedule condition.

Initially when the sales order is created the action is in yellow. Once the CRMC_ACTION_JOB is executed the action turns to green but the status is not being updated to status B.

 

 

Can the gurus let me know if I missed any step.


SAP IDES CRM server is not starting

$
0
0

Hi Team,

 

My SAP IDES CRM application is not working after power faliure while the server is on, I tried to restart the system but it's not working now. The job detail status changes to "Ended" instead of "Waiting" after the status "New". My ECC application is working fine but not able to start the CRM application.

 

Do I need to install it again or there is any way I can resolve this issue. Please suggest if any one have any solution.

 

Thanks in Advance,


Prafulla

Interaction Record Issue

$
0
0

Hi Guys

 

We have an issue in interaction records. When we search an interaction record through agent inbox and try to edit that object, system is trying to confirm the BP and when confirmed it creates another IR.

 

Has anyone got clue to fix this ?

 

Regards

Vinayak

SAP BRIM Change Process List Values not displayed

$
0
0

Hello Experts,

 

has anyone a clue what kind of customizing settings are required to display the dropdown list to select a change process for a provider contract?

Currently the DDL is shown but with no values (for Provider IC Agent).

 

Thank you and best regards

Vanessa

Cannot get questionnaire HTML string SAP CRM 7.0 EHP3

$
0
0

Hello,

 

We are trying to use questionnaires in Activities and it doesn't work.

This error : Cannot get questionnaire HTML string is shown.

 

 

I checked  Note 1600561 - Changes done in values template XSLT not taken into account, but it isn't valid for our release ( EHP3 )

 

 

 

Thanks in advance for your help.

Belén

Read data from BP SAP GUI Screen

$
0
0

Hi

 

I have Implemented a code in DCHCK event to validate EEWB-Zfield value , But I'm not able to Capture the values entered by user in the BP Screen.

 

The FM's BUP_BUPA_MEMORY_GET_ALL ,BUA_BUPA_MEMORY_GET are not retrieving the values to tables.

 

Could any one tell me How to capture the values on BP Screen.

 

Thanks

can we create an customized Master data of our own?

$
0
0

hello Friends,


Is there any possibility to create a customized master data in sap crm Functional???

 

Please reply ...

 

Regards

Pramod Alisetty.

Disable/hide navigation Back button in particular overview page

$
0
0


Hi All,

 

I have to disable/hide navigational 'Back' button on Task overview page. I tried to achive this in WD_HISTORY mehtod but no luck.

Please suggest me how to do this.

 

Thanks,

Nanaji


How to move mail form from development to quality

$
0
0

hi,

 

i have created a mail form in development system and now i would like move it to quality system.

 

please can anyone help me.

 

regards

happy

how to transport org structure along with position in crm

$
0
0

how to transport org structure along with position in one TR (sap CRM)

How to read the value of a field belonging to a different context node in GET_I method during runtime

$
0
0

I want the read the value of a field,'LCSTATUS' belonging to context node 'BTADMINH' in the GET_I method of the field, 'ZZFLD000008' belonging to context node,'ZBTACTIVITYH'.

In the context node class of context node 'ZBTACTIVITYH',I have created an instance attribute,GR_OWNER type ref to context class.

I get the following error in the line - lv_act_status = Lr_entity->if_bol_bo_property_access~GET_PROPERTY_AS_STRING( 'LCSTATUS' ).

 

'An exception (CX_CRM_CIC_PARAMETER_ERROR) occurred Message no. TPDA430'

 

I have used the below code.

 

method GET_I_ZZFLD000008.
     DATA: current TYPE REF TO if_bol_bo_property_access,
           lv_act_status TYPE string.


     DATA:lr_entity TYPE REF TO cl_crm_bol_entity,
           lr_current TYPE REF TO if_bol_bo_property_access,
          lr_parent TYPE REF TO cl_crm_bol_entity.
        

     rv_disabled = 'TRUE'.
     if iterator is bound.
       current = iterator->get_current( ).
     else.
       current = collection_wrapper->get_current( ).
     endif.

CHECK gr_owner IS BOUND.
lr_entity ?= gr_owner->btadminh->collection_wrapper->get_current( ).
CHECK  lr_entity  IS BOUND.
lv_act_status = Lr_entity->if_bol_bo_property_access~GET_PROPERTY_AS_STRING( 'LCSTATUS' ). "error states that lcstatus can't be used here.



   TRY.

         IF current->is_property_readonly(
                       'ZZFLD000008' ) = abap_false. "#EC NOTEXT
           rv_disabled = 'FALSE'.
         ENDIF.

     CATCH cx_sy_ref_is_initial cx_sy_move_cast_error
           cx_crm_genil_model_error.
       RETURN.
   ENDTRY.



endmethod.

SAP Desktop Connection - cannot synch tasks.

$
0
0

Hi everyone,

 

I'm relatively new to both this community and the SAP world, I hope I found the right place to ask my question.

We're currently testing the SAP Desktop Connection (SP02) on one of our sandbox systems (SAP_BASIS 731 SP11, CRM 7.0 EHP2) and I managed to install and configure the Netweaver Gateway 2.0 and the CRMGWS component (700 SP04). Everything should be up to date.

 

Now the synchronization of contacts and appointments seems to be working fine, but whenever I want to synch a task from Outlook to our CRM, I get an error: "ActiveStatusId E0001 is not allowed (Code: 'Sy/530')". I guess the status mapping isn't working correctly but what can I do about it? Does anyone know a fix for this or has a clue what I might have messed up in the configuration? The Customization Package (CRMGWCUS02_0-20011654.ZIP) should be correct.

 

Thanks in advance!

Initial download problem by DNL_CUST_TXJCD

$
0
0

Hi all,

 

we are trying do dowload customizig Tax Jurisdiction Codes from ERP to CRM. We are using standard object  DNL_CUST_TXJCD. Wen we run R3AS everything sems good, no error message. But nothing was dowloaded at all . RFC works well. ERP SQM1 is empty and CRM SMQ2 is also empty. No BDoc was generated. By initial dowload a standard is used FM CRM_TAXJURCODE_FILL. This FM should fill in tables in CRM. But wen we set breakpoint, we could'n get in. Seems as the FM was not used at all.

 

Any suggestion ?

 

Thanks for reply.

 

Jan.

Viewing all 4296 articles
Browse latest View live


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