Hi Experts...
I am new to CRM ...and WEB UI ENHANCEMENTS...
My Requirement : Provide F4 Value help for Opportunity field Partner Number Description(Component BTPARTNER,
Context Node BTPARTNER,
Structure PARTNER_NO_DESCR)
How do I provide F4 value help?I got a pointer as to implement code as below in GET_V method of field..
*************************************************************************
CREATE OBJECT rv_valuehelp_descriptor TYPE cl_bsp_wd_valuehelp_f4descr
EXPORTING
iv_help_id = '(CL_CRM_UIU_BP_IDTYPE_2_F4)' "#EC NOTEXT
iv_help_id_kind = if_bsp_wd_valuehelp_f4descr=>help_id_kind_comp
iv_input_mapping = lt_inmap
iv_output_mapping = lt_outmap.
Now what you have to alter is the variable lv_help_id to reflect a F4-Valuehelp class.As you can see CL_CRM_UIU_BP_IDTYPE_2_F4 is a normal ABAP class
implementing interface IF_BSP_WD_CUSTOM_F4_CALLBACK.
*************************************************************************
Now where do i implement IF_BSP_WD_CUSTOM_F4_CALLBACK interface?
I have to select Employees assigned to certain Positions and display the Name and ID of them in the Result window.How do I do that?
In which table are the relationships of BP and Positions stored?
Looking forward to some pointers...
Helpful Pointers would be rewarded..
Thanks...