TREX registration to SLD doesn't work.

Hi everyone!
I have installed a new TREX 7.0 with the latest patch level and I have a real issue in the post task of the TREX installation guide. When the TREX tries to update the remote SLD with own data it get's an error message "HTTP ERROR CODE 400" Bad request. I'm using the default port 50000 and XISUPER as user to connect to the SLD. The SLD runs on the same instance as SAP XI. Is it possibly to run SAP XI 3.0 SP 18 with NW2004s TREX or do I need to upgrade the SAP XI instance to the latest WEB AS (ABAP & JAVA) to be able to communicate with the TREX? I have also updated the SLD with the latest CIM model and I'm now running out of ideas. So any suggestions would be nice.
Thanks!

Hello,
As a solution part please cerify that u have to apply the same patch level in ABAP+JAVA, also identify which is the lowest level patch required by TREX to be installed on the system.
I think the problem is in Patch level..if it is not then please follow all the procedure describe in "Installation - Search and Classification TREX Single Host.pdf" on service.sap.com
If it helpfull to u please dont forget to reward the points..
Thanks

Similar Messages

  • Defining SC dependencies in SLD doesn't work!

    Hello,
    we are using NWDI 2004. i created a new product and a new SC. So far, so good. but creating dependencies in build time for developing SC in SLD  doesn't work.
    I get the following mesage after creating the dependency:
    Created prerequisites to SANDBOXSC, 1.0 of xxx at BuildTime  (Details)
    but after refreshing there are no defined dependencies to find in usage dependencies list.
    unfortunately i cant find any log entry to analyze the problem.
    by deleting a defined dependency from usage dependency list is the same. i get a corresponding message but after refreshing the the entry is still in usage dependency list.
    i tried to define dependencies manually im CMS Web UI using Required Software Components and   get the following message:
    After adding a required SC manually, you must edit its dependencies in the CBS Build Compartment XML
    accordingly i change the XML of CBS Build Compartment using  "Check and Edit XML of CBS Build Compartment" in CMS Web UI.
    <dependencies>
    <used-compartment>sap.com_SAP_JTECHS_1</used-compartment>
    <used-compartment>sap.com_SAP-JEE_1</used-compartment>
    <used-compartment>sap.com_SAP_BUILDT_1</used-compartment>
    </dependencies>
    <build-variants>
    <build-variant name="default" required-for-activation="yes">
    <variant-mappings>
    <variant-mapping used-compartment="sap.com_SAP_JTECHS_1" used-variant-name="default"/>
    <variant-mapping used-compartment="sap.com_SAP-JEE_1" used-variant-name="default"/>
    <variant-mapping used-compartment="sap.com_SAP_BUILDT_1" used-variant-name="default"/>
    </variant-mappings>
    </build-variant>
    </build-variants>
    but after saving and restoring the track data the manually changed data were delated.  I suppose because of sync with SLD.
    any idea what is the reason for this and how to solve it?
    kind regards
    rouzbeh
    Edited by: Rouzbeh Nabatian on Feb 9, 2012 2:08 PM
    Edited by: Rouzbeh Nabatian on Feb 9, 2012 2:09 PM

    Hi Ravi,
    If you want to create DC there is no need to create software component and product , DC itself is a indepenedent container. DC is used to share different DC's
    example:
    dc1 -> go to your componect -> click add to public part (by addition your dc to public part it becomes available)
    dc2-> dcmetadata -> used dc's ->right click -> add used dc's
    in dc2 you will get all reference to all the compoenent for which u have done public part
    Hope it is becomes clear to you now.
    Regards,
    Hemant

  • Import into SLD does not work

    Hi to all,
    I want to synchronize the central sld of our production XI with the backup from the test sld, like in note 935474 grouping sld instances described. Import of CIM model works, import of backup of sld doesn't work. It is impossible to import a file bigger than 1023k. Import fails without error message in the log, only IE error message server not found.Is there a max upload size ? Don't know where to look ?
    thanks
    Bärbel

    Hi,
    Refer to  the section 3.4.2.3.4 of this doc:
    https://websmp104.sap-ag.de/~sapidb/011000358700000315022005E.PDF
    Regards,
    Kumar
    **Reward points if helpful!!!!!

  • Registration of TREX in the sld not working

    HI all,
    I need configuration the TREX for  complete instalation of xPD, but the registration on sld of trex no working, However However, I follow in the footsteps of the note 998708 and not working
    Any suggestions to solve the problem?
    Thank you

    It's the multicolored arrow in the bottom right. It has worked before today with no problems. I don't know why it just suddenly stopped working.

  • ALV Tree event registration doesn't work

    Hello Experts,
    the following is the registration-form which shall register a item-double-click event to my alv-tree-object. when doing the double-click it doesn't open my own methods in the event-handler class but the standard ones and nothing happens further.
    Any ideas?
    Many thanks in advance!
    Tobias
    FORM register_events.
      DATA: lt_events TYPE cntl_simple_events,
            l_event TYPE cntl_simple_event.
      CALL METHOD g_alv_tree->get_registered_events
        IMPORTING
          events = lt_events.
      l_event-eventid = cl_gui_column_tree=>eventid_item_double_click.
      APPEND l_event TO lt_events.
      CALL METHOD g_alv_tree->set_registered_events
        EXPORTING
          events                    = lt_events
        EXCEPTIONS
          cntl_error                = 1
          cntl_system_error         = 2
          illegal_event_combination = 3.
      IF sy-subrc <> 0.
        MESSAGE x208(00) WITH 'ERROR'.                          "#EC NOTEXT
      ENDIF.
      CREATE OBJECT event_handler.
      SET HANDLER event_handler->handle_item_double_click FOR g_alv_tree.
    ENDFORM.

    It doesn't matter where I place my double-click. The standard event handling "handle_event" is called.
    Instead of this I would like to have my coding.....
    Changing the cl_gui_alv_tree to cl_gui_column_tree doesn't work since my tree isn't a reference of column_tree but of alv_tree. So I would have to rebuild nearly the entire tree. This cannot be a solution since I guess the double-click item should work anyway.
    What I am wondering furthermore is my button declaration not being displayed. The following is my fieldcatalog declaration:
    FORM create_tree_fc.
      DATA: ls_fc TYPE lvc_s_fcat.
      DATA: lo_descrref   TYPE REF TO cl_abap_typedescr.
      DATA: lo_tableref TYPE REF TO cl_abap_tabledescr.
      DATA: lo_structref TYPE REF TO cl_abap_structdescr.
      FIELD-SYMBOLS: <fs_str> TYPE abap_compdescr.
      lo_tableref ?= cl_abap_tabledescr=>describe_by_data( lt_report_tree ).
      lo_descrref ?= lo_tableref->get_table_line_type( ).
      lo_structref ?= lo_descrref.
      CLEAR gt_fc[].
      LOOP AT lo_structref->components ASSIGNING <fs_str>.
        CLEAR ls_fc.
        ls_fc-fieldname = <fs_str>-name.
        ls_fc-intlen = <fs_str>-length.
        ls_fc-inttype = <fs_str>-type_kind.
        ls_fc-decimals = <fs_str>-decimals.
        CASE <fs_str>-name.
          WHEN 'PROCESS_TYPE'.
            ls_fc-tooltip = 'Process Type'.
            ls_fc-coltext = 'Process Type'.
            ls_fc-emphasize = 'C110'.
            ls_fc-no_sum = 'X'.
            ls_fc-style = cl_gui_column_tree=>item_class_button.
            ls_fc-outputlen = 20.
          WHEN 'SMI_PROJECT'.
            ls_fc-tooltip = 'Project Relation'.
            ls_fc-coltext = 'Project'.
            ls_fc-hotspot = 'X'.
            ls_fc-no_sum = 'X'.
            ls_fc-style = CL_GUI_ALV_GRID=>MC_STYLE_DISABLED.
            ls_fc-outputlen = <fs_str>-length.
          WHEN 'TRORDER_NUMBER'.
            ls_fc-tooltip = 'ID of Transport Request'.
            ls_fc-coltext = 'Transport Request'.
            ls_fc-no_sum = 'X'.
            ls_fc-style = CL_GUI_ALV_GRID=>MC_STYLE_HOTSPOT.
            ls_fc-outputlen = 30.
        ENDCASE.
        APPEND ls_fc TO gt_fc.
      ENDLOOP.
    ENDFORM.
    Edited by: Tobias Fickinger on Jun 10, 2009 9:59 AM
    Edited by: Tobias Fickinger on Jun 10, 2009 10:00 AM
    Edited by: Tobias Fickinger on Jun 10, 2009 10:03 AM

  • Acrobat Pro for Mac bought on Amazon;how can I register it?. registration code they give me, it doesn't work. (It has letters and the registration boxes won't accept letters.)  How do I get this to work?

    I purchased Acrobat Pro for Mac on Amazon. When I try to register with the registration code they give me, it doesn't work. (It has letters and the registration boxes won't accept letters.) How do I get this to work?

    If you don't have original install disks for your Mac, you can order replacements disks directly from Apple at a nominal cost. The original install DVDs are required to reset the password.
    If you have no data on your drive that you want to keep, you can boot up from the OSX Snow Leopard disk and install OSX SL.
    Insert the Snow Leopard DVD and hold the C key during startup. The Mac should boot from the CD/DVD drive into the installer.
    Follow the prompts, erase the disk and install OSX Snow Leopard.

  • Registration from within the product doesn't work?

    Hi!
    I bought a pre-installed license of photoshop and acrobat with my computer. I registered both products to my Adobe ID when I started the programs for the first time.
    But only Photoshop 11 shows up there and now shows me a serial number of the product.
    The Acrobat program works fine and seems to be registered (at least it doesn't ask for registration anymore), but doesn't show up in my account.
    So I don't get a serial number this way. The seller (Sony Online Store) tells me that they don't hand out any serial numbers since the pre-installed programs are supposed the register automatically (as photoshop indeed did).
    I tried to get help from Adobe Support, but they just keep asking me about the serial number ... instead of telling me how to get it ... or why the registration from within the product works fine for one product but not for the other.
    So what can I do?
    Cheers,
    Martin

    You might check with the Kim Komando site about reading your SN. It is strange that Sony will not give it to you. If you ever have to reinstall it, you will need the SN. Also, I recommend you backup the installation file for these programs (you may have to download the trials) so that you have them for the future. It may be that they are on a CD or separate HD partition and that would be fine. However, it is always a good idea to have a backup of software you own for any time you need to reinstall for some reason (if you read the posts on this forum very much, you find a lot of folks reinstalling or trying to find the software they did not backup so they can reinstall on a new computer or replacement HD after a crash).

  • SLD Update doesn't work anymore

    Hi everybody,
    I have a strange problem with our SLD landscape. Overall we have 3 SLD. The productive PI (PIP) SLD contains all productive systems, the develop PI SLD (PID) contains all develop and quality assurance systems. Both SLDs are configured to forward those informations to the SLD of the solution manager.
    It works for a long time but since a few days the productive PI SLD doesn't forward any information and I have no clue why. I can see only one log entry.
    #3621 10/17/2011 10:46:48.193 [Thread-1389239] INFO com.sap.sld.api.builder.app.DefineHostedSystem: Communication exception in SLD ping (HTTP 401 = UNAUTHORIZED): http://PIP01:58500/sld/cimom, namespace sld/active.
    PIP can't ping and access itselfes?
    The configuration of SLD Bridge in PID and PIP are identical, latest CIM is imported in all systems, same user to connect the SLD to solution manager.
    Any idea?
    Kind regards,
    Andy

    Hi Joe,
    Clients can update their records to the PIP SLD. Thats the point where I noticed that replication doesn't work. I added a new productive SAP System via RZ70 to SLD but I didn't get the information in Solution Manager in SMSY. For development and quality assurance systems it works well with SLD of PID.
    I use the same user to connect, but can't find any error in logs whether I turned on log level to fine. In Administration I can see
    Updated SLDs:
    http://versap01:55000/sld
    (local) sld/active
    If I sort the Server in Technical Systems by Last Update all looks fine in PIP but not in SLD of Solution Manager.

  • My apple-id doesn't work with Xcode as a developer. Registration is completed, but the program don't know me as a developers ID.

    My apple-id doesn't work with Xcode as a developer. Registration is completed, but the program don't know me as a developers ID.

    Something as simple as your method of payment having expired could be causing your problems. Use the link below to check all info, especially your payment info, for your Apple ID.
    https://appleid.apple.com

  • I purchased Adobe Acrobat Pro XI via email download via the Dell Store yesterday. The product key doesn't work/fit into any of the "Registration" templates I've look through on the Adobe website. Manufacturer Part # 65195473.

    I purchased Adobe Acrobat Pro XI via email download code via the Dell Store yesterday. The product key given doesn't work/fit into the boxes on any of the "Register" pages on the Adobe website. Therefore, although I paid for the product and it is downloaded, it is not "installed" and will not work to print documents from emails, etc.

    Hi williamc48321229,
    You must have received redemption code via email from the reseller.
    Please ensure that you are entering the right code as that would be needed to obtain the serial number for activating the product.
    For more details on this, please refer:
    Find your serial number quickly
    Hope this helps.
    regards,
    Anubha

  • SLD Check Failed (LCR_LIST_BUSINESS_SYSTEMS function doesn't work)

    Hi all,
    I have done SLDCHECK but then got this result below :
    Already verify all the user working fine, please advise me.
    Thank you and Regards
    Fernand
    Properties of RFC destination SAPSLDAPI
      RFC host:
    %%RFCSERVER%%
      program id:      NWA_PROGRAM
      gateway host:
    demokl
      gateway service: sapgw01
    Testing the RFC connection to the SLD java client...
    RFC ping was successful
    SLD server access settings:
      host name:   demokl
      port number: 50100
      user       : SLDDSUSER
    Use transaction SLDAPICUST if you wish to maintain the SLD server access data
    Launching the SLD GUI in a separate browser window...
    => Verify in the browser GUI that the SLD is in a healthy running state!
    Calling function LCR_LIST_BUSINESS_SYSTEMS
    Retrieving data from the SLD server...
    Function call returned exception code     4
    => Check whether the SLD is running!
    Summary: Connection to SLD does not work
    => Check SLD function and configurations

    hi
    check sldapicust - tX
    it has to be PIAPPLUSER there
    change it to PIAPPLUSER and it will work
    regards
    krishna
    Message was edited by:
            Krishnamoorthy Ramakrishnan

  • Tryoing to play QVR. Works on a MAC with version 7. Doesn't work the same using Version 10.

    Have some .mov files that work just find on my MAC that has QVR player version 7. When I try these same files on a MAC that was recently updated automatically and has QVR version 10, the .mov doesn't work the same way.  Is there a way to set parameters in version 120 to behave like version 7 or alternatively can I download version 7?

    Mac OS X 10.6 includes QuickTime versions 10.0 and 7.6.3. The QuickTime 7 player will only be present if a QuickTime Pro key was present at the time of installation, or if specified as part of a custom install, or individually downloaded:
    http://support.apple.com/kb/dl923
    Snow Leopard update 10.6.4 included an update to 7.6.6 (if installed). You can install it from the above link  even though it says for 10.6.3. It's the same version of QuickTime Player 7.6.6.
    (Only QuickTime Player 7.6.3 or 7.6.6 can be updated to "Pro".)
    A Mac OS X v10.6, OS X Lion, and OS X Mountain Lion-compatible version of QuickTime Player 7 is available for use with older media or with AppleScript-based workflows. QuickTime Player 7 can be used to playback formats such as QTVR, interactive QuickTime Movies, and MIDI files. Also, it supports QuickTime 7 Pro registration codes for access to QuickTime Pro functionality.
    How to install Quicktime Player 7 on Snow Leopard, Lion and Mountain Lion when it is not already present:
    http://support.apple.com/kb/HT3678?viewlocale=en_US&locale=en_US

  • New laptop & OS (Win8); have Pro 7 which doesn't work...what do I update to?

    I have a new laptop with Windows 8 and have tried to download Acrobat Pro Ver 7, which doesn't work on Win 8 as I've found out.  What do I need to update to for a compatible program?  Do I have to buy an entirely new product or can I just upgrade?

    Thanks Klaus,
    It's a long time since I installed a new OS but I thought you had to go through registration before it would work. You certainly have to supply your name and address, and then it prompts you to register. Will it let you skip that step?
    If the new owner can do that, why would he need the install disks? And how do I get through to the right person at Apple?

  • Microsoft Outlook doesn't work properly since I updated to Mavericks?!

    Hello.. so yeah ever since I updated to Mavericks, Outlook from Microsoft Office 2011 doesn's work properly. It won't pop up with a window to either reply, forward or write a new e-mail and it gets annoying because I need it for work. So it's totally useless. I don't want to be deleting and installing MO again because my friend did it for me and I don't know all the registration details to prove it's legit or something and I don't want stuff deleted. Sooo.... can anyone help? I don't know how to get it to work, so frustrating!

    What Apple wants from his customers?
    1) I've paid my iPhone 4S 900 euros;
    2) I'm used to buy music and apps from iTunes store;
    3) my iCloud space costs 32 euros per year
    and, like me, millions of customers around the world!
    and Apple does not allow me (and many others) to use the internet traffic for which I (we) pay my (our) provider, that's not among those that directly sell iPhone??? Is this your idea of a really unblocked device as you falsely declsre from the pages of Apple online store ?!? Shame on you!
    If I had know that the 7.1 led to this I'd never updated my iPhone. No one (Apple and the sites that live because of her) told about this issue in their enthusiastic comments on the new, updated version, of iOS. Shame on you!
    This would claim a class action against such a behaviour!
    I'm disgusted
    thank you
    Giacomo - ITALY

  • Login/sso doesn't work suddenly

    Hello forum,
    we have a little problem with our productive PI 7.0. Out of a sudden the login on Repositoy and Directory doesn't work anymore. RWB, ABAP login and SLD work properly. Out admin is on holiday and hopefully hasn't changed anything to our user data... Is there a task or anything which could cause this?
    If yes, how to fix it?
    Regards
    Christian

    HI,
            You can do soft restart through tcode SMICM on Abap stack.
            Tab --> Administration --> ICM  --> J2EE Instance --> Send Soft Shutdown --> With Restart.
    It will restart only java stack.
    Regards,
    Anurag

Maybe you are looking for