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

HP LoadRunner Scripts For WebUI

$
0
0

Story: Recently I was busy with writing some HP LoadRunner scripts for WebUI. Having no practical experience and being actually a dummy in HP LR in general, I trained myself based on the multiple videos available on YouTube. However, when doing scripts for WebUI I experienced some problems, which are not described well enough somewhere. Therefore, I decided to share my experience here…

1.    Manual Correlation

A first thing what you need to do with your script, you need to correlate your script parameters. This means that we need to identify the source for the values and using this source we need to populate our variables.

The process of identifying a proper source for the variable looks like described below.

For instance, you noticed down you are missing a variable REF_ID at line 114. Variable HOST is a defined constant.

p1.png

We can assume that the variable is coming from the previously executed request or requests. First you need to step over the previously executed request, at the line 77. Then select a tab “Snapshot” – “Recording”. Next, navigate to “Response” area and click CTRL+F.

p2.png

Copy the value (e.g. bD1lbiZjPTEwMCZkPW1pbg==) from your Excel file and search for all the occurrences of it.

p3.png

Double-click on the first occurrence in the list.

p4.png

You are navigated to the place of occurrence.

p5.png

What do we get from this? It was a redirected GET request, data is located in the response header, within the following line: location: /sap(bD1lbiZjPTEwMCZkPW1pbg==)/bc/bsp/sap/crm_ui_start/default.htm?sap-sessioncmd=open , in between: “()”. And it’s already enough to get this data in runtime, by using the function web_reg_save_param_ex.

We need to place the following code into the lines right BEFORE our request. So lines 59 – 74 should look like below.

   
      /*    Correlation   comment - Do not change! 
          Original   value='bD1lbiZjPTEwMCZkPW1pbg=='
          Name   ='REF_ID'
          Type   ='ResponseBased'
          Response   Header: location:   /sap(bD1lbiZjPTEwMCZkPW1pbg==)/bc/bsp/sap/crm_ui_start/default.htm?sap-sessioncmd=open
       */   
      web_reg_save_param_ex(
          "ParamName=REF_ID",
          "LB=sap(",
          "RB=)/",
          "Notfound=warning",
          SEARCH_FILTERS,
          "Scope=Headers",
          "IgnoreRedirections=No",
          "RequestUrl=*/crm_ui_start/default.htm*",
          LAST);

 

You can find more details regarding this function here: http://lrhelp.saas.hp.com/en/latest/help/function_reference/Content/web/lrFr_web_reg_save_param_ex.htm

Similar procedures must be performedfor all the variables you defined.

We will consider some common cases that can be relevant for all WebUI HP LR Scripts.

1.1.                    Getting Referrer ID

Referrer ID is required across complete script, from the login page until log-out.

    /*    Correlation comment - Do not   change! 
          Original value='bD1lbiZjPTEwMCZkPW1pbg=='
 
        Name ='REF_ID'
 
        Type ='ResponseBased'
 
        Response Header:   location:   /sap(bD1lbiZjPTEwMCZkPW1pbg==)/bc/bsp/sap/crm_ui_start/default.htm?sap-sessioncmd=open
 
     */   
     
web_reg_save_param_ex(
         
"ParamName=REF_ID",
         
"LB=sap(",
         
"RB=)/",
         
"Notfound=warning",
         
SEARCH_FILTERS,
         
"Scope=Headers",
         
"IgnoreRedirections=No",
         
"RequestUrl=*/crm_ui_start/default.htm*",
         
LAST);
 
     
     
web_custom_request("default.htm_2",
         
"URL={HOST}/sap/bc/bsp/sap/crm_ui_start/default.htm?sap-sessioncmd=open",
         
"Method=POST",
         
….

 

1.2.                    Getting Session ID

Session ID is required across complete script, from the login page until log-out.

    /*    Correlation comment - Do not   change! 
          Original   value='ZT1VMGhCVWxOSVFWUkxTVTVmTXpGZk1UYzJBRkJXbGhZOEh1YUdvTWo2N3Q4QWhRPT0='
          Name   ='ESID' Type ='ResponseBased'
       */
      web_reg_save_param_ex(
          "ParamName=ESID",
          "LB=(",

        "RB=)",
          "Notfound=error",
          SEARCH_FILTERS,
          "Scope=Body",
          LAST);
 
 
      web_submit_data("uif_callback",
          "Action={HOST}/sap/webcuif/uif_callback?sap-client=100&sap-language=EN&sap-domainRelax=min&crm_handler=CL_CRM_UI_SESSION_MANAGER",
          "Method=POST",
          "RecContentType=text/plain",
          "Referer={HOST}/sap({REF_ID})/bc/bsp/sap/crm_ui_start/default.htm",
          "Snapshot=t7.inf",
          "Mode=HTML",
          ITEMDATA,
          "Name=cmd","Value=get_esid",ENDITEM,
          LAST);

 

1.3.                    Getting WCF Request Ticket

WCF Request Ticket is required across complete script, from the login page until log-out.

/*    Correlation   comment - Do not change! 
      Original   value='AF5073FD82AC118ADB0067CA7B4E52A7'
      Name   ='WCF_REQUEST_TICKET'
      Type ='ResponseBased'
  */
      web_reg_save_param_ex(
          "ParamName=WCF_REQUEST_TICKET",
           "LB=name\=\"wcf-secure-id\"   value\=\"",
          "RB=\"",
          "Notfound=error",
          "Ordinal=LAST",
          SEARCH_FILTERS,
          "Scope=Body",
          LAST);

 

    web_url("main.htm",
          "URL={HOST}/sap({ESID})/bc/bsp/sap/crm_ui_frame/main.htm?sap-client=100&sap-language=EN&sap-domainRelax=min&saprole=SALESPRO",
          "Resource=0",

 

Hint: Symbol \ (back-slash) before the character means that this character should be considered as part of the text string, and not as a “special character”.

Hint: Sometimes you get several values for the same criteria. Therefore while testing and debugging you can set up Ordinal=All to get a clear vision on which value you need. In this case, we wanted the LAST occurrence only.

1.4.                    Getting Referrer ID (2)

Referrer ID is required across complete script, from the login page until log-out.

/*    Correlation   comment - Do not change! 
      Original value='bD1FTiZjPTEwMCZpPTEmZT1VMGhCVWxOSVFWUkxTVTVmTXpGZk1UYzJBRkJXbGhZOEh1YUdvTWo2N3Q4QWhRJTNkJTNk'
      Name ='REF_ID_2'
      Type ='ResponseBased'
      Response Header: location: varthtmlbMangling =   "bD1FTiZjPTEwMCZpPTEmZT1VMGhCVWxOSVFWUkxTVTVmTXpGZk1UYzJBRkJXbGhZOEh1YUdvTWo2N3Q4QWhRJTNkJTNk";
  */
      web_reg_save_param_ex(
          "ParamName=REF_ID_2",
          "LB=varthtmlbMangling\= \"",
          "RB=\";",
          "Ordinal=LAST",
          SEARCH_FILTERS,
          "Scope=Body",
          LAST);

 

    web_url("main.htm",
          "URL={HOST}/sap({ESID})/bc/bsp/sap/crm_ui_frame/main.htm?sap-client=100&sap-language=EN&sap-domainRelax=min&saprole=SALESPRO",
          "Resource=0",

 

Hint: Sometimes you get several values for the same criteria. Therefore while testing and debugging you can set up Ordinal=All to get a clear vision on which value you need. In this case, we wanted the LAST occurrence only.

1.5.                    Getting WCF Request Ticket (2)

Referrer ID is required across complete script, from the login page until log-out.

    /*     Correlation comment - Do   not change! 
           Original   value='09AFA03946E7BD32CD3109628855703D'
          Name   ='WCF_REQUEST_TICKET_6'
          Type   ='ResponseBased'

  */
      web_reg_save_param_ex(
          "ParamName=WCF_REQUEST_TICKET_6",
          "LB=wcf-request-ticket\=",
          "RB=\r\n",
          SEARCH_FILTERS,
          "Scope=Headers",
          "RequestUrl=*/bspwdapplication.do*",
          LAST);

 

Hint: Symbols “\r\n” from the above script mean NEW LINE.

1.6.                    Adding Thinking Time

Often you need to add thinking time in seconds into your script. It can be done using the command lr_think_time()as shown below.

    lr_think_time(5);

 

You can also influence thinking time by respective runtime settings of your script.

p6.png

 

 

 

2.    Hints

When you test your script you will probably get several errors when processing a logon step or at the very beginning of your script. Next possible issues are related to processing of the popups, especially when they are appearing sequentially one after another. In this case you may not even get any errors in VUGen, but the script execution won’t be successful. This chapter will describe some known cases and the ways to overcome the issues.

The following table contains some common errors and solutions.

         
ErrorReasonSolution

HTTP Status Code 400

(Session Timed-Out)


Most probably, your session id ESID or referrer session id REF_ID(n) are not correct.Check the correlation of ESID and REF_ID parameters. See hint 5.

HTTP Status Code 403

(Unauthorized Request)


Most probably, your wcf-request-ticket is   not correct.Check correlation of WCF_REQUEST_TICKET(n)   parameter. See hints 5 and 6.

VUGen does not give you any error, but popups are not working.


Most probably you have problems with wcf-request-ticket   or referrer session id REF_ID(n).


Check the correlation of REF_ID(n) and   WCF_REQUEST_TICKET(n). See hints 5, 6, 7 and 8.


Hint 1: Always back-up your script.

Hint 2: Never displace the parameters you cannot correlate by other parameters that you think you correlated correctly.

Hint 3: Try to correlate all parameters. If not possible, try to use constants.

Hint 4: Snapshots can be truncated. Use HTTP tracers instead.

Hint 5: Sometimes in VUGen you get several parameters, even though you can see only one in the Snapshot or in HTTPWatch. In this case use option Ordinal = All to get all the variables (VAR_n) and chose the appropriate one later: Ordinal = 1, 2, N, or LAST.

Hint 6: If the right border (parameter RB) for certain variable is NEXT LINE, you need to use “RB=\r\n” in respective web_reg_save_param_ex call.

Hint 7: VUGen does not give you any error, but popups are not working. You should pay attention to referrer ids and wcf-request-tickets, especially for callbackFlashIslands and callbackSilverlightIslands.

 

"Action={HOST}/sap({REF_ID_2})/bc/bsp/sap/crm_ui_frame/bspwdapplication.do?id=1&wcf-request-ticket={WCF_REQUEST_TICKET_6}",

 

"Name=wcf-secure-id","Value={WCF_REQUEST_TICKET}",ENDITEM,

 

"Name=callbackFlashIslands","Value=/sap({REF_ID_2})/webcuif/uif_callback?crm_handler=CL_THTMLBX_FLASH_ISLAND&wcf-request-ticket={WCF_REQUEST_TICKET}",ENDITEM,
          "Name=callbackSilverlightIslands","Value=/sap({REF_ID_2})/webcuif/uif_callback?crm_handler=CL_THTMLBX_SILVERLIGHT_ISLAND&wcf-request-ticket={WCF_REQUEST_TICKET}",ENDITEM,
         

 

Most probably your have displaced the variables manually (see Hint 2.), or simply the performed correlation does not work (Hints 5 and 6).

Hint 8: For the above (Hint 7) described scenario, you could probably see */logon_error.html call within statistical records, transaction STAD.

Hint 9: Always include logoff and browser closure steps into the script.

Hint 10: To identify if your script is executed successfully or not, do not rely on VUGen. Define functional exit criteria and check them on the back-end. For instance if you create 1Order documents, check if they are being created in the table CRMD_ORDERADM_H.

p7.png

 

P.S. If you have some interesting case, issue or error, feel free to add it here.

BR, Dima

 


Input history (latest enterred values) not available on pressing backspace in webui

$
0
0

Hi Experts,

We are working on CRM 7 EHP3 SP10 and it seems like the standard feature of getting the last 5 values is not working. I have tried setting the parameter 'SVH_DISABLED' to 'L'. But still it is not working.

Please advice if there is any other setting that needs to be done to enable this.

 

Regards,

Swapna

URL settings for Export to Excel buttion in webUI

$
0
0

Hi,

 

We getting some authorization issue related to URL, It is pointing to external URL when customers login and trying to access the CRM webUI from outside of company network, but when they click on Export to Excel button in Account search results screen, its pointing to Internal URL (which can be accessible within company network). We want to point the to external URL in both cases. Please help me on this, where we can setup this URL settings for Export to Excel button or how to resolve it.

 

Thanks and Regards,
Venkat

Context ID not in bspc_dl_xmlstrx2 or bsp_dlxmlstrx2

$
0
0

Hi there,

 

I do have a have a context ID of a DLCC object but I neither find the ID in bspc_dl_xmlstrx2  nor in bsp_dlxmlstrx2.

Any idea where else the id could come from?

 

Best regards,

 

Thea

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

FM to assign Business Partner Relationship a Sales Area in SAP CRM BP?

$
0
0

Hi Experts,

I have gone through the other blogs and I have seen that we can use the FM : BUPR_RELATIONSHIP_CREATE to add a Business Partner Relationship.

My question is a bit further after that.

When You add a Relationship to the BP in SAP CRM it gives you the option to add the Sales Area to the added Relationship also.

And I would like to know which FM can I use to add this Sales Area to the Added Business Partner Relation.

I have already checked the FM BAPI_BUPA_FRG0030_ADDwhich is not useful here as it is used to add the SALES AREA to a BP. Here I am referring the assignment to the RELATIONSHIP with Sales Area.

 

Please take a look at the screenshot which shows the Place where I am trying to add the Sales Area.

Tcode: BP

Click on Relationship Tab

Select Relationship Category as " Has BUP"

Give an Employee Number and then Click Enter Key.

You will get a Pop up where you can add the Sales Area.

Here I have added it manually by selecting the Sales Area.

 

What is the FM which can be used to add this Sales Area to the BP relationship programatically.         

SAP CRM EHP3 Upgrade Issues:BSP Dumps

$
0
0

Hello Experts,

 

We have recently upgraded our sandbox CRM environment from CRM 7.0 to CRM EhP3.

Refer snapshots below.

 

However after the upgrade some basic functionalities seems to be broken.

1)Font styles are destroyed, Custom skins do not work causing repetitive dumps

2)There are many BSP errors(when trying access emails, create service requests)

 

Original system

SAP CA3.JPG

 

 

Upgraded system

SAP CS3.JPG

 

When accessing emails.

 

Email Access.JPG

 

 

Email BSP error.JPG



When creating HR requests.

Click on HR requests, shows BSP error.

Create HR request - Erro.JPG

BSP error.JPG

 

 

 

 

Any suggestions ?

I did read a lot blogs about upgrade issue for CRM EhP3, where it is mentioned that there may be a lot of dumps for BSP after the upgrade.

But the steps suggested were not useful.

 

Requesting help urgently.

 

Regards,

Abhishek Kokate

Update equipment address

$
0
0

I'm an ABAP developer and I'm trying to update equipment address (especially coordinates) in an ABAP program. I tried to debug CRM Web UI application and implement the same code in my program but it doesn't work.

 

Basically I'm using function modules COM_IOBJ_LOCAT_ADDR_STORE, ADDR_SINGLE_SAVE and COM_COM_LOCAT_ADDR_SAVE_DB. Obviously I have something missing but I wasn't able to determine what's it.

 

[Screenshot of WEB UI where I try to update (Accounts & Products > Equipments > Address)|http://i54.tinypic.com/2ev6kk5.jpg]


Filtering values in field Status on WebIC Inbox 2005

$
0
0

Hi,

 

We are having some problem with statues in CRM 2005 WebIC Agent Inbox.

 

Our solution has 2 WebClient Profiles and 2 Inbox profiles configured. We have defined different Inbox Statues for the Inbox profiles and made our mapping to User statuses consisting of 2 different Status Profiles. We have also implemented the BAdI CRM_IC_INBOX_BADI.

 

The issue is that the Status field (dropdown list) in the work area of Inbox is showing the values for both Inbox profiles. We want to filter the Statuses showing only those ones belonging to the correct Inbox profile.

 

Does anyone have a solution for this?

 

Regards,

 

Alexander

Business partner data update

$
0
0

Hi All,

 

I am working on requirement while copying service confirmation I have to copy the business partner data from old confirmation to new confirmation for this we are not going with Config changes due to our project limitations so i did code change for this in below component which is working fine..

 

BT117H_SRVC IN OVVView view and event handler EH_ON_COPY_DOC_FLOW event..and updating using FM  CRM_PARTNER_MAINTAIN_MULTI_OW this FM is also working fine.

 

 

But my issue is the updated data is getting visible only after hitting enter once copy is done..

 

Either i have to save or hit enter in order to see updated Business partner data.

 

Is their any other way in order to hit enter using code..

 

I tried refreshing buffer and component controller but it didn't worked.

 

 

 

Thanks,

Sarala.

Pop up message display issue in IE11

$
0
0

Hello Experts,

 

I am displaying pop up using create_popup_2_confirm method and setting display mode   = if_bsp_wd_popup=>c_display_mode_surrounded so that the messages appear in Pop up window.

Now this works fine in IE 9 but not in IE11. The messages are moved to the main screen and by the time pop up is closed, messages disappear.

 

I checked wiki link

https://wiki.scn.sap.com/wiki/display/CRM/Common+Issues+with+IE+11+Browser

 

And got to know that following 2 notes needs to be  applied

 

  • 1900958 User agent string for IE11 is parsed incorrectly
  • 2026791 WEBCUIF IE11-Standards mode

 

Could you please suggest a correct note which can be applied to rectify this issue.

 

Regards,

Janaki.

set_filter with NE option

$
0
0

Hi Experts,

 

I got stuck with one requirement where we need to preserve filter and everything is working fine with equal operator with below code.

 

typed_context->BTPARTNER->set_filter(

iv_attr_name = <lv_attr>

iv_value = <lv_value>

iv_filter_mode = IF_BOL_BO_COL_ITERATOR=>FILTER_MODE_INTERACTIVE ).

 

typed_context->BTPARTNER->build_table( ).

 

But I am unable to find an option where "Not equal" operation is not working.

 

Please suggest.

 

 

Thanks,

NJ


how to restrict Complaint item product search only one base category search?

$
0
0

Hi Team,

 

My requirement is complaint item,Product searc and result, if user click search on product ,result will be displayed all product types like good,spare parts,service..etc..but they want only one product type only.if user search product they want only one spare part search.how to achieve this functionality.

 

They want to search only one base category search.

In trasaction - Compr01 ,-setting is required here or enhancement .please help

 

 

 

 

Component - prd01qr

 

Thanks & regards

Kalpana

in objects result ,if user select any object and if i click the custom button on result directly open to service request creation page in sap crm ?

$
0
0

Hi Team,

 

My requirement is if user select any value in objects result page,and click zbutton on result page directly it will be opened to service request page with copy object id and partner id ? how to achieve this requirement.

 

when ever user click the  button directly open to service request creation page? how to do it?

 

and one more thing in object result view could not able to select the line in result view..there is no select field column in result view also..

 

Component - PRDIOQR

View - result view

 

Thanks in advance

 

Thanks & Regards

kalpana

Updting BI portal URL in CRM report

$
0
0

Hi,

 

We have a BI report in CRM WebUI and it will launch BI reporting portal by clicking it and we got request to change BI portal URL in CRM report in CRM webUI as the BI data is migrated to different environment, here client asking me to update one URL(BI Quality) in CRM DEV and Quality systems and BI production URL in CRM production. Please suggest me which is the best practice or how you handled this scenario in your companies, whether pointing all CRM environments(DEV, Q and Production) to BI production URL or maintaining as client requested?

 

BR

VR


URL settings for Export to Excel buttion in webUI

$
0
0

Hi,

 

We getting some authorization issue related to URL, It is pointing to external URL when customers login and trying to access the CRM webUI from outside of company network, but when they click on Export to Excel button in Account search results screen, its pointing to Internal URL (which can be accessible within company network). We want to point the to external URL in both cases. Please help me on this, where we can setup this URL settings for Export to Excel button or how to resolve it.

 

Thanks and Regards,
Venkat

Blocking reasons do not replicate from ECC to CRM

$
0
0

Blocking Reason.jpg

 

 

When Blocking Reasons are changed in ECC, they are not replicated into CRM (other info is, like address, etc.).

 

 

This may be simple but points will be awarded.

Making a field dynamically mandatory?

$
0
0

Hi,

 

I have a task to make Location field mandatory if the importance is high in Appointment.

For this i enhanced BT126H_APPT/ApptDetails  in the context node Btactivityh  GET_P_ACT_LOCATION  i did the coding.It is working fine.

 

Now the problem is

1) Importance->high               Location->mandt          Fine.

 

2)Importance->low                 Location->Not mandt.   Here mandatory mark(*) is getting is removed but field is getting highlighted with red color.

 

I have attached screen shot

 

Can any body please tell me how can i handle this?

 

Thanks,

Hari.

SAP CRM EHP3 Upgrade Issues:BSP Dumps

$
0
0

Hello Experts,

 

We have recently upgraded our sandbox CRM environment from CRM 7.0 to CRM EhP3.

Refer snapshots below.

 

However after the upgrade some basic functionalities seems to be broken.

1)Font styles are destroyed, Custom skins do not work causing repetitive dumps

2)There are many BSP errors(when trying access emails, create service requests)

 

Original system

SAP CA3.JPG

 

 

Upgraded system

SAP CS3.JPG

 

When accessing emails.

 

Email Access.JPG

 

 

Email BSP error.JPG



When creating HR requests.

Click on HR requests, shows BSP error.

Create HR request - Erro.JPG

BSP error.JPG

 

 

 

 

Any suggestions ?

I did read a lot blogs about upgrade issue for CRM EhP3, where it is mentioned that there may be a lot of dumps for BSP after the upgrade.

But the steps suggested were not useful.

 

Requesting help urgently.

 

Regards,

Abhishek Kokate

Tx-Launcher after system copy

$
0
0

Hello *,

 

we have created test-system as a copy of development-system.

Along with this the entry for logical system in customizing still belongs to development-system. In test-system it is not possible to change this entry.

 

Due to this fact we get following errors when starting a transaction

2016-05-31 08_54_24-Launch Transaction - [SAP] - Internet Explorer.png

We have executed tx BDLS successfully.

 

Kind regards

Thomas

Viewing all 4552 articles
Browse latest View live


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