Execute Clock or Return ?

HI,
I want to navegate a BW query  to tcode MB5B in R/3.
I give the parameters correctly ( WERKS , WERK_D,WRK) , and the tcode take them.
In the moment of execute tcode, I have 2 options:
- To click on the button "execute" and then push "return". The list result  returns the correctly WERKS.
- Push "return" twice. And the result give ALL the WERKS!!!
Someone can explain me the diference between the options? It seems that when you push return twice, the tcode dont take the WERKS.
I dont have any idea! ;(
thanks a lot

Pictures of the effects can be seen about halfway down the page on this link. Anyone know how to do these effects?
http://lesposen.wordpress.com/2009/07/05/keynotevisit2/

Similar Messages

  • Error Issue: enable clock spreading returned with 0 sh-2.05a#

    Hi I am having some serious issues with my laptop. I believe hat it is having overheating problems and freezes constantly. Lately it gave me error: enable clock spreading returned with 0 sh-2.05a# when I start up and cannot get beyond the gray screen! I am desperate what can I do? I have searched a lot of these posts and cannot find any resolution. Help me please! Thank you in advance!
    powerbook G4   Mac OS X (10.2.x)  

    I am having the exact same problem - my Dad gave me this computer in December and we have been trying to convert our knowledge base from PC!!! confused...
    here is the copy and paste from the crash log:
    Process: Finder [1760]
    Path: /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Identifier: Finder
    Version: ??? (???)
    Code Type: PPC (Native)
    Parent Process: launchd [118]
    Date/Time: 2008-03-03 15:21:43.551 -0500
    OS Version: Mac OS X 10.5.2 (9C31)
    Report Version: 6
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000001, 0x000000008fe0105c
    Crashed Thread: 0
    Dyld Error Message:
    Symbol not found: __CSDeviceSupportsODisk
    Referenced from: /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Expected in: /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    Monday, March 3, 2008 3:47:53 PM US/Eastern
    can you help?

  • How to execute function having return cursor

    hi all
    Please tell me
    How to execute function having return cursor
    regards

    CREATE OR REPLACE FUNCTION sp_get_stocks(v_price IN NUMBER)
    RETURN types.ref_cursor
    AS
    stock_cursor types.ref_cursor;
    BEGIN
    OPEN stock_cursor FOR
    SELECT ric,price,updated FROM stock_prices
    WHERE price < v_price;
    RETURN stock_cursor;
    END;
    SQL> exec :results := sp_get_stocks(20.0)
    PL/SQL procedure successfully completed.
    Message was edited by:
    chenks

  • Servlet seem to execute but just return a blank page

    I have two servlets that I am calling from a jsp.
    One servlet executes fine, the other seems to execute but comes back with a "done" message in the messagebar and no page whatsoever.
    I checked the web.xml. It is correct.
    Anyone have any ideas?

    Try "view source" in the web browser. Sometimes certain browsers don't display anything if you have e.g. a missing </table> tag.
    Check the web server logs - access log and error log. Do they record a succesful execution? Which server do you use -- e.g. Netscape / iPlanet / Sun ONE / whateverthehellit'stoday logs the number of returned bytes in the access log.
    Use a TCP/IP trace program (Unix -> tcpdump, Windows -> ethereal) to see what the web server returns.
    Or use telnet:
    telnet localhost 80
    GET /the/servlet.html HTTP/1.0
    Host: foo.bar.com
    -- the Host header may or may not be required by the web server.

  • When Press "Execute Query" LOV return Item not showing

    I created a LOV and defined return items.
    In the form I created display items, database property NO and assign variable name which is in LOV.
    When I enter a new record LOV shows the return item but when I am executing query only database record is showing and I want to show the all item even they are in database or not.
    Message was edited by:
    Kamran

    execute query populates only database items. To populate non database items after execute query, use post query trigger.

  • How to execute a function returning type in oracle

    hi
    i want to execute a function which is returning table from oracle prompt.
    i have created type in order to return table from function.
    /*creating type
    CREATE OR REPLACE TYPE U_VOC.t_in_list_tab AS OBJECT (i_group NUMBER ,
                                  i_company number,
                                  i_estab number
    NOT FINAL ;
    CREATE OR REPLACE TYPE U_VOC.t_in_list_tab_type
    AS TABLE OF U_VOC.t_in_list_tab;
    /*function */
    CREATE OR REPLACE FUNCTION FU_VOC_S_VEHICLES(pi_group number,
                                                      pi_company number,
                                                 pi_estab number
         RETURN t_in_list_tab
    AS
    v_nb_idvehicle           U_REF.V_REF_VEHICLES.NB_IDVEHICLE%type ;
    v_vc_reference           U_REF.V_REF_VEHICLES.VC_REFERENCE%type ;
    v_vc_licenceplate      U_REF.V_REF_VEHICLES.VC_LICENCEPLATE%type ;
    l_tab t_in_list_tab := t_in_list_tab( pi_group ,pi_company, pi_estab );
    BEGIN
              SELECT      V_REF_VEHICLES.NB_IDVEHICLE,
                   V_REF_VEHICLES.VC_REFERENCE,
                   V_REF_VEHICLES.VC_LICENCEPLATE
              INTO      V_NB_IDVEHICLE,
                   V_VC_REFERENCE,
                   V_VC_LICENCEPLATE
              FROM      U_REF.V_REF_VEHICLES
              WHERE      V_REF_VEHICLES.NB_IDGROUP = pi_group
              AND      V_REF_VEHICLES.NB_IDCOMPANY = pi_company
              AND      V_REF_VEHICLES.NB_ESTABL = pi_estab;
    RETURN l_tab;
    END;
    please help
    Thank in advance
    Sandy

    Sandy,
    I have a series of examples on this issue in my demo application. See this one:
    http://htmldb.oracle.com/pls/otn/f?p=31517:146
    You will basicaly need to write it like this:
    CREATE OR REPLACE TYPE u_voc.t_in_list_tab AS OBJECT (
       i_group     NUMBER,
       i_company   NUMBER,
       i_estab     NUMBER
    CREATE OR REPLACE TYPE u_voc.t_in_list_tab_type AS TABLE OF u_voc.t_in_list_tab;
    CREATE OR REPLACE FUNCTION fu_voc_s_vehicles (
       pi_group     NUMBER,
       pi_company   NUMBER,
       pi_estab     NUMBER
       RETURN t_in_list_tab PIPELINED
    AS
       l_tab   t_in_list_tab := t_in_list_tab (NULL, NULL, NULL);
    BEGIN
       FOR c IN (SELECT v_ref_vehicles.nb_idvehicle, v_ref_vehicles.vc_reference,
                        v_ref_vehicles.vc_licenceplate
                   FROM u_ref.v_ref_vehicles
                  WHERE v_ref_vehicles.nb_idgroup = pi_group
                    AND v_ref_vehicles.nb_idcompany = pi_company
                    AND v_ref_vehicles.nb_establ = pi_estab)
       LOOP
          l_tab.i_group := c.nb_idvehicle;
          l_tab.i_company_number := c.vc_reference;
          l_tab.estab_number := vc_licenceplate;
       END LOOP;
       RETURN l_tab;
    END;
    SELECT *
      FROM TABLE (fu_voc_s_vehicles (value1, value2, value3))But looking at your code, your function will return only one record.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/apex/f?p=107:7
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • ORA-24338: statement handle not executed   -- error in returning refcursor

    My packaged procedure has Ref cursor as out variable.
    Calling the packaged procedure from Cognos 8. while trying to access the packaged procedure , getting the below error.
    ORA-24338: statement handle not executed
    Please provide a solution...

    Welcome to the forum!
    Whenever you post provide your 4 digit Oracle version (result of SELECT * FROM V$VERSION).
    Confirm that the procedure works properly when called from sql*plus.
    For example here is some code that tests a package procedure I have in the SCOTT schema
    SET SERVEROUTPUT ON SIZE 1000000
    DECLARE
      l_cursor  test_refcursor_pkg.my_ref_cursor;
      l_ename   emp.ename%TYPE;
      l_empno   emp.empno%TYPE;
    BEGIN
      test_refcursor_pkg.test_proc (l_cursor);
      LOOP
        FETCH l_cursor
        INTO  l_empno, l_ename;
        EXIT WHEN l_cursor%NOTFOUND;
        DBMS_OUTPUT.PUT_LINE(l_ename || ' | ' || l_empno);
      END LOOP;
      CLOSE l_cursor;
    END;
    /

  • CALL TRANSACTION won't execute report, keeps returning to program

    Good day to you!
    I have the following code:
      CALL TRANSACTION 'FPO4' USING bdcdata
                              MODE   'A'.
    The last line in my bdcdata is to simulate pressing the Execute button (OK_CODE = '=ONLI').  However, instead of running the report that FPO4 is supposed to generate, it just comes back to my program and its selection screen.
    Please note that although I am populating data on FPO4's native Selection Screen, I am also populating data on a special "predefined selection," so using a simple SUBMIT has never been an option to me.
    Does anyone know how I can get FPO4 to actually execute vs. coming back to my program?
    Thanks -- as always, points for all helpful answers!

    Before calling the call transaction, put a dummy screen of the report output
    ' ' 'OK_CODE' '=ONLY'.
    *This screen name nad number should come in the SHDB recording..
    *Don't assing any OK_CODE to that screen
    Perform screen 'X' 'SAPMSSY0' '0120'.   "<< it should be your reports screen
    CALL TRANSACTION 'FPO4' USING bdcdata
    MODE 'A'.
    Actually, I dont' have this transaction in my systm otherwise I should able to give you exact screen name and number.
    Regards,
    Naimesh Patel

  • Executing VO only returns 1 record

    Hi,
    I am using Jdev 11.1.1.4.0.
    I have a Read only VO and have a methond in AMImpl class that reads
    ViewObjectImpl componentLOV;
    componentLOV= getComponentsNameOnly();
    componentLOV.setNamedWhereClauseParam("bndComponentName", componentName);
    componentLOV.executeQuery();
    return componentLOV.getAllRowsInRange();This only returns 1 record althought there are more than 1 record.
    If I change the code to componentLOV = getUpdatableVO();, then it returns all the records that meets the condition.
    Any idea?
    Thanks
    Bones Jones
    Edited by: Bones Jones on Jul 13, 2011 10:53 AM
    Edited by: Bones Jones on Jul 13, 2011 10:54 AM

    plz paste the complete method. You need List if you want to work with multiple rows
    here what i copied from the docs
    public class AppModuleImpl extends ApplicationModuleImpl
    public List<ViewRowImpl> findProducts(String location)
    List<ViewRowImpl> result = new ArrayList<ViewRowImpl>();
    ViewObjectImpl vo = getProductsView1();
    vo.setNamedWhereClauseParam("TheLocation", location);
    vo.setForwardOnly(true);
    vo.executeQuery();
    while (vo.hasNext()) {
    result.add((ViewRowImpl)vo.next());
    return result;
    }

  • Tween executes, then parameter returns to default value.

    Hey, I trying to do two simultaneous tweens of two movie
    clips(when someone rolls over a different movie clip), one is just
    an image, the other contains a static text field with the word
    contact in it. here's my code
    rus_mc.onRollOver = function () {
    rus_mc._x += 3;
    rus_mc._y += 3;
    new mx.transitions.Tween(logo_mc, "_alpha",
    mx.transitions.easing.Regular.easeIn, 100, 0, .5, true);
    new mx.transitions.Tween(contact_mc, "_alpha",
    mx.transitions.easing.Regular.easeOut, 0, 100, 1, true);
    rus_mc.onRollOut = function () {
    rus_mc._x -= 3;
    rus_mc._y -= 3;
    new mx.transitions.Tween(logo_mc, "_alpha",
    mx.transitions.easing.Regular.easeOut, 0, 100, 1, true);
    new mx.transitions.Tween(contact_mc, "_alpha",
    mx.transitions.easing.Regular.easeIn, 100, 0, .5, true);
    Whats really weird about it is that it worked great the first
    5 times I ran my movie, then the movie with the text box in it
    started acting really funny. When I rollout, the contact_mc tween
    either doesn't even happen, or at the end the _alpha value of the
    movie with the text in it jerks back from 0 to 100, and then it
    stays there.
    I have ran into this problem before on different projects,
    and I'm starting to think that something is wrong with my version
    of flash. I just don't understand why it would work fine for 5
    compiles, and then start screwing up!!!???

    I tend to use other Tween engines, but I suspect its because
    you can have a situation where you're assigning a new Tween to the
    same clip before the old one has finished. This is not all the
    time... its just when you roll out and roll back in (or vice versa)
    before its finished.
    I did a quick search and found some comments about it here
    (the context is different but I think you can have the same
    situation arise with what you're doing as I mentioned in last
    paragraph)..:
    http://www.actionscript.org/forums/showthread.php3?t=92791

  • Obtaining a collection as a return from an execute immediate pl/sql block

    version 10.2
    I need to obtain the collection back from the execute immediate of a pl/sql block:
    procedure block(owner varchar2) is
    stmt                   long;
    objecttab_coll         dbms_stats.objecttab;
    begin
    stmt := '
       begin
        dbms_stats.gather_schema_stats(''' || owner || '''
         ,options => ''LIST AUTO''
         ,objlist => :objecttab_coll
       end;'; 
    execute immediate stmt returning into objecttab_coll;
    -- do more stuff here
    end block;I have tried this + a few variations but with no luck. In looking through the docs I do not see an example. can this be done?
    Thanks
    Ox

    I dont find any need for an execute immediate here. This must be just enough.
    procedure block(owner varchar2)
    is
         objecttab_coll         dbms_stats.objecttab;
    begin
         dbms_stats.gather_schema_stats(ownname => owner, options => 'LIST AUTO', objlist => objecttab_coll);
         -- do more stuff here
    end block;Thanks,
    Karthick.

  • Returning (bulk collect) clause with execute immediate

    db version 11.1.0.7
    trying to do a returning bulk collect but it is not working:
    -- my test table
    create table t as
    with f as (select rownum rn from dual connect by rownum <= 10)
    select
    rn,
    lpad('x',10,'x') pad
    from f;
    -- works as expected
    declare
    type aat is table of t%rowtype;
    aay aat;
    begin
    delete from t returning rn,pad bulk collect into aay;
    rollback;
    end;
    -- but the table I really want to do has many columns so I want to dynamically build list of columns for the
    -- returning clause. This way if the table changes the stored proc will not have to be modified
    -- fails PLS-00429: unsupported feature with RETURNING clause
    declare
    type aat is table of t%rowtype;
    aay aat;
    s varchar2(4000);
    begin
    s := 'delete from t returning rn,pad into :1';
    execute immediate s returning bulk collect into aay;
    rollback;
    end;
    -- tried a few other things:
    create or replace type t_obj as object (rn number,pad varchar2(10));
    -- PLS-00497: cannot mix between single row and multi-row (BULK) in INTO list
    declare
    nt t_obj;
    s varchar2(4000);
    begin
    s := 'delete from t returning t_obj(rn,pad) into :1';
    execute immediate s returning bulk collect into nt;
    rollback;
    end;
    -- works, but would require store proc changes if the table changes
    declare
    type t is table of number;
    type v is table of varchar2(10);
    vt v;
    nt t;
    s varchar2(4000);
    begin
    s := 'update t set rn = 10 returning rn,pad into :1,:2';
    execute immediate s returning bulk collect into nt,vt;
    rollback;
    end;
    /basically I want to dynamically build the list of columns with all_tab_cols and put the list into the returning clause
    but seems like I will have to hard code the column lists. This means whenever the table changes I will have to
    modify the store proc .. Any way around this?
    Thanks

    And with object type you were almost there. You forgot to create table of objects type:
    SQL> create or replace type t_obj as object (rn number,pad varchar2(10));
      2  /
    Type created.
    SQL> declare
      2      type aat is table of nt;
      3   aay aat;
      4   s varchar2(4000);
      5  begin
      6   s := 'delete from t returning
    SQL> declare
      2      type aat is table of t_obj;
      3   aay aat;
      4   s varchar2(4000);
      5  begin
      6   s := 'delete from t returning t_obj(rn,pad) into :1';
      7   execute immediate s returning bulk collect into aay;
      8   rollback;
      9  end;
    10  /
    PL/SQL procedure successfully completed.
    SQL> SY.

  • Return Code of a Labview Standalone Executable

    Does a standalone executable built with Labview return a RETURN CODE?
    If yes, is there any way control the value of this RETURN CODE?

    Hi,
    In general, I would agree, but executables (.exe) can contain functions. For
    example, create a Call Library Function, and type LabVIEW.exe in the Library
    name... This is an executable, and does have functions, that do return
    values.
    It's just one big mess, dll's ocx, tbl, exe, com etc. (e.g. try browsing to
    a dll when selecting a ActiveX automation reference, or selecting a ocx in a
    Call Library Function... To use a protocol, the file need to have several
    required functions, e.g. DllRegisterService for dll's). In general, a return
    value it the value of the eax register (on processor level), but this cannot
    be controlled in labview. So creating a LV dll is good advice.
    Regards,
    Wiebe.
    "chadevans" wrote in message
    news:50650000000500
    [email protected]..
    > No. Executables don't return anything. I would look into returning a
    > value from a LabVIEW DLL instead of using an executable. LabVIEW
    > DLL's can be created from Tools>>Build Application of Shared
    > Library(DLL) function in LabVIEW 6.0 or later.
    >
    > See also
    >
    href="http://ae.natinst.com/operations/ae/public.nsf/fca7838c4500dc10862567a
    100753500/f46e8f2ba898c...

  • Exchange Powershell return value from Get-command to variable.

    Hi
    I am trying to create a powershell-script for our monitoring-software.
    The script is supposed to establish a connection to our exchange-server mgmt-shell and execute this command:
    "Get-MailboxDatabaseCopyStatus"
    I have the connection in place, but am missing the knowledge of how to return the result of the command to my script, which I can then pass to our monitoring-software.
    (The script take 2 parameters - host and command eg. exch01.domain and Get-MailboxDatabaseCopyStatus).
    Current code:
    $statusAlive = "ScriptRes:Host is alive:"
    $statusDead = "ScriptRes:No answer:"
    $statusUnknown = "ScriptRes:Unknown:"
    $statusNotResolved = "ScriptRes:Unknown host:"
    $statusOk = "ScriptRes:Ok:"
    $statusBad = "ScriptRes:Bad:"
    $statusBadContents = "ScriptRes:Bad contents:"
    $pass = cat C:\securestring.txt | convertto-securestring
    $Cred = new-object -typename System.Management.Automation.PSCredential -argumentlist "domain\administrator",$pass
    $host = $args[0]
    $command = $args[1]
    <#
    if (!$args[0]) {
    echo $statusUnknown"Host parameter is empty"
    exit
    if (!$args[1]) {
    echo $statusUnknown"Command parameter is empty"
    exit
    #>
    $session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri http://$host/powershell -Credential $cred
    Import-PSSession $session
    $command
    Remove-PSSession $session
    Now, how do I "catch" the value of the executed command and return it to a variable in the script?
    Best Regards,
    Soren

    Hmm.. doesnt seem to work quite right.
    I added "Echo $result" after "Remove-PSSession $session", but then I just get a bunch of information..
    Script tmp_c3a1c132-f4d9-4d61... {Get-IRMConfiguration, New-MailUser, Get-PublicFolderMigrationRequestSta...
    RunspaceId : 2d179364-2df3-483d-a192-f5f4ca9453bb
    Identity : DB02 - Specielle\EXCHANGE01
    Id : DB02 - Specielle\EXCHANGE01
    Name : DB02 - Specielle\EXCHANGE01
    DatabaseName : DB02 - Specielle
    Status : Mounted
    InstanceStartTime : 01-03-2014 03:35:07
    LastStatusTransitionTime :
    MailboxServer : EXCHANGE01
    ActiveDatabaseCopy : EXCHANGE01
    ActiveCopy : True
    ActivationPreference : 1
    StatusRetrievedTime : 11-03-2014 08:30:15
    WorkerProcessId : 8124
    ActivationSuspended : False
    ActionInitiator : Unknown
    ErrorMessage :
    ErrorEventId :
    ExtendedErrorInfo :
    SuspendComment :
    RequiredLogsPresent :
    SinglePageRestore : 0
    ContentIndexState : Healthy
    ContentIndexErrorMessage :
    ContentIndexVersion : 1
    ContentIndexBacklog : 0
    ContentIndexRetryQueueSize : 0
    ContentIndexMailboxesToCrawl :
    ContentIndexSeedingPercent :
    ContentIndexSeedingSource :
    CopyQueueLength : 0
    ReplayQueueLength : 0
    ReplaySuspended : False
    ResumeBlocked : False
    ReseedBlocked : False
    MinimumSupportedDatabaseSchemaVersion : 0.121
    MaximumSupportedDatabaseSchemaVersion : 0.125
    RequestedDatabaseSchemaVersion : 0.125
    LatestAvailableLogTime :
    LastCopyNotificationedLogTime :
    LastCopiedLogTime :
    LastInspectedLogTime :
    LastReplayedLogTime :
    LastLogGenerated : 0
    LastLogCopyNotified : 0
    LastLogCopied : 0
    LastLogInspected : 0
    LastLogReplayed : 0
    LowestLogPresent : 0
    LastLogInfoIsStale : False
    LastLogInfoFromCopierTime :
    LastLogInfoFromClusterTime :
    LastLogInfoFromClusterGen : 0
    LogsReplayedSinceInstanceStart : 0
    LogsCopiedSinceInstanceStart : 0
    LatestFullBackupTime :
    LatestIncrementalBackupTime :
    LatestDifferentialBackupTime :
    LatestCopyBackupTime :
    SnapshotBackup :
    SnapshotLatestFullBackup :
    SnapshotLatestIncrementalBackup :
    SnapshotLatestDifferentialBackup :
    SnapshotLatestCopyBackup :
    LogReplayQueueIncreasing : False
    LogCopyQueueIncreasing : False
    ReplayLagStatus :
    DatabaseSeedStatus :
    OutstandingDumpsterRequests : {}
    OutgoingConnections :
    IncomingLogCopyingNetwork :
    SeedingNetwork :
    DiskFreeSpacePercent : 50
    DiskFreeSpace : 20.02 GB (21,498,761,216 bytes)
    DiskTotalSpace : 40 GB (42,946,523,136 bytes)
    ExchangeVolumeMountPoint :
    DatabaseVolumeMountPoint : E:\
    DatabaseVolumeName : \\?\Volume{e6cb407f-e4f2-11e2-93eb-005056ae239d}\
    DatabasePathIsOnMountedFolder : False
    LogVolumeMountPoint : F:\
    LogVolumeName : \\?\Volume{e6cb4087-e4f2-11e2-93eb-005056ae239d}\
    LogPathIsOnMountedFolder : False
    LastDatabaseVolumeName :
    LastDatabaseVolumeNameTransitionTime :
    VolumeInfoError :
    IsValid : True
    ObjectState : Unchanged
    RunspaceId : 2d179364-2df3-483d-a192-f5f4ca9453bb
    Identity : DB01 - Standard\EXCHANGE01
    Id : DB01 - Standard\EXCHANGE01
    Name : DB01 - Standard\EXCHANGE01
    DatabaseName : DB01 - Standard
    Status : Mounted
    InstanceStartTime : 01-03-2014 03:35:07
    LastStatusTransitionTime :
    MailboxServer : EXCHANGE01
    ActiveDatabaseCopy : EXCHANGE01
    ActiveCopy : True
    ActivationPreference : 1
    StatusRetrievedTime : 11-03-2014 08:30:15
    WorkerProcessId : 8140
    ActivationSuspended : False
    ActionInitiator : Unknown
    ErrorMessage :
    ErrorEventId :
    ExtendedErrorInfo :
    SuspendComment :
    RequiredLogsPresent :
    SinglePageRestore : 0
    ContentIndexState : Healthy
    ContentIndexErrorMessage :
    ContentIndexVersion : 1
    ContentIndexBacklog : 3
    ContentIndexRetryQueueSize : 0
    ContentIndexMailboxesToCrawl :
    ContentIndexSeedingPercent :
    ContentIndexSeedingSource :
    CopyQueueLength : 0
    ReplayQueueLength : 0
    ReplaySuspended : False
    ResumeBlocked : False
    ReseedBlocked : False
    MinimumSupportedDatabaseSchemaVersion : 0.121
    MaximumSupportedDatabaseSchemaVersion : 0.125
    RequestedDatabaseSchemaVersion : 0.125
    LatestAvailableLogTime :
    LastCopyNotificationedLogTime :
    LastCopiedLogTime :
    LastInspectedLogTime :
    LastReplayedLogTime :
    LastLogGenerated : 0
    LastLogCopyNotified : 0
    LastLogCopied : 0
    LastLogInspected : 0
    LastLogReplayed : 0
    LowestLogPresent : 0
    LastLogInfoIsStale : False
    LastLogInfoFromCopierTime :
    LastLogInfoFromClusterTime :
    LastLogInfoFromClusterGen : 0
    LogsReplayedSinceInstanceStart : 0
    LogsCopiedSinceInstanceStart : 0
    LatestFullBackupTime :
    LatestIncrementalBackupTime :
    LatestDifferentialBackupTime :
    LatestCopyBackupTime :
    SnapshotBackup :
    SnapshotLatestFullBackup :
    SnapshotLatestIncrementalBackup :
    SnapshotLatestDifferentialBackup :
    SnapshotLatestCopyBackup :
    LogReplayQueueIncreasing : False
    LogCopyQueueIncreasing : False
    ReplayLagStatus :
    DatabaseSeedStatus :
    OutstandingDumpsterRequests : {}
    OutgoingConnections :
    IncomingLogCopyingNetwork :
    SeedingNetwork :
    DiskFreeSpacePercent : 50
    DiskFreeSpace : 20.02 GB (21,498,761,216 bytes)
    DiskTotalSpace : 40 GB (42,946,523,136 bytes)
    ExchangeVolumeMountPoint :
    DatabaseVolumeMountPoint : E:\
    DatabaseVolumeName : \\?\Volume{e6cb407f-e4f2-11e2-93eb-005056ae239d}\
    DatabasePathIsOnMountedFolder : False
    LogVolumeMountPoint : F:\
    LogVolumeName : \\?\Volume{e6cb4087-e4f2-11e2-93eb-005056ae239d}\
    LogPathIsOnMountedFolder : False
    LastDatabaseVolumeName :
    LastDatabaseVolumeNameTransitionTime :
    VolumeInfoError :
    IsValid : True
    ObjectState : Unchanged
    I am only interested in the 2 "ContentIndexState" - how can I pick these 2 out and put them into a variable?
    I though the command "Get-MailboxDatabaseCopyStatus" would only display these two, since it is what happens if I run the command inside PowerShell on the server itself.

  • Please explain me how I can use Form feed(\f) and Carriage return(\r)

    what is Form feed(\f) and Carriage return(\r)?
    Please explain to me.
    Thank you.

    These control characters aren't used much these days except that if you example a Windows or MSDOS text file in a binary editor you'll find each line ends with "\r\n". However when reading or writing text through classes these carriage returns will be added and removed automatically so your program doesn't see them.
    The controlls date back to teletype machines which operated rather like typewriters. Cariage return, as it's name implied, caused the print head to move back to the start of the line, line feed advanced a line (without, necessarilly, returning the carriage) and formfeed skipped to the next page.
    Newline on these machines was always "return, linefeed" because executing the carriage return on these machine could take too long. The early machines had only a single character buffer so that they had to executed the characters as quickly as they arrived. So doing the linefeed after the carriage return gave the carriage more time to return. On some teletypes if you did "linefeed, return" then the first character of the new line would often be printed somewhere in the middle of the line.
    This is the origin of the MSDOS/Windows end of line sequence.
    Many printers will still respect formfeed if printing is direct. Some will take carriage return without linefeed to allow you to start again overprinting the same line.
    However printing, these days, is seldom direct but done in bitmap form.

Maybe you are looking for

  • How can I reduce spam?

    I'm receiving a growing amout of spam in my email. Some goes directly to my spam folder, but a lot shows up in my Inbox. I have a standard Mac Pro with all of Apple's software and protections. I want to stop receiving emails from people pretending to

  • LOOP in LDB

    Hi, I am debugging a custom program, which is a copy of standarad one. This used logical database. In END-OF-SELECTION, I see a LOOP statement without internal table name. But the values are coming to the workarea T. I would like to know how the data

  • How to send a single email to all recipients at one time

    Hi, With JavaMail, is there any way to send an email to several recipients at once time instead of calling Transport.send() one by one? You may state why not use address like "[email protected],[email protected],[email protected]". Because I want to

  • Preview of imported clips takes forever, if at all

    I record to SDHC cards and previously when I would import them I could do a quick preview while still within the finder window. Now when I select a clip all I get is the little spinning icon waiting for the preview to show up. I know this isn't speci

  • Using the iPad with a projector.

    Is it possible to use an iPad2 wirelessly with an Apple TV connected to a projector?  Can the two devises communicate without being logged into the local wifi network?  For example, in a hotel, doing a presentation.