Spooling a file adding spaces after each line

Hi
I am spooling a result of an sql in a csv file in linux os. But the file generates lot of blank lines after each row. How this can be eliminated while spooling
Thanks in advance
Sas

Thanks a lot for your reply. Is there any way to supress the display of query result. I dont want to see the result. I want just the output file.
Thanks
Sas
Edited by: SasDutta on Mar 24, 2010 4:20 PM

Similar Messages

  • Trouble with format of files exported from pages as .doc - when opened on a pc they have extra spaces and pages breaks inserted after each line?  Can be manually deleted, but defeats sharing purpose. advice?

    Hi all, I have trouble with the format of files exported by email as .doc from pages - when opened in MS word on a PC or other device, they have extra spaces and pages inserted after each line - can be deleted manually, but defeats sharing purpose.  Any advice?  Not the most sophisticated user.

    Got it. I tried booting with MOD_AUTOLOAD set to yes, and it was working fine. Looks like I needed to specify some more modules in my list.

  • When paste to vim xterm, blanks lines are added after each line

    Need expert's help:
    When I copy from windows Firefox to my vnc's vim xterm, somehow after each line, several blank lines are added after every single line/paragraph. This is really annoying!
    I don't know how to solve it. I changed a my .vimrc to a very simple one, still not working.
    thanks!
    Qian

    You may have a fileformat problem.  I'm pretty sure this will work but I only did one small test.
    To display the current vim fileformat – this should return either 'dos' or 'unix'.
    :set ff
    Vim usually correctly sets the fileformat automatically upon opening a file but will default to using 'unix' if the format can't be determined.  After pasting the text, try the command,
    :update
    'update' will save the file only if changes to the buffer have occurred.  This command may change the fileformat and all the line endings are now CR-LFs (CR=carriage return; LF=line feed).  Check the fileformat again with
    :set ff
    If ':update' didn't change the line endings, or the file is now a mix of CR-LFs and LF-only line endings, try this,
    :e! ++ff=dos
    This should force rereading the buffer as a dos (Windows) format and properly display the lines. All line endings should now be CR-LF.  You can then manually set the fileformat to 'unix' with
    :set ff=unix
    and finally, save the file with
    :w

  • SVN Tab Complete issues (space after each complete)

    Morning all,
    I've got a weird issue with my SVN tab complete using Bash, it adds a space after each item it completes - for example: Say there is a directory 'foobar' with a file 'zomg' within that, I'd type 'svn add fo' and then hit tab - however, this results in 'svn add foobar ' (note the space). This is highly annoying, as I can no longer hit 'z' then tab to complete it to 'foobar/zomg', I have to remove the space, then go again (it does it for everything, so adding something like 'foobar/zomg/wtf/bbq' is a nightmare.)
    So far it only does it with Bash, I've not been able to test it on other shells. Subversion 1.4.6-4 on an up-to-date Arch install with core, extra and community repos enabled (however it has done it from the very start of me using Arch, so it's not a recent update that killed it).
    Regards,
    Last edited by AlexC_ (2008-09-20 16:13:48)

    Hi AlexC_ :-)
    I suspect that it may be an issue with /etc/bash_completion. This is the relevant part from my /etc/bash_completion.
    # svn completion
    have svn &&
    _svn()
    local cur prev commands options command
    COMPREPLY=()
    cur=${COMP_WORDS[COMP_CWORD]}
    commands='add blame praise annotate ann cat checkout co cleanup commit \
    ci copy cp delete del remove rm diff di export help ? h import \
    info list ls lock log merge mkdir move mv rename ren \
    propdel pdel pd propedit pedit pe propget pget pg \
    proplist plist pl propset pset ps resolved revert \
    status stat st switch sw unlock update up'
    if [[ $COMP_CWORD -eq 1 ]] ; then
    if [[ "$cur" == -* ]]; then
    COMPREPLY=( $( compgen -W '--version' -- $cur ) )
    else
    COMPREPLY=( $( compgen -W "$commands" -- $cur ) )
    fi
    else
    prev=${COMP_WORDS[COMP_CWORD-1]}
    case $prev in
    --config-dir)
    _filedir -d
    return 0;
    -@(F|-file|-targets))
    _filedir
    return 0;
    --encoding)
    COMPREPLY=( $( compgen -W \
    '$( iconv --list | sed -e "s@//@@;" )' \
    -- "$cur" ) )
    return 0;
    --@(editor|diff|diff3)-cmd)
    COMP_WORDS=(COMP_WORDS[0] $cur)
    COMP_CWORD=1
    _command
    return 0;
    esac
    command=${COMP_WORDS[1]}
    if [[ "$cur" == -* ]]; then
    # possible options for the command
    case $command in
    add)
    options='--auto-props --no-auto-props \
    --force --targets --no-ignore \
    --non-recursive -N -q --quiet'
    @(blame|annotate|ann|praise))
    options='-r --revisions --username \
    --password --no-auth-cache \
    --non-interactive -v \
    --verbose --incremental --xml'
    cat)
    options='-r --revision --username \
    --password --no-auth-cache \
    --non-interactive'
    @(checkout|co))
    options='-r --revision -q --quiet -N \
    --non-recursive --username \
    --password --no-auth-cache \
    --non-interactive \
    --ignore-externals'
    cleanup)
    options='--diff3-cmd'
    @(commit|ci))
    options='-m --message -F --file \
    --encoding --force-log -q \
    --quiet --non-recursive -N \
    --targets --editor-cmd \
    --username --password \
    --no-auth-cache \
    --non-interactive --no-unlock'
    @(copy|cp))
    options='-m --message -F --file \
    --encoding --force-log -r \
    --revision -q --quiet \
    --editor-cmd -username \
    --password --no-auth-cache \
    --non-interactive'
    @(delete|del|remove|rm))
    options='--force -m --message -F \
    --file --encoding --force-log \
    -q --quiet --targets \
    --editor-cmd -username \
    --password --no-auth-cache \
    --non-interactive'
    @(diff|di))
    options='-r --revision -x --extensions \
    --diff-cmd --no-diff-deleted \
    -N --non-recursive --username \
    --password --no-auth-cache \
    --non-interactive --force \
    --old --new --notice-ancestry'
    export)
    options='-r --revision -q --quiet \
    --username --password \
    --no-auth-cache \
    --non-interactive -N \
    --non-recursive --force \
    --native-eol --ignore-externals'
    import)
    options='--auto-props --no-auto-props \
    -m --message -F --file \
    --encoding --force-log -q \
    --quiet --non-recursive \
    --no-ignore --editor-cmd \
    --username --password \
    --no-auth-cache \
    --non-interactive'
    info)
    options='--username --password \
    --no-auth-cache \
    --non-interactive -r \
    --revision --xml --targets \
    -R --recursive --incremental'
    @(list|ls))
    options='-r --revision -v --verbose -R \
    --recursive --username \
    --password --no-auth-cache \
    --non-interactive \
    --incremental --xml'
    lock)
    options='-m --message -F --file \
    --encoding --force-log \
    --targets --force --username \
    --password --no-auth-cache \
    --non-interactive'
    log)
    options='-r --revision -v --verbose \
    --targets --username \
    --password --no-auth-cache \
    --non-interactive \
    --stop-on-copy --incremental \
    --xml -q --quiet --limit'
    merge)
    options='-r --revision -N \
    --non-recursive -q --quiet \
    --force --dry-run --diff3-cmd \
    --username --password \
    --no-auth-cache \
    --non-interactive \
    --ignore-ancestry'
    mkdir)
    options='-m --message -F --file \
    --encoding --force-log -q \
    --quiet --editor-cmd \
    --username --password \
    --no-auth-cache \
    --non-interactive'
    @(move|mv|rename|ren))
    options='-m --message -F --file \
    --encoding --force-log -r \
    --revision -q --quiet \
    --force --editor-cmd \
    --username --password \
    --no-auth-cache \
    --non-interactive'
    @(propdel|pdel|pd))
    options='-q --quiet -R --recursive -r \
    --revision --revprop \
    --username --password \
    --no-auth-cache \
    --non-interactive'
    @(propedit|pedit|pe))
    options='-r --revision --revprop \
    --encoding --editor-cmd \
    --username --password \
    --no-auth-cache \
    --non-interactive --force'
    @(propget|pget|pg))
    options='-R --recursive -r --revision \
    --revprop --strict --username \
    --password --no-auth-cache \
    --non-interactive'
    @(proplist|plist|pl))
    options='-v --verbose -R --recursive \
    -r --revision --revprop -q \
    --quiet --username --password \
    --no-auth-cache \
    --non-interactive'
    @(propset|pset|ps))
    options='-F --file -q --quiet \
    --targets -R --recursive \
    --revprop --encoding \
    --username --password \
    --no-auth-cache \
    --non-interactive -r \
    --revision --force'
    resolved)
    options='--targets -R --recursive -q \
    --quiet'
    revert)
    options='--targets -R --recursive -q \
    --quiet'
    @(status|stat|st))
    options='-u --show-updates -v \
    --verbose -N --non-recursive \
    -q --quiet --username \
    --password --no-auth-cache \
    --non-interactive --no-ignore \
    --ignore-externals \
    --incremental --xml'
    @(switch|sw))
    options='--relocate -r --revision -N \
    --non-recursive -q --quiet \
    --username --password \
    --no-auth-cache \
    --non-interactive --diff3-cmd'
    unlock)
    options='--targets --force --username \
    --password --no-auth-cache \
    --non-interactive'
    @(update|up))
    options='-r --revision -N \
    --non-recursive -q --quiet \
    --username --password \
    --no-auth-cache \
    --non-interactive \
    --diff3-cmd --ignore-externals'
    esac
    options="$options --help -h --config-dir"
    COMPREPLY=( $( compgen -W "$options" -- $cur ) )
    else
    if [[ "$command" == @(help|h|\?) ]]; then
    COMPREPLY=( $( compgen -W "$commands" -- $cur ) )
    else
    _filedir
    fi
    fi
    fi
    return 0
    complete -F _svn $default svn
    _svnadmin()
    local cur prev commands options mode
    COMPREPLY=()
    cur=${COMP_WORDS[COMP_CWORD]}
    commands='create deltify dump help ? hotcopy list-dblogs \
    list-unused-dblogs load lslocks lstxns recover rmlocks \
    rmtxns setlog verify'
    if [[ $COMP_CWORD -eq 1 ]] ; then
    if [[ "$cur" == -* ]]; then
    COMPREPLY=( $( compgen -W '--version' -- $cur ) )
    else
    COMPREPLY=( $( compgen -W "$commands" -- $cur ) )
    fi
    else
    prev=${COMP_WORDS[COMP_CWORD-1]}
    case $prev in
    --config-dir)
    _filedir -d
    return 0;
    --fs-type)
    COMPREPLY=( $( compgen -W 'fsfs bdb' -- $cur ) )
    return 0;
    esac
    command=${COMP_WORDS[1]}
    if [[ "$cur" == -* ]]; then
    # possible options for the command
    case $command in
    create)
    options='--bdb-txn-nosync \
    --bdb-log-keep --config-dir \
    --fs-type'
    deltify)
    options='-r --revision -q --quiet'
    dump)
    options='-r --revision --incremental \
    -q --quiet --deltas'
    hotcopy)
    options='--clean-logs'
    load)
    options='--ignore-uuid --force-uuid \
    --parent-dir -q --quiet \
    --use-pre-commit-hook \
    --use-post-commit-hook'
    rmtxns)
    options='-q --quiet'
    setlog)
    options='-r --revision --bypass-hooks'
    esac
    options="$options --help -h"
    COMPREPLY=( $( compgen -W "$options" -- $cur ) )
    else
    if [[ "$command" == @(help|h|\?) ]]; then
    COMPREPLY=( $( compgen -W "$commands" -- $cur ) )
    else
    _filedir
    fi
    fi
    fi
    return 0
    complete -F _svnadmin $default svnadmin
    _svnlook()
    local cur prev commands options mode
    COMPREPLY=()
    cur=${COMP_WORDS[COMP_CWORD]}
    commands='author cat changed date diff dirs-changed help ? h history \
    info lock log propget pget pg proplist plist pl tree uuid \
    youngest'
    if [[ $COMP_CWORD -eq 1 ]] ; then
    if [[ "$cur" == -* ]]; then
    COMPREPLY=( $( compgen -W '--version' -- $cur ) )
    else
    COMPREPLY=( $( compgen -W "$commands" -- $cur ) )
    fi
    else
    command=${COMP_WORDS[1]}
    if [[ "$cur" == -* ]]; then
    # possible options for the command
    case $command in
    @(author|cat|date|dirs-changed|info|log))
    options='-r --revision -t \
    --transaction'
    changed)
    options='-r --revision -t \
    --transaction --copy-info'
    diff)
    options='-r --revision -t \
    --transaction \
    --no-diff-deleted \
    --no-diff-added \
    --diff-copy-from'
    history)
    options='-r --revision --show-ids'
    prop@(get|list))
    options='-r --revision -t \
    --transaction --revprop'
    tree)
    options='-r --revision -t \
    --transaction --show-ids \
    --full-paths'
    esac
    options="$options --help -h"
    COMPREPLY=( $( compgen -W "$options" -- $cur ) )
    else
    if [[ "$command" == @(help|h|\?) ]]; then
    COMPREPLY=( $( compgen -W "$commands" -- $cur ) )
    else
    _filedir
    fi
    fi
    fi
    return 0
    complete -F _svnlook $default svnlook
    Hope this helps.
    Last edited by alanhaggai (2008-09-21 02:08:12)

  • Text input - how set an automated space after each word?

    When typing in text and using the qwerty assisted text - how can i get it to automatically add a space after each word? My Droid original did that automatically... Thanks

    lovetennis7 wrote:
    When typing in text and using the qwerty assisted text - how can i get it to automatically add a space after each word? My Droid original did that automatically... Thanks
    I have confirmed that this feature was not included with the basic software package of the Incredible 2. 

  • While printing from word appl. printer after each line puts in number of page,

    while printing from word appl. printer after each line puts in number of page, so I do not print 3 pages but 5 instead. What to do?

    What printer models is this intended for?  I assume it is aimed at the lower end inkjets, with the suggestion of loading 10-25 sheets of paper.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Lost disk space after each reinstall.

    I've had to reinstall leopard on my macbook three times in the last week for different reasons. After each reinstall(erase and install) it appeared that I lost a little more GB to the HDD. I have a 250GB HDD, and I know it actualls reads as 232.87, but without uploading any media and only using the reinstall disks that came with the box, I have only 218 or so GB. Is this normal? I can't find the numbers anywhere; they just don't add up.

    Anthony Turtzo wrote:
    I can't find the numbers anywhere; they just don't add up.
    My guess is that you have added up the sizes of the folders visible in Finder at the root level of the drive (Applications, Library, System, & Users) & compared that total to the total space used on the drive. The two numbers will not match because there are also hidden files & folders at the root level of the drive that Finder does not normally show. The hidden items are necessary for the proper operation of the Mac & in normal use are managed by the system. Since users should not tamper with them directly without good reason & it requires expert knowledge to do so without breaking anything, they have been made invisible in the Finder view.
    It is normal for the drive space used by these items to fluctuate, & for the total to grow somewhat after first installing the OS. Some of the items contain temporary files that are created & destroyed as needed. Some contain usage, crash, & other informational logs that are managed by routines that the system automatically runs periodically to keep their total from becoming too large. Others contain initialization data gathered over time that the system uses to start up or to run processes efficiently.
    Thus, there is no fixed correct number for their total size since that depends on the history & current state of the machine. On my iMac G5, one large hidden folder ("var") currently uses about 1.05 GB of drive space, but consider that only a ballpark number since it may be considerably different on different Macs at different times.
    If you are still concerned about the health of the drive, especially that something is eating up disk space unnecessarily, then run Disk Utility to check it. In the "First Aid" tab select your drive & click the "Verify Disk" button. If this reports no problems then you can be pretty sure there is nothing to worry about.

  • RH8 After conversion, added space after conditional tag phrase

    We just installed RoboHelp 8. After converting my 3 projects from RH7 to RH8, the system added spaces in between words of a condtional build phrase. That's great since it's much easier to see the words -- that was an improvement over version 7.
    However, it's also adding a space after the conditional build phrases, which is incorrect. It adds a space before a comma, adds a space before a period if the conditional build phrase occurs at the end of the sentence, etc. But it doesn't look like it does this in every case...I'm not sure why it did this, but it only happened after the conversion to 8.
    The generated help appears as in the example below. Note the space before the period in the first sentence and the space before the comma in the second sentence. It has done this on quite a few pages.
    Customer Definition Detail
    This page allows you to add a new customer or to edit an existing customer . If you are adding a customer , you must complete the detail information and then save it.
    Tried to upload the example of conditional build phrase, but it's not letting me.
    Thank you in advance for any help you can offer. This would be a lot to manually repair, so I'm hoping someone knows of a way to fix this using a setting.

    Thanks for your posts.
    After trying everything I could think of the only thing that resolved the issue was replacing any instance of back-to-back conditional text followed by any punctuation with two sentence exactly the same except for the conditional choice.
    For example, the original sentence (color indicates conditional build tag):
         For customersmembers, this field indicates transaction limits.
    would be changed to these two sentences:
         For customers, this field indicates transaction limits.
        For members, this field indicates transaction limits.
    I'll submit this as a RoboHelp 8 bug in the forums (if it hasn't already been submitted).

  • Xserve raid can not recongize added space after expansion

    My Xserve is Mac OS X server (ver 10.5.7), 2x2.8GHz Quad-core intel Xeon CPU. My Raid box is older (It is ordered with ours previous G5 Xserve), but work with Intel Xserve pretty good. It has 5 500GB disks on lower controller as Raid 5, I recently bought a new 500GB Apple disk drive module, and using Expansion function in RAID Admin to expand current raid, after that, the Raid admin correctly shows increased disk size, but in my system (or disk utility), it still shows the original (unchanged) disk size.
    Could you please tell me how to make system recognize the newly added space? Thanks

    Hi, after expansion you need to re-format to get the increased size. Don't forget to backup all that data first !!!

  • Adding Space after ## in description

    Hi
    I have a requirement where for example-
         Text field has letter as ## in description -   material number is ##5This is ok.
         I have to change the above description as- material number is ##  5This is ok.
    That is if there is no space after ## , we have to add a space in the description.
    Please provide me ABAP code for that.
    Regards
    Deep

    " do this first so that if there is a space it will not show double spaces
    replace '## ' with '##' into maktx.
    " then do this
    replace '##' with '## ' into maktx.

  • QFS don�t update File System space after a failover

    When I do a fail-over (get down a master node of device QFS) while I delete a file the space on it (FS) is inconsistent (df command show mayor space than du command) and I have to do a file System Check on it to get free space.

    Thanks,
    The version of QFS is VERSION.4.6
    SUN Cluster version 3.2
    Solaris 10 8/07
    The file "mcf" is
    # Equipment Eq Eq Family Device Additional
    # Identifier Ord Type Set State Parameters
    kml 1 ms kml on shared
    /dev/did/dsk/d7s0 10 md kml on
    /dev/did/dsk/d8s0 11 md kml on
    /dev/did/dsk/d9s0 12 md kml on
    /dev/did/dsk/d10s0 13 md kml on
    /dev/did/dsk/d11s0 14 md kml on
    /dev/did/dsk/d12s0 15 md kml on
    /dev/did/dsk/d13s0 16 md kml on
    /dev/did/dsk/d14s0 17 md kml on
    /dev/did/dsk/d15s0 18 md kml on
    /dev/did/dsk/d16s0 19 md kml on
    /dev/did/dsk/d21s0 20 md kml on
    /dev/did/dsk/d22s0 21 md kml on
    /dev/did/dsk/d23s0 22 md kml on
    /dev/did/dsk/d24s0 23 md kml on
    /dev/did/dsk/d25s0 24 md kml on
    /dev/did/dsk/d26s0 25 md kml on
    /dev/did/dsk/d27s0 26 md kml on
    /dev/did/dsk/d28s0 27 md kml on
    /dev/did/dsk/d29s0 28 md kml on
    /dev/did/dsk/d30s0 29 md kml on
    # samfsinfo kml
    samfsinfo: filesystem kml is mounted.
    name: kml version: 2 shared
    time: Thursday, April 10, 2008 4:48:05 PM PYT
    count: 20
    capacity: 000000003d064400 DAU: 64
    space: 000000003d04e480
    ord eq capacity space device
    0 10 00000000030d1d00 00000000030d0580 /dev/did/dsk/d7s0
    1 11 00000000030d1d00 00000000030d1c00 /dev/did/dsk/d8s0
    2 12 00000000030d1d00 00000000030d1c40 /dev/did/dsk/d9s0
    3 13 00000000030d1d00 00000000030d1c40 /dev/did/dsk/d10s0
    4 14 00000000030d1d00 00000000030d1c40 /dev/did/dsk/d11s0
    5 15 00000000030d1d00 00000000030d1c40 /dev/did/dsk/d12s0
    6 16 00000000030d1d00 00000000030d1c40 /dev/did/dsk/d13s0
    7 17 00000000030d1d00 00000000030d1c40 /dev/did/dsk/d14s0
    8 18 00000000030d1d00 00000000030d1c40 /dev/did/dsk/d15s0
    9 19 00000000030d1d00 00000000030d1c40 /dev/did/dsk/d16s0
    10 20 00000000030d1d00 00000000030d1c40 /dev/did/dsk/d21s0
    11 21 00000000030d1d00 00000000030d1c40 /dev/did/dsk/d22s0
    12 22 00000000030d1d00 00000000030d1c40 /dev/did/dsk/d23s0
    13 23 00000000030d1d00 00000000030d1c40 /dev/did/dsk/d24s0
    14 24 00000000030d1d00 00000000030d1c40 /dev/did/dsk/d25s0
    15 25 00000000030d1d00 00000000030d1c40 /dev/did/dsk/d26s0
    16 26 00000000030d1d00 00000000030d1c40 /dev/did/dsk/d27s0
    17 27 00000000030d1d00 00000000030d1c40 /dev/did/dsk/d28s0
    18 28 00000000030d1d00 00000000030d1c40 /dev/did/dsk/d29s0
    19 29 00000000030d1d00 00000000030d1c40 /dev/did/dsk/d30s0
    #df -k |grep kml
    kml 1023820800 5384 1023815416 1% /oradata_kml1
    #clrs status -g qfs-kml-rg +
    Cluster Resources ===
    Resource Name Node Name State Status Message
    qfs-kml-rs m9ka Online Online - Service is online.
    m9kb Offline Offline
    Best regasts,
    Ivan

  • How to commit the PO form after each line using form personalization

    Hi All,
    I have a requirement, wherein we need to commit the Purchase order form, once a line is entered or before moving to the next line using form personalization.
    Please assist me in getting it done.
    Regards,
    KR.
    Edited by: 834152 on Feb 17, 2011 9:13 PM

    Hi Sandeep,
    Thanks for your response.
    At the line level in the purchase order form, we have configured DFF with one field for train# and 14 fields for the container#.
    In order to prevent the user from entering the same container# twice in the same PO. We need to save the PO on each line. So that when the user move to the next line, our program will check with base tables and confirm whether the entered container# is free to use or not.
    Regards,
    KR.

  • Adding Space Below a Line of Text

    Is there a CSS rule to control and add space below a line of text? I know about line-height, but that adds space above and below, I just want to add space below the line of text.

    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <style>
    body {
        width: 400px;
        margin: auto;
    p {
        font-size: 12px;
        line-height: 20px;
        position: relative;
        top: -2px;   
    </style>
    </head>
    <body>
    <p>Duis aute irure dolor ut aliquip ex ea commodo consequat. Eu fugiat nulla pariatur. Sunt in culpa quis nostrud exercitation sed do eiusmod tempor incididunt. Mollit anim id est laborum.</p>
    <p>Ut labore et dolore magna aliqua. Eu fugiat nulla pariatur. Ut enim ad minim veniam, cupidatat non proident, ut aliquip ex ea commodo consequat.</p>
    </body>
    </html>
    Gramps

  • How to queue movie files to play after each other?

    Hi,
    I have home movies that I want to watch continually. I'm sick and tired of clicking on each file and playing it. I'd like to queue a selection of movies and just let them run one after another.
    HOW do I do this? Help please!!
    Thanks,
    Chris.

    A web search hasn't revealed any immediate obvious answers, suggesting queueing is not a feature QT (maybe different in the Windows version).
    I am only familiar with the cumbersome method as outlined in [http://www.ehow.com/how4453086present-multiple-movies-same-quicktime.html] where you copy (if only temporarily) multiple movies into one long movie.
    Use something like http://niceplayer.net/ , or as I said, iTunes should be able to do this in a playlist since it is the .mov format.
    Message was edited by: Limnos

  • In Spool Retention Period adding - "Delete After 365 Days"? Is it possible?

    Team,
    rel 4.7
    I have the following retention periods in the spool drop down:
    Delete After 1 Days
    Delete After 2 Days
    Delete After 3 Days
    Delete After 8 Days
    Do Not Delete
    Question: I want to add other periods like 365...
    where can I maintain it.
    Thanks
    Naved
    PS. These retention periods carry over to SAPinBOX and populate expiration date field
    Message was edited by: SAPna2000
    Message was edited by: SAPna2000

    Hi,
    I know Job retention period by using T/code : SO16--> document org.
    Check this may help.
    Lanka

Maybe you are looking for

  • [SOLVED] Can't send output to external monitor

    I've got a Dell Inspiron 1501 laptop which I sometimes use to give presentations at my school. Last time, in mid october, it worked perfectly, but now my laptop and the digital projector seem to ignore each other. The only difference between last tim

  • Worthwhile help from FCP veterans...

    I spent 2 hours reading posts, in an attempt to solve a recurring problem I have...A final product, that when burned to DVD, looks like a pile of dog doo. Incidently, searching "dog doo" returns no posts Video editing is a hobby, and one that has lim

  • STP Won't Recognize Edirol FA 101 Fireware Interface

    Anybody have any ideas as to why this is? The FA 101 shows up in the sound control panel for in and out...it shows up as a viable inteface for GarageBand for crying out loud...why not in STP? This is about as basic as they come in terms of getting so

  • Incentives and Commission Management ?! HELP !!

    Hi guys, Anyone outhere ever worked with/implemented Incentives and Commission Management (ICM) and is willing to share some precious knowledge on the subject ?? I am currently envolved in the research and study of this functionality and I would real

  • P2 files don't display in Log and Transfer VIEWER FCP 6.0

    Hey, I'm trying to log a bunch of P2 clips in the P2 viewer and, while I can see a thumbnail of the clip in the left side of the screen, it won't show up in the viewer. If I hit play it appears to be progressing in the viewer, but no picture or audio