Quantcast
Channel: SCN : All Content - SAP CRM: Webclient UI - Framework
Viewing all 4552 articles
Browse latest View live

Transaction launcher is very slow if used Launch in SAP GUI

$
0
0

Dear all,

 

We are using an transaction launcher of ERP system to view some data. Life was good when they were using SAP Gui for HTML

but suddenly they want SAP gui and not the ****** ( HTML Gui  , that's what they tell to html gui nothing personal ) so I did some changes

1. made the checkbox true for launch in SAP gui

2. activated a SICF service ltx_sapgui_strt ( in both CRM And ERP)

 

So it worked like charm and opened a transaction in SAP GUI inside crm webui. but there is the catch when user clicked on back button it takes approx. 20 seconds!!!! so is there any way to make it fast like some notes or some parameters maintaine..???

 

kindly suggest!


CRM_UI error :SAP 500 internal server error:: ERROR: Field symbol has not yet been assigned. (termination: RABAX_STATE)

$
0
0

Hi All,

 

I got SAP 500 internal server error  given below while loggin into system after executing tcode crm_ui.

 

ERROR: Field symbol has not yet been assigned. (termination: RABAX_STATE)


following is the dump in ST22:


Category               ABAP Programming Error

Runtime Errors         GETWA_NOT_ASSIGNED

ABAP Program           CL_BSP_RUNTIME================CP

Application Component  BC-BSP

 

Short text

    Field symbol has not yet been assigned.

 

What happened?

    Error in the ABAP Application Program

 

The current ABAP program "CL_BSP_RUNTIME================CP" had to

     terminated because it has

    come across a statement that unfortunately cannot be executed.

Information on where terminated

    Termination occurred in the ABAP program "CL_BSP_RUNTIME========

     in "IF_BSP_RUNTIME~GET_TOKEN".

    The main program was "SAPMHTTP ".

 

 

    In the source code you have the termination point in line 27

    of the (Include) program "CL_BSP_RUNTIME================CM01X".

Source Code Extract (Source code has changed)

 

 

Line  SourceCde

 

 

    1 method IF_BSP_RUNTIME~GET_TOKEN.

    2

    3 *    clear token.

    4 *

    5 *    if me->sec_token is initial.

    6 *      set_token( ).

    7 *    endif.

    8 *

    9 *    c_request->get_cookie( exporting name = 'sap_sec_token'

   10 *                           importing value = token ).

   11   DATA: l_error_text            TYPE string,                "#EC NEEDED

   12         l_message               TYPE string,                "#EC NEEDED

   13         l_subrc                 TYPE string.                "#EC NEEDED

   14

   15   FIELD-SYMBOLS: <text_variable>   TYPE string.             "#EC NEEDED

   16

   17

   18   server->get_xsrf_token( IMPORTING  token = token

   19                           EXCEPTIONS internal_error           = 1

   20                                      called_by_public_service = 2 ).

   21 *  IF sy-subrc <> 0.

   22 *      l_error_text = 'Two GET_XSRF_TOKEN calls led to different values

   23 *      MESSAGE e000(sr) WITH l_error_text.

   24 *  ENDIF.

   25

   26   IF sy-subrc <> 0.

>>>>>     MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno

   28       WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4

   29       INTO <text_variable>.             "#EC NOTEXT

   30     IF <text_variable> IS INITIAL.

   31       l_subrc = sy-subrc.

   32       CONCATENATE  'Class CL_BSP_RUNTIME Method GET_TOKEN SY-SUBRC = ' l

   33       INTO <text_variable> .

   34     ENDIF.

   35 *  ...  "passing the error message to the upper / UI layer

   36

   37   ELSE.

   38     me->sec_token = token.

               ENDIF.

            endmethod.


Please help me.


Thanks,

Pavan

Ship-to-party field should be editable for a sales order with completed status in CRMD_ORDER

$
0
0


hi experts,

 

we were upgraded our CRM system from 4.0  to 7.0 ehp1.

For a  sales order with status 'completed' ,Ship- to party field is editable in

CRMD_ORDER  TCODE when we click on edit icon in Old version.

 

But it is not working same as above in new system.

 

How to make ship-to party editable in new version..

 

 

Please help me ASAP.

 

Thanks,

Usha

Runtime Errors - GETWA_NOT_ASSIGNED, ABAP Program - CL_AXT_TABLES_BUFFER==========CP, Application Component - CA-GTF-EEW

Configuring Service Level Agreements for Service Request

$
0
0

Dear All,

What customizations or backend configurations do I need to perform to configure my service profile and response profile in CRM

 

Untitled.png.50.png

Kind Regards

Atul

Document/attachment storage in CRM 7 ehp3: which technologie to use?

$
0
0

Hi,

 

We're setting up a new CRM 7 ehp3 system and are looking into using the "upload attachment" functionality on various objectss. Currently we have an ECC back-end system which uses ArchiveLink for attachments. We also have OpenText in our system landscape.

Furthermore, we'll also be using ERMS (incoming & outgoing).

 

We're can I find some information on the standard CRM way of storing attachments & documents? Should we be using ArchiveLink, DMS, OpenText integration or even somthing else?

I'd appreciate useful pointers to documentation or guidelines, or answers!

 

Regards and thanks!

how to use WebUi component as a Searchhelp in FPM

$
0
0

Hi

 

We have succeed to implement a FPM application (FPM OVP Component) as a statement on CRM WebUI.

 

image001.jpg

 

However, now, the problem is that Customers want us to use traditional WebUI Search Help (BSP Search Help).

 

Following is an example for BSP Search help used in UI Component WorkBench:

 

    DATA:
       lv_title        TYPE string,
       lv_attribute    TYPE string,
       lv_model        TYPE string,
       lv_event_string TYPE string.

     cl_chtmlb_config_utility=>outbound_plug_event_info(
     EXPORTING
       iv_event_string = lv_event_string
     IMPORTING
       ev_model_name   = lv_model
       ev_index      = gv_index
       ev_attribute    = lv_attribute ).

     lv_title = 'Search Help'.
     IF icmpvaluehelp_popup IS NOT BOUND.
       icmpvaluehelp_popup = comp_controller->window_manager->create_popup(
       iv_interface_view_name = 'SearchHelpWindow'
       iv_usage_name = 'CUICMPValueHelp'
       iv_title = lv_title ).
     ENDIF.

     icmpvaluehelp_popup->set_on_close_event( iv_view = me iv_event_name = 'SEL_ICMP' ).
     icmpvaluehelp_popup->set_display_mode( if_bsp_wd_popup=>c_display_mode_surrounded ).
     icmpvaluehelp_popup->open( ).


How can I use the WebUI Component as a Search Help Popup in FPM Application??

 

I understand the three ways to implement search help in FPM:

1. se11

2. OVS Search Help

3. Call WDA Search Help

 

Please Tell me if there is any possibility to get it.

how to get GUID in DO_INIT method

$
0
0

Hi All,

 

I have a requirement to default the CC mail id's when a follow up email is created from complaint i am trying to acheive this

by redefining DO_INIT method and created a new method set_CCmailid where i am trying to call order_read to get the partner

functions and their mail id's.Plz let me know how should i get the guid to pass to order_read and attend functionality.

 

Thanks.


Item category not being copied in WEB UI

$
0
0

Dear Fellows,

 

I have a scenario where i create ZPS sales order and then ZPI invoice as follow up document. This process runs successfully on SAP CRM GUI but not on WEB UI. when i create follow up doc on WEB UI, item category does not get copied even though all copy controls are maintained. I want to know whether any other copy control is there for WEB UI, if not then why we are facing this error. Plz suggest some solution.

 

Regards;

Sania

relation between marketing campaign and product ID?

$
0
0

hi,

 

1. I need the relation b/w marketing campaign (external ID) and Product ID.

Enhanced component asks for registration key after system copy

$
0
0

Dear experts,

 

to be able to develop with high quality data we rebuilt our CRM development system with a system copy of the production system. Now after finishing all the reworks (BDLS, SCC4, ..) we have the following problem:

 

Whenever we try to create a new event to an already enhanced component, the system asks for a registration key as if it wants to modify the SAP standard classes! One time we tried what happens if we enter this registration key: The systems trys to redefine its own methods in the SAP classes and therefore results in a syntax error.

 

Has anyone an idea what settings might sill be wrong that lead to this system behaviour?

 

Thanks so much


BR Matthias

ADD_COLLECTION throws CX_BOL_EXCEPTION

$
0
0

Hello All,

 

I am facing with a problem while I am trying to add an entity to the collection.

As you in the following code. I have been trying to add the records from the ZZTABLE to the entity list.

 

Any help would be appreciated.

 

data lr_col type ref to if_bol_bo_col.

data: ls_data type ref to data.

data: lr_ent type ref to  cl_bsp_wd_value_node.

 

select * from ZZTABLE

              into table it_ZZTABLE

              where parent_id eq gv_guid.


create object lr_col type cl_crm_bol_bo_col.

create data ls_data type ZZTABLE.

create object lr_ent

    exporting

       iv_data_ref = ls_data.

 

   loop at it_ZZTABLEinto lv_ZZTABLE.

     lr_ent->set_properties( lv_ZZTABLE).

     lr_col->add( lr_ent ).

   endloop.

 

 

   me->typed_context->ZZCONTEXTNODE->collection_wrapper->clear( ).

 

   try .

I got the error in this code block.

       me->typed_context->ZZCONTEXTNODE->collection_wrapper->IF_BOL_BO_COL~ADD_COLLECTION( lr_col ).

     catch cx_root.

   endtry.



Regards,


Merve

AET Table Creation- Displaying it in a form view

$
0
0


Hi,

 

I created a new table using the AET in CRM Web UI under ORDER_ADMINH_TABLE. Now this table appears as an assignment block in the overview page but my requirement is to display the table inside the form view of the parent entity(BTADMINH). When I check the view configuration of the form view it does not show this table as a field. I read some posts and all of them discuss about adding the table as a new assignment block. As per the standard help provided by SAP "http://help.sap.com/saphelp_crmhana/helpdata/en/28/fb8c7666274d91b1b79415e7b588df/frameset.htm" it states that "You can make the table fields available in the form view of the parent object."

Can some one help me in achieving this.

 

Thanks in Advance,

Arvind Raj.

Vendor Partner Function To CRM

$
0
0

Hi All,

 

I need some help here please. We are in ECC 6.0 and CRM 5.0. Upon our business requirement we added VENDOR (who was created thru tcode XK01) as a PARTNER FUNCTIONS for the CUSTOMER in ECC using XD02. And saving the customer.

 

My Problem: For some reason this VENDOR whom we added in the PARTNER FUNCTIONs tab in ECC is not replicating to CRM Relationships for the BP.

 

So far we did: We successfully loaded all the VENDORs from ECC to CRM under the role BBP000-VENDOR. Also we did all the configuration required for the PARTNER FUNCTIONS in CRM.

 

Any suggestions are much appreciated.

 

Thanks,

Karuna.

Session ID of current WebUI session?

$
0
0

Hello Experts,

 

Is there a way to retrieve a session ID of the current user session within the WebUI framework code?

 

What I have found so far is class CL_CRM_UI_SESSION_MANAGER method GET_SID. However that doesn't seem to generate anything useful for my case, as the generated ID is composed out of user name and IP address and thus doesn't really identify a session.

 

Is there another way to get a session ID? Is there another approach that would tell my coding that it's running in a new session? What I want to achieve in the end is run a specific part of code only once per user and session.


Complaint with reference to R/3 Billing Document

$
0
0

Hello Colleagues;

 

We are using SAP CRM 7.0 and want to implement Cmplaint Management scenario. I have done all the customizing and implemented the BADI for external reference fro complaints. But waht I need to clarify is do we need to download the billing documents to CRM?

 

Best Regards,

Erkan Kaya

How to create complaints with reference to ECC Billing document (CRM 7.0)

$
0
0

Hi experts!

I use ECC 6.0 and CRM 7.0.

 

I have to create CRM complaints (ZCLR - CLRP) with reference to ecc billing documents.

I read the following topics and help:

1. How to create complaints with referenceto ECC Billing document

2. Re: How can we transfer billing documents from SAP ERP to CRM 2007?

3. http://help.sap.com/saphelp_crm70/helpdata/en/46/029ba32e675c1ae10000000a1553f6/frameset.htm

 

Made these settings:

1. Define the Business object type

Goto SPRO>CRM>Transaction>Settings for Complaints>Integration>Trnsaction Referencing>Define Object types for Transaction reference

2. Assign Business Object Types to Transaction Types

Goto SPRO>CRM>Transaction>Settings for Complaints>Integration>Trnsaction Referencing>Assign Business Object Types to Transaction Types

3. Implement a BADI - CRM_COPY_BADI_EXTERN.Check Implementation CRM_COPY_BADI_BILLDO for more information on the coding for referencing the ECC Billing document.

Goto SPRO>CRM>Transaction>Settings for Complaints>Integration>Trnsaction Referencing>BAdI: Create Complaint with Reference to External Transaction.

 

but still do not know,

 

1) if I should pre-replicate billing documents into CRM ?

2) Or, the system uses the RFC to find these documents in ECC to create reference?

 

Please help me.

Best regards Kostya.

 

Edited by: Kostya Khveshchenik on Oct 20, 2010 2:09 PM

At least one entry could not be found in object buffer

$
0
0

Hi All,

 

I am frequently getting the message <b>'At least one entry could not be found in object buffer'</b> when I am saving a service process through CRMD_ORDER.

 

Does anybody have faced the similar situation, if so pls help me on this.

 

(Note: For your information while saving the Service requwst, it automatically triggers some actions)

 

The above said error message is getting populated through the function module CRM_ORDER_H_READ_OB.

 

Any inputs on this will be highly appreciated.

Restrict the Popups in sales order creation depending on partner

$
0
0

Hello Experts,

 

I would like to know how to restrict the bill-to-party/payer popups when creating a sales order in WEBUI IC agent. when there is a single deviating parter in the account the popup should not be popped. please anyone help me in finding the solution. i can give further inputs if needed.

 

Thanks and Regards,

Harsha Chakilam.

How to block Partner Determination related pop up(Partner Selection Document Header)

$
0
0

Hi Forum,

 

My requirement is to supress the standard 'Partner Selection Document Header' pop up which is getting triggered everytime when partner determination is done. Could you please let me know where can i write the logic to restrict this pop up. I can not change the partner determination configuration in SPRO. This pop up suppression should happen only through coding. Please advise.

 

Thanks

M.C

Viewing all 4552 articles
Browse latest View live


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