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

Exception In Component workbench configuration Page for Z VIEW.

$
0
0

Basically we are facing two types of Dump in SAP CRM Lead Component

system.


 

1. We are getting Dump while pressing configuration button in the

component workbench for Z View. i got he below Error.


Business Server Page (BSP) error


What happened?

Calling the BSP page was terminated due to an error.

SAP Note
  • The following error text was processed in the system:
    An exception with the type CX_SY_REF_IS_INITIAL occurred, but was neither handled locally, nor declared in a RAISING clause
Exception ClassCX_SY_REF_IS_INITIAL
Error Name
ProgramCL_AXT_PLACE_HANDLER==========CP
IncludeCL_AXT_PLACE_HANDLER==========CM009
ABAP ClassCL_AXT_PLACE_HANDLER
MethodIF_AXT_UI_CONTEXT_NODE_HANDLER~GET_V
Line170
Long textAn attempt was made to execute a dynamic method callon an initial(NULL-) object reference. The reference must refer to an object.

I attached the screen shot of the same for your perusal.

 

2. We are facing below dump when we try to show configuration area

in the WEB UI screen.

 

I am getting the below Error message in internet Explorer screen.

500 SAP Internal Server Error

ERROR: Dereferencing the NULL reference (termination: RABAX_STATE)

 

I am getting the below dump in the back end SAP system.

 

Exception 'CX_BSP_WD_EXC_WRAPPER' was raised, but it was not caught

anywhere

Along the call hierarchy.

 

Since exceptions represent error situations, and this error was not

Adequately responded to, ABAP program

'CL_BSP_WD_ERROR_PAGE_WRITER===CP'

had to be terminated.


Steps by step procedure for two scenario.


Step by step procedure to replicate First scenario.

 

Step1: open component work bench with the component  BT108H_LEA.
Step2: select view ZCONTRACTDAT as mention in the screen shot.
Step3: Please select Configuration TAB.

 

Step by step procedure to replicate Second WEB UI Dump.

 

Step1: Open SAP CAD WEBUI screen.
Step2: select BP Marketing manager Role.
Step3: Navigate to Lead search screen through Marketing Navigation bar profile.
Step4: please provide Sales Org ID O 50000283(MEAN CRC)
Step5: Pick any one lead from the search result.
Step6: press tool bar button show configurable area and select Finance
contract lead.

 

Note: We newly changed the system from SAP CRM 7.0 EP2 to EP3.

How i can over come this dump issue. 


Duplication of Entry when we use the same view in two different components.

$
0
0

Dear Experts,

 

We have created a z table in Activity Screen (component: ORDERADM_H)

and

later on we have reused the same table on Lead screen (component:

BT108H_LEA) as required by Business.

 

To reuse the table- I did the following steps

 

1. Used AET Web UI configuration tool ->Display Enhancemens

2. Selected the z table I want to Reuse

3. Under -> Reuse in Object tab, selected, Lead and checked the box

and finally generated/activated the table.

4. Went to Lead AET configuration screen, AET table appeared into

available assignment block and moved to it displayed assignment block

 

The problem is for Lead transaction, system is creating duplicate

records

when I have populated values on both Lead and as well as follow up

Activity transactions.

 

When I save both the Lead and follow up Activity and I log out and

login

back into Lead screen, I see two duplicate records as follows:-

 

OPT1, Option 1

OPT2, Option 2

 

We have not written any custom code for this requirement and we believe

there is a bug in SAP standard. Please refer to screenshots attached.


How can i avoid duplication issue with the component workbench.

points for quick and help full answer.


Reg,

Hariharan.

Outgoing Email in SAP with out Mail Client

$
0
0

Dear All,

 

We are able to send outbound email from SAP CRM via outgoing Email Activity. I have lotus and outlook installed on my system for testing.

 

However Business USERS will not have Outlook or Lotus on their systems, they access emails via WEB MAIL. Can they still use outbound Email sending feature from SAP (via outbound Email Activity ).

 

Thank you.

 

Regards

Sweta

Chance of success MSA not working properly

$
0
0

Hello all,

 

We have the chance of success field based off of the stage that the opportunity is in. Based off of the chance of success we can calculate a value, so it is very important that this field (chance of success) is updated as soon as the stage changes. Currently on the MOBILE DEVICE MSA the sales stage defaults on the first stage, which should have a 10% chances of success but is 0% until it changes to another stage. Is there a way to make the stage field not default to a stage, so the user has to choose a stage?

 

Thanks,

Brandon

BaDI MSA

$
0
0

Hello SAP Gurus,

 

I am looking for the BaDI that is called when an account is created on the mobile device. Does anyone know how to troubleshoot this, so I can locate this BaDI?

 

Thanks,

Brandon

Duplicate Workflow

$
0
0

Hello Experts,

 

In our project, due to some reasons duplicate workflows are getting created. Based on our research and debugging we feel that these workflows are in different - different LUW's due to which we are not able to even debug the complete flow. Below is our business scenario:

 

Activity A is at status "Wait for 27 days" and after completing 27 days, via RSPPFPROCESS process program it moves to the next status (From E--0039 to E0040) on which we are creating a follow up activity (On Save)  and changing the activity status to E0061- Completed.

 

While parent activity is going on, after few checks, follow-up activity also moves to the next status so in this scenario following operations were performed:

1. Changed Parent activity status from E0039 to E0040 (Via RSPPFPROCESS program)

2. At Status E0040 (Which is scheduled on Save) - creates a follow up activity and changes parent activity status to completed - E0061.

3. On Save itself follow up activity moves to the next status (E0001 to E0004).

 

In this whole process, any status change is done via workflow so we have created 3 workflow in this process:

 

Workflow 1: Change parent activity status from E0039-E0040.

WorkFlow2: Change Parent Activity Status from E0040 to E0061.

Workflow 3: Change follow-up activity status from E0001 to E0004.

 

If we run this process for individual activities then everything goes fine but if we run it for 5 or more then 5 activities, it creates multiple WorkFlow 3 for 1-2 activities while the action log suggests that action as triggered only once. Till now we are unable to find the root cause .

 

From Technical Point of view, below are the details:

 

For status change, workflow is triggered from activity actions via tRFC in background tasks, which triggers an event to trigger the workflow. Inside the workflow, we have enhanced BUS200126 object and called standard method CHANGEMULTIPLE which is followed by CRM_ORDER_SAVE and commit work in our workflow custom method.

 

Inside Activity actions, we are creating follow-up activities using CRMD_ORDER_MAINTAIN FM which is followed by register for save as mentioned below:

 

 

   CALL METHOD lcl_action_execute->register_for_save

            EXPORTING
              iv_source_header_guid     = l_act_guid
              iv_additional_header_guid = g_child_guid
             ip_application_log        = l_log
              iv_recursive_det          = space.

 

What we have done so Far:

1. Before triggering workflow, we tried to print the call stack to check from where the workflow is getting created - It takes us to standard action execute method while we do not see that action is triggered multiple times.

 

2. To stop the duplicate workflow, we tried to check in buffer if any STARTED or READY status workflow exist, if exist then do not create one more workflow but it did not work so what we feel that workflows are getting created at the same time in different -different LUW's.

 

3. With the logic mentioned in step 2, we tried to use the workflow CHECK function module (Via config) but that also failed and did not stop the multiple workflows.

 

4. We removed CRM_ORDER_SAVE and Commit work from workflow but then statuses stopped moving.

 

5. In activity action configuration, we tried to make the action one time, but action is already triggered only 1 time which creates multiple workflows so this was also not useful.

 

 

Is there anything else which we can do to tackle the problem? we have already checked our custom code for multiple workflow triggers but could not find anything wrong with the code and on top of that it does not seems to be code  issue as it happens with 1-2 activities when 5 or more activities are run by RSPPFPROCESS program,.

 

 

Any help or pointer would be really appreciated.

 

Thanks, Sandeep

Assign BP relationship type

$
0
0


Hello,

 

I have maintained new BP relationship type and assigned them to BP relationship category in SPRO->Cross App Components->SAP BP-> BP relationships->Define Relationship Types.

 

I can only view the relationship category in BP , is there a way to assign the BP relationship type to BP ?

 

Even when we load the BP relationships from Legacy by passing two different BP relationship types to the same BP relationship category, it only accepts one.

 

Thanks,

Sheetal

SAP CRM : How to add parameter values in URL ?

$
0
0

Hi Team

 

I have created a report for addition of 2 numbers and display the result.

I have created T code for the report ZAN_ADD_OPEN.

Report.jpg

 

I am able to get this report in internet browser also

The URL that i have created for this is :

http://crmserver.vj.com:8078/sap/bc/gui/sap/its/webgui?~transaction=ZAN_ADD_OPEN&sap-system-login-basic_auth=X&sap-clien…

 

Screen1.jpg

If you pass values to Parameter 1 and Parameter 2 and press execute button, it throws the output correctly

 

screen2.jpg

 

Now my requirement is :

 

I want to get the output screen (screenshot below) directly , when i call the URL from WEBUI.

 

Screen3.jpg

 

Can you please help me on creating the URL in which i can pass parameter values with execution of the program

so that i will directly get the result page .

 

Regards

Abhishek


SAP CRM : How to add parameter values in URL ?

$
0
0

Hi Team

 

I have created a report for addition of 2 numbers and display the result.

I have created T code for the report ZAN_ADD_OPEN.


Report.jpg

I am able to get this report in internet browser also

The URL that i have created for this is :

http://crmserver.vj.com:8078/sap/bc/gui/sap/its/webgui?~transaction=ZAN_ADD_OPEN

 

Screen1.jpg

If I pass values to Parameter 1 and Parameter 2 and press execute button, it throws the output correctly


screen2.jpg


Now my requirement is :

 

I want to get the output screen ie; result page (screenshot below) directly , when i call the URL from WEBUI.

 

Screen3.jpg

 

 

Can you please help me on creating the URL in which i can pass parameter values with execution of the program

so that i will directly get the result page .

 

Regards

Abhishek

Issue while saving the service contract document

$
0
0


Dear Folks,

 

 

     Colud you please provide me the solution for below issue.

 

While user is saving a service contract document in the WEBUI, he is getting an error as "Details for transaction not completely referenced"?.

 

 

Regards,

venkat

warranty information

$
0
0

Helllo all,

 

can someone please suggest me the table of FM to get the Warranty information for product please?

 

Also is there any FM to get the waranty info per particular order?

 

thanks a lot!

 

KP.

There are no objects for archiving when scanning object CRM_oppt

$
0
0

Hello, All.

In validation of input data for archiving number of objects scanned is 0.

(in run program CRM_ARC_OPPT_CHECK).

What's the problem ?

Regards, Yury

Set up incoming email scenario on QC3 and take it forward till Service Request Creation

$
0
0

Hi,

 

I am very much new to ERMS. Please help me to setup the incoming email scenario from which I should create a Service Request.

Its urgent requirement in our project. Anyone kindly please help me in this regard.

 

Thank you,

 

Regards,

 

Vamsi.K

9866210764

Wrong description of columns is displayed in PDF view

$
0
0

Hi Gurus,

 

Please help me on the below issue.

 

Issue: I open accoutn plan and clicked on "Print Account Plan" (which will export account plan data into PDF file for printting), from one assignment block the description of column is getting displayed wronglly in print view(ex Last year Amount in Planing block in Account plan, but just "Amount" is displayed in Print View). Please help me on this issue, what could be the issue and what things hould  be checked.

 

Please do needful.

 

Thanks and Regards,

Venkatesh

BP role needs to be mandatory

$
0
0

Hi all,

 

I have a requirement to configure the "BP role" for accounts as a mandatory "field". Unfortunately it is not possible within the classical configuration (web UI or component workbench).

Which possibilities do I have?

 

Kind regards

Thomas


Variant Configuration in SAP CRM with Lord API

$
0
0

Hello,

 

we are using the Lord API for the creation of quotations in our CRM system. So we can create quotations in CRM but they are saved in ECC.

Now we want to activate the variant configuration for our scenario with SCE/XCM. The SCE is working for configurable materials but it does not show variants for the configured products. We have created knowledge bases and runtime versions for the products.

In the XCM Settings the variant configuration is active

variant_config.JPG

In WebUI the configuration looks like this:

product_config.png

For this combination of characteristics a variant is available. This is shown in ERP but not in CRM.

In this link http://help.sap.com/saphelp_crm700_ehp02/helpdata/en/47/6824dedc6e17f9e10000000a42189c/content.htm?frameset=/en/46/407e8195b55d5ee10000000a1553f7/frameset.htm I have read that we have to define item categories for the products that could have variants. But that would not suit to our Lord concept, because the customizing of item categories and transaction types is only done in ERP.

There we have two item categories that could use variants:

itemcategory.JPG

Has anyone an idea how we can make the variants also active in CRM?

 

Kind regards,

Anne

Business partner & not permitted for its partner function

$
0
0

Dear Experts,

 

I have a Problem when creating an Interaction Record. When creating a new Interaction Record there exists the Partner Function IC Agent (IC_AGENT) that was defined in the Parter Determination Procedure Z0000062.

 

When the Interaction Record all Partner Functions are determined by the System automatically and added to the Transaction. But then I recieve an error that says: Business partner & not permitted for its partner function.

 

What do I have to do? Attached is a File with the realized customizing.

 

BR/

 

Oliver

Limit list of communication type (method) for BP on Web UI

$
0
0

Hi all,

 

Just wondering whether there are other configurations in CRM that I can use to limit the list of communication types available for selection on the BP maintenance transaction screen on the Web UI?

 

I know I can control the list via SM30 on table TSAC but am hoping that I can apply the changes on the web UI only and not hiding the list for the backend transaction. At the moment, I can see that the list given is already a subset of what is available in TSAC and the backend is showing the full list (e.g. when I run BP transaction and look at the list of communication types) and so am wondering whether there are other configurations that I am not aware of. Am keen to avoid the programming path at this stage.

 

Appreciate any pointers on the above.

 

Address.png

 

Cheers!

SF

service order-Error during account assignment

$
0
0

HI experts,

I am facing a problem in CRM when saving Service Orders.

 

Issue:No account assignment found for this service process

 

An error has occurred in the system XXX while copying the document

Message no. CRM_ORDER_MISC 020

 

Diagnosis

Errors occurred while transferring the document into another system.To view the error messages,see the enclosed log.

 

Transmission log

No account assignment found for this service process (Notification E CRM_SRV_LOG_EXT_OLTP 008)

 

Actually,We have a problem about service order,how to integration with WBS element.

We can see Account assignment in service order item from GUI,but search help is nothing.

Account assignment is missing in UI.

 

If anyone know it,please share with me.

Thank you.

How to keep Message Box of UI in Display mode dynamically

$
0
0

Hi Frds,

 

We have Message box in UI where all type of messages display.Normally its always lazy mode(hidden) so I need to maintain that message box in display mode. please suggest how can we achieve it.

 

Thanks

Imran

Viewing all 7573 articles
Browse latest View live


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