Transaction Launcher: Logical System in Production System does not change

Hi,
I created a transaction launcher in the CRM development system (CRD) to launch the transaction IL02 in the ECC 6.0 system (ECD). Then I transported the changes from CRD to the CRM production system CRP. I also transported the changes from ECD to ECC production system ECP.
However, when I see the transaction launcher in CRP system, it is still configured for the URL of ECD. I want the transaction launcher to connect to ECP. One option I have is to change the class name in the CRP system. However, I am not allowed to create a new ABAP class in the production system. Is there any other way to change the target system automatically in production system?
Thanks,
Rohan.

Thanks Piyush. Could you be a bit more specific? I followed these steps:
1. In transaction CRMS_IC_CROSS_SYS, created a logical system URL for production system
2. In customizing setting Copy/Delete Launch Transactions, deleted the transaction launcher id.
3. In customizing setting Configure Transaction Launcher, created the same transaction launcher id newly.
I still am not able to change the logical system. However, I can do it if I change the class name.
While deleting the transaction launcher id, should I be deleting all dependencies?
Regards,
Rohan.

Similar Messages

  • Import status- import running does not change during the mass import of TR

    Dear All,
    I have successfully imported single requests in my newly installed SAP ECC EHP4 PRD system but when I have tried to import 8 transport requests(Mass Import) then the Import status is not changing from import running (Truck button still appears).
    But the effect of the request is seen in the production system but the status does not change.
    I have checked the logs and found that all the requests have been imported successfully but the Truck status does not change.
    I have restated the system but no use still the same.
    Thanks in Advance...
    Latha

    Import Running for a long time on ECC 6.0
    The background job RDDIMPDP is running on client 000 as well as the relevant client.
    Below is the TP System Log:
    WARNING: System CC6. Warning. 20090914042136 :
    WARNING: Background job not running properly. Function: G Jobcount: 04512801 Status: S.
    Please check the system. Use transactions SM21, SM37, SM50.
    WARNING: (This warning is harmless if no further warnings follow.)
    As per NOTE: 26966, it could be b'cause the background job process slots are occupied,
    Regards
    Vikas Nagar

  • 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

  • Product category does not exist in logical system

    Hello Experts,
    Need help in understanding product category change behaviour.
    Shopping cart created and approved.
    PO created and approved.
    Now PO change version created by changing product category.
    Please enlighten me whether this change is really allowed on business perspective and SAP perspective.
    So far we been told that there is business case to justify this change.
    If allowed by SAP, then how do we solve the problem of error occuring in workflow "product category does not exist in logical system XXXX".
    Please advise.
    Thanks,
    Gaurav

    Hi
    I dont have  a system right now to check
    1.are you ordering the item from external catalog? ( any  mapping between catalog product category to SAP product category )?
    2. after approved PO created.
    3. Now BUYER could change the product category again?
    4. why the BUYER takes push ups for REQUESTER . Let Buyer cancel the PO and ask requester to create a PO.
    What is the business process existing in your business ?
    Since product category determines purchase group and every thing like gl account etc..
    Can you recreate the same issue in development box?
    Note 1466155 - GL account not re-determined on change of product categorySymptom
    You have an SRM PO with items having multiple account assignment. Go to the PO item overview OR to the item basic data tab and change the product category. However, this does not trigger a new GL account determination for the accounting lines.
    Note 1407962 - Category is editable when contract is assigned in PO item
    Symptom
    When ever a Contract item (Free text or Product Category) is assigned to a Purchase order free text line item, The category modification is not allowed.  This is because the product category is always copied from the contract item and overrides the Category for Purchase Order Item. It is confusing for the user as the category is editable and can't be modified.
    SAP has different different behaviors . Kindly tell us what type you belongs too...

  • Problem when transporting form from DEV system to PRODUCTION system

    Hi Experts,
    We are developing forms in ABAP, for example there is a form developed in dev system and this form has JS coding in some UI elements events like initialize, on change and on exit; also has one script object defined as variable. this script object has some functions defined in order to do some common validations and field specific ones too.
    The form in DEV work fine, all the functions calling, all the validations and the events are working properly as expected. But there is a problem when we moved the changes done in development system into production system. Specifically the script object has the problem: even though the coding is the same in both systems, in production system we had an script error: "Body.CATALOGPARAMS has no properties", as if the Body.CATALOGPARAMS was never instanciated, or it is not defined...
    The code that produces this error is the following:
    var itemCount = 0;
    itemCount = Body.CATALOGPARAMS.DATA.instanceManager.count;
    CATALOGPARAMS is table defined as context table coming from an ABAP FM where is filled and passed into the form.
    In order to fix this problem I changed that part for the following
    var itemCount = 0;
    var catalogTable = null;
    catalogTable = xfa.resolveNode("Body.CATALOGPARAMS.DATA");
    itemCount = catalogTable.instanceManager.count;
    This still works as fine as the other in DEV system. But my question is: will I have the same problem when we transport the changes to production system, you have to know that a transport is not something that you can do every day, so I am taking precautions before the transport. Which of both coding is the best for doing this?
    Any observations, comments, questions in order to clarify some points are welcome, so please do it.
    In advance, thanks a lot.
    Mauricio.-
    Edited by: Mauricio Poblete on May 11, 2010 4:20 PM

    As always, you are the first one to reply... thanks for that!
    before everything, I activated the form, then I added this form to a new transport using se80 transaction: I navigated through the form objects and I added the form to a new transport by second click on the form -> other functions -> write transport entry. is this the correct way to assign a transport package with the entire form (including script objects, layouts, and all you told in the last reply)??
    Can you give me a guide on how-to add the specific parts to the same transport for forms?
    as always, thanks in advance.
    Mauricio.-

  • Error in Local Message System: RFC destination MB3AP1039 does not exist.

    Error in Local Message System: RFC destination MB3AP1039 does not exist. Message was Not Created
    Message no. BCOS088
    Hi,
         When iam creating a message from any system from HELP-CREATE SUPPORT MESSAGE it is throwing the above error message. Actually i need to send this message to SAP solution Manager Service Desk.
    Can anyone help me in resolving the above issue.
    Thanks & Regards,
    Mirza Kaleemulla Baig.

    Dear friend
    You have to of following option
    1.Define Service Desk destination in the R/3 systems:
    Note: for this you need to log in the R/3 system.
    Create the RFC between the Solution manager and R/3 system (Login to the R/3 system)
    2.a. Go to transaction SM30.
    b. In table/view field, enter BCOS_CUST. Then press the Maintain Button. See example below:
    c. Press the Continue button in the following screen:
    d. You should see the following screen, no entries should be seen in the table. Press the New Entries button:
    e. In the next screen, enter the following information:
    In the RFC Destination you should point to your Solution Manager destination RFC.
    0ss_msg   w   sm_bsmclnt_back    cust620     1.0
    shailesh

  • Source system 8(ODS name) does not exist

    Hi experts!
    When I transport some Process Chane from DEV to PRD I faced with issue that the source system 8(ODS name) does not exist.
    Is anyone faced with same error?
    Thx!

    Hi.......
    Look.......
    U cannot Transport it........First Right click on the Infoprovider in PRD >> Export Datasource...........then replicate it from bw myself........
    U hav to generate it in Production also.............hav u done this before replication.....?
    Regards,
    Debjani....

  • 10.9.1 installs, then system turns off and does not restart.

    10.9.1 installs, then system turns off and does not restart. When I eventually turn it back on, it installs again, then turns off.. Endless Cycle.. I have booted to restore disk, found errors that needed to be repaired and tried to repair them but system told me, after a few minutes, its not possible to repair. When I restart back to main disk, it shows the install AGAIN and then turns off.  Much appreciate any Ideas?

    All I can tell you is that:
    Antivirus software, aside from being next to useless on Macs, is a common source of problems with Mavericks.
    Google Drive was incompatible with Mavericks last time I looked.
    WD hard drives have software that comes on the drives that is incompatible with Mavericks, software that comes with the drives that they want you to install on your mac which is incompatible with Mavericks, and in some cases firmware in the hardware of the drive enclosure itself which is incompatible with Mavericks. And all of this software is completely unnecessary. The good folks at WD have really worked hard to ensure that their products won't work with Mavericks. Bless their little pointy corporate heads. I'll bet that's the last WD drive you'll buy.
    Basically you would need to get all this stuff uninstalled from your hard drive before it will reliably work with Mavericks. But even then, it might not work, because old/bad/incompatible software can alter your OS and the kernel such that uninstalling it won't help- the OS/kernel may be damaged such that you have no alternatives other than to erase the HD and start over. And anyway, currently you can't boot your HD to be able to access the Finder so unless you're going to spend a weekend with the Terminal you won't be able to uninstall that stuff in the first place. If I were you I'd just go ahead and erase the HD and install Mavericks from scratch.
    10.9.1 doesn't come on a CD. If you had another (working) mac you could make a bootable installer flash drive with DiskMaker X and an 8 GB key drive DiskMaker X (formerly Lion DiskMaker) , but then you'd still have the same problem, the incompatible software would still be on your HD, unless you erase it first before you try installing Mavericks again. So there's really nothing to gain by having the Mavericks installer on a disk.
    If you have a third party utility like Techtool Pro 7 you might be able to boot from the TechTool disk and repair your HD enough for it to boot.
    Message was edited by: arthur

  • "F11 System Recovery" during boot does not work after Cloning hard drive.

    Problem: “F11 System Recovery” during boot does not work after Cloning hard drive.
    HP Envy m6-1125dx UEFI Notebook Computer with GPT hard drive.
    Original Seagate Hard Disk GPT 700GB with Window 8.0_64 upgraded to Windows 8.1_64
    Startup Menu (F11 System Menu works properly) only on original hard drive.
    Following obtained from Disk Management & diskpart in Command Prompt.
                                     GPT Disk <700GB>
    Partition 1 WINRE NTFS Primary 235MB/400MB [Recovery]
    Partition 2 EFI System FAT32 (LBA) Primary 108MB/260MB [System]
    Partition 3 (NONE) Unformatted Primary 128MB/128MB [Reserve]
    Partition 4 Main NTFS Primary 90GB/195GB [Primary “C”]
    Partition 5 (NONE) NTFS Primary 372MB/450MB [Recovery]
    Partition 6 Data NTFS Primary 7GB/475GB [Primary “E”]
    Partition 7 NTFS Primary 26MB/350MB [Recovery]
    Partition 8 Recovery NTFS Primary 24GB/26GB [Recovery “D”]
    I have Cloned the original hard drive to a new HGST 1TB Hard Drive using four different methods (sector by sector):
    Acronis True Image 2015
    Acronis Backup for PC
    AOMEI Backupper Professional
    Macrium Reflect
    Each time the cloning process completes successfully and has the same original partition arrangement. The computer works properly except when trying to use the “F11 System Menu” key during boot. It gives the following error message:
    “Recovery
    Your PC needs to be repaired
    A required device isn’t connected or can’t be accessed.
    Error code: 0xc0000225
    You need to use the recovery tools on your installation media. If you don’t have any installation media (like a disc or USB device), contact your system administrator or PC manufacturer. “
    Any suggestions why the F11 System Recovery does not work during boot and how to fix the problem would be appreciated. I have does various disk checking and file checking on both the original and new hard drive with no errors.
    Thank you in advanced.

    Hi,
    How did you clone the HDD ? One-for-one or different method ?
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • SOLMAN 7.1 Assigning Hana database Technical system to product system

    Hi All,
    I am trying to assign a HANA database technical system to Product system.
    I am trying to do it in conventional way (i.e in LMDB TCODE--> Selected Product system-->Assign Technical system--> ).
    But I am getting below error.
    No local proposals; search remotely in SAP SMP (time-consuming).
    So wanted to know whether there is any other way for assigning Prodcut system to HANA DB Technical system.
    Please find the screen shot for the error message.
    Thanks & Regards,
    Solman Starter

    You can either use a product system that already exists for the ABAP system (if the ABAP system was already connected to Solution Manager) or create a new one. After all you should use the same product system for ABAP and HANA.
    Check this for further reference -
    Managed System Setup of HANA in Solution Manager 7.1 - SAP Solution Manager Setup - SCN Wiki

  • Help - Logic 8.0.2 update does not install

    The Logic 8.0.2 Update does not install on my machine. The installer goes through the motions very quickly and my Logic Pro app still indicates version 8.0.1. Logic node, Waveburner, etc. all seem to have updated to the .2 version. After not taking with Software Update, I downloaded the updater and that didn't work as well. I have also tried trashing the appropriate Receipt packages (though there was no Logic 8.0.2 receipt). Any help would be appreciated!!
    2x2.66 dual core Mac Pro, OSX 10.4.11
    Michael

    Thanks for your help, Erik. I just got off the phone with Apple support and the solution was dumber than dumb: somewhere along the line Logic Pro was renamed "Logic Pro 8" to distinguish it from ver. 7 still on my system. Renamed it "Logic Pro" and voila, the installer recognizes it!
    "mistakes were made..."
    Michael

  • Error message while saving a sales order "Product 10069995 does not have sc

    hi Friends,
    i am creating an order , enter the material,quantity, batch , correct price everything etc etc. while saving the order it gives an error message "Product 10069995 does not have schedules assigned"

    Hi Suman
    Use transaction code OMJJ and check the "Allowed Transactions" for customizing movement types.
    Kalpesh

  • Why the mouse pointer in Logic Pro does not change shape during work in OSX 10.9.1?

    I've a MacBook Pro Retina 15-inch Late 2013 and I'm using two external displays. One connected to to the HDMI port (display 1) the other to thunderbolt (display 2). The MacBook display is closed. I’m working with Logic Pro 9.1.8 (32bit) with OSX 10.9.1
    Why the mouse pointer in Logic Pro does not change shape during work???
    It was already difficult with OSX 10.9 but now after upgrading to 10.9.1 it's game over!
    At least before I could select which display use Logic Pro to have all the shape functions of the pointer. Not in both displays, so to be forced to edit in ONLY ONE of the two displays using this workaround: (right click on Logic icon in Dock: Option --> Desktop on Display 1). Now or I select “Option --> All Desktops” or does not work. However, by selecting all displays you say goodbye to Mission Control. This can’t be a solution!!!
    The amazing thing is that Nuendo has no problem while Logic Pro, Apple's native software, it can't!
    With Nuendo it’s indifferent in which display you are working, the shape of the mouse pointer changes shape depending on the requirement in both displays.
    This thing drives me crazy!
    Solutions?
    Here some ideas in other foums:
    http://www.logicprohelp.com/forum/viewtopic.php?f=1&t=86264
    But this aren't really solutions but workarounds. Use Logic in all desktops makes Mission Control useless!!

    I installed all over again by formatting as suggested by the genes of pro application support. Each plug-in, each virtual instrument, a job that lasted 3 days. And as suggested for each new plug-in I proceeded to check the proper functioning of Logic Pro and did each time a back up with Time Machine.
    The Result:
    Logic works as it should ONLY on the primary monitor and ONLY on the first desktop.
    BUT
    Reason and Nuendo dont' have this issue !!
    I believe that Apple developers are thinking only to mobile phones and things like messages or face time.
    And that's not all!
    After a few weeks, perhaps by installing a version of Adobe Acrobat, I say maybe because I'm not sure, logic has stopped working properly. Again problems with the mouse pointer.
    Luckily I had a back up! But now I'm terrified to install new programs. Thanks Apple!

  • HOW DO I REGISTER PRODUCT?  DOES NOT RECOGNIZE ID, ETC.

    How do I register product?  Does not recognize ID, etc.

    Which product exactly?
    What is your error message?
    Mac or Windows?

  • Replicated Product Id does not take to to Object Details

    Hi Experts
    in WEB UI->In Repair order Item page->Referance Oject Assignment block. On clicking on the Product Id link (this Product Id were created manually in CRM) , it takes to Object Details.
    where as other Product Id does not take to to Object Details, these Product Id replicated in CRM through equipment replication.
    How to fix this. Please help me with a way out.
    Thankls
    Chand

    Moz, I logged into your On Demand application and the problem was the administrator owner access and in step 2 and click on Related Information for Custom Object 1 and all the Related Inforamtion was set to "No Access". I changed it to "Full Access" and now you can import Custom Object 1 and see it under the account.
    Message was edited by:
    Bob B

Maybe you are looking for

  • ID5.5 image dpi cut from 300 to 150 in save as ps, acrobat to pdf

    When I submitted book interior to printer, they said some images were 150 dpi. I checked the ID file links, and they showed them as 300 dpi. My process to pdf was: from ID, save as postscript file, then use Acrobat Pro with the PDFx1a2001 profile to

  • Can't Burn Blu-Ray

    I recently filmed a wedding, edited in Premiere CS5, and encoded to  MPEG-Blu-Ray (.m2v files). I created a project in Encore CS5 and clicked  Build when I was ready. After it built the menus, it tried to begin the  burn. However, before it began, I

  • Exclusion of open sales order in credit management

    Hi friends, My requirement is that, all open sales orders should not be considered into credit management. Is this possible in simple credit check or Automatic creidt check? Tell me the settings. Regards Rama

  • How to make toolbar and tab font bigger??

    I can't see the tabs' font, it's too small. Safari was the same way and I downloaded Firefox hoping to fix it. The toolbar font is also too small. Help!

  • Uploading photo's

    My photographs are too high a resolution to upload to Kuler. How do I sort this ?