Creating a (.txt) document report

hi all,
i want to create report in oracle 10g forms in (.txt in notepad of windows) format .
can anyone help me to do this with oracle 10 forms through programing .

hi baig,
i don't want to read the .txt document or not i don't need also a open file dialog to open a .txt document
i want that like we are creating (.XLS),(.HTML) reports through forms writting the html coding in forms like this can i create an .txt report writing some sort of coding in oracle forms.
why i am telling this because through vb 6.0 i see generating this type of reports(in .TXT format).
can i achieve this in forms.

Similar Messages

  • How to create a document/report on all objects in the BW system?

    Hi,
    The requirement in our company is to create a document/report with the list of all the objects that exist in the BW system for various applications. This list should contain the technical details of the different objects and where an object is used, what's the source for the object etc. The information should be similar to that in the Metadata repository but it should be one single document/report which includes all the objects.
    I tried using the 0TCTBWOBJCT info object (content browser) but it was not of great help.
    Can anyone help me out in this task?
    Thanks,
    Anu

    Hi,
    Try to use tables RSOSFIELDMAP, RSDSSEGFD and RSTRAN
    Hope it helps
    bhaskar

  • Create MS Word documents from data in an Apex Form/Report

    My requirement is to create editable RTF form letters from data managed by an Apex application. I do not have BI publisher available and am looking at using the XSL-FO route. Effectively I want the user to select the desired data in the Apex application, hit a button and be presented with a word document containing the data, which they can then customise.
    I know how to set Apex up to create PDFs based on reports using embedded XSL-FO but PDFs are not editable extra steps by the user. Also the user could export data to CSV and mailmerge with a word template but thats extra work for the user too.
    In the past I've used PLSQL/XML/XSL-FO with .NET to do what I want here by generating an XML file with PLSQL and using .NET to associate the XML file to XSLT/XSL-FO template files creating output as varied as .doc, .ps and .html files.
    Any ideas on acheving the same flexibility with Apex would be greatly appreciated. As my googling and forum hunting has not turned up much.
    Thanks
    FunkyMonkey

    Hi FunkyMonkey,
    Do you know Docufy | Simplify with docufy ? It's an APEX application that lets you create/generate/edit word templates. Else JasperReports Library | Free software downloads at SourceForge.net lets you generate a multitude of report formats (RTF/pdf/docx/xlsx/xml/etc.) you can use iReports to easily create xml templates for the reports, It's a lot simpler then xsl-fo.
    Regards,
    Vincent Deelen

  • When saving documents in PDF format a .txt document is also created and saved

    When saving documents in PDF format to the my documents folder on a PC a .txt document is also created and saved, does anybody know the where the setting is that allows this functionality (duplicate document in txt format) to be switched off thanks.

    When saving documents in PDF format to the my documents folder on a PC a .txt document is also created and saved, does anybody know the where the setting is that allows this functionality (duplicate document in txt format) to be switched off thanks.

  • How to creat a summary of report with .txt

    Hi All,
         I want to creat a summary of report with .txt,and i have disabled the function about report generation in teststand.
         i created a complex sequence,it include some sub-sequences,example:the uut is tested on three different temperatures and four different voltages conditon.So i have creat three sub-sequences (diffrent temperatures) include four steps (different voltages),then mainsequence invoke three sub-sequences to excute test.
        i only want get the fail-step's summary with,include: fail-step's name,status 
        how to do?thanks a lot
    Solved!
    Go to Solution.

    You can use Parameters.Step.Name to get the failed step name. You can also use something like Parameters.Step.StepType.Name == "NI_MultipleNumericLimitTest" to filter different types of steps.
    As far as finding the entire failure chain...
    You can check RunState.CallStackDepth to see how many callers deep you are. Based on that information you can use RunState.Caller.Caller.(continued for however many callers deep you are).RunState.Step.Name or .Sequence.Name
    So if the CallStackDepth is 1, you would only need to use one Caller. If it was 2, you would need to recursively use 1 Caller and then 2 Callers and so on.
    CTA, CLA, MTFBWY

  • Sales document report for all open documents

    hi i need the code for sales document report for all open documents is sd
    ...      can anyone help me out.
                                     thanks in advance

    Try transaction VA05. In that choose "Open Orders" along with other selection criteria.
    If you want the Open sales order qty in output and its not displayed, do the following.
    Sales -> System modification -> create new fields ( without condition technique) -> New fields for lists.
    You can change V05TZZMO and structure VBMTVZ from there or use SE38 / SE11.
    For both you'll need an object registration in OSS.
    Hope this helps.
    Thanks,
    Balaji

  • Creating follow up via report

    HI Experts,
    I have requirement to create follow up document via report program from quote to sales order.
    For this I am reading details from crm_order_read and passing to crm_order_maintain.
    I am able to create sales order but not able provide link in transaction history.
    How can I achieve this?
    Any help will be much appreciated and rewarded.
    Thanks & Regards,
    Anil

    Thanks again.
    Ya..followup is created without the product and quantity.
    Please find my below code.
    ls_orderadm_h-process_type = 'ZOR'.
    ls_input_names-fieldname = 'PROCESS_TYPE'.
    INSERT ls_input_names INTO TABLE ls_input_field-field_names.
    * add to header data
    ls_orderadm_h-guid = lv_header_guid .
    INSERT ls_orderadm_h INTO TABLE lt_orderadm_h_hlp.
    * add to input fields
    ls_input_field-objectname = 'ORDERADM_H'.
    ls_input_field-ref_handle = '100'.
    INSERT ls_input_field INTO TABLE lt_input_field.
    REFRESH ls_input_field-field_names.
    ls_predecessor-pred_guid = lv_header_ref.
    ls_predecessor-handle    = ls_orderadm_h-handle.
    INSERT ls_predecessor INTO TABLE lt_predecessor.
    CALL FUNCTION 'CRM_COPY_PROCESS_PREPARE'
    EXPORTING
    it_orderadm_h     = lt_orderadm_h_hlp
    it_orderadm_i_ref = lt_orderadm_i_ref
    it_predecessor    = lt_predecessor
    iv_vona_kind      = 'A'
    IMPORTING
    *       ET_DOC_FLOW       =
    et_orderadm_i     = lt_orderadm_i
    et_orderadm_h     = lt_orderadm_h
    CHANGING
    ct_input_fields   = lt_input_field
    * EXCEPTIONS
    *       ERROR_OCCURRED    = 1
    *       OTHERS            = 2
    IF sy-subrc <> 0.
    * Implement suitable error handling here
    ENDIF.
    DATA :lt_doc_link3    TYPE crmt_doc_flow_extdt,
    ls_doc_link3    TYPE crmt_doc_flow_extd,
    lt_input_field1 TYPE crmt_input_field_tab,
    ls_input_field1 TYPE crmt_input_field,
    ls_inputnames1  TYPE crmt_input_field_names,
    lt_inputnames1  TYPE crmt_input_field_names_tab.
    BREAK-POINT.
    CALL FUNCTION 'CRM_ORDER_MAINTAIN'
    *      EXPORTING
    *      IMPORTING
    *       ET_EXCEPTION    =
    CHANGING
    ct_orderadm_h   = lt_orderadm_h
    ct_orderadm_i   = lt_orderadm_i
    ct_input_fields = lt_input_field
    *       CV_LOG_HANDLE   =
    *       CT_PARTNER_ATTRIBUTES         =
    *       ct_doc_flow     = lt_doc_link3
    * EXCEPTIONS
    *       ERROR_OCCURRED  = 1
    *       DOCUMENT_LOCKED = 2
    *       NO_CHANGE_ALLOWED             = 3
    *       NO_AUTHORITY    = 4
    *       OTHERS          = 5
    Thanks
    Anil

  • BO 4.0: cannot create new WebI document as admin

    Hi,
    I am logged in on our BO 4.0 server as administrator and would like to create a sample WebI report. So I started WebI from the Launchpad but the "create new document" icon is inactive...
    I do have full access and I am using the administrator login... what's missing?
    Thanks!

    Hi Steve,
    Have you tried from another client/browser computer using the same account?
    How about using the rich client? Can you create documents and save them to the repository?
    Regards,
    Julian

  • How to create a Group Above report using APEX

    I want to create a Group above report with more that one group using APEX. Is it possible to generate such a report using APEX. If so kindly let me know how to go about creating a Group above report with more than one group.

    Hello Srini,
    Thank you very much for the reply but I'm not into OBIEE... I want the required query to be processed and the output to be shown in xml layout to load into RTF document. The rest I can manage.. but please let me know how to get the .xml output with out using the report builder or the apps environment(concurrent prg submission)..
    Please let me know if any... urgent
    Thanks in advance
    Krishna

  • Ilustrator freezes creating a new document with web profile.

    Hi,
    I have the illustrator instalation from creative cloud subscription and everytime i create a new document and on the profile combo choose "web", the illustrator freezes forever.
    Im using mac version in a macbook pro 13" corei7 with 8gigs ram.

    I'm having the same issue with i7 2500k, SSD, 16gb ram, 6870 2gb vram 10.7.4.
    Anyone have any idea if i can get a crash report to help you guys out with figuring this?
    Basically whenever i go -> new and change the document profile to web (or a few others) it just LOCKS and needs to be force quitted.
    I've also just ran with the default and it locks up anyway.    

  • F110 " Error in creating the payment document; read job log"

    Hi all,
    when i execute payment in Tcode F110, getting message " Error in creating the payment document; read job log".
    Log for payment run for payment on 30.07.2009, identification TEST1
    Error in the recovery of constants
    Information re. vendor 1000040256 / paying company code BG10 ...
    ... payment not possible because of reported error
    Because of it, the payment file is also not generated.
    The status says " Payment run has been carried out".
    But when the open items are cleared.
    What could be the reason for this error message?
    Regards,
    Vidya

    Hi,
    As the document is in the cleared status, you can try finding out with which run date and run id the documents got cleared. Go to Transaction code SE12 and give the following details - Company code, vendor code and the payment documents (clearing document for the invoice) or you can also give the invoice document numbers and fiscal year.
    The output will tell you which payment run id and run date was used to process the payment.
    Hope this will help you understand what has happened.
    Thanks and Regards,
    Anit
    Edited by: Anit Mangat on Jul 30, 2009 4:38 PM

  • Which product do I purchase???? - Creating a merged PDF report from excel with cover page

    Hi Guys,
    I work in the BI field and have created a pdf document using PDFCreator and another third part scripting tool called jpdfbookmarks.
    We have delivered something to the client but the quality of the output ( not the best) and the time it takes to cycle through each page ( when being viewed) within the merged
    pdf document takes a little time...
    So my boss as asked me to explore something within the Adobe suite of products BUT.... i have no idea which one i should choose.
    My requirements are as follows:
    To deliever this report to the client the program needs to be able to do the following:
    1)  convert excel files to pdf
    2) take these individually created converted excel to pdf converted files and and merge them into 1 document
    3) within this merged document have the abilty to be able to bookmark each page
    4) have a cover page with hyperlinks
    5) and finally but most important of all to be able perform steps 1 to 4 above programatically through scripting language vb script / vba
    nice to haves:
    6) abilty to email each merged doc to list of email address
    7) abilty to edit document to add in hyperlinks etc
    Need to get an understanding of costs ie
    1) how much per licence
    2) what product with have all the features above and how much
    Can anyone please be kind enough to point me in the right direction as to what product would be best suited?? Being able
    to scipt a solution together is key.
    Cheers
    Shockwave

    You can do everything except the cover page with Adobe Acrobat (Standard or Pro).  There are demos on our website that you can install and try out.  You will need the SDK documentation and sample code to learn how to automate/program.

  • Create SD Billing document from Vistex Claim Request or Billback document

    Is there a way to create SD Billing document(VF01) from Vistex Claim request or Billback document. Our business is requesting that they do NOT want to settle the billback in Vistex instead want to create a SD Billing document.
    I found a check box 'create billing document' in Vistex Claim request document type configuration - but that does not seem to do anything at all.  What is this for? does anyone know? 
    Is there another way Vistex allows to create SD billing document ?
    Please help.
    thanks
    Suren

    Hi,
    The sole purpose of Vistex is to create chargeback/billlback documents with reference to a Billing document in SD.
    After create the CB/BB docs in Vistex, settlements can be done only in Vistex and cannot be brought back to SAP.
    Other option is to create a Credit/Debit memo as applicable instead of doing the settlements in Vistex, however tracking the document flow and reporting will turn out to be more complex.
    In any case, take the help of an ABAP per who would suggest if any workaround in the form of a dewvelopment is possible or not.
    Regards,
    Amit

  • Impossible to create or refresh webi report. (WIJ 77778) - please help

    Hello,
    i'm experiencing problem with BO Edge Standard edition on RHEL4 trying to create or refresh a report on Webi.
    I have installed BO without problem on the RHEL4.
    I can log on Infoview and in CMC with "administrator" however when i try to create a new webi document or refresh a webi document i got an error like
    (Your Webintelligence session has expired. Error : WIJ 77778)
    I'd like to tell you that i got this error with a simple query (one object on the query).
    I have already read the old post concerning the "Time out" however i think it's another kind of problem.
    Has anyone idea how i can deal with this issue ?
    Thanks a lot

    Hei,
    thanks answering me..
    I found the solution.
    Actually the issue came from  Administrator's account rights.
    After the installation, i was thinking that the Administrator was setted up with all rights.
    But i was wrong.
    I used Administrator account and it had not enough rights in Webiserver on the CMC that's why  if i tryed to create or refresh a report, i got the error msg.
    br
    I

  • Creating an open document/hyperlink

    Hello...I am trying to create an Open Document hyperlink on my report.  I am currently using Crystal Reports XI. 
    My main report is getting sent out in PDF and is a summary version of our inventory items.  I want the user to be able to click on the Item Number and another report will open with the details for that Item Number only. 
    Below is the URL that I have created
    BIQL_Open_Doc_Build("Build")+"sPath=[OpenDocuments]&sDocName=OD_TransferDate_Inventory&sType=rpt&sWindow=New&sRefresh=Y&lsSp1="&{@V - Parameter - Branch/Plant - Based on Field}
    Thanks!

    Sorry I am on http://mpwbowebsrv:8080/businessobjects/enterprise115/desktoplaunch/InfoView/main/hom (Hope that is what you were looking for).
    I get an error message when I click on the link. 
    Report Linking Error Back 
    Function getReportSource:
    Cannot find report or report instance... 
    Thanks!
    Edited by: ohiohawksfan14 on Nov 4, 2011 1:32 PM

Maybe you are looking for

  • Unable to switch to finder from other programs

    Hi, The finder does not seem to be working properly and there are several aspects to the problem: 1) Frequently when in a finder window or on the desktop I will click on a file name while in list view to change it and the name will disappear. If I ch

  • Can I keep 2 video cards in Mac Pro if only using 1 at a time?

    I have an ATI Radeon HD 2600 and an NVIDIA 8800GT for my Mac Pro (early 2008). Been having issues with my NVIDIA card since the 10.6.4 update as well as issues with Photoshop CS5. Im finding out that its probably better off to go the ATI for general

  • Running J2eeServer On Win Xp

    Hi all, My Question is that .. i have windows xp on my system it is possible can i run J2eeserver on my system .. if it is possible can any one tell me how to do this task...

  • Gnome 3.2 totem suspend during playback

    Since I updated to gnome 3.2 including totem 3.2 my notebook goes into suspend (turns off monitor) after 10 minutes. I have the setting set in totem (you can acutally only choose if video or video and audio should disable screensaver). This was diffe

  • Text File - XI - BAPI Call

    Hi, i have one(!) text file with data from different customers (header and items). A new customer starts with a new header and a new customer number. i want to call a bapi for every single customer number - that means for every header/item combinatio