Help with exporting Deski to text file via Web Intelligence

We are currently converting from BO version 5 to BO XI rev2. I have a report that must be scheduled to a flie in plain text format. I am using a deski report. When I save as to text, the file is fine. When I schedule it in webi, the file seems to be missing the end of line character for each row in the table, so it cannot be used for an import to another program. Can anybody help with this?-

well, in that case you need to determine if this issue only happens with a perticular report or all of them, if it happens only with reports imported from 5.x or with newly created reports as well.
Looks like it is happening only when report is exported from Infoview, not in the Deski client. This might indicate a problem at the Web Apllication server (tomcat or one you use).
If this issue is happening with any report - it might be a bug. In that case you have no options as there are no more patches for XIR2.
On the other hand - if all you need is to extract data for consumption in another tool , why not use Data integrator instead ?
Also, if this desn't work in Deski - does it work if you convert your reports to webi and export from those ?

Similar Messages

  • Help with reading in a text file and arrays

    I need to read in a text file with info like this for example
    dave
    martha
    dave
    billy
    I can read the information into an array and display the names but what I need to do is display how many times the same name is in the file for example the output should be
    dave 2
    martha 1
    billy 1
    How can I accomplish this? Would I use a Compareto Method to find
    duplicate names?

    Hi,
    I would recommend storing them in a Hashtable.. something like this:
    Hashtable names = new Hashtable() ;
    String s ;
    while( ( s = bufferedReader.readLine() ) != null ) {
        if ( names.contains( s ) ) {
           names.put( s , new Integer( names.get(s)+1 ) ) ;
        else {
           names.put( s , new Integer( 1 ) ) ;
    }Then the hashtable will contain a set of keys and values, which are the names and counts respectively.
    Kenny

  • Help with windows powershell - reading text file & manipulating the data

    Hello,
    I'm new to windows power shell & need your help/expertise in formatting the below *.txt file.
    Could you please provide me with a sample powershell script which can accomplish the below request. Thank you so much for your help in advance.
    <name>,<ticker>,<date>,<open>,<high>,<low>,<close>,<vol>,<oi>
    GOOG 10-Jan-2014 1165 Put,GOOG140110P01165000,20140114,32.9,32.9,32.9,32.9,0,0
    GOOG 10-Jan-2014 1170 Put,GOOG140110P01170000,20140114,40.87,40.87,40.87,40.87,0,0
    GOOG 10-Jan-2014 1180 Put,GOOG140110P01180000,20140114,54.8,54.8,54.8,54.8,0,0
    GOOG 10-Jan-2014 1190 Put,GOOG140110P01190000,20140114,50.9,50.9,50.9,50.9,0,0
    GOOG 10-Jan-2014 1200 Put,GOOG140110P01200000,20140114,60.9,60.9,60.9,60.9,0,0
    GOOG 10-Jan-2014 1300 Put,GOOG140110P01300000,20140114,157.8,157.8,157.8,157.8,0,0
    PCLN 10-Jan-2014 1170 Call,PCLN140110C01170000,20140114,0.05,0.05,0.05,0.05,0,873
    PCLN 10-Jan-2014 1172.5 Call,PCLN140110C01172500,20140114,0.01,0.01,0.01,0.01,0,136
    PCLN 10-Jan-2014 1175 Call,PCLN140110C01175000,20140114,0.15,0.15,0.15,0.15,0,666
    PCLN 10-Jan-2014 1177.5 Call,PCLN140110C01177500,20140114,0.05,0.05,0.05,0.05,0,174
    PCLN 10-Jan-2014 1180 Call,PCLN140110C01180000,20140114,0.02,0.02,0.02,0.02,0,896
    PCLN 10-Jan-2014 1182.5 Call,PCLN140110C01182500,20140114,0.07,0.07,0.07,0.07,0,138
    PCLN 10-Jan-2014 1185 Call,PCLN140110C01185000,20140114,0.05,0.05,0.05,0.05,0,842
    PCLN 10-Jan-2014 1187.5 Call,PCLN140110C01187500,20140114,0.05,0.05,0.05,0.05,0,36
    PCLN 10-Jan-2014 1190 Call,PCLN140110C01190000,20140114,0.01,0.01,0.01,0.01,0,909
    PCLN 10-Jan-2014 1192.5 Call,PCLN140110C01192500,20140114,0.2,0.2,0.2,0.2,0,88
    PCLN 10-Jan-2014 1195 Call,PCLN140110C01195000,20140114,0.04,0.04,0.04,0.04,0,835
    PCLN 10-Jan-2014 1197.5 Call,PCLN140110C01197500,20140114,0.25,0.25,0.25,0.25,0,22
    PCLN 10-Jan-2014 1200 Call,PCLN140110C01200000,20140114,0.04,0.04,0.04,0.04,0,1073
    PCLN 10-Jan-2014 1205 Call,PCLN140110C01205000,20140114,0.05,0.05,0.05,0.05,0,434
    PCLN 10-Jan-2014 1210 Call,PCLN140110C01210000,20140114,0.03,0.03,0.03,0.03,0,346
    PCLN 10-Jan-2014 1215 Call,PCLN140110C01215000,20140114,0.05,0.05,0.05,0.05,0,288
    Z 22-Feb-2014 80 Call,Z140222C00080000,20140114,11.5,11.5,11.5,11.5,4,335
    Z 22-Feb-2014 85 Call,Z140222C00085000,20140114,7.83,7.83,7.83,7.83,21,523
    Z 22-Feb-2014 90 Call,Z140222C00090000,20140114,5.74,5.74,5.74,5.74,42,422
    Z 22-Feb-2014 95 Call,Z140222C00095000,20140114,3.89,3.89,3.89,3.89,37,389
    Z 22-Feb-2014 100 Call,Z140222C00100000,20140114,2.54,2.54,2.54,2.54,44,576
    Z 22-Feb-2014 105 Call,Z140222C00105000,20140114,1.62,1.62,1.62,1.62,3,117
    Z 22-Feb-2014 110 Call,Z140222C00110000,20140114,0.99,0.99,0.99,0.99,15,215
    The ticker symbol in above file is max of 19 bytes. The software I use cannot convert this data, as it has a restriction of 14 bytes for ticker field.
    I want to reduce the ticker field to 14 bytes using below logic & rewrite the modified symbol in the same column/file.
    GOOG140110P01165000 - Ticker explanation is as shown below
    Symbol : GOOG  ( 4 bytes)
    Year : 14 ( 2 bytes)
    Month : 01 ( 2 bytes)
    Date : 10 ( 2 bytes)
    Call/Put : C or P ( 1 byte) 
    Strike : 01165 ( 5 bytes )
    Strike (Decimal) : 000 ( 3 bytes)
    Since they total to 19 bytes,my requirement is to bring down the ticker field size to 14 bytes using below formula.
    1) Reduce year field to 1 byte i.e. 14 can be kept as 4
    2) Strike ( Decimal) can be reduced to 1 byte ( drop the ending 2 bytes)
    3) Month column ( 2 bytes) & call/put ( 1 byte) can be reduced to 1 byte ( saving of 2 bytes) by replacing 01 & C combination with A , 01 & P combination with B so on as mentioned below.
    Month( 2 bytes)
    Call/Put ( 1 byte)
    Replace with
    01
    C
    A
    01
    P
    B
    02
    C
    C
    02
    P
    D
    03
    C
    E
    03
    P
    F
    04
    C
    G
    04
    P
    H
    05
    C
    I
    05
    P
    J
    06
    C
    K
    06
    P
    L
    07
    C
    M
    07
    P
    N
    08
    C
    O
    08
    P
    P
    09
    C
    Q
    09
    P
    R
    10
    C
    S
    10
    P
    T
    11
    C
    U
    11
    P
    V
    12
    C
    W
    12
    P
    X
    So the modified ticker will look like GOOG4B10011650
    GOOG - symbol
    4 - year which is 2014 in this case 
    B- 01 ( jan) & Put (P) is replaced with letter B
    10 - Date
    01165 - Strike price
    0 - Decimal portion of strike price
    The output file should look like below.
    <name>,<ticker>,<date>,<open>,<high>,<low>,<close>,<vol>,<oi>
    GOOG 10-Jan-2014 1165 Put,GOOG410B011650,20140114,32.9,32.9,32.9,32.9,0,0
    Thank you for your inputs with this request.
    Regards,
    Aimforsky

    Hi Neothwin,
    Thank you for your prompt response. I really appreciate it. My file contains a header record.
    I ran the conversion, it converts very fast.
    I noticed the decimal portion of strike is lost in the conversion. AAL140110C00023500 must be converted as AAL4A1000235 but instead its showing as AAL4A10000230 ( last byte
    should be 5 but it shows as 0)
    Also I noticed it puts double quotes ('') in front of every column. I tried to drop ' in the code but it complains.
    Also, instead of giving file name in the shell script , is it possible to go thru all files in a folder and convert them? I'm new to this scripting/programming sorry if I ask you the basic questions. Thank you so much for sparing your valuable time on this
    request. Have a great day ! 
    ORIGINAL FILE<name>,<ticker>,<date>,<open>,<high>,<low>,<close>,<vol>,<oi>
    AAL 10-Jan-2014 23.5 Call,AAL140110C00023500,20140115,1.85,1.85,1.85,1.85,0,0
    AAL 10-Jan-2014 24 Call,AAL140110C00024000,20140115,5.8,5.8,5.8,5.8,0,0
    AAL 10-Jan-2014 24.5 Call,AAL140110C00024500,20140115,2.05,2.05,2.05,2.05,0,0
    AAL 10-Jan-2014 25 Call,AAL140110C00025000,20140115,2.3,2.3,2.3,2.3,0,0
    AAL 10-Jan-2014 25.5 Call,AAL140110C00025500,20140115,1.35,1.35,1.35,1.35,0,0
    AAL 10-Jan-2014 26 Call,AAL140110C00026000,20140115,3.4,3.4,3.4,3.4,0,0
    AAL 10-Jan-2014 26.5 Call,AAL140110C00026500,20140115,2.65,2.65,2.65,2.65,0,0
    AAL 10-Jan-2014 27 Call,AAL140110C00027000,20140115,2.26,2.26,2.26,2.26,0,0
    AAL 10-Jan-2014 27.5 Call,AAL140110C00027500,20140115,1.75,1.75,1.75,1.75,0,0
    AAL 10-Jan-2014 28 Call,AAL140110C00028000,20140115,1.45,1.45,1.45,1.45,0,0
    AAL 10-Jan-2014 28.5 Call,AAL140110C00028500,20140115,0.9,0.9,0.9,0.9,0,0
    AAL 10-Jan-2014 29 Call,AAL140110C00029000,20140115,0.4,0.4,0.4,0.4,0,0
    AAL 10-Jan-2014 29.5 Call,AAL140110C00029500,20140115,0.05,0.05,0.05,0.05,0,4812
    AAL 10-Jan-2014 30 Call,AAL140110C00030000,20140115,0.05,0.05,0.05,0.05,0,636
    AAL 10-Jan-2014 21.5 Put,AAL140110P00021500,20140115,0.08,0.08,0.08,0.08,0,11
    AAL 10-Jan-2014 23 Put,AAL140110P00023000,20140115,0.05,0.05,0.05,0.05,0,51
    AAL 10-Jan-2014 23.5 Put,AAL140110P00023500,20140115,0.05,0.05,0.05,0.05,0,235
    AAL 10-Jan-2014 24 Put,AAL140110P00024000,20140115,0.1,0.1,0.1,0.1,0,77
    AAL 10-Jan-2014 24.5 Put,AAL140110P00024500,20140115,0.05,0.05,0.05,0.05,0,292
    AAL 10-Jan-2014 25 Put,AAL140110P00025000,20140115,0.05,0.05,0.05,0.05,0,1380
    AAL 10-Jan-2014 25.5 Put,AAL140110P00025500,20140115,0.02,0.02,0.02,0.02,0,1549
    AAL 10-Jan-2014 26 Put,AAL140110P00026000,20140115,0.1,0.1,0.1,0.1,0,665
    AAL 10-Jan-2014 26.5 Put,AAL140110P00026500,20140115,0.02,0.02,0.02,0.02,0,632
    AAL 10-Jan-2014 27 Put,AAL140110P00027000,20140115,0.05,0.05,0.05,0.05,0,2161
    AAL 10-Jan-2014 27.5 Put,AAL140110P00027500,20140115,0.1,0.1,0.1,0.1,0,310
    AAL 10-Jan-2014 28 Put,AAL140110P00028000,20140115,0.01,0.01,0.01,0.01,0,642
    AAL 10-Jan-2014 28.5 Put,AAL140110P00028500,20140115,0.05,0.05,0.05,0.05,0,291
    AAL 10-Jan-2014 29 Put,AAL140110P00029000,20140115,0.05,0.05,0.05,0.05,0,6728
    AAL 10-Jan-2014 29.5 Put,AAL140110P00029500,20140115,0.3,0.3,0.3,0.3,0,0
    AAL 10-Jan-2014 30 Put,AAL140110P00030000,20140115,4.3,4.3,4.3,4.3,0,0
    AAL 10-Jan-2014 32 Put,AAL140110P00032000,20140115,2.6,2.6,2.6,2.6,0,0
    AAL 18-Jan-2014 0.5 Call,AAL140118C00000500,20140115,11,11,11,11,0,180
    AAL 18-Jan-2014 1 Call,AAL140118C00001000,20140115,27.9,27.9,27.9,27.9,0,68
    AAL 18-Jan-2014 2 Call,AAL140118C00002000,20140115,22.7,22.7,22.7,22.7,0,7
    AAL 18-Jan-2014 3 Call,AAL140118C00003000,20140115,17.15,17.15,17.15,17.15,0,10
    CONVERTED FILE:"<name>","<ticker>","<date>","<open>","<high>","<low>","<close>","<vol>","<oi>"
    "AAL 10-Jan-2014 23.5 Call","AAL4A10000230","20140115","1.85","1.85","1.85","1.85","0","0"
    "AAL 10-Jan-2014 24 Call","AAL4A10000240","20140115","5.8","5.8","5.8","5.8","0","0"
    "AAL 10-Jan-2014 24.5 Call","AAL4A10000240","20140115","2.05","2.05","2.05","2.05","0","0"
    "AAL 10-Jan-2014 25 Call","AAL4A10000250","20140115","2.3","2.3","2.3","2.3","0","0"
    "AAL 10-Jan-2014 25.5 Call","AAL4A10000250","20140115","1.35","1.35","1.35","1.35","0","0"
    "AAL 10-Jan-2014 26 Call","AAL4A10000260","20140115","3.4","3.4","3.4","3.4","0","0"
    "AAL 10-Jan-2014 26.5 Call","AAL4A10000260","20140115","2.65","2.65","2.65","2.65","0","0"
    "AAL 10-Jan-2014 27 Call","AAL4A10000270","20140115","2.26","2.26","2.26","2.26","0","0"
    "AAL 10-Jan-2014 27.5 Call","AAL4A10000270","20140115","1.75","1.75","1.75","1.75","0","0"
    "AAL 10-Jan-2014 28 Call","AAL4A10000280","20140115","1.45","1.45","1.45","1.45","0","0"
    "AAL 10-Jan-2014 28.5 Call","AAL4A10000280","20140115","0.9","0.9","0.9","0.9","0","0"
    "AAL 10-Jan-2014 29 Call","AAL4A10000290","20140115","0.4","0.4","0.4","0.4","0","0"
    "AAL 10-Jan-2014 29.5 Call","AAL4A10000290","20140115","0.05","0.05","0.05","0.05","0","4812"
    "AAL 10-Jan-2014 30 Call","AAL4A10000300","20140115","0.05","0.05","0.05","0.05","0","636"
    "AAL 10-Jan-2014 21.5 Put","AAL4B10000210","20140115","0.08","0.08","0.08","0.08","0","11"
    "AAL 10-Jan-2014 23 Put","AAL4B10000230","20140115","0.05","0.05","0.05","0.05","0","51"
    "AAL 10-Jan-2014 23.5 Put","AAL4B10000230","20140115","0.05","0.05","0.05","0.05","0","235"
    "AAL 10-Jan-2014 24 Put","AAL4B10000240","20140115","0.1","0.1","0.1","0.1","0","77"
    "AAL 10-Jan-2014 24.5 Put","AAL4B10000240","20140115","0.05","0.05","0.05","0.05","0","292"
    "AAL 10-Jan-2014 25 Put","AAL4B10000250","20140115","0.05","0.05","0.05","0.05","0","1380"
    "AAL 10-Jan-2014 25.5 Put","AAL4B10000250","20140115","0.02","0.02","0.02","0.02","0","1549"
    "AAL 10-Jan-2014 26 Put","AAL4B10000260","20140115","0.1","0.1","0.1","0.1","0","665"
    "AAL 10-Jan-2014 26.5 Put","AAL4B10000260","20140115","0.02","0.02","0.02","0.02","0","632"
    "AAL 10-Jan-2014 27 Put","AAL4B10000270","20140115","0.05","0.05","0.05","0.05","0",”2161"

  • Help with exporting to an Excel spreadsheet

    Greetings!
    I would first like to say that I am a student working on a
    data acquisition system for a company I have an internship with.  I have used LabVIEW in classes a lot but have
    very limited experience in creating VIs on my own
    (this is the first time Im doing this without a specific guide as I had in
    class).  This VI will be used to monitor
    the efficiency of an air pollution control system so it will be running
    continuously for a few days at a time so there will be a lot of data points.  The company I work for would like the VI to record
    the data from each signal every 30 secs or so to the same excel file with the
    time/date the reading was taken included in each row. So far the VI uses the DAQ
    assistant to take in data from temperature, humidity, and pressure thermocouples
    and displays the readings on the front panel. 
    That part is fine, but as you know it doesnt export the data.  The only thing I have tried that has worked
    is the "Write to Measurement File" 
    way of doing this, but the format it puts the data in is not practical
    for analysis as it has a lot of extraneous information included with every
    reading.  Another problem that I have run
    into is trying to split up the VI so I can have real-time readings on the front
    panel, but have the delay of taking samples that are exported to the text file.  My idea is to put the signals and front panel
    gauges in its own while loop and then the file exporting part of the VI inside
    its own while loop with the "Time Delay" icon.  To me all of this seems like it should be
    very simple to fix, but my lack of experience with LabVIEW is really hampering
    my progress.  Hopefully someone can
    help.  Thank you!
     ~Dustin
     The following is the VI I have worked on so far.  Thanks again
    Attachments:
    DAQ1.vi ‏340 KB

    One additional thing to note is that the latest code that was posted didn't actually write to an Excel file. It wrote to a file that you can open with Excel - after wading through a dialog box that tells Excel how to read it. Depending on what you are wanting to do with the data next, this is a potentially significant distinction.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Send text file via serial

    hi
    i've trying to send a text file via rs-232 but no success
    The file contains a code for a device im dealing with, when i send the text file with labview to the device, it went ok with no errors, but when i connect the device on hyperterminal and check if the code was loaded it was not.
    can you please give some clues to deal with this?
    thanks a lot
    attached example text file and LV code
    Attachments:
    Serial.JPG ‏45 KB
    DefineHome.txt ‏1 KB

    Some devices are very picky with the End Of Line.  You might want to right-click on your FIle Read and deselect the "Convert EOL".
    Or if you need to write 1 line at a time, right click on the Read Text File and select "Read Lines".  Set the number of line to read to -1 (read all) and then wire the resulting array into a FOR loop where you do the VISA Write.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Please help me in Printing a text file :-(

    Hi,
    I have asked this question 3 times, but I didnt get any reply. Can someone please help me in printing a text file to a printer using java. I am able to print it but the problem is the whole file is printed in a messy way. Is there any method in java that prints the text file exactly how it is?
    Thank u very much.

    JavaWorld has a series of articles on how to print using Java: http://www.javaworld.com/javaworld/jw-10-2000/jw-1020-print.html

  • Uploading a text file from webi filter area as part of the query condition

    Post Author: balasura
    CA Forum: Publishing
    Requirement : Uploading a text file from webi filter area as part of the query condition Hi, I am in a serious requirement which I am not sure available in BO XI. Can some one help me plz. I am using BO XI R2, webi I am generating a ad-hoc report, when I want to give a filter condition for a report, the condition should be uploaded from a .txt file. In the current scenario we have LOV, but LOV could hold only a small number of value, my requirement is just like a lov but the list of values will be available in a text file ( which could number to 2000 or 2500 rows). I would like to upload this 2500 values in the form of a flat text file to make a query and genrate report. Is it possible in BO XI? For Eg:- Select * from Shipment Where u201CShipment id = u2018SC4539u2019 or Shipment id = u2018SC4598u2019u201D The u201Cwhereu201D condition (filter) which has shipment id will be available in a text file and it needs to be loaded in the form of .txt file so that it will be part of the filter condition. Content of a .txt file could be this shipment.txt =============== SC4539 sc2034 SC2343 SC3892 . . . . etc upto 2500 shipment Ids I will be very glad if some could provide me a solution. Thanks in advance. - Bala

    Hi Ron,
       This User does not have the access to Tcode ST01.
       The user executed Tcode SU53 immediately following the authorization failure to see the authorization objects. The 'Authorization obj' is blank and under the Description it has 'The last Authorization check was successful' with green tick mark.
      Any further suggestions, PLEASE.
    Thanks.

  • Down-/Upload files via Web Services using a NON-SAP system!?

    Hello,
    is it possible to down-/upload files via web services using a NON-SAP system!?
    Regards,
    Jens

    Hi Jens,
    I am not sure about your requirement here. What i could understand is that you want to check whether service could handle file processing?
    1) Uploading file - You can build a Webservice which has import/export parameters as the file structures and implement the proxy class in such a way that the passed data is written to application server.
    2) Downloading file - Same as uploading file, but the proxy class would have the code to extract data from the application server and pass them as output parameter.
    Functionality of Non SAP system: The system which calls these services should be able to convert the output of proxy data into file in case of downloading the file and it should be able to convert the file data into export parameters in case of uploading file.
    Hope this helps.
    Regards,
    Prasanna

  • How to download a file via web service in Windows Phone 8.1?

    My project just got 2 part.
    1.Pivot app
    2.Webclient server (provide data for pivot app the view the data)
    My concert that how do i do a download button to download a file via web services in to isolated storage.
    urgent!

    something like this:
    public async System.Threading.Tasks.Task DownloadFile()
    using (var client = new Windows.Web.Http.HttpClient())
    var stream = await client.GetInputStreamAsync(new System.Uri("http://urltomyfile"));
    var file = await ApplicationData.Current.LocalFolder.CreateFileAsync("myfile.txt", CreationCollisionOption.GenerateUniqueName);
    using (var fileStream = await file.OpenAsync(FileAccessMode.ReadWrite))
    IBuffer buffer = new Windows.Storage.Streams.Buffer(1024);
    while ((buffer = await stream.ReadAsync(buffer, buffer.Capacity, InputStreamOptions.None)).Length > 0)
    await fileStream.WriteAsync(buffer);
    await fileStream.FlushAsync();
    how is your webservices offering the file?
    Microsoft Certified Solutions Developer - Windows Store Apps Using C#

  • How to setup the access privilege of flash file in Web Intelligence?

    How to setup the access privilege of flash file in Web Intelligence?   WEBI can set access privilege for single WEBI report file, but it seem cano not set access privilege for one flash file.

    Thank you Maksim,
    I did set the "selectionMode" to "Auto". I don't understand where In supply function I have to set lead selection of nested node to first element. Please elaborate on this. Are you talking about the context attribute bound to the second table? OR do I have to change the Importing parameters "Node" and "Parent_Element" of my supply function?
    Thanks for your time.

  • Help with Exporting files in Aperture

    Hello looking for your help (first time poster)
    My problem is when I export using Aperture the file size almost triples . I Import Nikon RAW file, make my adjustments and export by using export version- TIFF original size 16bit.
    The file size in Aperture is 50mb and when I check it in photoshop the file size is 143mb this is killing my hard drive!!
    Cheers Dan.
    Message was edited by: d4an

    In either 16bit TIFF or PSD - esp if you have multiple bitmapped layers you are going to end up with big files, that is all there is to it. Are you sure you need PS to do your "tidying up" In most cases the answer is probably not depending on what "tidying up" means.
    RB

  • Help with Automator to copy text from multiple files

    Hello,
    I'm new to automator and applescript but it seems like what I'm trying to accomplish is fairly easy.
    I'd like to run a workflow that will open a text file, copy the contents, paste the contents into a given application and then take a screenshot.
    I'd like to be able to do this for several hundred text files.
    I've tried with a Service but can't figure out how to provide the text input after "Get Specified Finder Items".
    Get Specified Finder Items --> Get Contents of TextEdit Document --> Copy to Clipboard --> results in no data.

    You'll need to use Applescript (you could use the Automator Run Applescript Action).
    set recipientAddress to do shell script "cat <filename.txt>"
    set theSubject to "Type your subject here!"
    set theContent to "Type your message content here!"
    tell application "Mail"
      activate
              set theMessage to make new outgoing message with properties {subject:theSubject, content:theContent, visible:true}
              tell theMessage
      make new to recipient with properties {address:recipientAddress}
      -- Uncomment send to Send the Message:
      -- send
              end tell
    end tell

  • Issue when exporting data to text file in BI Publisher 10.1.3.4

    We are trying to export over 900,000 records to a text file from BI Publisher. The reports keep on running while scheduling. But if we reduce the record limit to 200,000 it works fine. Please help us to resolve this issue. Its really urgent.

    How are you doing it? With a template? Need more info to be able to help
    Tim

  • Need some Help with exporting as a .PDF !

    I have been trying to Export / Save As in Photoshop an image as a PDF. Whenever it is exported my image is about half the size as it used to be.
    I am exporting from Photoshop a CMYK image that is 1500 X 1050 and it downsizes it to about 360 x 252. I choose PDF in the Save As and Press Quality. I also made sure that it wasn't downsampling to a lower DPI. I used "Do Not Downsample".
    What is really strange is that I have tried multiple times with different versions of a file in different programs like Illustrator and InDesign and the same thing happens everytime. I am using Adobe Creative Suite CS4 and a Macbook OS 10.6.8 with Snow Leopard and have just recently updated my computer. If anyone has any ideas as to why this is happening I would love your feedback as I have been frustratingly working on this the past 4 hours. Thank you!!!

    I was creating notecards to be printed at a print shop. I did figure out what was happening though, my computer was showing the dimensions wrongly. Even though the dimensions were displayed as this:
    My images were at the correct dimensions but not showed properly. Thanks so much for the help though, I'm glad to have it when I need it!

  • I need help with exporting 720p video for youtube.

    Hi everyone, I have been using Adobe premeir for almost a year now and I love it, as its very professional and powerful. I used to edit Standard with no problem, then export the full unconverted file (wmv) and run it though Windows Movie Maker to compress it (haha yeah I know its crazy.) Now that I got a camera capable of shooting HDV I want to use it. Im just wondering the following:
    1.What format should I export with in Adobe Media Encoder? (Original Raw footage files from Camera are MOV formatted)
    2.What should I set the Bitrate to?
    3.How do I export to flash without it being to large of a file (Under 200mb's for a 5 minute video) and have it not choppy or pixelated?
    4.How do I speed up exporting, how many passes should I do?
    5.What overall is the best setup for youtube?
    I also noticed a small glitch, and its when I export normally (full size, no compression) and run it though a compressor it cuts out all of the titles, and just flashes them for a milisecond. Its really odd. It only happens when I export in a certain format in which I cannot quite remember. Anyways.. thanks in advance for helping me. Its very appreciated.
    NineLivesProductions

    perform a search using the term export for web and it should throw up some ideas.
    here's one for starters:
    http://discussions.apple.com/thread.jspa?messageID=2309121&#2309121
    If you're using flip4mac to convert to wmv, the trial stops at 30 seconds - you need at least wmvstudio to export to wmv:
    http://www.flip4mac.com/wmv.htm

Maybe you are looking for

  • WD Java application translation to japanese not happening

    Hi All, I'm working on EP7.0 version and i need to do translation of webdynpro application into japanese. I've done the following: 1.I created a new .xlf file "<>.wdview_ja.xlf" and translated the labels,text,buttons to "ja" characters. 2.My folder h

  • Itunes refuses to import certain tracks

    Hello everyone. ill cut to the chase: iTunes refuses to import random songs in my collection that it used to play before. I moved my music off of an external and no matter what i try be it adding the tracks to the "automaticly add to itunes" dragging

  • Want to populate LIST in the same format as it is coming in the application

    HI, I need to create a list on my page and want exactly it the same way as it is getting displayed in the apex application when u open it. What are the setting required so that my list appears in the same format as is appearing in the site. Is is pos

  • Trial versions

    Is it true that most applications (especially the more expensive ones) do not offer trial/demo versions? For example, I am trying to decide on a birding field guide out of several choices. iBird offers a free app that has data on 15 birds (as opposed

  • [Java XML]

    I'M TRYING TO REALIZE A DOM PARSER WITH "XERCES V 2.8.1"(I HAVE UNZIPPED THE FOLDER "ORG" OF THE XERCES IN THE SAME DIR OF THE PROGRAM) BUT WHEN I RUN THE PROGRAM I HAVE MANY ERRORS..WHY?THANKS Exception in thread "main" org.apache.xerces.parsers.Obj