Add header text to CSV template in OBIEE 10g

I have a .rtf template that i use to make a CSV file. Is it possible to append text to the beginning of it and produce a CSV repoprt?

Any inputs .. plsss
Regards,
Pankaj

Similar Messages

  • VL01N / VL02  add header text

    Hi All,
    My task is to create Goods Issue, Including a Header Text - A suboption called Text. In that for Deaparment description I want to add two lines of information.
    Any FM avilable.
    Any BAPI to create the Header Text.
    Advance Thanks,
    Balamurugan.R

    Hi Jay,
    What is save_text function module SAPscript: Save text. For my purpose also shall I use this FM?.
    Where it will store (tables) and How VL02 or VL03 Will retrieve it.
    give me little more explanation.
    Thanks,
    Balamurugan.R

  • How to add custom texts in Office Templates   for  the COBRA form set up

    Hi,
    How to insert custom texts in the copied BDS form from COBRA set up. I could not edit the text. I can edit the contact numbers in the standard text and displaying after saving the document.
    I do not know how to proceed for this.
    Please share your valuable experience in this regard.
    Thank you,
    Ravi.

    Structure Ptk03 ,Ptk33 needs to be enhanced

  • Default header texts in purchase order

    Hi,
    I would like to ask you for help in following case.
    I need to set default purchase header text when a new PO is created in me21n.
    I found transaction VOTX where can be this done for sales order, but not for PO. Is there anything similar also in MM?
    Maybe I could use user exits in MM06E005, but I didn't find the relevant structure which keeps header texts.
    Third idea is to add header text fields into personal setting in me21n, where each user can define his own default texts but I have no idea how to do that.
    I need to set default texts which are global for all purchase orders, so it has no sense to use Info record in this case.
    Has anybody experience with this? I would appreciate any help. Thanks.

    Hi,
    you can try to solve it using BADI ME_PROCESS_PO_CUST. The method open is suitable for you problem. Here is a quote from a BADI documentation.
    The OPEN method enables you to do the following when opening a new
    document:
    o   Import new data if the document was already posted to the database
    o   Initialize your own data when creating a new document
    You get a reference for object with type IF_PURCHASE_ORDER_MM in this method. This class implements interface IF_LONGTEXTS_MM with methods like IF_LONGTEXTS_MMGET_TEXT and IF_LONGTEXTS_MMSET_TEXT. So you should be able to set long text for your new PO in this method. Check BADI documentation for more info.
    Cheers

  • Bapi_po_change header text

    Hi,
    I am trying to add header text to a Purchase Order using bapi_po_change.
    I can get it to add a line of text OK, but when I go to add a second line it just over writes the original line.
    is there a way to get the bapi to append lines to what is already there?
    Thanks

    No you can only replace the whole set of lines, check parameter POTEXTHEADER documentation (F1)
    If texts are to be changed with the Change method, only the complete text can be replaced. It is not possible to delete just one line...
    So, use mackerl wang  suggestion, use BAPI_PO_GETDETAIL1 to get POTEXTHEADER and POTEXTITEM current values.
    Regards,
    Raymond

  • COPA report change Header text

    Hi,
    I am preparing COPA line item report. I am not able to change or add header text in the report as we  do in report painter report.
    The form I am  using is KE94 Create and KE95 Chage.The report painter option extras-> Report Text -> header text is not available in KE95 forms.
    Any Idea on how to do the changes in header text in this case.
    Regds

    Hi Suchitra,
    You can try it with KE32.
    Regards,

  • OBIEE 10g - Office Add-in - MS Office 2010

    We have all users on MS Office 2010 and our BI app is on OBIEE 10g. Unfortunately the OBIEE 10g Office Add-in doesn't install with MS Office 2010 (It works with Office 2003 and 2007 only). Does anyone knows how to resolve this?
    Other options I tried is to install Office Add-in from OBIEE 11g - It gets installed with Office 2010, but I am not able get OBIEE 10g reports.

    I got the solution. Thought I should share it. The add-in available with latest version of OBIEE 10g i.e. 10.1.3.4.2 works with Office 2010.

  • How to add header and fooder in text file

    Hi,
    i have created simple application for generate report from database into text file.
    But i need to add header and fooder in text file. I dont know is there any API for adding these.
    Can anyone help me to create header and fooder in text file.
    the below text are needs to be print in the header
    name of the table :
    Recorder type :
    file creation time:
    the below text are needs to be print in the footer
    Recorder Number:
    Record Type;
    the actual code is
                           pst = con.prepareStatement("select REQUEST, DOMAIN_NAME, TRUNC(DATE_OF_CONFIGURATION) AS dateofConfig  FROM employee where id=300");
                               rs = pst.executeQuery();
                            while (rs.next()) {
                                 request = rs.getString("REQUEST");
                                    domain_name = rs.getString("DOMAIN_NAME");
                                    dateofconfig = rs.getString("dateofConfig");
                                    System.out.println(request + " " + domain_name + " " + dateofconfig);
                                   data.add(request + " " + domain_name + " " + dateofconfig);
                            System.out.println("before calling method");
                            writeToFile(data, "c:/Employee.txt");
                            System.out.println("file created successfull");
                            rs.close();
                            pst.close();
           private static void writeToFile(List list, String path) {
                    BufferedWriter out = null;
                    try {
                            File file = new File(path);
                            out = new BufferedWriter(new FileWriter(file, true));
                            for (Object obj : list) {
                                String s=  obj.toString(); 
                                 out.write(s);
                                    out.newLine();
                            out.close();
                    } catch (IOException e) {
    }Thanks
    Jasmin
    Edited by: user13836688 on Mar 21, 2011 4:06 AM
    Edited by: user13836688 on Mar 21, 2011 4:07 AM
    Edited by: user13836688 on Mar 21, 2011 4:08 AM

    user13836688 wrote:
    i have created simple application for generate report from database into text file.First off, when posting code, use &#91;code]...&#91;/code]. or '' tags, not '<code>'.
    But i need to add header and fooder in text file. I dont know is there any API for adding these.
    Can anyone help me to create header and fooder in text file.Well you plainly have the code to write the file contents; and furthermore your report seems to be contained in a List called 'data'. Why not just add the header and footer lines to it? I'd also suggest making 'data' a LinkedList. That way you can add the header afterwards with no performance hit, just in case the information it contains isn't available at the start of your report loop.
    Winston                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Add text in csv

    Hi guys!
    I created a script
    that returns a list of users created today.
    Now I'm trying to modify it to add
    the text "99999999LAST RECORD"
    in the last line of the csv file.
    Does anyone have a suggestion how to do this?
    $When = ((Get-Date).AddDays(-0)).Date
    Get-ADUser -Filter {whenCreated -ge $When} -Properties * | Select-Object Surname,GivenName,DisplayName,PostalCode,Country,StreetAddress,State,Office,OfficePhone,EmailAddress,Title,Department,City,SamAccountName,UserPrincipalName | Export-Csv .\newusers_maximo.csv
    -NoTypeInformation -Encoding unicode -Force
    Thanks!
    David Soares MCTS:MBS - MCTS - MCITP

    Hi,
    You can create your file and then use Get/Set-Content to adjust the last line.
    Don't retire TechNet! -
    (Don't give up yet - 12,830+ strong and growing)

  • How can i add Document Header Text for s_alr_87012357

    Hi Gurus
    How can i add Document Header Text for  s_alr_87012357(Advance Return for Tax on Sales/Purchases).do i need change the standard program or is there any alternate to do this please  help me  out.

    i found it .its in output list and i did change the layout settings.thanks

  • How to add custom text in template page - OIM 11g R1

    Does anyone let me know how add custom text in one of the 'Request Templates' page - OIM 11G R1.  My requirement is to add custom static text in 'Role' selection page.
    - Kalyan.

    Does anyone let me know how add custom text in one of the 'Request Templates' page - OIM 11G R1.  My requirement is to add custom static text in 'Role' selection page.
    - Kalyan.

  • Can i concatenate or add to the existing header text with new text  logic

    Hi,
    Is it possible to concatenate additional text into an existing text type? For example, would it be possible to write new logic where if certain conditions are met, the text in theheader detailswould be added to the existing Preparation Header text?
    I have on e delivery , i want to add the header text with with  date field (concatenate header text with date (godds issue date)in a single text
    please let me know.

    Venkata
    Unfortunately I am not aware of any such standard FM, I searched for it during my first reply itself, but no benefit.
    You can develop one if no std FM is available for this with the help of your technical g uy.

  • How to add document header text area on fb03's selection screen

    hi,
    i want to add an additional area on fb03's selection screen. i need document header text area for my document searchs. is it possible?

    Refer to this thread
    How to Add field to Selection screen of Tx. FBL5N

  • How to ADD dynamic header text to Right hand Corner of IDR -FPM OVP/OIF

    Hi,
    How can we add dynamic header text to right hand side corner in FPM OVP?
    I know we can handle left hand side.. but i do need simultaneously right hand side..
    ANy thoughts??
    Rgds
    Tarun

    I am not sure how it is arranged in 7.02, in 7.01 IDR layout is flow layout so you cannot have layouts other than that. I thought that this has been changed in 7.02 to accommodate the matrix layout. I am not sure about it. If this was true then you can try to play with the layout to fit right hand side. It is not easy though.

  • Add default value to the Header Text of the Quotation

    Hi All,
    I want to add the default value to the header text of the Quotation.
    I've created the Text Type and Access Sequence usign the VOTXN,
    but I want some default text shown on the header text when user click on the Text type.
    for e.g.
    "The reason", "Qty"....
    I've check the routine of data transfer and also the User Exit MV45AFZB Userexit_MOVE_FIELD_TO_TVCOM_H...still no solution.
    Please help.
    Terry

    Please check below link.
    http://www.sapfans.com/forums/viewtopic.php?f=5&t=324385

Maybe you are looking for

  • I am trying to deploy the Creative Cloud

    Hello! Thanks for this video. I found this thread while researching physical CD installs of Adobe CS vs. a Creative Cloud install. I have a work machine where volume licensed CS software was installed. (master collection via CD) I later downloaded th

  • WLC 5508 - config best practices - large deposit

    Hello everyone, I recently added a Cisco 5508 to control many LAPs on a very large deposit. We have indoor and outdoor LAPs on the environment. Many Hand Helds using 802.11b. I was wondering if anyone can tell me if there is a best practice for envir

  • MobileMe Gallery - allowing multiple users access

    Hi, I have a simple question - can allow more than one user access to a hidden MobileMe Gallery? I seem to be able to choose only one name from a drop-down list. I'd like to allow two people access to my gallery. Is this possible? Thanks, :-Joe

  • Obtaining hardware and signature support for AIP SSM-10

    We have a 5510 which we have purchased an AIP SSM-10 card for the ASA which is already under a support contract. We now wish to add hardware maintenance for the new AIP SSM-10 card as well as signature updates. Our Cisco supplier will not confirm tha

  • Flash Video Skin Not Loading in Firefox

    Hello everyone, I'm having a bit of trouble with a Flash Video file. I'm helping a friend out by doing some work on his webpage. He had a video that he wanted to put up on his news page, so I converted the video to an flv and used the flv player comp