Register BI Publisher report in Oracle Apps

Hi,
I wanted to know, if we can register a BI Publisher report in Oracle Apps. Please note that this is BI publisher Release 10.1.3.4...I am not using any rdf here.
Thanks,
As

Hii Gareth,
The steps you specified are basically used for former XML publisher but as i am developing the report in BI Publisher, when we create data definition in xml administrator responsibility, that time we need to upload a data template file that looks like following:
<dataTemplate name="InvoiceTest" description="Invoice Test" Version="1.0">
     <parameters>
          <parameter name="P_ORG_ID" dataType="Integer"/>
     </parameters>
     <dataQuery>
          <sqlStatement name="Q1">
               <![CDATA[select a.invoice_num AS "Invoice Number",
        a.invoice_currency_code AS "Invoice Currency code",
        a.payment_currency_code AS "Payment Currency Code",
        sum(a.invoice_amount) AS "Invoice Amount",
        a.payment_method_lookup_code AS "Payment Method",
        sum(a.approved_amount) AS "Approved Amount",
        b.vendor_name "Vendor Name",
           b.vendor_id AS Vendor_id
               from ap_invoices_all a,
po_vendors b
where invoice_type_lookup_code = 'STANDARD'
and a.vendor_id = b.vendor_id
and a.org_id = NVL(:P_ORG_ID,a.ORG_ID)
group by
        b.vendor_name,
        a.invoice_num,
        a.invoice_currency_code,
        a.payment_currency_code,
        a.invoice_date,
        a.payment_method_lookup_code,
           b.vendor_id]]>
          </sqlStatement>
     </dataQuery>
</dataTemplate>
but as Latest BI Publisher does not provide/generate such file automatically (I am not using rdfs but querying the database from BI Publisher itself) so there is no use of using this way registering the BI Publisher report in Oracle Apps as using this way to register a BI Publisher report will lead me to manually make a data definition file and then register it into Oracle Apps. Please suggest me if there is any other way that i can go for or if there is any way i can get the data definition file automatically created from Latest BI Publisher.
Thanks for your help,
Regards,
AS

Similar Messages

  • Register Drill-Down Reports in Oracle Apps 11i

    I understand the registration process for registering a drill-down Oracle*Report in Oracle Applications is more complex as for a standard Oracle*Report. Does anyone know what the steps are, or where I can find documentation on this.
    Any help appreciated.

    Hi,
    ah ok, now the situation gets clearer ;)
    Normally I would say that drill-down requires some kind of interactivity, so I am not sure if reports is the best way for this, because the functionality of reports is:
    enter parameters > run > view output. But for drill-down you need some more functionality: select a column/value where you want to drill-in or out, have some kind of hierarchy to select the "drill-level"... I don't think that this is foreseen in Reports 6i. So I would try maybe two different ways:
    1. design the report in a way that the users can select the drill-level (or level of detail) as a report parameter. For example you create a parameter "Detail Level" with possible values "Summary", "Detailed Rows". Based on the parameter value chosen the report returns different output. This keeps you of course limited to a certain, fixed set of drill-levels, but I think this is ok in most of the cases.
    2. Another option could be to create several different reports, for example one "Summary" report and one "detailed" report, and in the summary report you could include links (dynamic URLs) to the detailed report, and when the user clicks on a certain value in the Summary report, then the detailed report is started for that specific value. However this is a bit more complex, I'd go for the first option.
    But to get real drill-down functionality you should consider using Discoverer or BI Publisher technology, those are perfect for such kind of reports.
    kind regards,
    David.

  • BI Publisher Report in Oracle Apps 11i having multiple queries.

    Hi,
    I would like to know whether it is possible to have multiple queries in a data definition File.
    QUERY1 - To find the last run date of a particular concurrent program
      SELECT   max(fcr.request_date) last_run_date
       FROM     apps.fnd_concurrent_requests    fcr,
                apps.fnd_concurrent_programs fcp,
                apps.fnd_concurrent_programs_tl fcpt
       where    fcr.concurrent_program_id = fcp.concurrent_program_id
       and      fcp.concurrent_program_id = fcpt.concurrent_program_id
       and      fcpt.user_concurrent_program_name = 'Get Transfer Alert Details'Now based on the last run date value I will have my main query Query 2
    QUERY 2-------------------------
    select to_char(psah.creation_date,'DD-MON-YYYY HH24:MI:SS') appr_date,
           (select papf.full_name
              from per_all_people_f papf ,
                   fnd_user fu  
             where 1 = 1
               and fu.user_name = psah.user_name
               and papf.person_id = fu.employee_id
               and papf.current_employee_flag = 'Y'
               and trunc(sysdate) between effective_start_date and effective_end_date ) bu_hr_appr,
           papf.full_name emp_name,
           papf.employee_number emp_num,
           (select hoin.org_information3||'.'|| hoin.org_information5
              from hr_organization_information hoin
             where 1 = 1
               and hoin.organization_id = to_number(xxc_hr_ocsi_pkg.GET_TXN_VALUE(psah.approval_history_id,psth.transaction_history_id,'ASSIGN','P_ORGANIZATION_ID','NEW'))
               and hoin.org_information_context = 'Company Cost Center' ) nbucc,
           (select hoio.org_information3||'.'|| hoio.org_information5
              from hr_organization_information hoio         
             where 1 = 1
               and hoio.organization_id = to_number(xxc_hr_ocsi_pkg.GET_TXN_VALUE(psah.approval_history_id,psth.transaction_history_id,'ASSIGN','P_ORGANIZATION_ID','OLD'))
               and hoio.org_information_context = 'Company Cost Center') obucc,
           papf_hr.full_name hr_name,
           papf_hr.email_address hr_mail,
           papf_cre.first_name cre,
           papf_cre.email_address cre_email,
           DECODE(xxc_hr_ocsi_pkg.GET_TXN_VALUE(psah.approval_history_id,psth.transaction_history_id,'SAL','P_ATTRIBUTE_CATEGORY','NEW'),
                  'Commission Sales Plan',
           (select flv.meaning
              from fnd_lookup_values flv
             where 1 = 1
               and flv.lookup_type = 'XXHR_ANNUAL_COMMISSIO_PLAN_TYP'
               and flv.enabled_flag = 'Y'
               and flv.lookup_code = xxc_hr_ocsi_pkg.GET_TXN_VALUE(psah.approval_history_id,psth.transaction_history_id,'SAL','P_ATTRIBUTE1','NEW')),'NA') csp,
           to_char(trunc(sysdate),'DD-MON-YYYY HH24:MI:SS') current_date,
           fnd_global.conc_request_id request_id,
           psth.last_update_date
      from apps.pqh_ss_transaction_history psth ,
           apps.pqh_ss_approval_history psah,
           apps.per_all_people_f papf ,
           apps.per_all_assignments_f paaf,
           apps.per_all_people_f papf_cre,
           apps.per_all_people_f papf_hr        
    where 1 = 1
       and psth.process_name = 'HR_TRANSFER_JSP_PRC'
       and psth.transaction_history_id = psah.transaction_history_id
       and psah.action = 'APPROVED'
       and psah.creation_date = (select max(psah1.creation_date)
                                   from apps.pqh_ss_approval_history psah1
                                 where 1 = 1
                                    and psah1.transaction_history_id = psah.transaction_history_id
                                    and psah.action = psah1.action
                                    and psah.approval_history_id = psah1.approval_history_id
       and (select count (1)
              from apps.pqh_ss_approval_history psah
             where psah.transaction_history_id = psth.transaction_history_id
               and action = 'APPROVED'
           ) > 1
       and psah.approval_history_id = (select max(psah1.approval_history_id)
                                         from pqh_ss_approval_history psah1
                                        where 1= 1
                                          and psah1.transaction_history_id = psah.transaction_history_id
                                          and psah1.action = psah.action
       and psth.selected_person_id = papf.person_id
       and papf.current_employee_flag = 'Y'
       and trunc(sysdate) between papf.effective_start_date and papf.effective_end_date        
       and papf.person_id = paaf.person_id
       and paaf.primary_flag = 'Y'
       and paaf.assignment_type = 'E'
       and trunc(sysdate) between paaf.effective_start_date and paaf.effective_end_date  
       and to_number(paaf.ass_attribute7) = papf_hr.person_id
       and trunc(sysdate) between papf_hr.effective_start_date and papf_hr.effective_end_date
       and psth.creator_person_id = papf_cre.person_id
       and trunc(sysdate) between papf_cre.effective_start_date and papf_cre.effective_end_date
       and psth.last_update_date > :last_run_dateEdited by: 936671 on Jul 2, 2012 4:09 AM

    For examples and details please refer to the Guide: http://docs.oracle.com/cd/E10415_01/doc/bi.1013/e12187/T421739T434255.htm
    Specifically, look for the following chapters
    The Data Template Definition
    How to Define a Data Link Between Queries

  • Registering oracle forms and reports in oracle apps 11i

    Hi all
    I am a newbie to oracle apps
    could someone please help me with registering oracle forms and reports in oracle apps 11i
    thanking in advance
    regards
    oracle user

    Hi,
    regarding adding (Add (C:\ABC) to FORMS60_PATH in the registry) could you please explain
    compilation is by f60gen @ (is this right?)Correct, the syntax of using f60gen is explained in (Note: 130686.1 - How to Generate Form, Library and Menu for Oracle Applications).
    The place where i am working has apps installed in IBM AIX server .. so how do i access Apps
    or can i access Apps via TOAD.You will have to access the server using ftp to download the pll files to your local machine. TOAD can be used to access the database objects only (not the physical application files).
    Regards,
    Hussein

  • How to start XML reports in Oracle Apps

    Hi All,
    As im new to develop XML reports in Oracle Apps. And Im used to develop oracle reports. But i have a new requirement came and i need to develop new XML reports.
    I am using windows please let me know any software to be installed and how to register the XML reports.
    1) how to create .rtf
    2) How to make columns mapping in rtf file.
    If any knows please let me know as it is bit urget for me.
    Im leaving in Duabi, if any is intrested to teach me i will join or pls let me know any instute
    Thanks,

    Assuming that you intend to create a layout template to use against an existing report, then you should start by changing the output type in the concurrent program definition to XML. You should then run the report and save the XML file output. This will form the start point for yout layout template.
    In order to create the layout template, you need to download the BI Publisher desktop. This is the add-in for Word which is used to build the template.
    When you have these tasks completed, you can open up Word and you will find you have some new menu options. Load the XML data you created in the first step, and you can build your template. You will also be able to preview the output from within Word.
    When you have completed the template, you need to go into XML Publisher responsibility. You should create a data definition which has a code the same as the concurrent program short name. This is the link between the template and the concurrent program.
    You then need to define a template for this data definition which will have the layout template uploaded.
    Having done this, switch to systeem administration responsibility, select the concurrent program menu entry and query back the program you are workin on. Click on the 'update' icon. You then need to click on the 'Onsite setting' tab. This allows you to attach the template to the program.
    Hope this helps.

  • Barcode Report In Oracle Apps

    Hi,
    I am going develop new barcode report in oracle apps (using standard oracle report not like xml,BI.), As i am new to this i need basic information like what are all the setup need to be done whether is possible or not , Following are the versions i am using
    Oracle Report Builder 6i (output is Text)
    Oracle Apps 11.5.10.2
    Sever Details:
    DATABASE Server - 10g RAC enabled (Load balancer)
    Application Server - Load balancer
    Platform: HP - UNIX 64 bit-(PA RISC),
    SAN - HP EVA storage
    DR site hosted with etisalat (SCSI)

    You may want to take a look at this blog created by Tim Dexter regarding barcoding in XML Publisher.
    http://blogs.oracle.com/xmlpublisher/2006/06/06/#a43

  • Matrix Report  in Oracle Apps

    Dear All,
    I have a problem in report. I created a matrix report in report 6i. while i m running report, the o/p is proper.
    But after register the report in Oracle Apps, It doesn't show anything even title name.
    How can i handle this problem. Please help.
    Thanks
    PS

    Hi PS
    Please check below links:
    How to create a matrix report
    How to create a matrix report
    how to build matrix report
    how to build matrix report
    Oracle Reports Building Reports
    http://download.oracle.com/docs/html/B10602_01/part4.htm
    Regard
    Helios

  • Error while running report in oracle apps

    While running the report in oracle apps, i am getting below error
    Arguments
    AS_ON_DATE='2013/03/21 00:00:00'
    sdate='2012/04/01 00:00:00'
    edate='2013/03/31 00:00:00'
    Forcing NLS_NUMERIC_CHARACTERS to: '.,' for XDO processing
    APPLLCSP Environment Variable set to :
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.AL32UTF8
    Enter Password:
    REP-0004: Warning: Unable to open user preference file.
    REP-0300: ORACLE error occurred.
    REP-0069: Internal error
    REP-57054: In-process job terminated:Terminated with error:
    REP-300: ORACLE error occurred.
    I tried to run the same report in report builder, it is working as per the requirement. But it is not working in oracle apps.
    Please help.
    Thanks in advance.

    Thanks Kishore. I copied the prefs.ora file. So the first warning from the is resolved. But still i am getting error.
    Query: I am trying to get the total absence days for each employee in current financial year.
    SUM((CASE
    WHEN ( (TO_CHAR (TO_DATE (paa.date_start, 'RRRR/MM/DD HH24:MI:SS'),'DD-MON-RRRR') BETWEEN TO_CHAR (TO_DATE (:sdate, 'RRRR/MM/DD HH24:MI:SS'),'DD-MON-RRRR') AND TO_CHAR (TO_DATE (:edate, 'RRRR/MM/DD HH24:MI:SS'),'DD-MON-RRRR'))
    OR (TO_CHAR (TO_DATE (paa.date_end, 'RRRR/MM/DD HH24:MI:SS'),'DD-MON-RRRR') BETWEEN TO_CHAR (TO_DATE (:sdate, 'RRRR/MM/DD HH24:MI:SS'),'DD-MON-RRRR') AND TO_CHAR (TO_DATE (:edate, 'RRRR/MM/DD HH24:MI:SS'),'DD-MON-RRRR')))
    THEN
    (CASE
    when (GREATEST(paa.date_end,to_date(:edate,'dd-mon-yyyy')))= to_date(paa.date_end)
    THEN to_date(:edate,'dd-mon-yyyy')
    ELSE
    TO_DATE(paa.date_end,'DD-MON-YYYY')
    END)
    - (CASE
    when(LEAST(paa.DATE_START,to_date(:sdate,'dd-mon-yyyy')))= to_date(paa.date_start)
    THEN to_date(:sdate,'dd-mon-yyyy')
    ELSE
    TO_DATE(paa.date_start,'DD-MON-YYYY')
    END)
    + 1
    ELSE
    0
    END)) AS "ABSENCE_DAYS"
    sdate(financial year start date) and edate(financial year end date) are input parameters. In oracle apps parameters are defined as FND_STANDARD_DATE.
    paa.date_start and paa.date_end is taken from per_absence_attendances table.
    Error:
    Arguments
    as_on_date='2013/03/22 00:00:00'
    sdate='2012/04/01 00:00:00'
    edate='2013/03/31 00:00:00'
    Forcing NLS_NUMERIC_CHARACTERS to: '.,' for XDO processing
    APPLLCSP Environment Variable set to :
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.AL32UTF8
    Enter Password:
    REP-0300: ORACLE error occurred.
    REP-0069: Internal error
    REP-57054: In-process job terminated:Terminated with error:
    REP-300: ORACLE error occurred.
    Please help.
    Edited by: 995343 on Mar 22, 2013 4:17 AM

  • Service Tax Receipt Report in oracle apps

    how to develop the service tax receipt report in oracle apps. Plz help me in that i don't have any experiences in AP.

    Thanks Kishore. I copied the prefs.ora file. So the first warning from the is resolved. But still i am getting error.
    Query: I am trying to get the total absence days for each employee in current financial year.
    SUM((CASE
    WHEN ( (TO_CHAR (TO_DATE (paa.date_start, 'RRRR/MM/DD HH24:MI:SS'),'DD-MON-RRRR') BETWEEN TO_CHAR (TO_DATE (:sdate, 'RRRR/MM/DD HH24:MI:SS'),'DD-MON-RRRR') AND TO_CHAR (TO_DATE (:edate, 'RRRR/MM/DD HH24:MI:SS'),'DD-MON-RRRR'))
    OR (TO_CHAR (TO_DATE (paa.date_end, 'RRRR/MM/DD HH24:MI:SS'),'DD-MON-RRRR') BETWEEN TO_CHAR (TO_DATE (:sdate, 'RRRR/MM/DD HH24:MI:SS'),'DD-MON-RRRR') AND TO_CHAR (TO_DATE (:edate, 'RRRR/MM/DD HH24:MI:SS'),'DD-MON-RRRR')))
    THEN
    (CASE
    when (GREATEST(paa.date_end,to_date(:edate,'dd-mon-yyyy')))= to_date(paa.date_end)
    THEN to_date(:edate,'dd-mon-yyyy')
    ELSE
    TO_DATE(paa.date_end,'DD-MON-YYYY')
    END)
    - (CASE
    when(LEAST(paa.DATE_START,to_date(:sdate,'dd-mon-yyyy')))= to_date(paa.date_start)
    THEN to_date(:sdate,'dd-mon-yyyy')
    ELSE
    TO_DATE(paa.date_start,'DD-MON-YYYY')
    END)
    + 1
    ELSE
    0
    END)) AS "ABSENCE_DAYS"
    sdate(financial year start date) and edate(financial year end date) are input parameters. In oracle apps parameters are defined as FND_STANDARD_DATE.
    paa.date_start and paa.date_end is taken from per_absence_attendances table.
    Error:
    Arguments
    as_on_date='2013/03/22 00:00:00'
    sdate='2012/04/01 00:00:00'
    edate='2013/03/31 00:00:00'
    Forcing NLS_NUMERIC_CHARACTERS to: '.,' for XDO processing
    APPLLCSP Environment Variable set to :
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.AL32UTF8
    Enter Password:
    REP-0300: ORACLE error occurred.
    REP-0069: Internal error
    REP-57054: In-process job terminated:Terminated with error:
    REP-300: ORACLE error occurred.
    Please help.
    Edited by: 995343 on Mar 22, 2013 4:17 AM

  • Deploying reports on Oracle app server

    Hi
    Our current application  has Oracle reports deployed on Oracle AS and Oracle Report Server. Can we replicate same scenario for Crystal report.
    Means can we use Crystal Report on Oracle App Server / Oracle Report Server. Or do I need to use Crystal report Server

    Could you please provide/point the documentation/steps for deplying Reports on Java App Server (IN My Case Oracle App Server)
    Kuldeep C.
    Software Engineer
    Persistent Systems Ltd.,
    Pune, India

  • Integrating mod_plsql reports with Oracle Apps. A maddening dilemma.

    I'm hoping there is some guru out there that has the perfect solution to this maddening dilemma I'm facing.
    The crux of the issue is this.
    I've created mod_plsql reports that can accept a session_id with which they can set a user context based on global application contexts set in Oracle applications by users as they log in.
    At this juncture, I have not figured out a way to call those mod_plsql reports from Oracle apps using a variable session_id as defined for the user when they logged into apps.
    My client want to be able to log into Oracle apps and then go to the mod_plsql reports from the Oracle Apps menu and maintain the user session, so that the mod_plsql reports are run using VPD to constrain access to the data they are displaying to that specific user.
    The client does not have Single Sign On installed nor OID.
    I had hoped to pass a variable parameter session_id from the defined menu function that would call the mod_plsql url, but I don't see any way to pass a variable there and am becoming convinced that doing so is not an option. Can anyone confirm this?
    An alternate option I'm considering that seems like it would work is to create a JSP page that gets called from a menu function. In that JSP page, I would retrieve the session_id set in apps based on the context for the user_id that I could retrieve from fnd_global.user_id and assemble a URL with the session_id that the page would then re-route to the mod_plsql page.
    Unfortunately, I'm not versed in JSP.
    How hard would it be to create the sort of page that I'm talking about?
    Would the JSP need to part of OAF?
    Can anyone think of any other options that would take care of the issue I'm dealing with?
    Thanks.
    Kurt

    See answer on other forum: Integrating mod_plsql reports with Oracle apps. Maddening dilemma.

  • Integrating mod_plsql reports with Oracle apps. Maddening dilemma.

    I'm hoping there is some guru out there that has the perfect solution to this maddening dilemma I'm facing.
    The crux of the issue is this.
    I've created mod_plsql reports that can accept a session_id with which they can set a user context based on global application contexts set in Oracle applications by users as they log in.
    At this juncture, I have not figured out a way to call those mod_plsql reports from Oracle apps using a variable session_id as defined for the user when they logged into apps.
    My client want to be able to log into Oracle apps and then go to the mod_plsql reports from the Oracle Apps menu and maintain the user session, so that the mod_plsql reports are run using VPD to constrain access to the data they are displaying to that specific user.
    The client does not have Single Sign On installed nor OID.
    I had hoped to pass a variable parameter session_id from the defined menu function that would call the mod_plsql url, but I don't see any way to pass a variable there and am becoming convinced that doing so is not an option. Can anyone confirm this?
    An alternate option I'm considering that seems like it would work is to create a JSP page that gets called from a menu function. In that JSP page, I would retrieve the session_id set in apps based on the context for the user_id that I could retrieve from fnd_global.user_id and assemble a URL with the session_id that the page would then re-route to the mod_plsql page.
    Unfortunately, I'm not versed in JSP.
    How hard would it be to create the sort of page that I'm talking about?
    Can anyone think of any other options that would take care of the issue I'm dealing with?
    Thanks.
    Kurt

    Thanks for the feedback and sorry it took me so long to reply back. I don't recall seeing the session_id or user_id being passed as part of the function set up, but the rest definitely are. I may be mistaken.
    I did come up with a solution that involved the following.
    The package was in another schema, but granting execute to apps and creating a synonym in apps allowed for all mod_plsql output to be generated by Oracle's apps ias server.
    I could capture the session_id and the user_id using a function referencing icx_session. I build an additional procedure that gets called first by the app so that it can set the session_id and user_id to a context then set a cookie that all subsequently generated pages reference with that info.
    That's the short of it and at this point I've long moved on to other issues but it certainly was a relief to get it working. No jsp necessary.
    Thanks.
    Kurt

  • How to attach report in oracle apps

    I have good experince in oracle reports but now new in EBS 12. And very soon new reports will be developed. i am studying documentation of EBS since last week but still not able to know about
    1)How to attach report in oracle apps.
    2)How prameters should be defined
    3)What are the limitation for developing new reports for oracle apps

    could u post this in apps forum
    For stand alone reports check this
    http://www.alexyscorp.com/send_report_email.zip
    Message was edited by:
    Alex(AlexysCorp)

  • Accessing Discoverer Reports from Oracle Apps

    Hi all,
    Requirement: Accessing Discoverer Reports from Oracle Apps
    Discoverer: 11g
    Oracle Apps: 12i
    When I am trying to access the Discoverer Reports from Oracle apps, again it is asking for Oracle Apps Login details. Can we have any other option that can directly connect to the viewer without any intermission. Please its urgent requirement.
    ThanQ,
    ABR

    Hi Arun,
    When I am trying to access the Discoverer Reports from Oracle apps, again it is asking for Oracle Apps Login details. Can we have any other option that can directly connect to the viewer without any intermission. Please its urgent requirement.Pl refer section *6.4. Set Applications profile options in Oracle E-Business Suite* from MOS tech note
    *Using Discoverer 11.1.1 with Oracle E-Business Suite Release 12 [ID 1074326.1]* and make sure that all profile options are set to a valid value.
    thanks,
    X A H E E R

  • While running the report from oracle apps

    Hi,
    While running the report from oracle apps i am getting the below error.
    First time when i ran it it works fine in the second time it is giving the below error like
    MSG-00001: After SRWINIT
    MSG-01000: Label sets failed
    MSG-01000: ORA-06502: PL/SQL: numeric or value error
    REP-1419: 'beforereport': PL/SQL program aborted
    Can anyone please give your kind advice on it.
    Thanks
    Surya...

    what is the application version ?
    is it seeded report ? or customized
    regards

Maybe you are looking for

  • Setting up an airport express router with only an ipad

    i will be in a hotel room with only ethernet wired connection.  i am traveling only with my ipad.  can i hook up an wireless modem (Airport exrpress) without a laptop?  How?

  • When uploading an image from my documents firefox 5 hangs for several seconds to a minute.

    This in on an XP SP3 system. The problem seemed to have started with 3.6 and has been a constant issue even with current versions. When I upload any file firefox just hangs for a short while then it's fine for the rest of the day only to come back th

  • Can't burn a dvd even in DVD creator pro??? What's up?

    I'm trying to burn a video that I made in iMovie. I open the app DVD Creator Pro- Burn DVD. Everytime I insert a blank DVD, iTunes opens up and says... You've inserted a blank DVD. To burn items on the DVD, select the playlist that contains the items

  • How to insert an HTML link into a page

    Hello, We have a list of documents in a external document management system. We would like to present the list of documents to the user for retrieval from within any SRM HTML page. I was thinking of two different approaches: 1) I would like to be abl

  • HELP my ipone wont turn on

    i was on my iphone 3GS this evening and i suddenly decided to turn off ive tryed holding the buttons in and charging it up again and still nothing