What is '.prn' format ?

hi experts , 
     during bdc why we need to save excel file in '. prn ' format ..
4 what is stands for ? ...and in same way we have to save word file (.doc)  also in this format or not ?
thank in advance ..
vikas sharma
Edited by: vikas sharma on Apr 7, 2008 8:06 AM

Hi,
PRN files are created when u try to print any document into a file instead of in paper. What happens here is it can be used later to print at our convenience. So in the printer parameters there will be check box stating "PRINT TO FILE". Check that one and see in any document. Similarly u can set the parameter in SAP as well.
It should be a file created when it chooses to print a document into a file instead of a printer by Window.
.prn file is not a text file but u can try to read that file by OPEN DATASET using option in BINARY MODE.
Reward if useful.

Similar Messages

  • What's the format of the datasource tag in jbosscmp-jdbc.xml

    Hi,
    I made a CMP when I use Lomboz to generate the classes, and xml files, but I still don't know how to relate my CMP to datasource.
    I thought may be I should configure the jbosscmp-jdbc.xml, because when I look in this file and found:
    <defaults>
    <datasource>PLEASE_MODIFY_THIS</datasource>
    <datasource-mapping>PLEASE_MODIFY_THIS</datasource-mapping>
    <preferred-relation-mapping>PLEASE_MODIFY_THIS</preferred-relation-mapping>
    </defaults>
    But I don't know how to "modify this", What do those tags mean? what are those for? and what are the Formats?
    My database -- mySQL
    datasouce xml file -- test-ds.xml:
    <datasources>
    <local-tx-datasource>
    <jndi-name>jdbc/test</jndi-name>
    <connection-url>jdbc:mysql://devsz-ma3.cn1.belton.com.hk:3306/test?useUnicode=true&characterEncoding=UTF-8</connection-url>
    <driver-class>com.mysql.jdbc.Driver</driver-class>
    <user-name>touchpanel</user-name>
    <password>touchpanel</password>
    </local-tx-datasource>
    </datasources>
    I need help, can you tell me some about that, thanks
    next is my CMP entity bean:
    package ejb.product;
    import java.rmi.RemoteException;
    import javax.ejb.EJBException;
    import javax.ejb.EntityBean;
    import javax.ejb.EntityContext;
    import javax.ejb.RemoveException;
    * @ejb.bean name="Product"
    *     jndi-name="ProductBean"
    *     type="CMP"
    *  primkey-field="productId"
    *  schema="Product"
    *  cmp-version="2.x"
    * This is needed for JOnAS.
    * If you are not using JOnAS you can safely remove the tags below.
    * @jonas.bean ejb-name="Product"
    *     jndi-name="ProductBean"
    * @jonas.jdbc-mapping  jndi-name="jdbc/test" jdbc-table-name="FL_PRODUCT"
    *  @ejb.persistence
    *   table-name="FL_PRODUCT"
    * @ejb.finder
    *    query="SELECT OBJECT(a) FROM Product as a" 
    *    signature="java.util.Collection findAll()" 
    * @ejb.finder
    *       query="SELECT OBJECT(a) FROM Product a where a.NAME = ?1" 
    *       signature="java.util.Collection findByName(java.lang.String name)" 
    * @ejb.finder
    *       query="SELECT OBJECT(a) FROM Product a where a.DESCRIPTION = ?1" 
    *       signature="java.util.Collection findByDescription(java.lang.String desc)" 
    * @ejb.finder
    *       query="SELECT OBJECT(a) FROM Product a where a.BASE_PRICE = ?1" 
    *       signature="java.util.Collection findByBasePrice(double basePrice)" 
    * @ejb.finder
    *       query="SELECT OBJECT(a) FROM Product " 
    *       signature="java.util.Collection findAllProducts()" 
    * @ejb.finder
    *       query="SELECT OBJECT(a) FROM Product a where a.BASE_PRICE > ?1" 
    *       signature="java.util.Collection findExpensiveProduct(double maxPrice)" 
    * * @ejb.finder
    *       query="SELECT OBJECT(a) FROM Product a where a.BASE_PRICE < ?1" 
    *       signature="java.util.Collection findCheapProduct(double minPrice)" 
    * This is needed for JOnAS.
    * If you are not using JOnAS you can safely remove the tags below.
    * @jonas.finder-method-jdbc-mapping  method-name="findAll"
    *     jdbc-where-clause=""
    * @jonas.jdbc-mapping  jndi-name="jdbc/test"
    *     jdbc-table-name="FL_PRODUCT"
    public abstract class ProductBean implements EntityBean {
         protected EntityContext ectx;
          * The  ejbCreate method.
          * @ejb.create-method
         public java.lang.String ejbCreate(String productId, String name, String desc,double basePrice) throws javax.ejb.CreateException {
              // EJB 2.0 spec says return null for CMP ejbCreate methods.
              // TODO: YOU MUST INITIALIZE THE FIELDS FOR THE BEAN HERE.
              // setMyField("Something");
              System.out.println("Entering ProductBean.ejbCreate()");
              setProductId(productId);
              setName(name);
              setDescription( desc);
              setBasePrice(basePrice);
              System.out.println("Leaving ProductBean.ejbCreate()");
              return productId;
          * The container invokes this method immediately after it calls ejbCreate.
         public void ejbPostCreate(String productId, String name, String desc,double basePrice) throws javax.ejb.CreateException {
         * Returns the productId
         * @return the productId
         * @ejb.persistent-field
         * @ejb.persistence
         *    column-name="PRODUCT_ID"
         *     sql-type="varchar"
         * @ejb.pk-field
         * @ejb.interface-method
         * This is needed for JOnAS.
         * If you are not using JOnAS you can safely remove the tags below.
         * @jonas.cmp-field-jdbc-mapping  field-name="productId"
         *     jdbc-field-name="PRODUCT_ID"
         public abstract java.lang.String getProductId();
         * Sets the productId
         * @param java.lang.String the new productId value
         * @ejb.interface-method
         public abstract void setProductId(java.lang.String productId);
         * Returns the name
         * @return the name
         * @ejb.persistent-field
         * @ejb.persistence
         *    column-name="NAME"
         *     sql-type="varchar"
         * @ejb.interface-method
         * This is needed for JOnAS.
         * If you are not using JOnAS you can safely remove the tags below.
         * @jonas.cmp-field-jdbc-mapping  field-name="name"
         *     jdbc-field-name="NAME"
         public abstract java.lang.String getName();
         * Sets the name
         * @param java.lang.String the new name value
         * @ejb.interface-method
         public abstract void setName(java.lang.String name);
         * Returns the description
         * @return the description
         * @ejb.persistent-field
         * @ejb.persistence
         *    column-name="DESCRIPTION"
         *     sql-type="varchar"
         * @ejb.interface-method
         * This is needed for JOnAS.
         * If you are not using JOnAS you can safely remove the tags below.
         * @jonas.cmp-field-jdbc-mapping  field-name="description"
         *     jdbc-field-name="DESCRIPTION"
         public abstract java.lang.String getDescription();
         * Sets the description
         * @param java.lang.String the new description value
         * @ejb.interface-method
         public abstract void setDescription(java.lang.String description);
         * Returns the basePrice
         * @return the basePrice
         * @ejb.persistent-field
         * @ejb.persistence
         *    column-name="BASE_PRICE"
         *     sql-type="double"
         * @ejb.interface-method
         * This is needed for JOnAS.
         * If you are not using JOnAS you can safely remove the tags below.
         * @jonas.cmp-field-jdbc-mapping  field-name="basePrice"
         *     jdbc-field-name="BASE_PRICE"
         public abstract double getBasePrice();
         * Sets the basePrice
         * @param double the new basePrice value
         * @ejb.interface-method
         public abstract void setBasePrice(double basePrice);
         /* (non-Javadoc)
          * @see javax.ejb.EntityBean#ejbActivate()
         public void ejbActivate() throws EJBException, RemoteException {
              System.out.println("ejbActivate() called.");
         /* (non-Javadoc)
          * @see javax.ejb.EntityBean#ejbLoad()
         public void ejbLoad() throws EJBException, RemoteException {
              System.out.println("ejbLoad() called.");
         /* (non-Javadoc)
          * @see javax.ejb.EntityBean#ejbPassivate()
         public void ejbPassivate() throws EJBException, RemoteException {
              System.out.println("ejbPassivate() called.");
         /* (non-Javadoc)
          * @see javax.ejb.EntityBean#ejbRemove()
         public void ejbRemove() throws RemoveException, EJBException, RemoteException {
              System.out.println("ejbRemove() called.");
         /* (non-Javadoc)
          * @see javax.ejb.EntityBean#ejbStore()
         public void ejbStore() throws EJBException, RemoteException {
              System.out.println("ejbStore() called.");
         /* (non-Javadoc)
          * @see javax.ejb.EntityBean#setEntityContext(javax.ejb.EntityContext)
         public void setEntityContext(EntityContext arg0) throws EJBException, RemoteException {
              this.ectx = arg0;
         /* (non-Javadoc)
          * @see javax.ejb.EntityBean#unsetEntityContext()
         public void unsetEntityContext() throws EJBException, RemoteException {
              this.ectx = null;
    }

    you can try this
    <defaults>
    <datasource>java:/jdbc/test</datasource>
    <datasource-mapping>MySQL</datasource-mapping>
    <create-table>false</create-table>
    <remove-table>false</remove-table>
    </defaults>
    JaimeS

  • What is the format of 0calmonth data in flat file

    Hi,
    What is the format  for  0calmonth field data  in flatfile to load data in to cube.
    Thanks .

    Hi Alex,
    Thanks for your response. Iam providing 0calmonth  field data as 200904 ,200905 and further  then at the time of loading it is throughing error like
         Value '090420 ' of characteristic 0CALMONTH is not plausible     BRAIN     27     
    Please suggest me.
    Thanks.

  • PDF, TIFF, JPG, what should I format it as?

    Ok. I am a student and I just picked up my books for the coming year. Wow, are they heavy.
    This may sound like a big undertaking, but I was thinking, why not scan all of the pages I will need into my computer, so I can leave the book at school? (I'll ask my teachers what chapters we will need).
    1. How would I go about doing thisS? Should I use a digital camera or should I scan each page in?
    2. What shoud I format them as? PNG? How would I go about doing this? Keep in mind I would like to keep each chapter together and easily switch pages.
    3. Anything else I'm forgetting?
    I really appreciate your help. I know it may seem like quite a question, but I really do want to do this. Thanks!

    DigiCam would probably be faster than scanning, since there's little wait between pictures and flipping the pages will be much easier. The downside of course is quality and readability unless you put the camera on a tripod at fixed focus.
    For better results, though it will be substantially slower and more involved, particularly if you're going to be doing a lot of pages, you could scan the files. If you wanted to be able to search the text, save as PDF and run each page through OCR software. Otherwise, you could save as .jpg (or perhaps .png) which will usually be smaller.
    Note: An OCRed pdf will be much smaller than a non-OCRed pdf because the data is text, rather than graphic, but the OCR process also adds to the processing time of each page.
    In keeping chapters together, you can create multi-page pdfs or, if you choose to use an image format, name the files sequentially and file into folders for each book and chapter.

  • What is the format required in essbase side to show calendar icon in obiee

    Hi All,
    Currently we are bulidng dashboards with Essbase ASO cube as underlined multi-dimensional database.
    Not sure essbase date is not showing as date format.
    what is the format required in essbase side to show calendar icon in obiee
    We tried format as "Obiee Date - Jan 1, 2007 12:00 AM.However no use.
    Can someone assist on this issue how to proceed further
    Thanks,
    SatyaB

    I have actually seen this as a problem with Essbase Data sources...It takes this as Varchar. My time grains are till Month in current system so can't check...
    May be this can help you out http://businessintelligence.ittoolbox.com/groups/technical-functional/hyperion-bi-l/obiee-essbase-as-source-time-dimension-using-between-operator-3399220
    Else , there is unfortunately no workaround.
    Check Christian's comment as well Re: Essbase Date Measures as DATE in OBIEE
    Edited by: Deepak Gupta on 21-Sep-2011 23:48

  • Dealing with old AVI files - what is best format for 'master' storage.

    I kept a lot of original AVI footage from the original DV Tapes. I see these as the MASTER material.
    I also have the same footage on MPG.
    My new Smart TV will link to ny network and can see the AVI files but not play them.
    It seems i need to convert them to a Divx format of AVI in order to play these files...
    Question is therefore 2 fold.
    1 - I want store/keep and have as 'masters' the highest quality of the orginal recordings. So is the best 'original',  the orignal DV Tape AVI files or would editing these via CS6 and outputing an MPG or MP4 format be as good as the 'original'.
    Despite 15 years messing about with digital editing, i remain baffled by what constitutes 'ORIGINAL FORMAT'.
    2 - How can I convert the AVI files from current set up to a Divx Codec that my SMART TV will recognise and play.  WIll CS6 do this or Encoder ?  I cant see an option.
    I've tried all AVI outputs and the SmartTV cannot read any of them.
    Regards
    Kev.

    About 4 years ago I transferred all my old 8/Hi8/DV tapes onto my PC exactly the same as you have done.
    The AVI is a standard introduced by Microsoft http://en.wikipedia.org/wiki/Audio_Video_Interleave gives the detail and history
    Smart TV's in 2012 could play AVI's or at least the youtube demo I just watched did so you may want to check the manual to find out precisely what your TV will play
    Keep the originals as they are, do nothing to them.
    Editing and output to whatever the TV can play, MPG and MP4 should be OK and as future proof as possible.
    Try exporting a short say 1 minute of mixed footage to MPG and MP4 and view these, I did just this with my network and Sony TV and they streamed great, then I edited all that old footage to MPG and MP4 (I saved the same movie to both formats just in case).
    Do remember that your AVI's will be SD and these will be upscaled by your TV to fill the HD screen
    Divx is great but quite lossy and there has been a myrad of types over the years so future proofing may be an issue.
    I cannot advise on CS6 as I use CS5.5.
    Finally before you ask.......edit SD AVI's export movies to DVD's and playing back via a good quality upscaling Bluray player will probably give the best HD results, far better than thinking about software upscaling your AVI's to HD
    Col

  • What is data format "Hypertext Link" in column properties??

    Hi,
    What is data format "Hypertext Link" in column properties? How to use it?
    Can I use column value to navigate to other report without using "Value Interaction" in column properties.

    By changing the data format to say HTML, or Hypertext link, you can add HTML content/HTML tags within the column formula.
    You can create a column formula that would resolve into a dynamic hyperlink and pass parameters by using Go Url. Check out Chapter 11 in the Oracle® Business Intelligence Presentation Services Administration Guide
    Check out an example:
    Re: Dyanmic display of the Image Link URL
    Search the forum as well for several similar examples.

  • Where does FireFox get the default value of a preference from. What is the format of the file that has the default value?

    Where does FireFox get the default value of a preference from. What is the format of the file that has the default value?. I need the actual default value for a particualr preference.
    About:config does show some default values but I need the source from which about:config picks up the default value.
    Any help in this direction is greatly appreciated.
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)

    The prefs that aren't hidden if they are the default are stored in two JavaScript text files in the Firefox program folder
    You can open them via these links in a Firefox tab:
    <code>resource:///defaults/pref/firefox.js
    resource:///greprefs/all.js
    </code>
    ([/forum/1/702598])

  • What type of format is the PowerPC processor?

    Just a simple question, what type of format is the PowerPC processor? I know Intel processors on later Macs is GUID.

    Apple Partition Map is the PowerPC partitioning scheme equiv to GUID on Intel Macs. However, the format is normally Macintosh HFS+ (Journaled)

  • I am new to XI  Technology Can u explain me what is CSV format

    Hi all..
    I am new to XI can u expalin me what is CSV format
    Thanks & Regards,
    Pushparaju.B

    <b>CSV stands for Comma Separated Value.</b>
    The CSV File Format
    Each record is one line 
         A record separator may consist of a line feed or a carriage return and line feed pair     
         Fields may contain embedded line-breaks so a record may span more than one line.
    Fields are separated with commas.
          Example John,11000, sdn.sap.com,USA
    As you are new in XI world , following links might help you to understand it more expeditiously:
    <b>DOC to File(in CSV format) blog </b>
    /people/prateek.shah/blog/2005/06/08/introduction-to-idoc-xi-file-scenario-and-complete-walk-through-for-starters
    <b>File to File Scenario:</b>
    /people/venkat.donela/blog/2005/03/02/introduction-to-simplefile-xi-filescenario-and-complete-walk-through-for-starterspart1
    /people/venkat.donela/blog/2005/03/03/introduction-to-simple-file-xi-filescenario-and-complete-walk-through-for-starterspart2
    Thanks,
    Pooja Pandey

  • What are the formats supported by AudioClip?

    What are the formats supported by AudioClip? Is it the same as in Media?

    It is resolved in the FAQ of site JavaFX.

  • When I call nifGetObjectDictionary on a Domain Index, what is the format of data returned

    hello,
    When I call nifGetObjectDictionary on an Active Schedule Domain Index (450) of NI Card, retrieved from S-OD -> DLL Link Schedule OD Index, what is the format of data returned? I received 0801C202FFFF000000 as data and it is not matching with FF-Spec (Field Device Access Agent, page 95).
    Could you please let me know the format/structure of the data i received, so that i can parse them and understand?
    Also let me know is there any API available in NI API to upload/read Schedule Domain?
    Thanks
    Shankar.

    Sorry for replying late!
    We don't have the nifGetObjectDictionary function, so may I make a guess that you mean nifGetObjectDescription? If I'm right, there will be some trouble.
    To be honest, basically we don't support the APIs which are not included in the "NI-FBUS CM Function Reference Manual". In further, would you please let me know how you find this kind of internal functions? We cannot support it until we verify the customer has bought the complete version of APIs package and this package is still in the support period. If it matches your case, would you please help me in the verification? And then we can support the details for your question later.
    On the other hand, we don't have the APIS to upload/read Schedule Domain now.

  • What video file format does ipod touch except

    what video file format does ipod touch except?

    For the 4G:
    H.264 video up to 720p, 30 frames per second, Main Profile level 3.1 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats
    MPEG-4 video up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps per channel, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats
    Motion JPEG (M-JPEG) up to 35 Mbps, 1280 by 720 pixels, 30 frames per second, audio in ulaw, PCM stereo audio in .avi file format

  • What is the format  for  0calmonth2,0calquarter,0calweek,0calyear,0fiscper,

    what is the format  for  0calmonth2,0calquarter,0calweek,0calyear,0fiscper,0ficper3, 0halfyear1, 0weekday1

    Hi Dominic,
    0FISCPER is a NUMC 7 infoobject. And it takes your 003.200 seven symbols leaving the last symbol. Though, the output format is length of 8.
    A'm not sure if you are dealing with external format (in this case try to enter 0032005) or with internal (then try 2005003).
    Best regards,
    Eugene

  • HT1382 what kind of format is my song downloads in

    what kind of format is my song downloads in

    Music downloads from the iTunes store will be in .AAC format

Maybe you are looking for

  • Where is the "Custom" menu in Hotsync 7.0.1?

    In order to make Companionlink work, I need to create a new conduit which the instructions say is in the Hotsync manager under "Custom."  I just don't see a "Custom" option anywhere!  Not when I right-click the Hotsync icon in the system tray, not in

  • "The application Mail quit unexpectedly"

    Mail has started crashing every time I attempt to open it. It used to run ok, then one day this started and I can't find a way round it to even try and fix it. Is there a way to backup/uninstall/reinstall/restore mail to try and fix the problem? Proc

  • Bass Guitar into HiFi - Is it safe?

    Hi, I'm playing Bass guitar in Garageband via a Griffin iMic USB device into my iMac. Now, I could route the sound through to my Hifi from the mac, but is it safe to do that with the Bass? Does Garageband compress the sound or whatever it needs to do

  • [Solved] Google Earth has caught signal 11

    I'm trying to run Google Earth 7 (latest, AUR: google-earth), but it alway crash after splash screen, output from terminal: aurelio@Victor-A /opt/google/earth/free % google-earth Google Earth has caught signal 11. We apologize for the inconvenience,

  • Iphoto help

    so i keep getting this message; "Your photo library is either in use by another application or has become unreadable" how do i fix this i've followed the steps and nothing helps! someone help!!