ICM active -- NO CONNECTION for all AppServers (using TREX host names / IP

Hi Experts,
Our Basis team has set up new BWA Box for a Quality. When i went to a transaction "RSDDBIAMON" I am getting below error.
Q27: ICM active --> NO CONNECTION for all AppServers (using TREX host names / IP addresses). Configure ICM/TCM connection in SAP
RFC Connection is working. I have tested it in sm59. Can anyone help to understan where will be the problem.
Regards,

In TREX Admin, I was able to check ICM error and got IP address.. After this got to know host-name of the server is different from configured in ICM.

Similar Messages

  • How does select stmt with for all entries uses Indexes

    Hello all,
    I goes through a number of documents but still confused how does select for all entries uses indexes if fields are not in sequences. i got pretty much the same results if i take like two cases on Hr tables HRP1000 and HRP1001(with for all entries based upon hrp1000). Here is the sequence of index fields on hrp1001 (MANDT, OTYPE, OBJID, PLVAR, RSIGN, RELAT, ISTAT, PRIOX, BEGDA, ENDDA, VARYF, SEQNR). in second case objid field is in sequence as in defined Index but i dont see significant increase in field even though the number of records are around 30000. My question is does it make a differrence to use field sequence (same as in table indexes) in comparison to redundant field sequence (not same as defined in table indexes), secondly how we can ge tto know if table index is used in Select for entries query i tried Explain in ST05 but its not clear if it uses any index at all in hrp1001 read.
    here is the sample code i use to get test results.
    test case 1
    REPORT  zdemo_perf_select.
    DATA: it_hrp1000 TYPE STANDARD TABLE OF hrp1000 WITH HEADER LINE.
    DATA: it_hrp1001 TYPE STANDARD TABLE OF hrp1001 WITH HEADER LINE.
    DATA: it_hrp1007 TYPE STANDARD TABLE OF hrp1007 WITH HEADER LINE.
    DATA: it_pa0000 TYPE STANDARD TABLE OF pa0000 WITH HEADER LINE.
    DATA: it_pa0001 TYPE STANDARD TABLE OF pa0001 WITH HEADER LINE.
    DATA: it_pa0002 TYPE STANDARD TABLE OF pa0002 WITH HEADER LINE.
    DATA: it_pa0105_10 TYPE STANDARD TABLE OF pa0105 WITH HEADER LINE.
    DATA: it_pa0105_20 TYPE STANDARD TABLE OF pa0105 WITH HEADER LINE.
    DATA: t1 TYPE timestampl,
          t2 TYPE timestampl,
          t3 TYPE timestampl 
    SELECT * FROM hrp1000 CLIENT SPECIFIED  INTO TABLE it_hrp1000 bypassing buffer
                WHERE mandt EQ sy-mandt AND
                      plvar EQ '01' AND
                      otype EQ 'S'AND
                      istat EQ '1' AND
                      begda <= sy-datum AND
                      endda >= sy-datum AND
                      langu EQ 'EN'.
    GET TIME STAMP FIELD t1.
    SELECT * FROM hrp1001 CLIENT SPECIFIED INTO TABLE it_hrp1001 bypassing buffer
                FOR ALL ENTRIES IN it_hrp1000
                 WHERE mandt EQ sy-mandt AND
                        otype EQ 'S' AND
    *                    objid EQ it_hrp1000-objid and
                        plvar EQ '01' AND
                        rsign EQ 'B' AND
                        relat EQ '007' AND
                        istat EQ '1' AND
                        begda LT sy-datum AND
                        endda GT sy-datum and
                        sclas EQ 'C' and
                        objid EQ it_hrp1000-objid.
    *                    %_hints mssqlnt 'INDEX(HRP1001~0)'.
    *delete it_hrp1001 where sclas ne 'C'.
    GET TIME STAMP FIELD t2.
    t3 = t1 - t2.
    WRITE: 'Time taken - ', t3.
    test case 2
    REPORT  zdemo_perf_select.
    DATA: it_hrp1000 TYPE STANDARD TABLE OF hrp1000 WITH HEADER LINE.
    DATA: it_hrp1001 TYPE STANDARD TABLE OF hrp1001 WITH HEADER LINE.
    DATA: it_hrp1007 TYPE STANDARD TABLE OF hrp1007 WITH HEADER LINE.
    DATA: it_pa0000 TYPE STANDARD TABLE OF pa0000 WITH HEADER LINE.
    DATA: it_pa0001 TYPE STANDARD TABLE OF pa0001 WITH HEADER LINE.
    DATA: it_pa0002 TYPE STANDARD TABLE OF pa0002 WITH HEADER LINE.
    DATA: it_pa0105_10 TYPE STANDARD TABLE OF pa0105 WITH HEADER LINE.
    DATA: it_pa0105_20 TYPE STANDARD TABLE OF pa0105 WITH HEADER LINE.
    DATA: t1 TYPE timestampl,
          t2 TYPE timestampl,
          t3 TYPE timestampl 
    SELECT * FROM hrp1000 CLIENT SPECIFIED  INTO TABLE it_hrp1000 bypassing buffer
                WHERE mandt EQ sy-mandt AND
                      plvar EQ '01' AND
                      otype EQ 'S'AND
                      istat EQ '1' AND
                      begda <= sy-datum AND
                      endda >= sy-datum AND
                      langu EQ 'EN'.
    GET TIME STAMP FIELD t1.
    SELECT * FROM hrp1001 CLIENT SPECIFIED INTO TABLE it_hrp1001 bypassing buffer
                FOR ALL ENTRIES IN it_hrp1000
                 WHERE mandt EQ sy-mandt AND
                        otype EQ 'S' AND
                        objid EQ it_hrp1000-objid and
                        plvar EQ '01' AND
                        rsign EQ 'B' AND
                        relat EQ '007' AND
                        istat EQ '1' AND
                        begda LT sy-datum AND
                        endda GT sy-datum and
                        sclas EQ 'C'." and
    *                    objid EQ it_hrp1000-objid.
    *                    %_hints mssqlnt 'INDEX(HRP1001~0)'.
    *delete it_hrp1001 where sclas ne 'C'.
    GET TIME STAMP FIELD t2.
    t3 = t1 - t2.
    WRITE: 'Time taken - ', t3.

    Mani wrote:
    Thank you for your answer, its very helpful but i am still nor sure how does parameter rsdb/max_blocking_factor affect records size.
    Hi,
    The blocking affects the size of the statement and the memory structures for returning the result.
    So if your itab has 500 rows and your blocking is 5, the very same statement will be executed 100 times.
    Nothing good or bad about this so far.
    Assume, your average result for an inlist 5 statement is 25 records with an average size of 109 bytes.
    You average result size will be 2725 byte plus overhead which will nearly perfectly fit into two 1500 byte ethernet frames.
    Nothing to do in this case.
    Assume your average result for an inlist 5 statement is 7 records with an average size of 67 bytes.
    You average result size will be ~ 470 byte plus overhead which will only fill 1/3 of a 1500 byte ethernet frame.
    In this case, setting the blocking to 12 ... 15 will give you 66% network transfer performance gain,
    and reduces the number of calls to the DB by 50%, giving additional benefit.
    Now this is an extreme example. The longer the average row length is, the lower will be the average loss in the network.
    You have the same effects in memory structures, but on that layer you are fighting single micro seconds instead of
    hundreds of these, so in real life it is rarely measurable.
    Depending on table-statistics, oracle might decide for short inlists to use a concatanation instead of an inlist.
    This is supposed to be more costy, but I never had a case where I could proove a big difference.
    Values from 5 to 15 for blocking seem to be ok for me. If you have special statements in customer coding,
    it #might# be benefitial to do the mentioned calculations and do some network tracing to see if you can squeeze your
    network efficiency by tuning the blocking.
    If you have jumbo frames enabled, it might be worth to be analyzed as well.
    If you are only on a DB-CI system that is loopback connected to the DB, I doubt there might be a big outcome.
    Hope this helps
    Volker

  • Can't get around this error after adding second dataset...A scope is required for all aggregates used outside of a data region unless the report contains exactly one dataset

    I added a dataset to an existing report and broke an aggregation.  In the old (i.e. single dataset) report, this expression below worked fine.  I wanted to get a distinct count of the vst_ext_id field when my educated field was like "VTE1*"
    = CountDistinct(IIF(Fields!educated.Value like "VTE1*", Fields!vst_ext_id.Value, Nothing))
    After adding a new dataset, this no longer works and I get the error " A scope is required for all aggregates used outside of a data region unless the report contains exactly one dataset".  Having done some research online, I found that I
    needed to specify my dataset explicitly and I thought this new expression might work, but still no success...
    = CountDistinct(IIF(Fields!educated.Value,"DataSet1" like "VTE12*", Fields!vst_ext_id.Value,"DataSet1", Nothing))
    Am I missing something?  Based on online responses, this explicit dataset naming convention seems to help most people, but it isn't working for me. 
    Thanks in advance!
    Brian

    I found the answer.  Apparently, my expression syntax was off.  This expression does the trick...
    = CountDistinct(IIF(Fields!educated.Value like "VTE12*", Fields!vst_ext_id.Value,Nothing),"DataSet1")
    I just happened upon this particular syntax searching online.  I was trying to specify the dataset name after each .value, but I never got that to work.   This is the only time I have found this particular syntax online. 

  • Material creation for All VIEW using BAPI Function modules

    Dear All,
                 I want to create materials for all views using BAPI F.Ms. By using BAPI_MATERIAL_SAVEDATA i have extended materials for for only specified views. now my requirement is to create Material with All views including Classfication view also. For this i found BAPI_OBJCL_CREATEFM.
             Tell me that shall i use both Fm's at time to create material.Will it work? According to my knowledge we need to create Characters first ,then we should  assign this character to this class, then while creation of material we should select this class .
            so pls guide me the procedure to follow for both FM's .
    Note : Pls don't suggest me LSMW OR BDC procedure.
    regards,
    Prashanth Maturu.

    Hi prashanth,
    U can use both the FM. using BAPI_MATERIAL_SAVEDATA u can create all the views and for classification view use BAPI_OBJCL_CREATE. before assigning class to material u hve to make sure that the characteristics are uploaded and is attched to the class using transaction CL03.
    Regards,
    Anil N.

  • 2g data allowance in single line plan is only for 4g LTE or for all data using?

       I got a single line plan and an iPhone 5s a couple days ago.  I am confused the data allowance is for 4g LTE only or for all data using?  Thank you!

        Hello edsun1997
    I would love to answer this for you. You have 2 GB's to use on our network this will start over at the beginning of your cycle. If you use Wifi and turn off our network, Wifi would not go against that 2 GB bucket.
    JoeL_VZW
    Follow us on Twitter @VZWSupport

  • Is it possible to mass change desktop wall paper for all users using WGM?

    is it possible to mass change desktop wall paper for all users using WGM?

    yes, it's easy - change a machine to the desktop you want (the image must be on all the machines, with the same name, of course), find ~/library/preferences/com.apple.desktop.plist Copy that to your server (or just put it on a flash drive) In workgroup manager select preferences - details - "add". Navigate to that plist. (Optional - hit "edit" and cut and past from "often" to "always", then the user cannot change the desktop at all, if you leave it in "often" it will reset next log-on.)

  • REST url to get titles and description for all the lists in HOST WEB.

    What should be the REST url to get specific prperties for all the list in host web for SharePoint Hosted Apps.

    Hi,
    We can use the REST URI below:
    http://myAppweburl/_api/web/lists?$select=Title,Description
    More information:
    How to: Complete basic operations using SharePoint 2013 REST endpoints
    http://msdn.microsoft.com/en-us/library/office/jj164022(v=office.15).aspx
    Best Regards
    Dennis Guo
    TechNet Community Support

  • How to Install an APO Livecache on Windows Using Virtual Host Names

    Hi,
    How to Install Live Cache on windows using Virtual Host names?
    we are using SCM 4.0 with  live cache build 7.4.3 on two differnt servers.
    I have checked the Live cache CD (7.4.3) is with setup.cmd, where as it need use command sapinst.exe SAPINST_USE_HOSTNAME=Virtual hostname.
    Please advise.
    Thanks
    Anil

    a possible workaround (that I have no tested) is to temporarily name your server with the same of the virtual name, install. when completed, rename server to original name.
    This is not a proven method, but it might work.

  • Printer klling internet connection for all wifi devices in office

    Hi!
    We bought office jet 8600 pro and connected it to the main office desktop computer through ethernet cable. This main computer is also connected to wifi router.
    All other laptops in office are using wifi router for internet and for printing.
    As soon as we installed new printer it started to conflict with alll wifi devices in office. Basically all laptops and phones loosing internet connection for 2-15 minutes. Usually when somebody from main computer is using printer.
    I read in another thread about similar problem and tried to fix this by checking firmware version of router and making a static ip for printer. I put printer to 192.168.1.250. It didn't work, internet keep going down. As experiment i made a static ip for my own laptop too -192.168.1.50. it didn't work too. Need help. Thank you!
    http://www.estateblock.com - Real Estate Startup helping homebuyers and homesellers all over Canada.
    Real Estate Search Engine .

    Sorry. Actually we have 2 routers. First one is working as a connector for ethernet and another one is a wifi router. Printer is connected to the router(connector). Wi-fi router is connected to router(connector) too. 
    If printer is connected to the router(connector) every 5-10 minutes wi-fi for all computers in the office become restricted (without internet access). 
    As soon as you are pulling out the ethernet cable from printer, everything works fine. 
    There are two computers that sharing printer by ethernet cable. Others are using wi-fi connection through  both routers to connect to the printer. Wi-fi printing is working good by the way. 
    http://www.estateblock.com - Real Estate Startup helping homebuyers and homesellers all over Canada.
    Real Estate Search Engine .

  • Repository connection for all user

    Hi,
    I have following question. I have ODI studio installed on a machine. Many users are using this machine via remote desktop.
    I have created repository connection and I can succesfully connect. However other users of this PC when try to connect to repository do not see this connection in login name list and can not log in. How to make it vissible to all users? I can not create repository connection on all of theirs users accounts and not want to share maste repository db password.
    Best regards,
    Greg

    You can add a windows environment variable IDE_USER_DIR and setting it to a directory, then copy the config information from your user directory
    Have a read in Oracle Support - "How To Set Up A Shared ODI Studio Environment To Allow Multiple Users To Have Their Own Specific Folders On Microsoft Windows OS? [ID 1277560.1]"
    If you read the article it says to add a user folder I think if you don't enter the user folder and copy the config files from a user directory it may use one folder for all (though I can't remember to be honest)
    e.g. create IDE_USER_DIR and set it to C:\ODI_CONFIG
    Copy C:\Users\<USERNAME>\AppData\Roaming\odi\oracledi folder to C:\ODI_CONFIG
    If it doesn't work with one root folder then you can just create user directories under the directory set in IDE_USER_DIR and copy the config contents into each folder.
    Total Questions:     47 (39 unresolved)
    Do you really have 39 unresolved questions, I just ask because you have asked a number of questions recently on the planning forum and you never bother to mark them correct,helpful or answered.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to get a list of file paths for all files used in a project

    I have a project in Premiere Pro CC which has a large number of bins.  A sequence in one of these bins uses files from other bins.  I am trying to find the locations of all each of the files used  in the project.
    1)  Obviously I can select each clip in the timeline and show in finder, but there a lot of clips
    2) The video usage associated with each file in the project would help.  However
               1.  I haven't found a way to display only clips that have video useage if all of the bins have not been expanded.
              2.  Video usage  shows usage for all sequences, so one would have to manually check the pull down for each file to see if it is used in the sequence in question.
    3) I tried exporting the project to final cut pro xml.  The path url gives me the information that I need.  For some reason, however, when I do the export only one clip's information is there, not the information for all of the other clips in the project.
    4) I tired an export for speedgrade and all of the file names are there.  However the paths are not. 
    Basically I want to find all of the files in the project and relocate them to a specific folder for that project.  There's got to be a way to do this but I'm not seeing it ....

    Thanks for the suggestion concerning the file path.  And certainly it would have been nice to have done this before beginning.  However this is a project that has been around for quite a while, and the files have been moved into different bins.  And now the project sequence is being revised.
    So the problem is, worded slightly differently, how can I search all of the bins for the files that are used just by this sequence, ignoring the files which are used by other sequences?  Or, how can I get a list of the file paths of the files that are used in the sequence?

  • "playback failed" for all podcasts using ios7

    I just updated to IOS 7 and when I try to play a podcast that I am subscribed to, I get "playback failed" for all podcasts. The odd thing is that if I am connected via wifi, it seems to work fine. If wifi is not there, I get that error.
    I cannot seem to find a setting anywhere that gets around this.
    Help!

    See:
    iOS: Troubleshooting applications purchased from the App Store
    Restore from backup. See:
    iOS: How to back up              
    Restore to factory settings/new iPod

  • CMDLET commands regarding setting a default font for all users using OWA on an exchange 2010 platform

    HI,
    We are running Exchange 2010 and are migrating users from 2003 to 2010 with no problems.  The client has asked me to set OWA font to LuidaSans which I can do for individuals with no problems.  However, when I try and run the following command
    Get-Mailbox -Resultsize Unlimited | Set-MailboxMessageConfiguration -LucidaSans but then got a message to state
    "property composefontname can't be set on this object becuase it requires the object to have version 0.1 <8.0.535.0> or later.  The object's currant version is 0.0 <6.5.6500.0>"
    What object is this reffered to?  Can anyone help please?
    Thanks
    Paul

    Hi,
    To set a default font for all users, you can use this command: -
    Get-Mailbox | Set-MailboxMessageConfiguration -DefaultFontName "Trebuchet"
    You can use any font style in place of “Trebuchet”.
    I hope this information will be helpful for you.
    Thanks and regards
    Ashish@S 
    Ashish@V

  • Ensuring the agent is up for all targets on a host

    Had an issue where the DBA's did not notice the agent on one host was down until it was too late.
    Is there a way to validate without DBA intervention (from the repository or OMS) werther or not the agent is working for ALL databases in an environment?
    Any ideas appreciated.
    Chris

    In OEM:
    Select Preferences (top - right hand corner) -> Notification Rules -> Click "Subscribe (Send E-mail" on Agents Unreachable -> Apply
    Under Notification rules you will find several interesting notifications that OEM can email you about.
    Hope this helps.
    Cheers

  • I install Windows XP on 24" iMac through BootCamp, I can get mail but no internet?? I use Hughes Satellite connection for all (4 total) desk tops computers, then use wireless APPLE WI-FI  for portable devices ie, Mac Book, iPod Touch, iPad.

    I installed WindowsXP, home on 24" Mac through Boot Camps, (I'm on OX10.6) everything works just fine except for getting connection on Internet Explorer, I can receive  mail O.K. not sent through Outlook express, nowhere do I see the word Ethernet (which is connection I use on Mac) can anyone help?

    if it can receive emails then likely dns is the issue
    make sure the windows osx driver you make make in bootcamp in the osx end
    and make sure the windows nic is set to use hdcp and that the router you connect to support hdcp

Maybe you are looking for

  • Audio out of sync

    I have 2 Xl2s. Both running at the same time taping a performance. One is using tape, the other a HD recorder. When I do the capture of both streams, I am unable to sync the audio and video. Something I have done many times before with other cameras.

  • Help needed on Servlets and JSTL

    Hi I am using tomcat 5.5 and JDK 1.5. What are the softwares I have to download for compiling servlets and creating JSTL ?. Help needed. Thanks IndyaRaja

  • Displaying a JCombo Box in a Java bean with Forms9i

    I am including a java bean in my 9i form which uses some swing component such as combo box. The problem is that when I show the popup menu of the combo box, I cannot see the list items available in the box. Is that of L&F problem or is it a Form rend

  • Mass reversal of doc

    Hi Gurus This is related to my other thread FCHR reversal. All the checks cleared thru my the program FCHR has generated the docs (more then 1000) and affects a GL.Now I want to reverse these docs and nullify the GL. How to do the mass reversal of do

  • Reset Select List in Form With Report

    Hi, i have Created Form with Report Page. I have three select List on this page. 1-Market Name Select List with Redirect 2-Customer Name Select List with Redirect 3-Contect Person when i select market Name then Respective Customer name is select In t