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

Alert not displayed on IC Webclient

$
0
0

Good day experts,

 

I need some assistance please.

 

I have configure an alert on BPConfirmed on the CRM 7 Webclient which is working when you access the Webclient directly from the application server.

 

But when I access the Webclient through the SAP Web Dispatcher, the alert does not appear.

 

Please help.

 

Regards

 

Leon


AET Field case sensitive issue

$
0
0

Hi ,

 

using the AET we added a new field from type CHAR20 to CRMD_ORDERADM_H.

We also marked this in AET as relevant for search.

 

After we added the field to the UI configuration of the searchview this works.

But this search is now case sensitive. Other standard searches are not case sensitive.

 

Does one of you experts know what we have to change to have this own ZField also not case sensitive in the search?

 

Regards,

Vishwa

Re: AET Field case sensitive issue

$
0
0

Hi Vishwanatha,

 

You have to create the domain with lower case checked and create data type with that domain instead of CHAR20. than it will behave case sensitive.

 

case.PNG

 

Regards,

Deepika.

Re: AET Field case sensitive issue

$
0
0

Hi Vishwanatha,

 

If you check the table BUT000, you will see the corresponding text fields for name 1 and name 2( or first name and last ) as MC_NAME1, MC_NAME2. These are the fields which makes the searching with any case even it's lower case or upper case. But if you check the domain of field First name which is BU_NAME, it allows lower case.  But for MC_NAME1 it won't allow and it stores the data as upper case only always.You can take some examples and see.

 

In order to make your field search relevant in all cases is, create one more field where the same value of your field will be saved with upper case. While searching, use this field to compare. Issue will be resolved.

 

Thanks,

Faisal

Re: AET Field case sensitive issue

$
0
0

Hi Vishwanath,

 

Have you given direct char20 while creating the field? system is storing the values in DB in upper case. What you can do is inside search event you can take value entered for the field and convert it into upper case and then continue with seach.

 

Br,

Kasi.

Re: AET Field case sensitive issue

$
0
0

Hi Dharmakasi Faisal PCDeepika Chandrasekar

 

Please see below screen this field is lowercase enabled...

 

My issue is its work for the exact word only

For Example I have 2 entries with  TEST123(uppercase) and test123(Lowercase) but i will search for the creteria test123 then it should give two entries. In my case its works for the only exact word not like standard.

 

I saw one blog they havent mentioned solution but they told some thing is not availble for the cutsom fields in system

AET field added also for search - case sensitive

Capture.PNG

 

Regards,

Vishwanatha

Re: Web ui Applications not loading

$
0
0

Hi Dharmakasi,

 

Yes. SICF services are already active.

 

Thank you

Anji

Re: As to Partner Determination on Web UI

$
0
0

as Arden suggested you can implement the COM_PARTNER_BADI. you can use below code to read user role.

 

 

 

lo_profile ?= cl_crm_ui_profile=>get_instance( ).

 

   lv_role = lo_profile->if_crm_ui_profile~get_profile( ).

 


Re: AET Field case sensitive issue

$
0
0

Hi Vishwanatha,

 

As already mentioned, a case insensitive search is generally achieved by storing data in two different fields in the table - once in its actual case and next time in all uppercase. When such field is used for searching, the search criteria is also converted into all uppercase, and then it is used to search from the field in which data was stored in all uppercase.

 

So you need to implement something similar for your new field, if the search needs to be case insensitive.

Re: Copying view to the same component is not working

$
0
0

Hi,

 

The issue is fixed now. The attribute 'View' in the super class of the copied class was pointing to the original class. I have changed the attribute and also changed the constructor of the class to point to the correct class.

 

Awarding points to both of you for providing helpful ideas.

 

Thanks,

Samrat.

modifying lt_selection_parms to add our selection filter

$
0
0

Hi,

 

When I login into web UI, and click search button of accouts, I receive 3 partners.

When I debug the search button of account search, I see that lt_selection_parms is filled with 2 selection parameters like RELTYP and REL_TYPE. Which is the reason for meto receive only 3 partners,

When I remove the selection fields of lt_selection_parms in debug, I get all the partners list.

 

So, how do I remove the fields which are appended to lt_selection_parms programatically,. so that I receive all partners list.

 

Thanks

Madhukar

create number range and assign new product id

$
0
0

hi,

can anyone tell me the steps to create the number range and assign it to the product id..

 

and replace existing product id to the new one through program or.. is there any standard program is available to change the product id

 

thanks

 

dinesh

How to get a desired information from import parameter of a BAdI?

$
0
0

Hello CRM-Experts.

 

I have created a BAdI implementation IF_WCF_ALTER_UI_MESSAGES~ALTER_MESSAGES for the enhancement Spot WCF_MESSAGES. For my implementation I need to know an opportunity type. As import parameter I have a reference IR_WORKAREA_CONTROLLER. Through navigation in debugger, I come to the desired information (TYPE = 0004). However, I do not know how to put it in coding. Any ideas? Thanks a lot in advance!

1.jpg

 

2.jpg

3.jpg

Re: modifying lt_selection_parms to add our selection filter

$
0
0

Hi Rangerlet,

 

You can Enhance the Search View page & on the event handler in the view, you can write your own logic to pass values as ypou have metnioned above.

 

Ravi

Re: create number range and assign new product id

$
0
0

Hi Dhinesh

 

I'm not sure that any of what you are asking for is a Standard Feature in SAP CRM.

 

Do you have any documentation indicating this is possible?

 

Regards

 

Arden


Re: hide search criteria from displaying

$
0
0

Hi Madhukar,

 

This you can achieve by enhance the method GET_POSSIBLE_FIELDS in your search impl class just debug the method. This method will gives the fields which are there in your search configuration fields.

try to debug then you may come to know..

 

if you want to hide the filed in the search config

 

* Adjust search criterion values having drop down listboxes in case central search has been received

     me->adjust_search_criteria_values( iv_advanced_search = lr_qs

                                        iv_context         = central_search ).


check this method too ADJUST_SELECTION_PARAMS.

 

thanks & Regards,

Srinivas.

Re: issue with clearing a grayed out search criteria field

$
0
0

Hi,

 

I have written the code in do_prepare_output..

Can I hide the field from the selection criteria, in the do_prepare_output itself? But it should exist among

the search filters in the background....

                                    (or)

Can I have the sample code to make the value of ABC field which is XYZ(default) to not cleared

even after clicking the clear button?

What is the code to be written before or after calling the super class of CLEAR..

As I am new to CRM technical, a clear solution is much appreciated...

 

Thanks

Madhukar

removal of standard default search criteria values

$
0
0

Hi,

 

I was debugging the SEARCH event handler method for the BSP component of the Accounts search...

Before get_selection_param_table() is not executed, lt_selection_params is empty.

 

After get_selection_param_table() is executed, lt_selection_params is automatically filled with values for RELTYP and REL_PARTNER1,

 

 

The values RELTYP and REL_PARTNER1 are related to user ABC who logged into netweaver portal...
Please let me know how to how the values are filled dynamically for RELTYP and REL_PARTNER1 as per user login in netweaver.

I mean, from where are the values are coming into RELTYP and REL_PARTNER1.....so that I can remove that filter and get all the partner accounts list..

 

 

Thanks

Madhukar

Re: Hiding codes in Categorization dynamically

$
0
0

Its not dropdown field. Its in Hierarchical Tree Structure.

 

-> Catalog

         --> Code group

                  --> Code

 

Based on some conditions, particular codes to be hidden or deactivated.

Re: removal of standard default search criteria values

$
0
0

Hi,

 

The user who logged in is considered as Employee Responsible of the Transaction. So instead of finding and filtering the Partner, if you dont want Partner details, you can clear the lt_selection_params if you are authorized to enhance.

Based on Partner Determination Procedure, it fills the RELTYP and REL_PARNER1

Viewing all 7775 articles
Browse latest View live


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