Quantcast
Channel: SCN: Message List - SAP CRM: Webclient UI - Framework
Viewing all 7775 articles
Browse latest View live

Re: GET_AC method not working

$
0
0

Hi preeti,

 

in you action bulder onselect you have declared as smaller case..

DATA : ls_acts TYPE wcfs_thtmlb_action_menu_item.

     ls_acts-id       = 'act1'.

     ls_acts-text     = 'Lunch/Dine'.

     ls_acts-onselect = 'lunchpopup'.  chenge this to upper case then that will be get trigger..

     ls_acts-disabled =' '.

     ls_acts-type     = if_bsp_wd_action_descriptor=>gc_type_generic_action.

     ls_acts-icon_src = cl_thtmlb_util=>get_icon_url( 'cod_send.gif' ).

     APPEND ls_acts TO et_actions.

     CLEAR ls_acts.

or create an event name as lunchpopup small letters.

Thanks & Regards,

Srinivas.


SAP CRM Activity Search Issue.

$
0
0

Activity Search.jpg

I have added a custom attribute in the activity search screen called Task completion date in which user can provide a date, based on which system should go and determine all the tasks which were completed on the given date (Which is being captured in task zdate profile).

 

Now the problem is, if we search based on only date then we can write our code in query BOL layer but if user provides some other parameter with date (like employee responsible) then we want system to search the data based on both the attributes. We don't want to modify the whole standard BOL logic as it will end up in extensive coding and testing.

 

What we have done so far:

1. Implemented BADI (Enhancement Spot)  ES_CRM_RF_Q1O_SEARCH_INT in which performed the coding for z field and then let the code go to standard FM CRM_BSP_OIC_1O_SEARCH_FROM_RF, with both the combination system doesn't return the right result.

 

Is there any suggestion, where we can do inner join on standard query on date and standard FM query

coding for the buttons on header area on webui

$
0
0

Greetings,

can anyone tell me where is the code written for the buttons on header area like NEW,SAVE,CANCEL etc.

example in the picture given is for creation of new accounts

 

 

I had tried to get the layout component workarea_header like from the layout profile CRM_UIU_MASTER and get the corresponding component as crm_workareahdr. But i'm unable to find so

Re: coding for the buttons on header area on webui

$
0
0

Hi Vishnu,

 

Did you check properly using F2 in web ui. You can find the component details as shown below,

 

Component name.png

 

Best Regards,

Dharmakasi.

Error :- Assigned view in view area Root could not be loaded

$
0
0

HI All,

 

I need your help to sort out the following issue. I am getting the following error while clicking on Standard Back Button in SAP CRM WebUI.

 

 

Cannot display view BSPWD_BASICS/BreadCrumbView of UI Component CRM_UI_FRAME

An exception has occurred Exception Class  CX_BSP_WD_INV_VA_ASSIGNMENT - Assigned view in view area Root could not be loaded 

Method:  CL_BSP_WD_HIST_MANAGER_BASE=>GET_VIEW_ASSEMBLY 

Source Text Row:  35

 

Thanks,

Nishit

Re: Contracts(Aggrements) of BP

$
0
0

Hi Rama,

 

You can make use of standard function module to find service contracts,

 

CRM_FIND_SERVICE_CONTRACTS

 

Best Regards,

Dharmakasi.

Re: Error :- Assigned view in view area Root could not be loaded

$
0
0

Hi Nishit,

 

What is the version of SAP system you are using now? I think SAP notes might help you here.

 

Regards,
Dharmakasi.

Re: Error :- Assigned view in view area Root could not be loaded

$
0
0

HI Dharmakasi,

 

We are using  SAP CRM ABAP 7.0

 

Thanks,

Nishit


Re: coding for the buttons on header area on webui

$
0
0

Hi Vishnu,

 

 

There are multiple ways to create buttons on toolbar or on view. First identify the component by using F2 on the component. Now open the component in Txn BSP_WD_CMPWB. One of the mothods to created the button is putting the logic in method DO_PREPARE_OUTPUT.

 

Write the below logic:

DATA: ls_button type crmt_thtmlb_button.

 

If gt_button is not initial.

ls_button-type = cl_thtml_util=>gc_icon_edit.

ls_button-enabled = abap_true.

ls_button-on_click = 'EDIT'.

append ls_button to gt_button.

endif.

 

Then Go to HTM page.

<thtmlb:toolbar id = "HeaderToolbar"
            buttons     =
"<%= controller->gt_button %>"
            maxButtonNumber =
"15"
            foreignUse       =
"TRUE" />


Then in order to trigger any event on it right click on event handler and create a new event.


Now the name of this event should be 'EDIT' determined in logic in DO_PREPARE_OUTPUT.

Now go to the event in event handler and write logic to process whatever your requirement is.

 

Thanks,

Ravi

Re: Dump :- View Empty of component CRM_UI_FRAME could not be bound

$
0
0

Hi,

 

Did you enhance the component CRM_UI_FRAME?

 

Can you check in SE80 fro BSP application CRM_UI_FRAME empty view is there or not.

If you enhanced the component checkempty view for that bsp application

EMPTY_VIEW.PNG

Regards,

Deepika

Re: Error :- Assigned view in view area Root could not be loaded

$
0
0

Hi Nishit,

 

 

What changes have been done to standard component, probably your custom changes only causing the issue.

Any custom view has been added in any of the window or view set? Check all views and view sets are available properly in system.

 

Regrads,

Dharmakasi.

Re: SAP CRM Activity Search Issue.

$
0
0

Thank  you  very much for your reply.   It works, We checking the performance, Thanks once again to all

member activity card determination not working in SAP CRM

$
0
0

Hi,

 

Corrently i am faccing the issue like "Member activity card determination is not working in SAP CRM.

 

Kindly let me know is there any OSS note available on this issue.

 

Thanks in advance

 

Regards,

I.Muthukumar.

Re: Error :- Assigned view in view area Root could not be loaded

$
0
0

HI Dharmakasi,

 

Sorry we have not enhanced the crm_ui_frame component. Please suggest me how to proceed.

 

Thanks

Nishit

Re: Dump :- View Empty of component CRM_UI_FRAME could not be bound

$
0
0

Thank you Deepika.

 

We have not enhanced the crm_ui_frame component.

 

Thanks,

Nishit


Re: error in CRMXIF_PRODUCT_MATERIAL_SAVE

$
0
0

Hi Abinaya,

 

 

I am assuming you have added the set-type and not extended the XIF. As per my knowledge, the custom set type would not be part of standard XIF. You may have to extend XIF adapter as well to include custom set type using BDFG transaction.

 

Rgds,

Ravi

Re: Page, controller, or MIME SearchHelp.htm already exists in application Z_ABC

$
0
0

Hi Gurus, I am facing the same problem, I do not understand when you say that I remove the Z ...  Eliminated BSP application Z????

 

Try enhanced "SRQM_INCIDENT_H / IncidentHeaderEF"

Error de Ampliación3.PNG

 

Best Regards.

JMP.

Re: Dump :- View Empty of component CRM_UI_FRAME could not be bound

$
0
0

Try to turn off all customer enhancements by setting user's parameter WCF_IGNORE_ENHANCEMT and try to reproduce the issue.

Re: Business Server Page (BSP) error while calling the ICCMP_SURVEY/SurveyDetailSet Component on CRM web client UI

$
0
0

Hi Kavita,

 

We are facing the same problem. Did you manage to solve this and if yes how?

Kind regards

Lars

IC_BASE, Page Fragments : root_content.htm adding custom code in standard .htm

$
0
0

Hi All,

 

I am adding custom code in Page Fragments : root_content.htm of bsp application : IC_BASE, for particular business purpose but after activating


its asking to select page fragments. here its showing IC_BASE and etc.. could you pls guide me how to check which page fragment for this


root_content.htm. and also i am adding custom code in mail.htm under page with flow logic of same bsp application. so here i am assuming page


fragment is IC_BASE.



Jimmi.

Viewing all 7775 articles
Browse latest View live


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