Export InfoCube Contents by Request to a flat file

Hi SDN,
Is it possible, other than going into the manage contents of an infoCube,
to export to a CSV file, by a request id.
I had a look at the function module
RSDRI_INFOPROV_READ
and it nearly does what i require, although i wasn't able to get it to work.
Can anyone firstly provide me with the parameters to input to get it to write to a file, say C:\temp.csv.
We are not able to use open hub service because of licensing issues.
Finally, if there is no easy solution, i will just go to the manage contents, and dump out the 3 - 4 million records identified by a request id number
Thank you.
Simon

Hi,
hereunder an example populating an internal table; the same writing to flat file shouldn't be an issue (OPEN DATASET....)
DATA:
  BEGIN OF ls_sls_infoprov_read,
    0PLANT      LIKE /BIC/VZMC0332-0PLANT,
    0RT_POSNO   LIKE /BIC/VZMC0332-0RT_POSNO,
    0RT_RECNUMB LIKE /BIC/VZMC0332-0RT_RECNUMB,
    0PSTNG_DATE LIKE /BIC/VZMC0332-0PSTNG_DATE,
    0TIME       LIKE /BIC/VZMC0332-0TIME,
    ZAIRLINE    LIKE /BIC/VZMC0332-ZAIRLINE,
    ZFLIGHTN    LIKE /BIC/VZMC0332-ZFLIGHTN,
    ZPAXDEST    LIKE /BIC/VZMC0332-ZPAXDEST,
    ZPAXDESTF   LIKE /BIC/VZMC0332-ZPAXDESTF,
    ZPAXCLASS   LIKE /BIC/VZMC0332-ZPAXCLASS,
    0CUSTOMER   LIKE /BIC/VZMC0332-0CUSTOMER,
    0MATERIAL   LIKE /BIC/VZMC0332-0MATERIAL,
    0RT_SALRESA LIKE /BIC/VZMC0332-0RT_SALRESA,
    0RT_POSSAL  LIKE /BIC/VZMC0332-0RT_POSSAL,
    0RT_POSSALT LIKE /BIC/VZMC0332-0RT_POSSALT,
    ZREASVAL    LIKE /BIC/VZMC0332-ZREASVAL,
    0RT_PRICRED LIKE /BIC/VZMC0332-0RT_PRICRED,
    0RT_PRICDIF LIKE /BIC/VZMC0332-0RT_PRICDIF,
  END OF ls_sls_infoprov_read.
DATA: ls_sls_item LIKE ls_sls_infoprov_read.
TYPES: ly_sls_infoprov_read LIKE ls_sls_infoprov_read,
       ly_sls_item          LIKE ls_sls_item.
DATA:
    lt_sls_infoprov_read
    TYPE STANDARD TABLE OF ly_sls_infoprov_read
    WITH DEFAULT KEY INITIAL SIZE 10,
    gt_sls_infoprov_read LIKE lt_sls_infoprov_read.
DATA:
     ls_sls_sfc  TYPE RSDRI_S_SFC,
     lt_sls_sfc  TYPE RSDRI_TH_SFC,
     ls_sls_sfk  TYPE RSDRI_S_SFK,
     lt_sls_sfk  TYPE  RSDRI_TH_SFK,
     ls_sls_range TYPE RSDRI_S_RANGE,
     lt_sls_range TYPE RSDRI_T_RANGE,
     lv_sls_end_of_data TYPE  RS_BOOL,
     lv_sls_first_call TYPE rs_bool,
    lv_sls_icube  TYPE RSINFOCUBE VALUE 'ZMC033'.
*filling internal tables containing the output characteristics / KeyFigs
* Shop ID
  ls_sls_sfc-chanm = '0PLANT'.
  ls_sls_sfc-chaalias = ls_sls_sfc-chanm.
  ls_sls_sfc-orderby  = 1.
  INSERT ls_sls_sfc INTO TABLE lt_sls_sfc.
** Till ID
  ls_sls_sfc-chanm = '0RT_POSNO'.
  ls_sls_sfc-chaalias = ls_sls_sfc-chanm.
  ls_sls_sfc-orderby  = 2.
  INSERT ls_sls_sfc INTO TABLE lt_sls_sfc.
** Receipt Number
  ls_sls_sfc-chanm = '0RT_RECNUMB'.
  ls_sls_sfc-chaalias = ls_sls_sfc-chanm.
  ls_sls_sfc-orderby  = 4.
  INSERT ls_sls_sfc INTO TABLE lt_sls_sfc.
** Posting Date
  ls_sls_sfc-chanm = '0PSTNG_DATE'.
  ls_sls_sfc-chaalias = ls_sls_sfc-chanm.
  ls_sls_sfc-orderby  = 3.
  INSERT ls_sls_sfc INTO TABLE lt_sls_sfc.
* Time
  ls_sls_sfc-chanm = '0TIME'.
  ls_sls_sfc-chaalias = ls_sls_sfc-chanm.
  ls_sls_sfc-orderby  = 0.
  INSERT ls_sls_sfc INTO TABLE lt_sls_sfc.
* Airline
  ls_sls_sfc-chanm = 'ZAIRLINE'.
  ls_sls_sfc-chaalias = ls_sls_sfc-chanm.
  ls_sls_sfc-orderby  = 0.
  INSERT ls_sls_sfc INTO TABLE lt_sls_sfc.
* Flight Number
  ls_sls_sfc-chanm = 'ZFLIGHTN'.
  ls_sls_sfc-chaalias = ls_sls_sfc-chanm.
  ls_sls_sfc-orderby  = 0.
  INSERT ls_sls_sfc INTO TABLE lt_sls_sfc.
* Destination
  ls_sls_sfc-chanm = 'ZPAXDEST'.
  ls_sls_sfc-chaalias = ls_sls_sfc-chanm.
  ls_sls_sfc-orderby  = 0.
  INSERT ls_sls_sfc INTO TABLE lt_sls_sfc.
* Final Destination
  ls_sls_sfc-chanm = 'ZPAXDESTF'.
  ls_sls_sfc-chaalias = ls_sls_sfc-chanm.
  ls_sls_sfc-orderby  = 0.
  INSERT ls_sls_sfc INTO TABLE lt_sls_sfc.
* Passenger Class
  ls_sls_sfc-chanm = 'ZPAXCLASS'.
  ls_sls_sfc-chaalias = ls_sls_sfc-chanm.
  ls_sls_sfc-orderby  = 0.
  INSERT ls_sls_sfc INTO TABLE lt_sls_sfc.
* EU, non EU code
  ls_sls_sfc-chanm = '0CUSTOMER'.
  ls_sls_sfc-chaalias = ls_sls_sfc-chanm.
  ls_sls_sfc-orderby  = 0.
  INSERT ls_sls_sfc INTO TABLE lt_sls_sfc.
** Item Characteristics
* Article
  ls_sls_sfc-chanm = '0MATERIAL'.
  ls_sls_sfc-chaalias = ls_sls_sfc-chanm.
  ls_sls_sfc-orderby  = 0.
  INSERT ls_sls_sfc INTO TABLE lt_sls_sfc.
** Key Figures
* Sales Quantity in SuoM
  ls_sls_sfk-kyfnm    = '0RT_SALRESA'.
  ls_sls_sfk-kyfalias = ls_sls_sfk-kyfnm.
  ls_sls_sfk-aggr     = 'SUM'.
  INSERT ls_sls_sfk INTO TABLE lt_sls_sfk.
* Gross Sales Value
  ls_sls_sfk-kyfnm    = '0RT_POSSAL'.
  ls_sls_sfk-kyfalias = ls_sls_sfk-kyfnm.
  ls_sls_sfk-aggr     = 'SUM'.
  INSERT ls_sls_sfk INTO TABLE lt_sls_sfk.
* Tax Value
  ls_sls_sfk-kyfnm    = '0RT_POSSALT'.
  ls_sls_sfk-kyfalias = ls_sls_sfk-kyfnm.
  ls_sls_sfk-aggr     = 'SUM'.
  INSERT ls_sls_sfk INTO TABLE lt_sls_sfk.
* Discounts
  ls_sls_sfk-kyfnm    = 'ZREASVAL'.
  ls_sls_sfk-kyfalias = ls_sls_sfk-kyfnm.
  ls_sls_sfk-aggr     = 'SUM'.
  INSERT ls_sls_sfk INTO TABLE lt_sls_sfk.
* Reductions
  ls_sls_sfk-kyfnm    = '0RT_PRICRED'.
  ls_sls_sfk-kyfalias = ls_sls_sfk-kyfnm.
  ls_sls_sfk-aggr     = 'SUM'.
  INSERT ls_sls_sfk INTO TABLE lt_sls_sfk.
* Differences
  ls_sls_sfk-kyfnm    = '0RT_PRICDIF'.
  ls_sls_sfk-kyfalias = ls_sls_sfk-kyfnm.
  ls_sls_sfk-aggr     = 'SUM'.
  INSERT ls_sls_sfk INTO TABLE lt_sls_sfk.
** filters
FORM infoprov_sls_selections.
  REFRESH lt_sls_range.
  CLEAR ls_sls_range.
  ls_sls_range-chanm  = '0COMP_CODE'.
  ls_sls_range-sign   = 'I'.
  ls_sls_range-compop = 'EQ'.
  ls_sls_range-low    = 'NL02'.
  APPEND ls_sls_range TO lt_sls_range.
  CLEAR ls_sls_range.
  ls_sls_range-chanm    = '0PLANT'.
  ls_sls_range-sign     = 'I'.
  ls_sls_range-compop   = 'EQ'.
  ls_sls_range-low      = 'NLAA'.
  APPEND ls_sls_range TO lt_sls_range.
  ls_sls_range-low      = 'NLAB'.
  APPEND ls_sls_range TO lt_sls_range.
  ls_sls_range-low      = 'NLAC'.
  APPEND ls_sls_range TO lt_sls_range.
  ls_sls_range-low      = 'NLAM'.
  APPEND ls_sls_range TO lt_sls_range.
** Test Only
  CLEAR ls_sls_range.
  ls_sls_range-chanm    = '0CALDAY'.
  ls_sls_range-sign     = 'I'.
  ls_sls_range-compop   = 'BT'.
  ls_sls_range-low      =  s_datefr.
  ls_sls_range-high     =  s_dateto.
  APPEND ls_sls_range TO lt_sls_range.
*  CLEAR ls_sls_range.
*  ls_sls_range-chanm    = '0CALDAY'.
*  ls_sls_range-sign     = 'I'.
*  ls_sls_range-compop   = 'LE'.
*  ls_sls_range-low      =  s_dateto.
*  APPEND ls_sls_range TO lt_sls_range.
* infoprov_sls_read
DATA: lv_sls_records TYPE I, lv_sls_records_char(9) TYPE C.
  lv_sls_end_of_data = ' '.
  lv_sls_first_call  = 'X'.
* read data in packages directly from the cube
  WHILE lv_sls_end_of_data = ' '.
        CALL FUNCTION 'RSDRI_INFOPROV_READ'
          EXPORTING  i_infoprov             = lv_sls_icube
                     i_th_sfc               = lt_sls_sfc
                     i_th_sfk               = lt_sls_sfk
                     i_t_range              = lt_sls_range
                     i_reference_date       = sy-datum
                     i_save_in_table        = ' '
                     i_save_in_file         = ' '
                     I_USE_DB_AGGREGATION   = 'X'
                     i_packagesize          = 100000
                     i_authority_check      = 'R'
          IMPORTING  e_t_data               = lt_sls_infoprov_read
                     e_end_of_data          = lv_sls_end_of_data
          CHANGING   c_first_call           = lv_sls_first_call
          EXCEPTIONS illegal_input          = 1
                     illegal_input_sfc      = 2
                     illegal_input_sfk      = 3
                     illegal_input_range    = 4
                     illegal_input_tablesel = 5
                     no_authorization       = 6
                     ncum_not_supported     = 7
                     illegal_download       = 8
                     illegal_tablename      = 9
                     OTHERS                 = 11.
        IF sy-subrc <> 0.
          BREAK-POINT.   "#EC NOBREAK
          EXIT.
        ENDIF.
        APPEND LINES OF lt_sls_infoprov_read TO gt_sls_infoprov_read.
  ENDWHILE.
Another options for "adjusting" a cube:
- converting it to transactional and use BPS functionalities (ABAP report SAP_CONVERT_TO_TRANSACTIONAL)
- loopback scenario: generate export datasource on your cube with update rules to your cube itslef; you would extract the data to be corrected to PSA; you can then edit this PSA (manually or mass updates with ABAP code) and the post it again in your cube.
hope this helps...
Olivier.

Similar Messages

  • File Content Conversion - Creating Mulitple structured Flat Files

    Hello,
           I am trying to create a flat file using File content Conversion.For simple XML strcutures like
    <Header>
    </Header>
       <Item>
       </Item>
    <Trailer>
    </Trailer>
    the file content conversion works fine. But whe the XML structure gets complicated like
    <Header>
    </Header>
       <Item>
          <Item_Detail>
          </Item_Detail>
       </Item>
    <Trailer>
    </Trailer>
    or
    <Header>
    </Header>
       <Item>
          <Item_Detail_1>
               <Item_Detail_2>
               </Item_Detail_2>
          </Item_Detail_1>
       </Item>
    <Trailer>
    </Trailer>
    I am not able to create the correct flat file with the Item_Detail information.How can I do the same ?
    Regards,
    Sandeep

    well same in the receiver side too....
    REF: http://help.sap.com/saphelp_nw04/helpdata/en/d2/bab440c97f3716e10000000a155106/content.htm
    and sorry abt the earlier blogs, u can chk out the one below ....
    /people/arpit.seth/blog/2005/06/02/file-receiver-with-content-conversion

  • Loading data into infocube in bi 7.0 from flat file.

    Hello  All,
    I need the complete procedure for loading data into the infocube from flat file in bi 7.0 i.e.using transformation,DTP etc.
    Please help me with some gud documents.

    Hi Pratighya,
    Step by step procedure for loading data from flat file.
    1. Create the infoobjects you might need in BI
    2. Create your target infoprovider
    3. . Create a source system
    4. Create a datasource
    5. Create and configure an Infopackage that will bring your records to the PSA
    6. Create a transformation from the datasource to the Infoprovider
    7. Create a Data Transfer Process (DTP) from the datasource to the Infoprovider
    8. Schedule the infopackage
    9. Once succesful, run the DTP
    10. This will fill your target.
    Hope this helps
    Regards
    Karthik

  • Exporting data to flat files

    Hi,
    Is it possible to export data from any database to flat files using SQL developer and also automate the process by including some sort of scheduler or script?
    Thanks,
    Nitesh

    If the database is Oracle you can export the contents of table to a flat file by right clicking on the table instance and selecting "Export Data" menu item and then selecting the export format

  • Export table to flat file programmatically

    Hi all,
    i want to know how to export a table/tables
    programmatically to a flat file
    i know that we can do that by right click on the table
    and choose save as .... etc... (in toad)
    But how do i make it with a script..
    thx

    http://osi.oracle.com/~tkyte/flat/index.html

  • Unattended Daily Exporting of Query to Flat File

    I am VERY new to Oracle and SQL Plus. I've been tasked with automating a query to run unattended daily to export data and store it in a flat file with structured naming convention (CC_MMDDYY.exp). I need to have it be able to an "on demand" query to flat file too. Any help would be appreciated.

    search asktom.oracle.com (temporary unavailable right now) for keyword flat file to obtain a procedure to write the result of a given query to a flat file and that's it. You can then schedule it's execution using DBMS_SCHEDULER or execute it on demand.
    Regards
    Etbin
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:68212348056
    Message was edited by: Etbin
    user596003

  • SSIS to Export data from SQL to flat file dynamically

    Hi.
    I hope somebody can help me out, I have a table like this:
    Date, StoreNumber, ProductCode, SalesItem, SalesAmout, Inventory
    09-10-2014,10,1,10,10,30
    As you can see I have a Date field and my table has information from 2014 at daily basis, What I'm trying to do is to export the information of this table to flat files, creating one file pear each date, as a result I will have about 280 files (one per date)
    I do not know if it is possible or not.
    Thank you.

    Hi Mike,
    you can do it using one Execute SQL Task and a ForEach Loop variable driven.
    1st the Execute SQL Task "figures out" how many iterations the loop would need. The SQL as follows would drive it:
    SELECT DISTINCT [DATE] FROM MyTable;
    and you get the dates placed into a package variable of type recordset for the [280] files.
    And then you can operate on the recordset in the loop "shredding it" in a DFT with a source query dynamically driven by the date as "select a,b,c from mytable where date = '" + @[User::CurentDate] + "'" placing each
    "date" into its own file even naming the file after the date using the current value of the package variable (ADO row concept).
    See an example: http://www.sqlis.com/sqlis/post/Shredding-a-Recordset.aspx
    Arthur My Blog

  • Data convertion while exporting data into flat files using export wizard in ssis

    Hi ,
    while exporting data to flat file through export wizard the source table is having NVARCHAR types.
    could you please help me on how to do the data convertion while using the export wizard?
    Thanks.

    Hi Avs sai,
    By default, the columns in the destination flat file will be non-Unicode columns, e.g. the data type of the columns will be DT_STR. If you want to keep the original DT_WSTR data type of the input column when outputting to the destination file, you can check
    the Unicode option on the “Choose a Destination” page of the SQL Server Import and Export Wizard. Then, on the “Configure Flat File Destination” page, you can click the Edit Mappings…“ button to check the data types. Please see the screenshot:
    Regards,
    Mike Yin
    TechNet Community Support

  • Is use of flat file in SRM-MDM catalog search UI possible ?

    Hello,
    When user looks for materials inside SRM-MDM catalog (using search user interface), search is done manually with free form or drill down search.
    Then, among the search result, user has to select items he wants to add to his shopping cart and finally transfer those items from his shopping cart overview inside SRM.
    Is it possible to automate this user selection using for exemple a flat file uploading (or any other way you could know) ?
    This flat file will have material number (or service), supplier code and quantity (no more information).
    The aim of the request is to help requester to not have to select each item one by one (in the search result) knowing that :
    -  SC will have more than a hundred items,
    - delivery time and price (for example) must be checked in MDM, being the master data reference
    - materials (or service) to order are received by requester via a flat file without any information about prices, so i cannot upload my flat file directly into SRM because file missing data must come from MDM.
    With this process, user should have only to transfer items automatically selected.
    Could you please share your advises ?
    We use SAP MDM 5.5.
    Regards.
    Laurent.

    Hello Masa,
    Masayuki Sekihara wrote:
    A vendor look at buyer stock information like VMI and fill stock weekly base. So the vendor sends material number and quantity information as flat file to buyer. Buyer should create SC from flat file and price information should fetch from catalog.
    Yes, your are correct: example you gave corresponds to process for my SC uploading.
    Regards.
    Laurent.

  • Flat File-to-RFC question, multiple RFC calls for one file.

    Hi guys,
    I'm quite new to XI / PI and I have a question regarding a File-to-RFC scenario we're trying in NW PI 7.1.
    We have a flat file which has two lines with two fields each, let's take this as an example :
    001,001
    002,002
    The files needs to be converted to XML and then transferred to the RFC program which will update a table with the values above.
    In the ESR I've created 3 data types (z_row1,z_record1 and z_fileinput1), 1 message type (z_file2rfc_ob_mt), 1 message mapping (z_file2rfc_mm), 2 Service Interface (z_file2rfc_ob_si and z_file2rfc_ib_ztestpi) and 1 operation mapping (z_file2rfc_om).
    In the Integration Builder (ID) I've created everything required (The sender and receiver communication channels, sender and receiver agreement, receiver determination and interface mapping).
    We're also using content conversion to convert the flat file to XML, this does seem to work because I see all the lines/field in the message when it gets into PI. The problem is that the RFC can only accept two fields at a time and only the first line gets updated. I see that only the first line gets sent to the RFC.
    How can I make the RFC call for each and every line ?
    Thanks !!

    Create the RFC with table, which takes multiple lineitem as input and update the table in single call.
    If you want response back then call RFC as synchrounous else in Asynchrounous mode.
    By doing this in single call it will update the complete table.
    Gaurav Jain
    Reward Points if answer is helpful

  • IDOC Flat File-- XI-- IDOC

    Hi,
       I have a requirement wherein we have to read the IDOC flat file and post it as IDOC to SAP using XI. I understand we have to use the Flat File Sender adapter and the IDOC Receiver Adapter. On the Sender Side we have to define the Content Conversion to convert the IDOC Flat File to IDOC XML. Writing File Content Conversion for the IDOC Flat File would be very tedious because of the number of fields and fixed structure of the flat file.
      I have don through the following guide Section 3.2 where it talks abt converting IDOC to IDOC XML using reportRSEINB00.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/xi/xi-how-to-guides/how%20to%20convert%20between%20idoc%20and%20xml%20in%20xi%203.0.pdf
    I am not clear how to invoke this report in the Flat File Sender adapter. Also is there any other approach.
    Thanks
    Rajeev Gupta

    Hi Rajeev
    You have a flatfile at the sender side so you dnt  have any feasiable option to do other than FCC....FCC is not a tediuos one...if you can provide the strucutrre we will help you out...
    Check out you have a fixedlength file or piple separated one....
    In the functional design how many fields re present and buil the DT,MT MI accoprdingly.....
    you have to just use some conecnt conversion parameters that's it...
    item.fieldSeparator
    item.endSeparator
    item.fieldNames
    here item is your recordset name
    let us know your strucutre
    regards
    Nisar

  • Classes for converting a flat file to XML

    I've been asked to convert text in a flat file to an XML document. The XML document must conform to an XML schema. Currenlty, there is no requirement to store the resulting xml in the database.
    Therefore my approach will be:
    1. parse the flat file and store the contents in an array (the flat file and target xml is fairly simple in structure)
    2. Transfer the contents of the array to the xml structure
    3. validate the xml against the schema
    I'm new to Java. Therefore, what classes should I be using to assist in step 2. Obvoiusly, I dont want to have to write my own implementation from scratch (i.e. a method to build an element, method to escape reserved characters etc).
    Could you please suggest classes that cover both DOM and SAX API's.
    I'm working with a 9.2.0.4 database and XDK.
    Thanks

    The Stylus Studio may be used to convert text file to XML.
    http://www.stylusstudio.com/text_file_to_xml.html
    Another reference:
    http://www.devx.com/getHelpOn/10MinuteSolution/20356

  • How to built a hierarchy with flat file?

    Hi Experts,
    for a better representation of the report, i need to built a hierarchy with flat file.
    The Data load is via Flat file.
    Do you have some documentation about that?
    Thanks
    Cheers
    Gilo

    Hi Gilo,
       Check these docs...
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/0403a990-0201-0010-38b3-e1fc442848cb">How to… Download a Hierarchy to a Flat File</a>
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/fa/e92637c2cbf357e10000009b38f936/content.htm">Uploading Hierarchies from Flat Files</a>
    <a href="http://sapbwneelam.blogspot.com">More Docs...</a>
    Hope it Helps
    Srini

  • Error loading essbase data into flat files through DIM

    Hi All,
    While running the session in DIM 8.1.1 which will load data from Hyperion essbase (11.1.1.3) to flat file it fails.
    From the log file it shows failes to load the HASReader plugins.
    All the environmental variables are properly set.
    Still I am facing this issue.
    Could anymore suggest me what I am missing.
    Thanks,

    Hi Avs sai,
    By default, the columns in the destination flat file will be non-Unicode columns, e.g. the data type of the columns will be DT_STR. If you want to keep the original DT_WSTR data type of the input column when outputting to the destination file, you can check
    the Unicode option on the “Choose a Destination” page of the SQL Server Import and Export Wizard. Then, on the “Configure Flat File Destination” page, you can click the Edit Mappings…“ button to check the data types. Please see the screenshot:
    Regards,
    Mike Yin
    TechNet Community Support

  • Creating Hierarchy by Loading Flat File

    Can any one give steps to load hierarchy using flat file

    Uploading Hierarchies from Flat Files
    http://help.sap.com/saphelp_bw30b/helpdata/en/fa/e92637c2cbf357e10000009b38f936/content.htm
    Hierarchy Upload from Flat files - Blogs
    /people/prakash.bagali/blog/2006/02/07/hierarchy-upload-from-flat-files
    Hope it helps..

Maybe you are looking for

  • OC4J 9.0.3 Standalone and 9iAS 9.0.2 mid-tier

    We are currently running Forms9i and Reports 9i services on a mid-tier installation of Oracle9iAS 9.0.2. (Solaris). We have also developed some JDeveloper 9.0.3 applications that need to be deployed onto the same server. I understand from previous di

  • Data Page Wizards

    Jdeveloper 3.2.3 - windows 2000 Oracle 8.1.7 I have used the Data Page Wizards to create a query, edit and insert forms. The forms are generated using the jbo: datatags. I would like to implement the following: 1. Query submit screen(hitlist) Current

  • Connection to Smart TV

    Hi there How can I connect my PC to my TV wirelessly? My PC is an HP TouchSmart 600. My TV is a Samsung 6500 Smart TV with wireless receptor. Thanks Pericles

  • My nano ipod will not do anything but flash the apple logo.  Help?

    I have tried ever diagnostic tool available. Have reset it many times. Have even done every troubleshooting thing it suggests to no avail. I just got it for Xmas and am very frustrated having spent all day yesterday trying to fix it.

  • Running Adobe Actions is Using 100% of my CPU

    Does anyone have a fix for Adobe using 100% of their CPU.  Without running Photoshop I run 5-6%.  As soon as I open Lightroom, send to Photoshop and run an action my CPU Usage spikes to 100%.  What should take 2 minutes max to edit is taking between