How to set EOF as delimiter in Format Builder?

I'm triying to establish the last item delimiter of a one line/record file whitch has nothing but EOF, I mean that this item ends whithout delimiter, only the file ends. How do I set an EOF as delimiter?
Thanks!

Thanks for  your replies.
Could  you please  let me know where genarated  AS files  will reside in Flex builder  ?.
Thanks
Praveen.

Similar Messages

  • How to set the default Excel cell format when opening XML to XLS using an existing stylesheet​?

    Hi,
    I have an XML file, which I'm opening with the Excel application. The stylesheet I use is horizontal.xsl.
    The problem arised when the XML has data in the format "1/4" or "1/16", which is translated in the Excel as date (like "01/04/2007").
    I think I have to set the default cell type to "Text" instead of "General". Does anyone know how it can be done?

    Is this the same question as idoZo, if so jigg has already answered it. If not then you should post your own query not hijack someone elses giving a clear and concise question, "how to set it??" doesn't help you or other in the forum to provide you with a solution.
    Is this relevant to TestStand? If it is then help by providing which version you are using and what software you are using with it. If not then post your question in the correct board.
    Regards
    Ray Farmer

  • How to set window title using cfdocument format="FlashPaper" ?

    Does anyone know how to set the the browser window title when using:
    <cfdocument format="FlashPaper">
    #docContent#
    </cfdocument>
    The variable docContent is a fully formed html document, complete with <head> and <title> elements, yet <cfdocument> doesn't pick up the title I've specified. I'm wondering if anyone has done this before???
    Thanks!

    Yes, I tried that, but <cfdocument> replaces any content that I add. I cannot view the source for the page, but at least according to FireBug, when I view the page contents, I get:
    <html>
    <head>
    <title>print.cfm - print.cfm (application/x-shockwave-flash Object)</title>
    </head>
    <body marginwidth="0" marginheight="0">
    <embed width="100%" height="100%" type="plugin" src="http://127.0.0.1/tss/print.cfm?id=expeditions_staff&start=1" type="application/x-shockwave-flash">
    </body>
    </html>

  • How to set the Date and Currency Formats Based on Country

    Hi Friends,
    I am designing the one Global Form it will use for all countries.
    in that Form i want to print the date and currnecy Formats based on country.
    Like
    For US i want print the date and Currency Like This.
    Date -  MM/DD/YYYY
    Curremcy - XX,XXX,XX.XX
    For DE i want print the date and Currency Like This.
    Date -  DD.MM.YYYY
    Curremcy - XX.XXX.XX,XX
    Please suggest how i can control these things through Java Script or Formcalc....

    Hi Nitin,
    thanks For ur reply,
    i tried with this solution,
    But it is displaying the default Format like bellow formats.
    For short - mm/dd/yy
    For Medium - mmm dd , yyyy
    For Long     - thursday ,mmm dd , yyyy
    it was prinitng in above mentioned format,
    but here i want to print my own format for USA like MM/DD/YYYY.

  • How to set the date and time format from Windows Server 2008 R2

    Hi,
    I want to control my client's date and time format as dd/mm/yyyy format and I need to do it using the windows server 2008 R2. How can I achieve this goal?
    Yoshika04

    Hi,
    In Windows Server 2008 R2, you can use Regional Options Extension in Group Policy Preferences to configure the date and
    time format. For more information, please refer to:
    Regional Options Extension
    http://technet.microsoft.com/en-us/library/cc754496.aspx
    Regards,
    Bruce

  • How to set up new unique cell format in Numbers 3.0

    I have an old file, it was cerated with the older version of Numbers. I used some unique cell format, like xxx,xx mm, etc. Now I can use the prevously created cell formats, but I can find, how create or edit new one. Somebody has an ideas?
    Thanks, Bence

    Benyo,
    The only way to continue to use Custom Format is to continue to use Numbers V2.
    Jerry

  • How to set Word MailMerge delimiter thru OLE2

    I wrote a program for mail merging data from Oracle with Word letter template, but still have a small problem that the user has to specify the field delimitor and record delimitor in the Mail Merge dialog?
    Does someone know how to specify the delimitors for the MailMerge object in MS Word?

    Codes here:
    PROCEDURE execute_macro(p_template_file_name VARCHAR2, p_data_file_name VARCHAR2) IS
    -- Declare the OLE objects
    MyApplication OLE2.OBJ_TYPE;
    MyDocuments OLE2.OBJ_TYPE;
    MyDocument OLE2.OBJ_TYPE;
    MyMailMerge OLE2.OBJ_TYPE;
    -- Declare handle to the OLE argument list
    args OLE2.LIST_TYPE;
    BEGIN
    -- Create the Word.Application object and make Word visible
    -- by setting the 'Visible' property to true
    MyApplication:=OLE2.CREATE_OBJ('Word.Application');
    OLE2.SET_PROPERTY(MyApplication, 'Visible', 1);
    -- get a handle on Documents collection
    MyDocuments:=OLE2.GET_OBJ_PROPERTY(MyApplication, 'Documents');
    -- Open a new document
    args:=OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, p_template_file_name);
    Mydocument :=OLE2.INVOKE_OBJ(MyDocuments,'Open',args);
    OLE2.DESTROY_ARGLIST(args);
    args:=OLE2.CREATE_ARGLIST;
    OLE2.INVOKE(Mydocument, 'Activate', args);
    OLE2.DESTROY_ARGLIST(args);
    MyMailMerge :=OLE2.GET_OBJ_PROPERTY(Mydocument, 'MailMerge');
    args:=OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, p_data_file_name);
    OLE2.INVOKE(MyMailMerge, 'OpenDataSource',args);
    OLE2.DESTROY_ARGLIST(args);
    args:=OLE2.CREATE_ARGLIST;
    OLE2.INVOKE(MyMailMerge, 'Execute',args);
    OLE2.DESTROY_ARGLIST(args);
    null

  • How to set MAXIMUM size of a formatted string?

    Hello
    Assume I have an Object foo with a
    toString(){ return "a long name to print"; }and that I want to print it with minimum space of 40, I would say
    System.out.printf("foo say: %1$40s", foo.toString() )But I need very often to set a maximum width, so that any strings or fields wider than this is truncated. Eg:
    System.out.printf("foo say: %1$5s", foo.toString())gives i.e. "foo say: a l..". Is this possible, using the Formatter class (or similar) in Java? So far I have created my own class to enable this, but I want to use as much predefiend classes as possible.
    Regards
    Fluid

    You need to use a precision argument:
    String foo = "a long name to print";
    System.out.printf("foo say: %.8s", foo); // 8 maxhttp://java.sun.com/j2se/1.5.0/docs/api/java/util/Formatter.html#syntax

  • How to set StrictMode on/off in Flash Builder?

    I'm just finding about Flash Professional.. What about Flash Builder?

    You are better off posting this in Flex forum.
    In general, in compiler options you can do:
    mxmlc --strict=true --file-specs yourApplication.mxml
    To my knowledge it is set to true by default and you should leave it at that if you want a code with integrity.

  • How do I set a custom time & date format in the top bar?

    Hello guys,
    Very embarassing question, because I've had Apple's for all of my life (starting with the original Apple Macintosh) but I still haven't figured out one thing
    How do I set a custom time & date format in the top bar?
    When I go to System Preferences > Language & Text > Formats I can set different formats. I have no idea where you will see these, but I know that it's not the top bar where the time and date is being displayed. Because no matter what I enter, the format in the top bar will stay the same. I can only choose things like 24-Hour clock or not, blinking dots and so on in the Time & Date settings from the System Preferences.
    Can anyone here point me in the right direction? I see you can even choose to display the week of the year - I'd love to do that!
    All help appreciated!
    Greetings

    Language & Text system preferences, Formats tab, customize dates.
    There are also many third party menu item utilities that can.  Search Macupdate.com for some.
    One search yielded iClock Pro.  Although I never used it I would think it allows customization.  The link I gave you is to the Macupdate download page for that app.  On that same page is a Similar Software section which has other apps that can do the same thing. 
    One listed is iStat Menus.  The primary use for iStat Menus is not for displaying date/time but it does do that.  And I know it can do what you want because I use iStat Menus to track temperature sensors n my machine and, like you, I want to customize the menu time/date.  So I use it instead of the apple clock.  It does have the customization features I think you are looking for.

  • How to post a table/set of records without losing formatting while posting

    how to post a table/set of records without losing formatting while posting in this message forum. Thanks

    Most forums have a FAQ. This one is no exception.
    It is in the right hand upper corner. It's URL is http://wikis.sun.com/display/Forums/Forums+FAQ
    Sybrand Bakker
    Senior Oracle DBA

  • How to set raw format for canon powershot a1100 is ? ,,according to the specs online it can.

    how to set raw format  for canon powershot  a1100 is ? ,,according to the specs online it can.

    It requires the Canon Hacker's Developement Kit (CHDK). It runs off of your SD card and does not harm your camera. Download a program called Stick-
    http://zenoshrdlu.com/stick/stick.html
    Follow the directions and you will be able to shoot in RAW along with some other deatures not available on your camera previously.

  • How to set password in obiee delivery content reports (pdf format)

    Hi
    Dear All
    i Need your help on the Obiee !
    i hvae one Requirement how to set password in obiee delivery content (pdf format) its possible. what are the things i to do
    Kindly Advice me
    Advance Thanks
    satya

    933154 wrote: My profile says PDF, config, report, settings says PDF and I get an Excel when I run screening reports. Very odd.You may want to make sure that the file where the system setting gets stored can be updated. In your <Intradoc_Dir>\urm\data\reportpublisher\config\config.hda file, there is a result set named "RPAdminConfigInfo". The third column of that result set should match the value being shown on the configuration settings page. I've changed the format value in the UI, and this file gets updated (and thus I'm getting my screening reports in the format specified in this config file.)
    933154 wrote: Also, I wasn't clear on the second part of the question. The Screening Reports appear to use the template INTERNALITEMDETAILRPTTEMPLATE. Is that configuration set somewhere? Is there any way to have the screening reports use a different template or is changing that template the only way to change the screening report layout?Templates are not configurable in that respect - the template name values being called for a service are hardwired in the code (you'd need to override in a component - just not worth the hassle). I'd either edit the existing rtf file, or just check in a new revision to the existing one if the differences are that profound. You'd still need to conform to the BI Publisher standards/methodology in either case.

  • How to set date formate dd/mm/yyyy from portal.

    Dear Experts,
    We are implementing ESS/MSS, my query is under ESS applications, date format is showing mm/dd/yyyy, then iam trying to change  user language is English (United Kingdom), from portal end, then its showing dd/mm/yyyy.
    My query is that is there any other way to change date format and how to set user language is English( united Kingdom) for mass users.
    Thanks in advance,
    Regards,
    Mahee.

    Hi,
    Iam trying to upload below format..for mass users....
    [User]
    UID=<employeeid>
    Password=init@123
    FIRST_NAME=xxx
    LAST_NAME=xxx
    group=xxxx
    Language=en_GB
    [User]
    by changing launguage = English (United Kingdom),Now I can able see the require format...dd/mm/yyyy.
    Thanks and Regards,
    Mahee.

  • How to set Character field's Format Mask?

    dear all,
    how to set Character field's Format Mask?
    i searched the forum and found the following, where can i use this code and how to change and set its format mask.
    SRW.SET_FORMAT_MASK('mask');
    Thanks
    Muhammad Nadeem

    Nadeem,
    If you have database 10g, look into function REGEXP_REPLACE. Otherwise you can also try this (you might already know).
    SELECT SUBSTR('CHHOCMIPO07020001', 1,2)||'-'||SUBSTR('CHHOCMIPO07020001' ,3,2)||'-'||
    SUBSTR('CHHOCMIPO07020001' , 5,2)||'-'||SUBSTR('CHHOCMIPO07020001' , 7,3)||'-'||
    SUBSTR('CHHOCMIPO07020001' , 10,2)||'-'||SUBSTR('CHHOCMIPO07020001' , 12,2)||'-'||
    SUBSTR('CHHOCMIPO07020001' , 14,4)
    FROM dual
    CH-HO-CM-IPO-07-02-0001
    If you have to use this at many places, create a function, pass the raw value, manipulate the string and return.
    FS

Maybe you are looking for

  • Reporting services for SCDPM 2012 R2

    Hi all, We are planning to implement SCDPM 2012 R2 with Chained protection concept (DPM1 is the primary and DPM2 is the secondary), here my question is it possible to host both (two) SQL reporting services in same instance ?  Thanks, Sengottuvel M

  • Removing Audio from clip

    Ok, I just got FCE for X-mas and I am completely lost. I need to know how to remove the audio from the clip, and/or how to edit the audio seperately than the video.

  • Uninstall 5 or Install 6 on Top?

    I want to install CS6 and I have CS5 installed on my Mac. Should I uninstall CS5 first? If so, how do I do that? If not, do I just install CS6 on top of CS5? I do not want both versions, only CS6. Thanks. Tom Baley

  • Compiler Error after Upgrading Sun Studio 12 to Solaris Studio 12.3

    This code compiled with Solaris Studio CC: Sun C++ 5.9 SunOS_sparc Patch 124863-02 2007/12/18 but fails to compile under CC: Sun C++ 5.12 SunOS_sparc Patch 148506-14 2013/09/24 CC -features=zla -mt -g -library=Cstd  -DACE_HAS_KSTAT -DACE_HAS_CUSTOM_E

  • Erreur "MemoryManager.cpp" ligne 566 et "Linker.cpp" ligne 1775

    Bonjour, Je suis un étudiant actuellement en stage. Je ne vous cacherai pas que je n'ai que peu d'expérience en Labview. Lors de mon projet, il faudrait que j'arrive à contrôler un lecteur de CD externe manuellement (vitesse du moteur, signal reçu...