Transaction Launcher problems: Significance of IC_LTX

Hi all,
We are on CRM 5.0 and ECC 6.0.
I am facing some problems using the transaction launcher when I use the Webgui service.
I looked into the note 888931 which asks us to use the Webgui service and the below URLs for the logical system.
http://<host>:<port>/scripts/wgate/webgui/!?transaction=IC_LTX&okcode=ICEXECUTE
OR
http://<host>:<port>/sap/bc/gui/sap/its/webgui/!?transaction=IC_LTX&okcode=ICEXECUTE
The first one does not work in our system and 2nd one returns a grid kind of blank screen although I configured the transaction launcher to pull the transaction 'BP'.
Can anyone please let me know what could be the problem? and also what is the significance/use of the Transaction/function group IC_LTX ?
Best Regards,
Nag

Hello Glenn,
Thanks for your reply.
I've tried with passing the parameters also but still that does not work.
But if I change the URL to use the CRM_CIC_RABOX it works fine. But we have some display issues with this.
So we are trying with WEBGUI service as per the note 888931.
Regards,
Nag

Similar Messages

  • Transaction Launcher problem

    All,
    I am trying to configure transaction launcher to launch a transaction from R/3 system. (tcode XD01to create customer). I am using CRM 5.0 & R/3 4.6 C
    I have already set up the link to ITS in CRMS_IC_CROSS_SYS. Here are the values:
    Mapped system: R3SYSTEM
    Logical System: <R/3logical system>
    Client:<client of r/3 sys>
    ITS: http://xxxxxx/scripts/wgate/webgui/!
    I have tested the ITS path in the browser. It works perfectly
    Now when I use the Transaction launch wizard to create my launch transaction, in step 3 (more Technical details).
    I select Transaction Launcher type: BOR
    Logical System: <R/3logical system>
    Now when I try to select the BOR Type by using F4, I get a message saying that no connection to <R/3logical system>.
    I am not able to proceed further due to this. I went to SM59 and tested the R3 connection and it works fine.
    Anyone knows what i am missing or doing wrong?
    Ani

    Ok I think the mistake I was doing was giving the R/3logical system in CRMS_IC_CROSS_SYS. I changed it CRMlogical system. Now I can see the R/3 easy access Menu.
    Now for part 2 of my question:
    In order to display the customer master in R/3 (Tcode Xd03) what values should I change in the step 3 (more technical details) of the transaction launcher?
    I want it to take me directly to the xd03 tcode and open my business partner.

  • Appintegrator or URL iView for SAP Transaction launching Problem

    I am using the following methods
    1). created portal sap transaction iview  ,for different transactions, I am not able to pass a parameter with #
    a) passed application parameter =1234#56
    b) paassed as 1234%2356
    in both the cases the value is not passed.
    2)Created an iview using appintegrator and even this not passed the above value with #..
    3) I used: webgui URL:
    /sap/bc/gui/sap/its/webgui?sap-client=<client>&transaction=ME53&EBAN-BANFN=0001277601&okcode=AB
    even this is not accepting # in the value for EBAN-BANFN parameter.
    could any one help me.

    Hello Kiran,
    Special characters, like "#", should be encoded when in the URL.  For # it is %23.  This is why the value 1234#56 becomes 1234%2356.  If it is not working then it because the receiving program is not decoding the value back to 1234#56.  You can find more information on this by searching SAP notes for "URL encode". 
    As for this issue, what is the error when the value is 1234%2356?  Thanks.
    Edgar

  • Transaction launcher opens empty transaction IC_LTXE in target system

    Hello,
    we've got an issue with the transaction launcher. We want to open an ecc transaction.
    Logical system in TCRMS_IC_CROSS_SYS is defined as: http://<server>:<port>/sap/bc/gui/sap/its/webgui/!?transaction=IC_LTXE&okcode=ICEXECUTE
    Rfc connection with target system works (with dialog user) .
    Note 1021222 and necessary steps from note 888931 are implemented. We've followed best practice CRM Opportunity Management (C32) to add a transaction.
    Problem we are facing at this moment is: from crm the transaction IC_LTXE is opened in the target system with only empty fields. The transaction we've entered in the transaction launcher wizard is not opened at all...
    Anybody knows how to solve this issue?
    Thanks
    Immanuel

    Hi,
    Use
    http://<server>:<port>/sap/bc/gui/sap/its/webgui/!?transaction=IC_LTXE&okcode=EXECUTE
    in cross system transaction
    Also follow this thread for regrence
    Transaction Laucher Help
    Regards
    Gaurav

  • Problem in Transaction Launcher

    Hi friends,
    I have used the cookbook example on page 30.
    And it is working fine for the transaction VA01 but when i replace it with any other transaction like SE38 or BP its does not work and after calling the Transaction launcher it shows an error in the status bar of IE5.0 that
    Line 47, char 5, Error : invalid Object ,Code 0, and the complete url of ITS.
    Plz help me to solve this problem
    Regards
    Pulkit Agrawal

    Hi,
    You're talking about transaction code VA01 (to create sales documents), but you want to display a customer... so in fact you use tcode XD03 right? And if you're sure that this customer number exists in your backend, you could try to debug and add leading zeros to LV_PARTNER. Maybe that will help.
    Regards,
    Nicolas.

  • Problems with transaction launcher

    Hi all,
    I need to launch a BOR object, using Transaction Launcher, from a custom button into account activities view on the CRM UI. These are the steps that I have done:
    - create a new Transaction Launcher object
    - associate this obiect to a Logical Link in transaction CRMC_UI_NBLINKS
    - add a new button, with EH code:
      op_todisporders( ).
    - add a new OP into the view, with code:
      CALL METHOD cl_crm_ui_descriptor_obj_srv=>create_bor_based
        EXPORTING
          iv_bor_object_type  = 'BUS2032'
          iv_bor_object_key   = '440000000003'
          iv_logical_system   = 'TECCLNT500'
          iv_ui_object_type   = 'ZWRAPPED_BUS2032'
          iv_ui_object_action = 'B'
        RECEIVING
          rr_result           = lv_descriptor_object.
      CREATE OBJECT lv_data_collection TYPE cl_crm_bol_bo_col.
      lv_data_collection->add( lv_descriptor_object ).
      lr_window ?= me->view_manager->get_window_controller( ).
      lr_window->call_outbound_plug(
      iv_outbound_plug = 'TODISPORDERS'
      iv_data_collection = lv_data_collection ).
    - add the outbound plug to the window, with code:
      fire_outbound_plug(
      iv_outbound_plug = 'TODISPORDERS'
      iv_data_collection = iv_data_collection ).
    - add the OP into the window runtime repository, and into the view component interface
    - add OP mapping into CRMC_UI_NBLINKS, calling the previously created logical link
    - add my component BP_BPBT into transaction CRMS_UI_TLINK (my new outbound plug does not appear, so I added it manually)
    When I click on the button, the following exception appear:
    CX_BSP_WD_INCORRECT_IMPLEMENT - Define NavigationalLink TODISPORDERS for source view BP_BPBT.AccountActivities
    For what I know, I don't have to define any logical link....
    Can you help me to solve this issue?
    Points will be awarded.
    Thanks, regards
    Fabio

    In the window's outbound plug, I called FIRE_OUTBOUND_PLUG instead of NAVIGATE. Then I got an exception, asking me to create a navigation link in BP_CONT_MAIN. I created. Now it is working.

  • ITS WebGUI in CRM(By transaction launcher )

    Hi all,
    We would like to incude transaction "S_AE2_89000019" from CRM to SAP CRM WEB Client UI.
    We have done the following steps using the SAP best practices (C04-Configuration guide):
    1. in transaction CRMS_IC_CROSS_SYS we have configured the CRM system with url: http://CRMnameServer:httpport/sap/bc/gui/sap/its/webgui/!?transaction=IC_LTX&okcode=ICEXECUTE
    and ERP system with url
    http://ERPnameServer:httpport/sap/bc/gui/sap/its/webgui/!?transaction=IC_LTX&okcode=ICEXECUTE
    2. we have set TSTC to synchronous (CRM and ERP)
    3. we have configured transaction launcher through wizard (tx CRMC_UI_ACTIONWZ)
    4. we have created logical link for transaction and we assigned the link to work center and business role.
    The problem is that when we are opening the SAP CRM web gui and click on the link that we have created, we take a blank picture with a red x "PLease wait..." and nothing else opens.My CRM Version is 7.0 EHP1.
    The webgui service in the tx sicf have been a test, after login in, a blank picture with a red x "PLease wait..."  is also remaining.
    Can anyone help?
    Thanks in advanced.

    Lei Cao,
    Want to check if this issue is resolved. I have the same problem where I am getting 'please wait" with red x screen when I configured transaction launcher from crm web ui.
    Did you ever get this resolved? If so please share your approach ? And is this authorization related?
    Rajani

  • Transaction Launcher - TCode Authorization Issue for ERP transaction

    We are trying to implement an ERP transaction in the CRM WebUI via the transaction Launcher.  Everything has been set up properly and the transaction appears in the nav bar.  I am running it to launch a new window.  When i click on it, a new window pops up, with transaction IC_LTXE and an error saying
    *"You do not have authorization to view transaction ZSD_IC".*
    Everything seems to be set up properly and we can access the transaction with the same user id in ERP. He has SAP_ALL.
    Does this have anything to do with IC_LTXE?  Is there anything special i need to do to assign proper authorization to this user.
    Thanks,
    jeremy

    Hello Jeremy,
    We are trying to execute R/3 transaction from Transaction Launcher but we are facing problems.
    In order to execute transactions from TL we have copied object TSTC to ZTSTC  in both systems and use the method Execute to be used from Transaction Launcher customizing. Then we have customized T. Launcher in order to get two links, one to R3 transaction  (using the object ZTSTC, method execute and XD03 as value parameter) and one to CRM transaction (using the object ZTSTC, method execute and CRMD_MKTDS as value parameter).
    When we execute the TL link to CRM, transaction works properly through ITS, but executing the link to R3 transaction we receive the following popup message:u2018Logged Off Successfully. You have been logged off from SAP NetWeaver Application Server.u2019 the screen gets in blank and no further actions are executed.
    In order to correct the fail we have implemented these notes, but the problem still remains.
    0001224663 Launch of Front Office with Transaction Launcher fails
    0001263716 Launching Front Office Process using Transaction Launcher
    Based on your experience could you help us to get the right configuration to reach R/3 transaction through Transaction Launcher.
    Thank you very much in advance.
    Best regards.

  • Transaction Launcher  in system ERP 6.0 EIC

    Hello,
    Do you know where to find the properly configuration for the transaction launcher of EIC on ERP 6.0?
    Because actually doesn´t run well
    Thanks for your help!
    Actually we have active service  ccmp_rabox into "SICF" and in
    the "spro"
    IMG/Personal management/Employee Interaction Center( EIC)/ Interaction Center Web-Client/Basis Funtions/Transaction Launcher/ Define Logical Systems and ITS URLs.
    I put http://:/scripts/wgate/CCMP_RABOX/!, but i find this configuratio to CRM and not to EIC.
    Thanks

    Hello,
    CCMP_RABOX makes a lot of problems.
    Please use  ITS URLs as following:
                  http://<host>:<port> /scripts/wgate/webgui/!?transaction=IC_LTXE&okcode=ICEXECUTE, or
                  http://<host>:<port> /sap/bc/gui/sap/its/webgui/!?transaction=IC_LTXE&okcode=ICEXECUTE
    as in note 1176990 and 1021222 described.
    Please notice that there is currently another issue:
    SAP Note 1360904 - SAP GUI for HTML: Application services do not start
    Kind Regards
    Uwe

  • Transaction Launcher : Calling R/3 Transactions (BOR)

    Hi,
    Can someone please advise on the following: We need to be able to display R/3 transactions in the SAP WebUI (CRM 6.0). We have done this with CRM (using a copy of TSTC) and this is working fine, but when we want to display R/3 transactions we have certain issues (Error with Action Box Transaction). We also maintained the same obeject (TSTC) in R/3 : synchronous, EXECUTE method, etc.
    Basically, we configured the connection to R/3, used the Transaction Launcher Wizard and implemented the link in the navigation bar.
    When we launch the transaction, a connection to the R/3 (ECC 6.0) system is made (logon box), but after authentication it comes up with the error : "The current transaction cannot be started via SAPGui for HTML. Only Methods, Workflows and Front Office Processes (only for IS-UI/CCS systems) are allowed." In the bottom of the page it states : "Function Module EWB_PROC_CREATE does not exist."
    The connection with ECC 6.0 is working fine as we are able to navigate from the SAP Menu.
    We have also checked the transaction we want to launch ("VA03") in SE93 : Gui support is active for SAPGui for HTML, SAPGui for Java, SAPGui for Windows.
    Can someone please help. Thank you,
    Sebastiaan.

    Hi,
    we have solved the problem with the missing function module by following the notes 888931 and 1021222.
    But I'm now getting the error that I'm not authorized to run the transaction that I'm calling from the IC Web Client (we are calling a transaction in ECC). My user has SAP_ALL, so it sholdn't be a problem. My theory is that it has something to do with the call of IC_LTXE. But I'm not sure.
    Does anyone have an idea how to fix this problem?
    Kind Regards,
    Gitte.

  • ERP Transaction Launcher leads to blank screen

    Hello
    I followed SAP notes and various threads here at SDN to setup launch of ERP transactions from CRM webclient.
    In principle I have applied SAP notes on ERP and CRM for IC_LTX and IC_LTXE transaction codes and also did all steps as per enclosed blog,
    /people/vikash.krishna/blog/2008/09/23/crm-2007-how-to--2-a-transaction-launcher
    However when I launch the transaction, I get SAP Logon prompt from ERP server as expected. When I enter credentials correctly, I get an embedded window with SAP GUI menu (only two options Menu and System and field to enter Tcode) and empty screen area .
    Now if I enter he tcode in opened empty window say "/nva03" , I am able to start the transaction.
    Any clues on why the transaction does not launch correctly?
    Thanks

    Hi,
    I get the same problem, but it gets back to CRM. I think the problem is that http://<server>:<port>/sap/bc/gui/sap/its/webgui/!?*transaction=IC_LTXE*&okcode=ICEXECUTE
    transaction=IC_ICLTXE should be replaced by the transaction ex: VA01 and it is not.
    Tell me if you have any clue.
    Tx
    Thomas

  • Search help is not working at Transaction Launcher

    Hi gurus,
    I create a transaction launch that calls a ZXXX t.code from same CRM system.
    T.code ZXXX is used to execute a custom report in order to create document from excel file.
    Everything is ok, but search help button is not working on web ui.
    Search help will open "my computer" pop up. I guess this cause problem. Is there anyone who met this problem before?
    Regards
    Sadi

    Hi,
    Is the search help button part of custom report and is it working fine in GUI ?
    What popup will come when we open that search help in GUI
    Regards,
    Shobhit

  • Transaction Launcher

    Hi,
    I have some doubts while launching the non-bsp url through transaction launcher.
    Question1. What is the significance of Get/Post method while defining the Non-bsp URL?
    I just added the Google Search link in my left navigation bar.
    When we "Define URLs and Parameters"
    (spro->crm->ui_framework->technical_role_definition->transaction_lanucher->define urls and parameters)
    I select the Post method. But when I clicked on the Google Search link in the Left Navigation Bar, it showed the error "Post method is NOT relevant for URL". I deleted the URL link and defined it again without any selecting method and it worked fine.
    Question2. Can we pass the parameter when Launch Transaction type is "URL transaction"? How many no of parameter can be passed and how?
    Thanks,
    Anup

    Thirumala,
    Trying to follow your logic here. I have created a Webdynpro app. We have CRM 7.0 and what I need to do is pass to the webdynpro app the sales doc number. Created a URL for the application with a parameter. Also created a transactional link with a parameter which I named the same the parameter value is //datacontextCURRENTCUSTOMER/BuilR3LastSalesDocRel/DOCNUMBER. You say to set this value and the parameter would be set automatically? Do I have to do some manipulation before you navigate to the application? Is there another way to set the value? Example:
    data: lv_navigation   type ref to  if_crm_ui_navigation_service,
              lo_link      type ref to if_bol_bo_property_access,
              data_collection  type ref to if_bol_bo_col.
        lo_link ?= cl_crm_uiu_bt_param_create=>if_ui_link_parameter_class~create_parameter_object(
                                                iv_link_id   = 'BILLINGDOC'
                                                iv_parameter = '0214396560' ).
        create object data_collection type cl_crm_bol_bo_col.
        data_collection->add(
                iv_entity    = lo_link
                iv_set_focus = abap_true ).
        lv_navigation = cl_crm_ui_navigation_service=>get_instance( me ).
        lv_navigation->navigate( iv_link_id = 'ZSLS-INV'
                                  iv_data_collection = data_collection ). "#EC NOTEXT UIF_PERS

  • Using the transaction launcher to call a BOR method to display a PDF

    Hello gurus,
    I have created a PDF icon and an onclick action to open a pdf, that displays on every row of an assignment block in the actions column, but I do not know the technical process to determine how to get a PDF from the IXOS system from the line selected. (even if I know it depends on an ID attribute of that assignment block) I want to to call a transaction launcher with the url for the pdf in the IXOS that has an ID that identifies which line in the assignment block the user has clicked the pdf icon for (does that make sense?)
    In CRM 4, in the collection factsheet assignment block, the link was coded into an XSLT which is then displayed in the GUI and you would have a clickable link for a pdf file in a row in a table. That link would be as follows:
             <xsl:variable name="ev_key">SAPEVENT:?OBJTYPE=<xsl:value-of select="attributes/OBJTYPE"/>&amp;OBJKEY=<xsl:value-of select="@KEY"/>&amp;LOGSYS=<xsl:value-of select="attributes/LOGSYS"/></xsl:variable>
                 <a href="{$ev_key}"></a>
    This will get the file in IXOS and display it, in CRM 4. In CRM 7, the link is an icon in every line of an assignment block.
    Here are some questions I have now for the functional side in the meantime:
    1) Can we fetch the PDF in IXOS for each line of an assignment block and have it open? If so, how? Transaction launcher, function modules (like ARCHIVOBJECT_DISPLAY) in the OPTA package? (the package for all IXOS related function modules..)
    2) Which URL should I call with the transaction launcher? a URL link to the PDF on the IXOS system?? or sapevent:xxx?
    3) Do we have to configure a transaction in the IMG to be launched with the attributes listed there? Do we have to link it to any classes/ objects?
    4) Do we have to have the code to the logical link dynamically to call the right PDF for each table line? Is it right to put this code in my event handler?? Usually transaction launchers are just in the nav bar.....
    5) Are there any existing examples of this or a similar functionality/ logic that I could refer to, preferably in CRM 7 WebUI?
    6) Do you have any code to just display a PDF in a new window? Or prompt a download?
    One possible way I thought of would be for me to have a logical link defined in the IMG for the transaction launcher, and have the attributes defined for my BOR object that I would call, and pass it different attributes (eg. objtype, objkey, logsys...) and then return the PDF and display it in the UI in a new browser window by itself. (There is a BOR method for my BOR object named  'display_pdf'!!!!)
    What do you think would be the optimal solution here? Does my theory of calling a BOR object with a transaction launcher to display a PDF make ANY sense whatsoever???
    Please do not hesitate to propose any potential solution. Any partial answers/ links to wikis/ other threads, anything would be much appreciated.
    Thank you in advance.
    Best regards,
    Jonathan Laplante
    Edited by: Jonathan Laplante on Jul 2, 2011 4:50 AM

    Hi Any help on this....I am still awaiting the response.
    Requirement: My requirement is to launch the SE38 transaction on WEBUI using transaction luncher tool and set the parameter on the selection screen.
    Issue: The issue is that I am able to lunch the transaction but unable to set the parameter
    Steps Performed:
    I want to list down all the steps I performed to launch an SE38 transaction using transaction launcher on the WEBUI
    1) Defined logical system in tcode CRMS_IC_CROSS_SYS
    -The logical link looks like this
    http://<server>:<port>/sap/bc/gui/sap/its/webgui/!?transaction=IC_LTXE&okcode=ICEXECUTE ?sap-client=300
    2) Defined URL & paratemeter wherein the request method is "GET", opted for NON-BSP URL
    URL link here is
    http://<server>:<port>/sap/bc/gui/sap/its/webgui/!?transaction=SE38&okcode=ONLI
    -Note: My selection screen okcode os ONLI*
    -The logical system ref is provided here
    3) Defined the parameter by giving the screen name like for SE38 selection screen name is "RS38M-PROGRAMM"
    4) Configured the transaction launcher of type B - URL type and provided the reference of the URL ID, choose the relevant parameter from the drop down and have hardcoded the value, cheked the box "Save Data in Activity Clipboard
    5) Added this in the NAvlink/Bus Role etc
    6) Now in the handler class of the TL the code looks like this:
    IF_CRM_IC_ACTION_HANDLER~PREPARE_DATA_FLOW
    __gdc ?=
    cl_crm_ui_data_context_srv=>get_instance( gv_view_controller ).
    __value
    =
    'ZC_TEST'.
    add_parameter(
       iv_name =
    'RS38M-PROGRAMM'
    iv_value = __value ).
    However, after performing the above steps I am unable to set the parameter. Please suggest where am I missing out on. An early response would really be appreciated.

  • Transaction Launcher Logical Systems and URLs

    Hi,
    I'm facing a problem with Transaction Launcher.
    I've done all the settings specified here: http://help.sap.com/saphelp_crm60/helpdata/en/46/231befc17b5872e10000000a11466f/frameset.htm
    Under section "Define Transaction Launcher Logical Systems and URLs" I've specified the values for Quality System: the ECC system is MQAS200A
    By the way, when I try to access an ERP Sales Order, the transaction CRM_TL_ERP_BUS2032_DISPLAY tries to access system MSVL200A (which is the Development ECC System).
    I cannot change the Logical System within the Transaction Launcher Configuration (currently it is set to ERP), since the Transaction is standard.
    Does anybody know how to map the generic value ERP with the correct value MQAS200A instead of MSVL200A?
    Thanks in advance,
    Regards,
    Andrea Ricci

    Hi,
    You cannot generalize the Logical system name, for the workaround you need to put the logical system for quality and transport it to quality and it should work and to check in dev you need to again change the log. sys to dev and save it but dont transport it. Similarly you can do for production system.
    Regards,
    Shobhit

Maybe you are looking for