Data migration from Forms to Reports

Hello,
Does anyone know how to migrate numerous data from Oracle forms to reports, without using parameter lists or parameters, and also withour the use of temporary tables since my platform is 8.0.6 and forms 4.5?
Thanks for any replies

hi daniel,
you could write your data from forms into a text file. seperate
the values using for example a comma (or something else).
use the text datasource in reports 9i to query directly from
this file.
find more information here:
http://otn.oracle.com/products/reports/htdocs/getstart/examples/textPDS/index.html
regards,
christian

Similar Messages

  • Passing date parameter from forms to report

    Hi,
    I'm using forms and reports 6i.
    I want to pass one date parameter from forms to reports.
    Using
    Add_Parameter(pl_id,'P_FROM_DATE',TEXT_PARAMETER,:FROM_DT);
    giving me error REP-0091- Invalid value for parameter 'P_FROM_DATE'
    This i think is because report expects date and here it is converted as varchar.
    Please help

    Hi Divya,
    Even I use this kind of statement
    Add_Parameter(pl_id,'P_FROM_DATE',TEXT_PARAMETER,:FROM_DT);and works fine for me.
    This i think is because report expects date and here it is converted as varchar
    Correct.
    Open the report in the builder and under Data Model -> User Parameters, Go to the Property Inspector of P_FROM_DATE. Under Parameter, set Datatype as Character instead of Date.
    Hope this should work. and tell me if it works(coz it wokred for me).

  • Is there a software to migrate from FORMS amd REPORTS to JAVA?

    Let's say I want to make all my forms and reports to work as java (so I can use them to connect in any database).
    Does there exist any software to do so?
    gracias

    Connecting to any database doesn't mean you need to convert them to Java. This is what the transparent gateways are aimed at.
    http://otn.oracle.com/products/gateways/index.html
    If you still think that you want to migrate to Java (what specifically are you looking at Swing applications or JSP applications) have a look at this paper:
    http://otn.oracle.com/products/forms/htdocs/FormsJavaSOD.html
    In any case I would suggest that you take a deep look at whether there is any business justification for such a migration - it basically mean you are looking to pay money in order to get the same functionality, so where is the benefit?

  • Run a report in Forms 9i after migration from Forms 6i

    Hi,
    I face the following problem:
    We do have to migrate from Forms 6i to 9i. In our "old" application, reports where called by using RUN_PRODUCT (in different forms and menues). But to start a report in 9i environment, RUN_REPORT_OBJECT must be used. Does the report has to be an object in the calling form or is it possble to start it as we used to directly from the file system ?
    Regards,
    Markus

    hi
    you need to create a report object in the object navigator.
    and follow these
         declare
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    pl_id paramlist;
    d date;
         BEGIN
              /* for passing parameters
              PL_ID:=GET_PARAMETER_LIST('P1');
              IF(ID_NULL(PL_ID)) THEN
                   PL_ID:=CREATE_PARAMETER_LIST('P1');
              ELSE
                   DESTROY_PARAMETER_LIST('p1');
                   PL_ID:=CREATE_PARAMETER_LIST('P1');
              end if;
              select to_char(max(start_date),'dd-mon-yyyy') into d from work_schedule_detail;
         add_parameter(pl_id,'MACHINE',text_parameter,'C');
    --     add_parameter(pl_id,'S245',text_parameter,'HI FROM FORM');
    repid := find_report_object(:report_list);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,cache);
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'htmlcss');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'rep_devserver');
    --SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=yes');
    use only if u r using reports parameter form
    need some coding in reports before parameter form trigger
    IF(:report_list NOT IN ('monthly_exp')) THEN
    --     SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'MACHINE=C');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,
    'paramform=yes P_USER_CONNECT=PAYROLL/PAYROLL@PINNACLE
    P_SERVER_NAME=rep_devserver P_ACTION=http://devserver:7778/reports/rwservlet?');
              v_rep := RUN_REPORT_OBJECT(repid);
    else
    for reports with out any parameters
    v_rep := RUN_REPORT_OBJECT(repid);
    end if;
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    /*Display report in the browser*/
    WEB.SHOW_DOCUMENT('http://devserver:7778/reports/rwservlet/getjobid'||
    substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=rep_devserver','_blank');
    ELSE
    message('Error when running report');
    END IF;
    END;

  • How to send more than one parameter from FORM to REPORT?

    Dear all,
    i can send one parameter from FORM to REPORT. but when i send more than one parameter it gives error: frm 41214 unable to run report.
    here is the code i think the error is in the following line of procedure:
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no p_date_from='||v_date_from||'p_date_to='||v_date_to);
    where to place the parameters and is there any space is required?
    Thanks
    Muhammad Nadeem

    Dear Saeed Iqbal,
    thanks for you reply.
    dear i am using Form 10g run_product is not supported in this version.
    i am using RUN_REPORT_OBJECT.
    PROCEDURE rep_gl_ledger IS
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(50);
    v_date_from date;
    v_date_to date;
    v_detail_id_from varchar2(100);
    v_detail_id_to varchar2(100);
    v_voucher_type varchar2(100);
    --req_no char(17);
    BEGIN
    v_date_from :=      :ledger_para.p_date_from;
    v_date_to :=      :ledger_para.p_date_to;
    v_detail_id_from :=      :ledger_para.p_detail_id_from;
    v_detail_id_to :=      :ledger_para.p_detail_id_to;
    v_voucher_type :=      :ledger_para.p_voucher_type;
    repid := find_report_object('gl_ledger');
    --repid := find_report_object('REPORT80');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'pdf');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'rep_online_FRHome');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no p_date_from='||v_date_from||'p_date_to='||v_date_to);
    --SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no');
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    /* Display report in the browser */
    WEB.SHOW_DOCUMENT('http://'||:GLOBAL.G_IP||'/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?','_blank');
    ELSE
         message('Error when running report');
    END IF;
    END;
    Regards:
    Muhammad Nadeem

  • AR & AP Data migration from legacy

    Hi,
    1.What are the precaution to be taken for Data migration from legacy system?
    2.We intend to use a conversion ac ( Dr conv ac cr Vendor ) Is it Correct way of doing it ?
    3.How do i ensure that all my invoices uploaded correctlt ?
    4.What is the best Standard program to get it doen ?.
    5.Is LSMW is best to do it or shall I have to go for custom development?
    Any piece of yr advice is appreciated.
    Thanks, Chitra

    Hi Chitra,
    Following link are helpful in understanding LSMW:
    Note 105244 - LSMW 1.0: known problems, tips and tricks
    Re: LSMW and error handling
    /community [original link is broken]
    For Data Migration:
    Note 400257 - Data Migration and Upload Report
    Note 739860 - Data migration from a legacy system to SAP
    Hope this helps.
    Please assign points as way to say thanks

  • How to pass parameters from Forms to Reports

    dear all,
    i'm running a report from a form using run_product(), now i want
    to pass a parameter from a form to report, say i want to display
    all the employees of deptno=10, so what parameter should i give
    in run_product() and what modifications should i make in the
    report???
    thanks and regards
    Tariq.

    Yeah,
    You can pass parameters to from form to report using
    Parameter list. E.g. You want to display all employees of Dept
    10.
    1. Create report with one user paramter say p_dept
    2. Now Using Parameter list and Run Product you can call report,
    see following procedure.
    /* This Procedure passes department number as a paramter to
    Report and displays Report.
    Author - Mr. Adinath R. Kamode
    Parameter - Deptname (p_dept)
    PROCEDURE CALL_REPORT (V_DEPT IN NUMBER)
              V_PLIST          PARAMLIST;               -
    - Parameter List and Name
              V_PLISTNAME           VARCHAR2
    (30) := 'RPTLIST';
    BEGIN
    -- Check existance of Parameter List
              V_PLIST := GET_PARAMETER_LIST(V_PLISTNAME);
              IF ID_NULL (V_PLIST) THEN
                   V_PLIST := CREATE_PARAMETER_LIST
    (V_PLISTNAME);
                   IF ID_NULL (V_PLIST) THEN
                             MESSAGE('Error in
    creating parameter list.');
                             MESSAGE('.');
                             RAISE
    FORM_TRIGGER_FAILURE;
                   END IF;
    -- Add parameter data , name must be same as in Report
         ADD_PARAMETER(V_PLIST,'P_DEPT',TEXT_PARAMETER,TO_CHAR
    (V_DEPT));     
    -- Don't display parameter Form
         ADD_PARAMETER(V_PLIST,'PARAMFORM',TEXT_PARAMETER,'NO');
    RUN_PRODUCT
    (REPORTS,'DEPT.RDF',ASYNCHRONOUS,RUNTIME,FILESYSTEM,V_PLIST,NULL)
    ELSE
              DESTROY_PARAMETER_LIST(V_PLIST);
    END IF;
    END;
    Adi

  • MIgration from forms 6i to 10g - Webutil migration also required?

    Do we need to migrate webutil.pll and webutil.olb files as well during migration?

    Best regards,
    I have a tool to migrate from Forms & Reports Ordem call, which allows the automatic migration of Oracle Forms Developer written in versions 3.0, 4.5, 5.0, 6i or 9i to the latest version Oracle Forms Developer 10g to 10g or JAVA .
    If you require more information from our tool I can send information to e [email protected] and gladly put myself in communication with you and review the issue in detail.
    DANIEL TRIANA

  • Data Migration from 11i to R12 Global - Open POs,lines, receipts & on hand upload, Is it possible to do the onhand qty upload with over riding of all receipts which uploaded against Open PO lines?

    Hi Friends,
    We are in a phase of data migration from 11i to R12 
    I was discussed with client & they wants extraction of all open POs which was generated after 01 Jan 2014 to till date in 11i.
    Condition for open POs is PO qty-received qty=>0
    critical Example for open PO is :PO no: 10 has 4 lines, 3lines full qty has been received & for 1 line partial qty(say 50 out of 100) received.
    in this case he wants in R12 uploading as PO no:10 should entered as open PO with all 4lines & 3 lines complete receipt should be done, for 4th line partial qty i.e 50 should be received.
    the question is if we upload on hand qty first, then open POs & receipts, it will increase the onhand qty in new system(mismatch of on hand qty's 11i to R12) 
    Is it possible to do the onhand qty upload with over riding of all receipts which uploaded against Open PO lines.
    Or Please advice best solution.
    Thanks & Regards
    Giri

    adetoye50 wrote:
    Dear Contacts Journal Support Team,
    FYI, this is a user to user support forum.  You are NOT addressing Apple here.
    Honestly, I doubt anyone is really going to take the time to read the novel you have written.

  • Hotkey (Ctrl+B) is not working after migration from Forms 6i to 10g

    Dear Gurus,
    Need your help regarding the following problem:
    After migrating from Forms 6i to 10g (Rel 2), Ctrl+B (used to list the blocks in a form) hotkey is not working anymore (all other hotkeys are working fine). I've checked my FMRWEB.RES and it contains an entry for Ctrl+B:
    66 : 2 : "Ctrl+B" : 70 : "Block Menu"
    Additional Information:
    OS: AIX
    NLS_LANG = UTF8
    fmrweb_utf8.res also contains the same text for Ctrl+B as above.
    I tried to reproduce it on my Windows Machine (with NLS_LANG set to AMERICAN_AMERICA.WE8ISO8859P1) and its not working as well. I don't have right to put move files on AIX server but i can try anything (on my local system) suggested by the Oracle gurus.
    Best Regards,

    Dear Gerd,
    "are you sure, that it is the hotkey"
    Yes, i am dead sure. Since:
    (1) It was working fine in forms 6i
    (2) If you run a form and select Help => Keys, you will see Ctrl+B on the top of list
    The problem is its not taking into account the keys which i am defining in the file (although i am following the same procedure detailed on metalink.oracle.com).
    Regards

  • Data  Migration from 4.7 to ECC 6.0

    Dear Friends,
    We are doing upgration from sap4.7 to ECC6.0.
    We have activated new gl. We have configured all ecc6.0 functionality.
    But we stuck on data migration from classic gl to new gl.
    We want to activate the migration cockpit but system is asking license key.
    My question is, which license key it is?
    From where we will get this?
    Kindly don't send me any links and any documents related to ecc6 functionality.
    Please guide us on this.
    Thanks & Regards,
    Reva Naik

    Hi,
    following link may give you some hints:
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/2e/9e4638a28b2763e10000009b38f8cf/frameset.htm
    Regards
    Bernd

  • I have a problem with Imovie. Just brought an macbook 15 retina , iLife install and Imovie was working. I than did a data migration from my old macbook pro and now it crashes on start up. I tried to re-install from app store but no option to re-install

    I have a problem with Imovie. Just brought an macbook 15 retina , iLife install and Imovie was working. I than did a data migration from my old macbook pro and now it crashes on start up. I tried to re-install from app store but no option to re-install, just installed and it greyed out.

    Well, my two-month-old MBP has no qualms about booting from a no-name external USB HD I put together...
    Given that is is a common point of failure, I would imagine a large Apple Store should keep a stock of HD's on hand.
    Now since you're a bit desperate and the genie pops up til Saturday and you seem to be the enterprising kind, let's try an experiment: if you have room enough in the external HD and assuming it isn't a Time Machine volume, why don't you plug it in, stick the Install CD and see if the installer lets you select the external drive as the install target. If you can install Leopard on it, on top of the backup without reformatting, and the Mac can boot from the drive afterwards, at least you would have some functionality restored and would be able to pull your stuff from the internal HD. Apple says booting from USB drives is not supported but that does not equate to not possible; some brands do work. Risks? Always. You can always lose your backup. Like I said, a challenge for an enterprising gal....
    Next time around, consider having a bootable external clone at hand for rainy days. I keep three myself...
    P.S. Since I'll be in the Dallas-FW area in late June, I can volunteer with the confetti....

  • Date Migration from IBM DB2/400 V4R3M0 to Oracle 11.2G

    Dear ALL<
    We have a requirement for Date Migration from IBM DB2/400 V4R3M0 to Oracle 11.2g. Can you guys please share your experiences with similar activities done in the past ? We do not have environment at present to try out with Oracle Migration workbench.
    http://www.oracle.com/technetwork/topics/index-095746.html
    You experiece sharing will really help ...!!
    Regards,
    VKMP
    Edited by: 909016 on Jan 31, 2013 5:52 AM

    Hi VKMP,
    As well as reading the documentation thoroughly the following note available in My Oracle Support may be useful -
    Problem To Migrate Table With Table Type P From DB/AS400 With OMWB (Doc ID 466271.1)
    as OMWB does not support migrating physical files.
    Regards,
    Mike

  • Data Migration from R3 to new ECC System

    Hello,
    We are doing a fresh implementation for SAP MDM. Currently we have 3 SAP R/3 systems and 1 non-R3 system (BPCS system). One of the project goals is to do data migration from all these 4 systems into a new SAP ECC system and to MDM for Vendor Master, Customer Master and Material Master. My manager says that we need Business Objects tool to Migrate these data. But, my question is that is it not possible to achive this through XI/PI itself ? Can anyone let me know the entire process in XI/PI as to how do I receive the Idocs from R/3, convert into XML and then send it to the new ECC system in Idoc format ?
    Thks & Rgds,
    Hema

    Hi Gandhi,
    You have SAP MDM, BPC and R/3 systems in your landscape, when you are migrating data to new ECC system, what is the role of mdm, did you moving the same data to MDM to avoid duplicate/redundant data??is there any data migration from R/3 to MDM(any integration required)or MDM to R/3,
    You have to develop different interfaces to transfer data from MDM to ECC, BPC to ECC.definelty you required one middleware, the option definitely SAP PI. it offers very easy of integration between MDM and R/3 system, you can use MDM-PI adapter to connect to directly MDM syndicator file port from there you can pull the XML file and convert it in to IDoc format use Receiver IDoc adapter in PI, the same way we can integrate BPC system with R/3.
    Search in sdn, there are some scenarios integration of R/3 and MDM using PI, refer those links, if still you have any doubts let me know,
    Regards,
    Raj

  • Graphics from Forms or Reports

    When I am running graphics from forms or reports either using the chart wizard or by run_product built-in, I am getting error message OG-01603: UNABLE TO CREATE PL/SQL DEVELOPMENT ENVIRONMENT CONTEXT
    I am using Developer 6i.
    Please help me out.
    Thanks
    Zulqarnain

    I have tested on my pc it is perfectly working.
    Please check before installations..
    Is there any other oracle product is running in the same machine?
    1. Are you installing Dev 6i in a machine where Oracle database(8.0 or 8i) is installed?
    2.First shutdown the database. Stop the oracle services running.
    3. Then start installing Dev 6i in a different oracle home.

Maybe you are looking for

  • Problem with Report on Multiprovider

    Hi All, I am getting key fig value more than the expected value in the report output, Report is on Multiprovider, I have checked in to cubes, values in the cubes and reports are same, I have checked in TR and UR there is no routines, But Data source

  • Error while posting J1IS

    Hi, I am getting the below error while posting the J1IS with reference to the STO 351 document. Could you please advice? Error updating table J_1IEXCHDR. Message no. 8I308 Regards, Mohd Ali.

  • PC suite for K750

    Does anyone know if it´s possible to install pc suite on a windows 7 computer for the K750 model? It says that it´s only compatible with XP and Vista, but maybe there´s a fix to get around that. Thank you. /Z

  • Reinstall OS X 10.5/6 Without CD Drive

    So my early (non unibodby) MBP is suffering. The CD drive does not work (Hardware) and the OS is slow (Software(. I have both OS 10.5 and 10.6 CDs with me but for obvious reasons i cant use those directly. Can i use it on another computers (i have a

  • Blue screen whenever I try to play games - please help

    Hi, My computer runs perfectly when I do tasks such as using the net, typing letters etc, but as soon as I run a game it stops working.... I start the game up, it runs through the intro movies, and then it shows a blank blue screen with the sound "re