When we use TEST(in command field) in tcode SM12?

When we use TEST(in command field) in tcode SM12?
I know this is for Extended analysis,But in what situvations it is really useful.?
Thanks,
Satish

As I said, I never needed to use that so I don´t know the functions behind it, it´s undocumented and that certainly for a reason
You will need to ask the people who developed that (in the development support @ SAP). It´s used for doing special tests, increase trace levels etc.
Markus

Similar Messages

  • *when we use at user -command and give smaple code fro at user-command*

    Hi experts,
    i am new to abap can any body tell me when we use AT USER-COMMAND and give a sample code for that.
    point will be rewarded.
    thanks.

    Hi,
    AT USER-COMMAND  is a list Event.This Event is triggered when user make an action on the Application Toolber Or Menubar.
    Here is the Program.
    START-OF-SELECTION.
      SET PF-STATUS 'TEST'.
      WRITE:  'Basic list, SY-LSIND =', sy-lsind.
    AT LINE-SELECTION.
      WRITE:  'LINE-SELECTION, SY-LSIND =', sy-lsind.
    AT USER-COMMAND.
      CASE sy-ucomm.
        WHEN 'TEST'.
          WRITE:  'TEST, SY-LSIND =', sy-lsind.
      ENDCASE.
    This program uses a status TEST, defined in the Menu Painter.
    Function key F5 has the function code TEST and the text Test for demo.
    Function code TEST is entered in the List menu.
    The function codes PICK and TEST are assigned to pushbuttons.
    The user can trigger the AT USER-COMMAND event either by pressing F5 , or by choosing List -> Test for demo, or by choosing the pushbutton 'Test for demo'.The user can trigger the AT LINE-SELECTION event by selecting a line.
    Hopr This Will help You.
    Regards,
    Sujit

  • When to use GET LATE command in LDB

    Hi,
    Can anyone tell me the the use of GET LATE command in logical database,
    when to use this..
    example will be more helpful.
    Regards,
    Mrunal

    Hi Frd
            If you want to perform calculations or other operations which are not associated with certain additional fields, you can formulate ABAP code for the GET and GET LATE events of a logical database table when creating an InfoSet. The code for GET events is particularly important if you have defined parameters or selection criteria for the InfoSet. It is here that you must define the code to check whether a table line is to be evaluated or not.
    Example
    REPORT demo_program_get_late.
    NODES: spfli, sflight, sbook.
    DATA weight TYPE i VALUE 0.
    START-OF-SELECTION.
      WRITE 'Test Program for GET node LATE'.
    GET spfli.
      SKIP.
      WRITE: / 'Carrid:', spfli-carrid,
               'Connid:', spfli-connid,
             / 'From:  ', spfli-cityfrom,
               'To:    ', spfli-cityto.
      ULINE.
    GET sflight.
      SKIP.
      WRITE: / 'Date:', sflight-fldate.
    GET sbook.
      weight = weight + sbook-luggweight.
    GET sflight LATE.
      WRITE: / 'Total luggage weight =', weight.
      ULINE.
      weight = 0.
    Reward Me Point
    By
    Pari

  • Terminal does something strange when I use the 'say' command

    Hello,
    I use terminal frequently and have just nocticed something odd. When ever I use the 'say' command it said this:
               -                 -iMac:~                  $ say hello
    objc[1281]: Object 0x7ffcc2b1ee60 of class NSRunningApplication autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    It doesn't really bother me, but I just want to make sure it is nothing serious
    - Thanks

    Could you describe this in more detail: did Firefox prevoiusly split the image over two pages and now it no longer does that?
    Or is the problem that there are two images, and if they do not both fit on the first page, Firefox is not printing the second page?
    Some page layouts may not print well when split across pages; there are some longstanding Firefox bugs. If this just started recently, those might not be relevant...
    Could you give an example URL of a page that has this problem, and indicate where the cutover is between scale percentages that work and those that no longer work?

  • When I use Find Font command from Type menu, the overprint fill changed!

    Can any one tell why the overprint fill attribute checked when I use Find Font from Type menu to simple change the font.
    Try this Illustrator file from this URL:
    https://docs.google.com/open?id=0BysC4QT512vCY2YzZDRkMGEtMjNmMy00MDE2LWFmNzQtNTBhNDQ5MTBlO Dk1
    and change the font of letter B in the illustration using Find Font command to and font and notice how the overprint fill changed from uncheched to checked.

    The problem happens here, even if I first change the color to CMYK 0000 prior to using find font.
    Anything we need to know about the history of this file, was it originally a pdf, or those text objects.
    Manually changing the font does not turn overprint on, Find Font is toggling the overprint value in the code for this probably due to somehting abnormal in the code, or maybe be associated to this font's name triggers this glitch.

  • Workarea field is changing to ********* when i use at new command

    Hi All,
    I have a workarea. In that work area i have a field (zsample -zbill_zrass). I am using  at new statement.
    My problem is when i debug the code, am able to see that when the control goes inside at new statement, my field (zsample -zbill_zrass). which is holding a number is changing into ***********.  I have attached the code below for your reference.
    Please help me to solve this issue.
    loop at lt_zsample[] into wa_ zsample.
          clear wa_usr_addr.
          read table it_usr_addr into wa_usr_addr
                            with key accnt = zsample -zbill_zrass.
          if sy-subrc = 0.
            CONCATENATE lv_string zsample -zbill_zreff into wa_temp-zbill_zreff
                           SEPARATED BY space.
            wa_temp-zbill_zrass   = zsample -zbill_zrass.
            wa_temp-accnt        = wa_usr_addr-accnt.
            wa_temp-smtp_addr    = wa_usr_addr-smtp_addr.
            lv_temp = lv_string.
            lv_string = wa_temp-zbill_zreff.
            at new zbill_zrass.   -
    >  when control goes inside this (at new ) my problem occurs
              clear lv_string.
              if lt_temp is not initial.
                describe table lt_temp lines lv_line.
                read table lt_temp into wa_temp index lv_line .
                if sy-subrc is initial.
                  wa_temp-zbill_zreff = lv_temp.
                  modify lt_temp index lv_line from wa_temp TRANSPORTING zbill_zreff.
                endif.
                clear wa_temp.
              endif.
              wa_temp-zbill_zreff  = wa_ zsample -zbill_zreff.
              wa_temp-zbill_zrass   = wa_zsample -zbill_zrass.
              wa_temp-accnt        = wa_usr_addr-accnt.
              wa_temp-smtp_addr    = wa_usr_addr-smtp_addr.
              lv_string = wa_temp-zbill_zreff.
              append wa_temp to lt_temp.
              clear wa_temp.
            endat.
          endif.
    clear wa_sample.
    endloop.

    Hi, Mohamed Aslam 
    Suppose you have the following Internal Table.
    Field1 Field2 Field3
    When ever you will use AT NEW, AT END or AT LAST mean any of Control Break Statement one the Field1 you will find all the Fields on the right hand side of that field as *** Stars in it, Suppose if you will use these all on Field2 than Field1 OK Field2 will also be OK but Field3 will again have Stars to over come this you can define a new work are and just before going into these Statement's Blocks assigns the current work area to that one just like the following.
    wa_all_ok = wa_stars.
    than do your processing on that wa_all_ok instead of wa_stars
    Please Reply if any Confusion,
    Best Regards,
    Faisal

  • Why does empty folder reappear on desktop in XP when I use Save As command

    I'm running XP_SP3 with Firefox 8.0.1. I had an empty folder on my desktop named "D E M O " which I used to use for downloads. I moved it to another HD on my system and deleted it from the desktop.
    Now, any time I DL ANY type of file with Firefox, that folder reappears on the desktop as soon as I hit File, Save As. I tested this out with IE6. IE6 does not recreate the folder.

    you hit it on the nail. i had suspected such a thing, but the folder was always empty when it reappeared. however, that was the answer. I thought i had told it to always ask. But, since it was always downloading straight to the desktop, i was reluctant to accept that as an answer. Sureenough,however, I HAD told it to DL there, even though it wasn't. So, it seems to be fixe. And, no, that wasn't a silly question. A silly question would have been something like, "did you smear peanut butter on your CPU before the incident? Thanks anyway. You were smarter than a whole lot on netusers, and now, so am I, again, just like the good old days when folks actually tried to help each other out instead of selling adware.

  • Help! Strange things happen when I use Get Info command

    Hi, I have updated iTunes for 7.7.1, and since then a strange thing happen: whenever I pick a Smart Playlist, select a song and use the Command-I, the Get Info screen appears for a few seconds, and then the "Cancel" button is highlighted, as if I had clicked on it, and the screen is closed.
    Funny thing is that I am not clicking the "Cancel" button, but it happens automatically after a few seconds, and only with songs in the Smart Playlists. I haven't found a thing about it at the Discussion forums, can anyone help?

    In iTunes, right click on the file and Get Info.
    Make sure it is marked Remember Playback Position.

  • My computer hangs when I use help menu command

    Is there a problem with the LabView help command when help is launched from a dialog box? My computer will hang when I do this and I must reboot to recover. I can't access any other program, including task manager.

    Hi,
    How exactly are you launching the LabVIEW help?  Furthermore, is there a .cpp error associated when trying to open up the help file?  Are you able to open up the help file directly through windows explorer by going to: C:\Program Files\National Instruments\LabVIEW 8.2\help  >>lvhelp.chm
    I hope this helps
    Regards,
    Nadim
    Applications Engineering
    National Instruments

  • I am getting errors when I use the make command

    I am trying to install this software and the ./configure went smoothly but the "make" command is giving me several warnings and a few errors which I am not sure how to fix
    this is the output of make
    Makefile:847: warning: overriding commands for target `clean-bcheck'
    Makefile:825: warning: ignoring old commands for target `clean-bcheck'
    Makefile:852: warning: overriding commands for target `bcheck-am'
    Makefile:830: warning: ignoring old commands for target `bcheck-am'
    Makefile:869: warning: overriding commands for target `clean-bcheck'
    Makefile:847: warning: ignoring old commands for target `clean-bcheck'
    Makefile:874: warning: overriding commands for target `bcheck-am'
    Makefile:852: warning: ignoring old commands for target `bcheck-am'
    Makefile:906: warning: overriding commands for target `clean-bcheck'
    Makefile:869: warning: ignoring old commands for target `clean-bcheck'
    Makefile:911: warning: overriding commands for target `bcheck-am'
    Makefile:874: warning: ignoring old commands for target `bcheck-am'
    make all-recursive
    make[1]: Entering directory `/home/link/Docs/Builds/Astro/skylendar-1.7.1'
    Makefile:847: warning: overriding commands for target `clean-bcheck'
    Makefile:825: warning: ignoring old commands for target `clean-bcheck'
    Makefile:852: warning: overriding commands for target `bcheck-am'
    Makefile:830: warning: ignoring old commands for target `bcheck-am'
    Makefile:869: warning: overriding commands for target `clean-bcheck'
    Makefile:847: warning: ignoring old commands for target `clean-bcheck'
    Makefile:874: warning: overriding commands for target `bcheck-am'
    Makefile:852: warning: ignoring old commands for target `bcheck-am'
    Makefile:906: warning: overriding commands for target `clean-bcheck'
    Makefile:869: warning: ignoring old commands for target `clean-bcheck'
    Makefile:911: warning: overriding commands for target `bcheck-am'
    Makefile:874: warning: ignoring old commands for target `bcheck-am'
    Making all in src
    make[2]: Entering directory `/home/link/Docs/Builds/Astro/skylendar-1.7.1/src'
    Making all in pics
    make[3]: Entering directory `/home/link/Docs/Builds/Astro/skylendar-1.7.1/src/pics'
    make[3]: Nothing to be done for `all'.
    make[3]: Leaving directory `/home/link/Docs/Builds/Astro/skylendar-1.7.1/src/pics'
    make[3]: Entering directory `/home/link/Docs/Builds/Astro/skylendar-1.7.1/src'
    if g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/src/pics -I/opt/kde/include -I/opt/qt/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -O2 -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT editaddmul.o -MD -MP -MF ".deps/editaddmul.Tpo" -c -o editaddmul.o editaddmul.cpp; \
    then mv -f ".deps/editaddmul.Tpo" ".deps/editaddmul.Po"; else rm -f ".deps/editaddmul.Tpo"; exit 1; fi
    In file included from /opt/qt/include/qvariant.h:42,
    from _editaddmul.h:13,
    from editaddmul.h:3,
    from editaddmul.cpp:1:
    /opt/qt/include/qstring.h: In member function 'char QChar::latin1() const':
    /opt/qt/include/qstring.h:194: warning: conversion to 'char' from 'int' may alter its value
    /opt/qt/include/qstring.h: In member function 'void QChar::setCell(uchar)':
    /opt/qt/include/qstring.h:219: warning: conversion to 'ushort' from 'int' may alter its value
    /opt/qt/include/qstring.h: In member function 'void QChar::setRow(uchar)':
    /opt/qt/include/qstring.h:220: warning: conversion to 'ushort' from 'int' may alter its value
    /opt/qt/include/qstring.h: In constructor 'QChar::QChar(uchar, uchar)':
    /opt/qt/include/qstring.h:264: warning: conversion to 'ushort' from 'int' may alter its value
    /opt/qt/include/qstring.h: In constructor 'QStringData::QStringData(QChar*, uint, uint)':
    /opt/qt/include/qstring.h:362: warning: conversion to 'unsigned int:30' from 'uint' may alter its value
    /opt/qt/include/qstring.h:362: warning: conversion to 'unsigned int:30' from 'uint' may alter its value
    In file included from /opt/qt/include/qobject.h:45,
    from /opt/qt/include/qwidget.h:43,
    from /opt/qt/include/qdialog.h:42,
    from _editaddmul.h:14,
    from editaddmul.h:3,
    from editaddmul.cpp:1:
    /opt/qt/include/qevent.h: In member function 'void QDropEvent::setAction(QDropEvent::Action)':
    /opt/qt/include/qevent.h:520: warning: conversion to 'unsigned char' from 'uint' may alter its value
    In file included from /opt/qt/include/qwidget.h:49,
    from /opt/qt/include/qdialog.h:42,
    from _editaddmul.h:14,
    from editaddmul.h:3,
    from editaddmul.cpp:1:
    /opt/qt/include/qsizepolicy.h: In member function 'void QSizePolicy::transpose()':
    /opt/qt/include/qsizepolicy.h:122: warning: conversion to 'uchar' from 'uint' may alter its value
    /opt/qt/include/qsizepolicy.h:122: warning: conversion to 'uchar' from 'uint' may alter its value
    editaddmul.cpp: In member function 'virtual void EditAddMul::OkSlot()':
    editaddmul.cpp:52: error: 'atof' was not declared in this scope
    editaddmul.cpp:54: error: 'atof' was not declared in this scope
    make[3]: *** [editaddmul.o] Error 1
    make[3]: Leaving directory `/home/link/Docs/Builds/Astro/skylendar-1.7.1/src'
    make[2]: *** [all-recursive] Error 1
    make[2]: Leaving directory `/home/link/Docs/Builds/Astro/skylendar-1.7.1/src'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/home/link/Docs/Builds/Astro/skylendar-1.7.1'
    make: *** [all] Error 2

    I happened to see your question on linuxquestions, and they're probably right about gcc 4.3 being the problem. You should mail the author (off the app in question) and tell him to update the "include statements" to comply with gcc 4.3

  • My Labview 6i evaluation version getting bad/unusua​l readings(a​nalog input/outp​ut) while when i use test panel of Ni-DAQ 6.9.0 i have good readings from my PCI-MIO-16​E-1 board.

    If i used Lavbview 5.0 on same PC i don`t have problems.Sorry with my english!
    Attachments:
    TestPanel.jpg ‏103 KB
    Labview.jpg ‏62 KB

    I tried running one of the DAQ example programs and i got the same data and i only use the version of NI-DQA that shipped with my 6i version evaluation. About hides drivers i reinstall and double click in all of folders and sub folders. About my program i don`t think i have problems because is very simple but i send it to you for you help me. About two weeks i am around this problem and i can`t see evolution...
    PS.: Sorry with my english
    Best regards,
    Nelson Ferreira
    Student of ISEP College in Portugal
    Attachments:
    LerEntrada.vi ‏43 KB

  • How to adjust the image captured when using Shift Ctrl Command 4 shortcut

    After installing Mavericks on my macbook pro I now have issues when I use shift ctrl command 4.  When pasting the image into an email it is very large and I am unable to edit it.  It used to copy in much smaller. 

    Open Preview Application.
    Select you image.
    Click on Tools and select Adjust Size:
    Enter the desired parameters:
    Ciao.

  • Get 8004 error when using copy past command transferring pictures from one USB drive to another, why ?

    Why do I get 8004 error, when I use copy past command to transfer pictures from one USB drive to another ?
    There is no problem if the second drive is empty.

    mumbles27 wrote:
    one is MS-DOS
    would that be in FAT32 or NTFS ?
    mac OS extended (case sensitive)
    i'm not 100 % sure but i have a fancy such a combination may not play well together.
    nothing bigger than 2GB for one file
    i was asking because FAT3 has a limitation in that it will not allow you to copy files larger than 4 GB.
    JGG

  • How to set my own gui status when i use selection-screen

    how to set my own gui status when i use selection-screen command
    and
    how to set the names in the application tool bar when function keys are created

    Make sure that you do this in event "AT SELECTION-SCREEN OUTPUT".
    Run Txn ABAPDOCU and check 'DEMO_SEL_SCREEN_STATUS' for sample.
    Also check out following discussion -
    Selection Screen PF-STATUS
    Cheers,
    Sanjeev

  • Test-*Connectivity commands don't work

    I have a coexistence environment (2013 SP1 CU6, 2007) in two sites. I create a test user on each site. When run any of Test-*Connectivity commands like (Test-OWAConnectivity, Test-ECPConnectivity) I got the following errors:
    Test-OWAConnectivity from Passive Copy Mailbox Server (***MBX01):
    Url                         :
    UrlType                     : Unknown
    ClientAccessServerShortName : ***MBX01
    Scenario                    : Reset Credentials
    ScenarioDescription         : Reset automated credentials for the Client Access Probing Task user on Mailbox server mailbox_server.Domain.com.
    PerformanceCounterName      : Logon Latency
    Result                      : Failure
    Error                       : [Microsoft.Exchange.Monitoring.CasHealthStorageErrorException]: An error occurred while trying to access mailbox mailbox_server.Domain.com, on behalf of user
                                  Domain.com\extest_a6684afa10864
                                   Additional information:
                                   [Microsoft.Exchange.Data.Storage.WrongServerException]: The user and the mailbox are in different Active Directory sites..
    UserName                    : extest_a6684afa10864
    WARNING: No Client Access servers were tested.
    Test-OWAConnectivity from Active Copy Mailbox Server (***MBX02):
    WARNING: The test couldn't test the internal URL of this virtual directory, because the InternalURL property isn't set.
    Url                         :
    UrlType                     : Internal
    ClientAccessServerShortName : ***MBX02
    Scenario                    : Logon
    ScenarioDescription         : Sign in to Outlook Web App and verify the response page.
    PerformanceCounterName      :
    Result                      : Skipped
    Error                       : The test couldn't test the internal URL of this virtual directory, because the InternalURL property isn't set.
    WARNING: No Client Access servers were tested.
    Test-OWAConnectivity from CAS Server (***CAS01):
    WARNING: The test couldn't test the internal URL of this virtual directory, because the InternalURL property isn't set.
    Url                         :
    UrlType                     : Internal
    ClientAccessServerShortName : ***MBX02
    Scenario                    : Logon
    ScenarioDescription         : Sign in to Outlook Web App and verify the response page.
    PerformanceCounterName      :
    Result                      : Skipped
    Error                       : The test couldn't test the internal URL of this virtual directory, because the InternalURL property isn't set.
    WARNING: No Client Access servers were tested.

    Thank you for your help.
    I can access the URL from internet explorer.
    When I run Test-OwaConnectivity command I got an error {The specified computer isn't a Client Access server} while 1stSiteCAS01 is a CAS server:
    Test-OwaConnectivity -ClientAccessServer 1stSiteCAS01  -DomainController 1stSiteDC01
    The specified computer isn't a Client Access server.
        + CategoryInfo          : ObjectNotFound: (:) [Test-OwaConnectivity], LocalizedException
        + FullyQualifiedErrorId : [Server=1stSiteMBX02,RequestId=d090bd30-d813-4a5e-8f57-eec90d2b6fe7,TimeStamp=4/1/2015 7:13:07 AM] [FailureCategory=Cmdlet-LocalizedException]
    85112930,Microsoft.Exchange.
       Monitoring.TestOwaConnectivity
    Also, this is the result of Get-OwaVirtualDirectory command:
    Get-OwaVirtualDirectory | FL Identity,*Authentication*,*url*
    Identity                      : 2ndSiteEVS01\Exchange (Default Web Site)
    InternalAuthenticationMethods : {Basic, Ntlm, WindowsIntegrated}
    BasicAuthentication           : True
    WindowsAuthentication         : False
    DigestAuthentication          : False
    FormsAuthentication           : False
    LiveIdAuthentication          : False
    AdfsAuthentication            : False
    OAuthAuthentication           : False
    ExternalAuthenticationMethods : {Fba}
    Url                           :
    SetPhotoURL                   :
    Exchange2003Url               :
    FailbackUrl                   :
    InternalUrl                   :
    ExternalUrl                   :
    Identity                      : 2ndSiteEVS01\Public (Default Web Site)
    InternalAuthenticationMethods : {Basic, Ntlm, WindowsIntegrated}
    BasicAuthentication           : True
    WindowsAuthentication         : False
    DigestAuthentication          : False
    FormsAuthentication           : False
    LiveIdAuthentication          : False
    AdfsAuthentication            : False
    OAuthAuthentication           : False
    ExternalAuthenticationMethods : {Fba}
    Url                           :
    SetPhotoURL                   :
    Exchange2003Url               :
    FailbackUrl                   :
    InternalUrl                   :
    ExternalUrl                   :
    Identity                      : 2ndSiteEVS01\Exadmin (Default Web Site)
    InternalAuthenticationMethods : {Basic, Ntlm, WindowsIntegrated}
    BasicAuthentication           : True
    WindowsAuthentication         : False
    DigestAuthentication          : False
    FormsAuthentication           : False
    LiveIdAuthentication          : False
    AdfsAuthentication            : False
    OAuthAuthentication           : False
    ExternalAuthenticationMethods : {Fba}
    Url                           :
    SetPhotoURL                   :
    Exchange2003Url               :
    FailbackUrl                   :
    InternalUrl                   :
    ExternalUrl                   :
    An IIS directory entry couldn't be created. The error message is Access is denied.
    . HResult = -2147024891
        + CategoryInfo          : NotInstalled: (2ndSiteHC01\Exchange (Default Web Site):ADObjectId)
    [Get-OwaVirtualDirectory], IISGeneralCOMException
        + FullyQualifiedErrorId : [Server=1stSiteMBX01,RequestId=84ddf2ec-04f5-40ab-8d90-b2a7fd756971,TimeStamp=4/1/2015 7:13:38 AM] [FailureCategory=Cmdlet-IISGeneralCOMException]
    1BEA286E,Microsoft.Excha
       nge.Management.SystemConfigurationTasks.GetOwaVirtualDirectory
        + PSComputerName        : 1stSitembx01.domain.com
    An IIS directory entry couldn't be created. The error message is Access is denied.
    . HResult = -2147024891
        + CategoryInfo          : NotInstalled: (2ndSiteHC02\Exchange (Default Web Site):ADObjectId)
    [Get-OwaVirtualDirectory], IISGeneralCOMException
        + FullyQualifiedErrorId : [Server=1stSiteMBX01,RequestId=84ddf2ec-04f5-40ab-8d90-b2a7fd756971,TimeStamp=4/1/2015 7:13:38 AM] [FailureCategory=Cmdlet-IISGeneralCOMException]
    1BEA286E,Microsoft.Excha
       nge.Management.SystemConfigurationTasks.GetOwaVirtualDirectory
        + PSComputerName        : 1stSitembx01.domain.com
    An IIS directory entry couldn't be created. The error message is Access is denied.
    . HResult = -2147024891
        + CategoryInfo          : NotInstalled: (2ndSiteHC01\Public (Default Web Site):ADObjectId) [Get-OwaVirtualDirectory],
    IISGeneralCOMException
        + FullyQualifiedErrorId : [Server=1stSiteMBX01,RequestId=84ddf2ec-04f5-40ab-8d90-b2a7fd756971,TimeStamp=4/1/2015 7:13:38 AM] [FailureCategory=Cmdlet-IISGeneralCOMException]
    1BEA286E,Microsoft.Excha
       nge.Management.SystemConfigurationTasks.GetOwaVirtualDirectory
        + PSComputerName        : 1stSitembx01.domain.com
    An IIS directory entry couldn't be created. The error message is Access is denied.
    . HResult = -2147024891
        + CategoryInfo          : NotInstalled: (2ndSiteHC01\Exchweb (Default Web Site):ADObjectId) [Get-OwaVirtualDirectory],
    IISGeneralCOMException
        + FullyQualifiedErrorId : [Server=1stSiteMBX01,RequestId=84ddf2ec-04f5-40ab-8d90-b2a7fd756971,TimeStamp=4/1/2015 7:13:38 AM] [FailureCategory=Cmdlet-IISGeneralCOMException]
    1BEA286E,Microsoft.Excha
       nge.Management.SystemConfigurationTasks.GetOwaVirtualDirectory
        + PSComputerName        : 1stSitembx01.domain.com
    An IIS directory entry couldn't be created. The error message is Access is denied.
    . HResult = -2147024891
        + CategoryInfo          : NotInstalled: (2ndSiteHC02\Exchweb (Default Web Site):ADObjectId) [Get-OwaVirtualDirectory],
    IISGeneralCOMException
        + FullyQualifiedErrorId : [Server=1stSiteMBX01,RequestId=84ddf2ec-04f5-40ab-8d90-b2a7fd756971,TimeStamp=4/1/2015 7:13:38 AM] [FailureCategory=Cmdlet-IISGeneralCOMException]
    1BEA286E,Microsoft.Excha
       nge.Management.SystemConfigurationTasks.GetOwaVirtualDirectory
        + PSComputerName        : 1stSitembx01.domain.com
    Identity                      : 1stSiteHC01\Exchange (Default Web Site)
    InternalAuthenticationMethods : {Basic, Fba}
    BasicAuthentication           : True
    WindowsAuthentication         : False
    DigestAuthentication          : False
    FormsAuthentication           : True
    LiveIdAuthentication          : False
    AdfsAuthentication            : False
    OAuthAuthentication           : False
    ExternalAuthenticationMethods : {Fba}
    Url                           :
    SetPhotoURL                   :
    Exchange2003Url               :
    FailbackUrl                   :
    InternalUrl                   :
    ExternalUrl                   :
    Identity                      : 1stSiteHC01\Exchweb (Default Web Site)
    InternalAuthenticationMethods : {Basic, Fba}
    BasicAuthentication           : True
    WindowsAuthentication         : False
    DigestAuthentication          : False
    FormsAuthentication           : True
    LiveIdAuthentication          : False
    AdfsAuthentication            : False
    OAuthAuthentication           : False
    ExternalAuthenticationMethods : {Fba}
    Url                           :
    SetPhotoURL                   :
    Exchange2003Url               :
    FailbackUrl                   :
    InternalUrl                   :
    ExternalUrl                   :
    Identity                      : 1stSiteHC01\Public (Default Web Site)
    InternalAuthenticationMethods : {Basic, Fba}
    BasicAuthentication           : True
    WindowsAuthentication         : False
    DigestAuthentication          : False
    FormsAuthentication           : True
    LiveIdAuthentication          : False
    AdfsAuthentication            : False
    OAuthAuthentication           : False
    ExternalAuthenticationMethods : {Fba}
    Url                           :
    SetPhotoURL                   :
    Exchange2003Url               :
    FailbackUrl                   :
    InternalUrl                   :
    ExternalUrl                   :
    Identity                      : 1stSiteHC02\Exchange (Default Web Site)
    InternalAuthenticationMethods : {Basic, Fba}
    BasicAuthentication           : True
    WindowsAuthentication         : False
    DigestAuthentication          : False
    FormsAuthentication           : True
    LiveIdAuthentication          : False
    AdfsAuthentication            : False
    OAuthAuthentication           : False
    ExternalAuthenticationMethods : {Fba}
    Url                           :
    SetPhotoURL                   :
    Exchange2003Url               :
    FailbackUrl                   :
    InternalUrl                   :
    ExternalUrl                   :
    Identity                      : 1stSiteHC02\Exchweb (Default Web Site)
    InternalAuthenticationMethods : {Basic, Fba}
    BasicAuthentication           : True
    WindowsAuthentication         : False
    DigestAuthentication          : False
    FormsAuthentication           : True
    LiveIdAuthentication          : False
    AdfsAuthentication            : False
    OAuthAuthentication           : False
    ExternalAuthenticationMethods : {Fba}
    Url                           :
    SetPhotoURL                   :
    Exchange2003Url               :
    FailbackUrl                   :
    InternalUrl                   :
    ExternalUrl                   :
    Identity                      : 1stSiteHC02\Public (Default Web Site)
    InternalAuthenticationMethods : {Basic, Fba}
    BasicAuthentication           : True
    WindowsAuthentication         : False
    DigestAuthentication          : False
    FormsAuthentication           : True
    LiveIdAuthentication          : False
    AdfsAuthentication            : False
    OAuthAuthentication           : False
    ExternalAuthenticationMethods : {Fba}
    Url                           :
    SetPhotoURL                   :
    Exchange2003Url               :
    FailbackUrl                   :
    InternalUrl                   :
    ExternalUrl                   :
    Identity                      : 1stSiteHC01\owa (Default
    Web Site)
    InternalAuthenticationMethods : {Basic, Fba}
    BasicAuthentication           : True
    WindowsAuthentication         : False
    DigestAuthentication          : False
    FormsAuthentication           : True
    LiveIdAuthentication          : False
    AdfsAuthentication            : False
    OAuthAuthentication           : False
    ExternalAuthenticationMethods : {Fba}
    Url                           : {}
    SetPhotoURL                   :
    Exchange2003Url               :
    FailbackUrl                   :
    InternalUrl                   : https://1stSitehc01.domain.com/owa
    ExternalUrl                   : https://legacy.1stSite.domain.com/owa
    An IIS directory entry couldn't be created. The error message is Access is denied.
    . HResult = -2147024891
        + CategoryInfo          : NotInstalled: (2ndSiteHC01\owa (Default Web Site):ADObjectId) [Get-OwaVirtualDirectory],
    IISGeneralCOMException
        + FullyQualifiedErrorId : [Server=1stSiteMBX01,RequestId=84ddf2ec-04f5-40ab-8d90-b2a7fd756971,TimeStamp=4/1/2015 7:19:22 AM] [FailureCategory=Cmdlet-IISGeneralCOMException]
    1BEA286E,Microsoft.Excha
       nge.Management.SystemConfigurationTasks.GetOwaVirtualDirectory
        + PSComputerName        : 1stSitembx01.domain.com
    Identity                      : 1stSiteHC02\owa (Default Web Site)
    InternalAuthenticationMethods : {Basic, Fba}
    BasicAuthentication           : True
    WindowsAuthentication         : False
    DigestAuthentication          : False
    FormsAuthentication           : True
    LiveIdAuthentication          : False
    AdfsAuthentication            : False
    OAuthAuthentication           : False
    ExternalAuthenticationMethods : {Fba}
    Url                           : {}
    SetPhotoURL                   :
    Exchange2003Url               :
    FailbackUrl                   :
    InternalUrl                   : https://1stSitehc02.domain.com/owa
    ExternalUrl                   : https://legacy.1stSite.domain.com/owa
    Identity                      : 1stSiteCAS02\owa (Default Web Site)
    InternalAuthenticationMethods : {Basic, Fba}
    BasicAuthentication           : True
    WindowsAuthentication         : False
    DigestAuthentication          : False
    FormsAuthentication           : True
    LiveIdAuthentication          : False
    AdfsAuthentication            : False
    OAuthAuthentication           : False
    ExternalAuthenticationMethods : {Fba}
    Url                           : {}
    SetPhotoURL                   :
    Exchange2003Url               :
    FailbackUrl                   :
    InternalUrl                   : https://mail.1stSite.domain.com/owa
    ExternalUrl                   : https://mail.1stSite.domain.com/owa
    Identity                      : 1stSiteCAS01\owa (Default Web Site)
    InternalAuthenticationMethods : {Basic, Fba}
    BasicAuthentication           : True
    WindowsAuthentication         : False
    DigestAuthentication          : False
    FormsAuthentication           : True
    LiveIdAuthentication          : False
    AdfsAuthentication            : False
    OAuthAuthentication           : False
    ExternalAuthenticationMethods : {Fba}
    Url                           : {}
    SetPhotoURL                   :
    Exchange2003Url               :
    FailbackUrl                   :
    InternalUrl                   : https://mail.1stSite.domain.com/owa
    ExternalUrl                   : https://mail.1stSite.domain.com/owa
    Identity                      : 2ndSiteCAS01\owa (Default Web Site)
    InternalAuthenticationMethods : {Basic, Fba}
    BasicAuthentication           : True
    WindowsAuthentication         : False
    DigestAuthentication          : False
    FormsAuthentication           : True
    LiveIdAuthentication          : False
    AdfsAuthentication            : False
    OAuthAuthentication           : False
    ExternalAuthenticationMethods : {Fba}
    Url                           : {}
    SetPhotoURL                   :
    Exchange2003Url               :
    FailbackUrl                   :
    InternalUrl                   : https://mail.2ndSite.domain.com/owa
    ExternalUrl                   : https://mail.2ndSite.domain.com/owa

Maybe you are looking for