Hi,
Try to debug the outboundplug code and check code is triggering or not to open popup.
Regards,
Deepika.
Hi,
Try to debug the outboundplug code and check code is triggering or not to open popup.
Regards,
Deepika.
Dears,
i used CL_CRM_DOCUMENTS to upload an attachment and is uploads successfully.
But i want to know where do this class store the attachment in which table.
So can you help me find this out .
BR
Hi Experts,
I would like to add text template under one procedure 'Questionnaire ' in Notes area automatically when creating a new activity on Web UI. I created two procedures and one access sequence in customizing, and created a new function module including one text template, please tell me how to add it automatically?
Kind Regards
Andie
Hi Deepika,
I set breakpoints in above three methods, but only system jumps to the following one when creating a new activity, loading initial page. When pressing F4, system does not jump to any breakpoint, web page becomes empty directly.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
METHOD get_v_partner_no.
CREATE OBJECT rv_valuehelp_descriptor TYPE cl_bsp_wd_valuehelp_navdescr
EXPORTING
iv_outbound_plug = 'OP_FINDEMPLRESPE'.
ENDMETHOD.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Please check whether rv_value equals to 'EMPRES' in the following method is correct? I just do copy, I don't know how to define it and where to find string 'EMPRES'?
Kind Regards
Andie
Hi Andie,
do you mean you like to create a standard text and this should be displayed under the relevant text type in notes assignment block automatically?
For that you can maintain a text in tx. S010 and retrieve it with your own function module. In FM CRM_TEXT_DETERMINE_TEXT you find an example coding you might compare with your own function module.
Best regards
Marion
Hi Experts,
I need your help :
We have requirement to show HTML data to string format in sap crm textArea view.
I got the HTML URL using Function Module SKWF_PHIO_CONTENT_URL_GET.
Than based on object id ( guid ) I got required data using FM SDOK_PHIO_LOAD_CONTENT which is in HTML format.
Now I want to show this data in one of my webui view in correct format.
In GUI , we have one class cl_gui_html_viewer->load_data method to load the data and than we have cl_gui_html_viewer->show_url to show the data in string ( Correct format ) .
But in CRM cl_gui_html_viewew is not supported.
My question is how to load and show the data in correct format in sap crm view ?
Request you to please help ?
Thanks & Regards,
Akhilesh Bhagat.
you can take reference from from below code as in above case we use BuilHeaderAdvancedSearch search object, to get current entity.
data: query TYPE REF TO cl_crm_bol_dquery_service,.
query ?= me->typed_context->BuilHeaderAdvancedSearch->collection_wrapper->get_current( ).
Do not remove code from getter setter of fields , it will not clear.
Check with http://scn.sap.com/thread/3391203 , for basic understanding of UI.
Regards,
Harish Kumar
for me the get_current() is empty.
the value entered on screen is not captured.
Hi Dharmakasi,
I found event name 'SEL_EMPLRESP' inthe following outbound method, but using 'EH_ONEMPL_RESP' under event handler, I set breakpoint there, system can jump to there. Why are there event name different? If I create a new outbound plug for field 'Responsible', web page will be empty when pressing F4 in this field. Do I need to create a new NavigationalLink for it?
/////////////////////////////////////////////////////////////////////////////////////////////
METHOD OP_FINDEMPLRESP.
DATA:
lv_title TYPE string.
IF gt_emplresp_popup IS NOT BOUND.
lv_title = cl_wd_utilities=>get_otr_text_by_alias( 'CRM_UIU_BT/EMPLOYEE_SEARCH' ).
gt_emplresp_popup = comp_controller->window_manager->create_popup(
iv_interface_view_name = 'SearchHelpWindow'
iv_usage_name = 'CUEmplRespValueHelp'
iv_title = lv_title ).
ENDIF.
gt_emplresp_popup->set_on_close_event( iv_view = me iv_event_name = 'SEL_EMPLRESP' ).
gt_emplresp_popup->set_display_mode( if_bsp_wd_popup=>c_display_mode_surrounded ).
gt_emplresp_popup->open( 'CLEAR_ALL' ).
ENDMETHOD.
/////////////////////////////////////////////////////////////////////////////////////////////
Kind Regards
Andie
Hi,
Someone has changed the attribute structure o BuilHeaderAdvancedSearch from CRMT_BUPA_IL_HEADER_SEARCH to ZCRMT_BUPA_IL_HEADER_SEARCH...could this be the reason behind the dump CX_CRM_CIC_DATA_INCONSISTENCY when I do the account search?
Thanks
Madhukar
Hi Sandeep,
I use another outbound plug and add some coding, it works well now.
Kind Regards
Andie
Hi Andie,
You can use same outbound plug for both fields but problem is system will always set the same field irrespective of which F4 help popup you clicked in web ui. Reason behind this you are calling the same close event code and there only you have added code to set partner number and partner function if i am not wrong.
So i would you say you can use same outbound plug but you need to differentiate both fields F4 help search events so that you can set the partner function value based on the field clicked in web ui. Otherwise you can copy the existing outbound plug which is working and give different close event name and try. If you are facing still any issue let us know.we can give some inputs.
Best Regards,
Dharmakasi.
Hi Dharmakasi,
I use another outbound plug and add some coding, it works well now.
Kind Regards
Andie
We have faced this issues as our users moved the VAT number into the field tax code1.
In the table: V_TFKTAXNUMTYPE we have changed the Funct.Name for the concerned Tax Code.
Afterwards we could reprocess the BDocs.
Hi,
The requirement is that user enter in survey some nos.
Based on that, field has to calculate the value and show in Survey results in CRM_SURVEY_SUIT screen.
hi guys,
I have a requirement in my project to upload the BP relationships high and low level hierarchies from a flat file. Can you please let me know how can we do it?
Thanks in advance,
-Bharati
Hi,
Use FM CRM_SURVEY_DATA_GET to get the values entered in the Survey. Calculate the values and display in Survey Suit.
Regards,
Abi
Hi Pratyush,
the notes fixed the problem a little bit.
I've opend a call in the SAP OSS. The suggestion was an upgrade to the next releas. In the moment we use an very old relase (SAP CRM ABAP 7.0).
The upgrade is planed in August '15. Maybe this will fix the problem. I'll give a response :-)
Greetings
Benjamin
Bharati,
Use GUI_UPLOAD function module to load flat file to a local table, use function module BAPI_BUPR_RELATIONSHIP_CREATE to create the relationships. You have to write a report using the above function module to create as many relationships as you would require.
Also do not forget to use the function module 'BAPI_TRANSACTION_COMMIT' to commit the work to DB. Hope this helps.
Same solution as Sudheer mentioned above.
Pavan.
So now you have to deal with error not with debugger. U are able to capture the debugger right