Need to get the input dynamically and write the records

hi everyone,
iam having a doubt in scripts,
1.i need to get the input from user
(input is the table name)
2.if the input matches with the tables in the database and the n it has to write the records in a csv format.
3.the fields should be delimited by comma.
is it possible to write a script or procedure.
the script should be a generic one.
thanks and Regards,
R.Ratheesh

hi
,,actually my column_names are.
select T24_ACCOUNT_NUMBER||','||
NULLIF(T24_CUSTOMER,NULL)||','||
NULLIF(T24_CATEGORY,NULL)||','||
NULLIF(T24_ACCOUNT_TITLE_1,'')||','||
NVL(T24_ACCOUNT_TITLE_2,'')||','||
NULLIF(T24_SHORT_TITLE,'')||','||
NULLIF(T24_SHORT_TITLE,'')||','||
NULLIF(T24_POSITION_TYPE,'')||','||
NULLIF(T24_CURRENCY,'')||','||
NULLIF(T24_LIMIT_REF,NULL)||','||
NULLIF(T24_ACCOUNT_OFFICER,NULL)||','||
NULLIF(T24_OTHER_OFFICER,NULL)||','||
NULLIF(T24_POSTING_RESTRICT,NULL)||','||
NULLIF(T24_RECONCILE_ACCT,'')||','||
NULLIF(T24_INTEREST_LIQU_ACCT,NULL)||','||
NULLIF(T24_INTEREST_COMP_ACCT,NULL)||','||
NULLIF(T24_INT_NO_BOOKING,'')||','||
NULLIF(T24_REFERAL_CODE,NULL)||','||
NULLIF(T24_WAIVE_LEDGER_FEE,'')||','||
NULLIF(T24_PASSBOOK,'')||','||
NVL(TO_CHAR(T24_OPENING_DATE,'YYYYMMDD'),'')||','||
NULLIF(T24_LIMK_TO_LIMIT,'')||','||
NULLIF(T24_CHARGE_ACCOUNT,NULL)||','||
NULLIF(T24_CHARGE_CCY,'')||','||
NULLIF(T24_INTEREST_CCY,'')||','||
NULLIF(T24_ALT_ACCT_IDa,NULL)||','||
NULLIF(T24_PREMIUM_TYPE,'')||','||
NULLIF(T24_PREMIUM_FREQ,'')||','||
NULLIF(T24_JOINT_HOLDER,NULL)||','||
NULLIF(T24_RELATION_CODE,NULL)||','||
NULLIF(T24_JOINT_NOTES,'')||','||
NULLIF(T24_ALLOW_NETTING,'')||','||
NULLIF(T24_LEDG_RECO_WITH,NULL)||','||
NULLIF(T24_STMT_RECO_WITH,NULL)||','||
NULLIF(T24_OUR_EXT_ACCT_NO,'')||','||
NULLIF(T24_RECO_TOLERANCE,NULL)||','||
NULLIF(T24_AUTO_PAY_ACCT,NULL)||','||
NULLIF(T24_ORIG_CCY_PAYMENT,'')||','||
NULLIF(T24_AUTO_REC_CCY,'')||','||
NULLIF(T24_DISPO_OFFICER,NULL)||','||
NULLIF(T24_DISPO_EXEMPT,'')||','||
NULLIF(T24_ICA_DISTRIB_RATIO,NULL)||','||
NULLIF(T24_LIQUIDATION_MODE,'')||','||
NULLIF(T24_INCOME_TAX_CALC,'')||','||
NULLIF(T24_SINGLE_LIMIT,'')||','||
NULLIF(T24_CONTINGENT_INT,'')||','||
NULLIF(T24_CREDIT_CHECK,'')||','||
NULLIF(T24_AVAILABLE_BAL_UPD,'')||','||
NULLIF(T24_CONSOLIDATE_ENT,'')||','||
NULLIF(T24_MAX_SUB_ACCOUNT,NULL)||','||
NULLIF(T24_MASTER_ACCOUNT,'')||','||
NULLIF(T24_FUND_ID,'') FROM T24_CACCOUNT;
this is the order
but while my output looks like
SQL> set serveroutput on
SQL> set verify off
SQL> set heading off
SQL> spool /emea/dbtest/tamdbin/bnk/bnk.run/DATA.BP/SAM_ACC.csv
SQL> exec input_table('T24_CACCOUNT');
declare cursor c2 is select
rownum||','||T24_WAIVE_LEDGER_FEE||','||T24_PASSBOOK||','||T24_OPENING_DATE||','
||T24_LIMK_TO_LIMIT||','||T24_CHARGE_ACCOUNT||','||T24_CHARGE_CCY||','||T24_INTE
REST_CCY||','||T24_ALT_ACCT_IDA||','||T24_PREMIUM_TYPE||','||T24_PREMIUM_FREQ||'
,'||T24_JOINT_HOLDER||','||T24_RELATION_CODE||','||T24_JOINT_NOTES||','||T24_ALL
OW_NETTING||','||T24_LEDG_RECO_WITH||','||T24_STMT_RECO_WITH||','||T24_OUR_EXT_A
CCT_NO||','||T24_RECO_TOLERANCE||','||T24_AUTO_PAY_ACCT||','||T24_ORIG_CCY_PAYME
NT||','||T24_AUTO_REC_CCY||','||T24_DISPO_OFFICER||','||T24_DISPO_EXEMPT||','||T
24_ICA_DISTRIB_RATIO||','||T24_LIQUIDATION_MODE||','||T24_INCOME_TAX_CALC||','||
T24_SINGLE_LIMIT||','||T24_CONTINGENT_INT||','||T24_CREDIT_CHECK||','||T24_AVAIL
ABLE_BAL_UPD||','||T24_CONSOLIDATE_ENT||','||T24_MAX_SUB_ACCOUNT||','||T24_MASTE
R_ACCOUNT||','||T24_FUND_ID||','||T24_ACCOUNT_NUMBER||','||T24_CUSTOMER||','||T2
4_CATEGORY||','||T24_ACCOUNT_TITLE_1||','||T24_ACCOUNT_TITLE_2||','||T24_SHORT_T
ITLE||','||T24_MNEMONIC||','||T24_POSITION_TYPE||','||T24_CURRENCY||','||T24_LIM
IT_REF||','||T24_ACCOUNT_OFFICER||','||T24_OTHER_OFFICER||','||T24_POSTING_RESTR
ICT||','||T24_RECONCILE_ACCT||','||T24_INTEREST_LIQU_ACCT||','||T24_INTEREST_COM
P_ACCT||','||T24_INT_NO_BOOKING||','||T24_REFERAL_CODE SRC from T24_CACCOUNT; r2
c2%rowtype; begin for r2 in c2 loop dbms_output.put_line(r2.SRC); end loop;
end;
1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,222222284001,2222222,6001,,,,,TR,USD,,,,,,,,
2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,222222384001,2222223,6001,,,,,TR,USD,,,,,,,,
3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,222222484001,2222224,6001,,,,,TR,USD,,,,,,,,
4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,222222584001,2222225,6001,,,,,TR,USD,,,,,,,,
5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,222222684001,2222226,6001,,,,,TR,USD,,,,,,,,
6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,222222284001,2222222,6001,,,,,TR,USD,,,,,,,,
7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,222222384001,2222223,6001,,,,,TR,USD,,,,,,,,
8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,222222484001,2222224,6001,,,,,TR,USD,,,,,,,,
9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,222222584001,2222225,6001,,,,,TR,USD,,,,,,,,
10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,222222684001,2222226,6001,,,,,TR,USD,,,,,,,
11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,222222284001,2222222,6001,,,,,TR,USD,,,,,,,
12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,222222384001,2222223,6001,,,,,TR,USD,,,,,,,
13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,222222484001,2222224,6001,,,,,TR,USD,,,,,,,
14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,222222584001,2222225,6001,,,,,TR,USD,,,,,,,
15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,222222684001,2222226,6001,,,,,TR,USD,,,,,,,
here if we look at the select statement the previous one ,its starts from middle and
picking up the records.i dont know y.and also its not writing the records in the path (spool)which i have given..can u pls check it out if possible.
thanks ,.
R.Ratheesh

Similar Messages

  • Display some constant in the input field and allow the user to change it.

    Dear All,
    I have a requirement in WDA to display inputfield with some constant initially and allow
    the user to change that value according to his wish.Currently I am using UI Element
    InputField for this,but I am not able to show the constant initially.
    How can I achieve this pls suggest.
    Thanks,
    Reddy.

    Hi sudhir,
    To display with default values, you need to write your code in wddointi method.
    Check this code..
    * navigate from <CONTEXT> to <INPUT> via lead selection
      lo_nd_input = wd_context->get_child_node( name = wd_this->wdctx_input ).
    * get element via lead selection
      lo_el_input = lo_nd_input->get_element( ).
      lv_ship_point = '1001'.
    * set single attribute
      lo_el_input->set_attribute(
        name  =  `SHIP_POINT`
        value = lv_ship_point ).  // Now ship_point have initial value 1001.
    Cheers,
    Kris.

  • How to change the layout of an input file and write to an output file

    Hi
    I have a .csv file which has a layout as schoolNo. , county1,county2,county3,county4,county5
    It will need to go into an output file as schoolNo. repeated and a county on each record .
    ie., schoolNo.,county1
    schoolNo.,county2
    schoolNo.,county3
    schoolNo.,county4
    schoolNo.,county5
    I wrote the java program as follows ..which results in this error
    Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException
    BECAUSE :--
    i know bec., the first record doesnot have county3,county4,county5 . So when the if loop for county3 lenght is checked it gives this exception .
    Pls help me write this program ..thanks in advance .
    /Here I open the input file and read in record by record                                                                                                                        
              BufferedReader readin;
              try {
                   readin = new BufferedReader(new FileReader(InFile));
                   String firstLine = readin.readLine();
                   String[] headers = firstLine.split(",");
                   columnCount = headers.length;
                   System.out.println("Columns in ZIP Master File: "+columnCount);
                   for(String input ;(input = readin.readLine()) != null; ){
                        recCount++;
                        input = input.substring(1);               
                        String[] column = input.split(",");
                        if(columnCount == 10){
                             eachIP++;
    //                               OUTPUT FILE
                                    if(column[1].length()> 0) {
                                       String mainStr = column[0] + "," + column[1] ; 
                                       Count++;
                                       totalcolumns++;
                                       writeOutFile.write(mainStr);
                                       writeOutFile.newLine();
                                  else{
                                  bypassedCount++;
                                    if(column[2].length()>0){
                                         String mainStr = column[0]+ "," + column[2];
                                         Count++;
                                         totalcolumns++;
                                       writeOutFile.write(mainStr);
                                       writeOutFile.newLine();
                                  else{
                                  bypassedCount++;
                                    if(column[3]..length()>0){
                                         String mainStr = column[0]+ "," + column[3];
                                         Count++;
                                         totalcolumns++;
                                       writeOutFile.write(mainStr);
                                       writeOutFile.newLine();
                                  else{
                                  bypassedCount++;
                                 }

    There are two split( ... ) methods; check the other one (the one with two arguments), it allows for empty entries to be counted, i.e. split(inputString, -1) gives you the wanted results.

  • Using TestStand 2.0, what is the best way to run a smaller sequence, in parallel to the main sequence, and access the main sequence's FileGlobals?

    I did ask this a while back and appreciate your responses. We did upgrade to TestStand 2.0. The basic problem is that I have written and TestStand sequence to test Avionics black boxes. We use Excel to specify the signal names and input data and expected output data for thousands of test cases. My LabVIEW VI's are small generic modules that refer back to TestStand to determine how to set or get the signals. This way, on other projects, we simple change a few signal names, instruments, and were good to go. We use Analog, Digital, Pulse Trains, Synchro Resolvers, LVDT/RVDT, power supplies, logic analyzers, ... to perf
    orm these test. The TestStand sequence can run different black boxes on difference test benches based on the data contained with the TestStand FileGlobals. Now I have come across a special situation where in a couple of input signals are set based on a couple of output signals. I developed a short sequence to read the output signals, compute the values of the inputs signals, and set the instrument to send that data to the UUT for those couple of signals. Anyway, I have to reference the FileGlobals to determine what the instruments are and how to access them are used for the signals involved. Since I have a lot of FileGlobal data, I can not pass it as parameters to the parallel sequence.
    What I would like to be able to do is just reference the main sequence's FileGlobals as if they were the parallel sequence's FileGlobals.
    I am willing to send a copy of the sequence being used to whomever thinks they know a good way to accomplish this if it would help them to determine what I am t
    rying to do. I will need to know who you are since we do not want this being published, as is, since it contains some signals names which the company that I am consulting at may consider proprietary. You can
    email me directly at my company
    [email protected]

    a) If the parallel sequence is in the same file and...
    a1) ...you launch the parallel sequence as a thread in the execution of main sequence, you do not need to do anything. The sequences share the same file globals
    a2) ...you launch the parallel sequence as a separate execution, you must mark the file globals as shared by all executions. You specify this in the Sequence File Global control on the sequence file properties dialog box.
    b) If the parallel sequence is in a different file (or even the same file), you can pass the entire set of file globals as a single sequence parameter to the parallel sequence when you launch it. Make a Container parameter and right click on it to turn off type checking. Pass FileGlobals to the parameter. When you edit the subsequenc
    e, you won't be able to see specific file globals under the parameter but they will appear at runtime.

  • I'm going to get the I Mac and since the new I Mac doesn't have DVD drive on it I was thinking to get the Samsung SE-506AB Slim Portable Blu-ray Writer in order to burn movies from I movie do I need a special software for that since the SE-506ab comes onl

    I’m going to get the I Mac and since the new I Mac doesn’t have DVD drive on it I was thinking to get the Samsung SE-506AB Slim Portable Blu-ray Writer in order to burn movies from I movie do I need a special software for that since the SE-506ab comes only with windows software.. but I did check and it is compatible with apple. Can you please advise me and or let me know if I’m buying the right stuff or if there is any other blu ray that will work with the I mac as plug and play.
    Thank you
    Haim

    This freezing reminds me of really old Macs, long ago, in the days of the old-school peripherals like SCSI drives, terminators, scanners and the like. If you had a SCSI conflict, like the wrong device ID's or something, you'd freeze up like that. Back in those days you'd call 800-SOS-APPLE (AAPL?) and they'd run you through disconnecting all your extra hardware - Jaz and Zip drives, CD burners, scanners etc and then eliminate them one by one by adding them incrementally and testing for the freeze/bomb dialog.
    But, today we have Firewire and none of those ancient issues (no free lifetime tech support either). My iMac's ports are all full, and I only know which devices are connected when I have to remove something for another device. iSight, scanner, card reader, external hard drive, USB soundsticks, etc. You wouldn't happen to have any SCSI devices hooked up, would you?
    Out of curiosity, have you tried a different USB/Firewire port for the hard drive? Or run the hardware test DVD that comes with your computer? This weird freezing seems to suggest a problem with the computer, RAM or network more than a device. Bad devices, in my experience, cause kernel panics, not freezing.

  • My hard drive crashed on my MacBook Pro crashed and I need to get my CS5 up and running on the new hard drive. I copied what I could onto an external hard drive but when I drag and drop I get directions to uninstall but the uninstall folder I have does sa

    my hard drive crashed on my MacBook Pro crashed and I need to get my CS5 up and running on the new hard drive. I copied what I could onto an external hard drive but when I drag and drop I get directions to uninstall but the uninstall folder I have does says it is an alias that is no longer present. I get error 6. I would like to get my software up and running on the laptop again please

    If you subscribed to iTunes match the songs are kept in icloud. If you didn't but you did save the actual iTunes library folder which should include the music, video, etc.  you should be able to just drag this file back to your machine in the same place and when you open iTunes it will give you a chance to identify the iTunes library folder. 
    You can test this to find out if you saved the media files or not and don't need to attach your nano to do it. 
    You are correct that once you connect the nano it will clear the existing files from it and sync it with the new iTunes library. 
    If you don't have the media files i'm not sure if/how to get them back on a windows ipod.  I have everything backed up regularly because of the horror stories I have seen & heard.

  • Where do I find the websites stored as my homepage and how do I select one of them if I need to get just it back and not all of them?

    I have three websites as my homepage, but often once I have worked within one tab for awhile and gone to other sites, I need to get back to the site that is there when my homepage tabs first pop up. I may not have even touched the other two tabs, but if I click on the Home button, I get three new tabs with the three websites that make up my homepage. I then have to delete three tabs to keep just what I want. In IE, the Home button has a pulldown, which allows me to select any one of my homepage websites, and loads that site on the current tab. Can this be done with FF?

    The only way I know to achieve this would be to create three separate bookmarks on the Bookmarks toolbar and click on a one that you want to load in the current tab. You can also try to right-click the Back arrow and click the entry at the bottom of the list to return to the first page.

  • I've recently messed up my Mac OS X Lion by deleting Aperture, but I need to get my data out of the computer. And by the way, I've got an important project in Final Cut Pro X. Is there any way I can back it up (including fxs and positions of the clip) ?

    Hello everyone
    I've recently messed up my Mac OS X Lion by deleting Aperture, but I need to get my data out of the computer. I've tried to repair it using DU, but it said I needed to backup all my data and reinstall the OS. How do I backup my data to an external drive?
    And by the way, I've got an important project in Final Cut Pro X. Is there any way I can back it up (including fxs and positions of the clip) ?
    Hope you guys can help me!

    You need to back up 2 folders, Final Cut Events and Final Cut Projects which by default are located on your Movies Folder. You can always check by clicking on a clip inside Fianl Cut X and selecting Show in Finder in the contextual menu for the selected clip.

  • I'm trying to download my Master CS6 onto a new hard drive because my old one crashed and I keep getting a message saying " Cannot write the file" or "I don't have permission to access the requested resource." ? What does this mean?

    I'm trying to download my Master CS6 onto a new hard drive because my old one crashed and I keep getting a message saying " Cannot write the file" or "I don't have permission to access the requested resource." ? What does this mean?

    Yes- it is a Mac. I went through adobes system requirements and re- downloaded supportive software. The notice seems to happen near the end of the down load with the messages above. I'll look into your suggestion. Thank you- appreciated.

  • We are using EBS 12.1.3.  When we input a sales order from a customer we input the sales order and specify the date the customer wants it.  This isn't always the date that we intend on manufacturing it though.  I need to put a customer due date in, but be

    We are using EBS 12.1.3.  When we input a sales order from a customer we input the sales order and specify the date the customer wants it.  This isn't always the date that we intend on manufacturing it though.  I need to put a customer due date in, but be able to put a date in another field that MRP can read in the event we choose to manufacture based on another date.  For example, early.
    Any help would be appreciated.

    What you are experiencing is 100% related to Malware.
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Since upgrading to Lion OS, the wifi connectivity keeps blocking up intermittently and we need to manually keep switching on and off the wifi utility to get the connection back. even locking the preferred wifi network in system preferences does not help.

    Since upgrading to Lion OS 10.7.1, the wifi connectivity keeps blocking up intermittently and we need to manually keep switching on and off the wifi utility to get the connection back. even locking the preferred wifi network in system preferences does not help. This never used to happen with Snow Leopard

    This is a big thank you to Rys Sinnefeldt who posted this fix.
    Rys has made this fix very easy to do and takes literally 2 mins. It involves replacing the Atheros Lion driver 4.0 and replacing it with the snow leopard driver. Don't worry, Rys has made this so simple to do even I could do it and so far I have had no more wifi drops.
    follow this link
    http://rys.pixeltards.com/2011/09/04/osx-lion-wifi.html
    Thanks again to Rys.

  • Need to get a mibile computer and i am considering the macbook pro 15". Is that a good idea?

    Need to get a mibile computer and i am considering the macbook pro 15". Is that a good idea?

    The 15" is the ideal size, the 17" is a bit larger and more comfortable.
    The 13" is a bit cramped, the 11" forget it.
    The 11 and 13" have the poor Intel HD 3000 integrated graphics (solely) which are not good at 3D gaming/video and tend to overheat as the CPU is also doing the graphics.
    The 2.0 Ghz 15" MacBook Pro has a slightly better video card that does average on most current 3D games.
    The 2.2Ghz MacBook Pro (and higher) does excellently on 3D games with the powerful 1GB radeon 6750M and "future proofs" your computer investment for 3, 5, 7 years or longer.
    It all depends upon your portability and use needs.
    If your not a 3D gamer and can afford to replace your machine in shorter time periods and all you need is a basic laptop, then one of the smaller thinner machines will do. In fact even a Windows PC laptop can do. There really isn't any advantage of going for a Mac laptop at the lower end excpet for status symbol appeal. Your going to be paying $1500 for a laptop that a $800 PC will do just as well.
    However if your needing more of a portable workhorse machine the 2.2 Ghz MacBook Pro or better is ideal, it can run jsut about all the operating systems out there well, bootcamp into Windows and everythng with it's strong hardware and decent sized screen.
    Also the 15" and up have the optional ANTI-GLARE screens which is great for classes and at work where you can't control the enviroment to reduce reflections.
    If your on the go a lot, you can get a iPad in addition to the 15" MacBook Pro, if you need a larger screen you can buy that and use the MBP as a desktop machine sort of.
    The smaller Mac machines don't drive a larger monitor very well, really you need a dedicated graphics card.

  • I need help! I have the iphone 5 and I want to buy the whastsaap, but it turns out I get to put the answers up and answer the questions but I do not remember. Someone could help me? Help! Thank you!

    I need help! I have the iphone 5 and I want to buy the whastsaap, but it turns out I get to put the answers up and answer the questions but I do not remember. Someone could help me? Help! Thank you!

    Security questions:
    https://discussions.apple.com/thread/4533485?tstart=0

  • I need assistance in burning an imovie to a DVD.  I've done this before, but am having problems this go around.  When I get to the import section and insert the blank dvd it runs a few seconds and ejects it.  Any ideas?

    I am struggling with getting the imovie I just created to burn onto a DVD.  I have done this before, I'm following the tutorial for imovie '09 and it isn't working after several attempts.  Any suggestions?  When I get to the import phase and insert the blank dvd it runs a few seconds and then spits it out. 

    tomc1965 wrote:
    I bought a 47LA6200 TV and a BP530 blue ray player. I have my cable box hooked up to HDMI 1, I have my blue ray hooked up to HDMI 2, and my XBox 360 to HDMI 3. I have my cable box hooked up to my older JVC RX880V stereo digital optical to digital optical without any 5.1 problems at all.
    My TV digital optical out is hooked up to my stereo digital optical port 2 without any 5.1 problems either, sort of.
    My BP530 is hooked up to my stereo digital coax to digital coax but I cannot get any 5.1 sound at all. Not through any of the digital channels on the stereo at all.
    The player only comes through as standard stereo through all 4 speakers and I am not sure if it is coming through the base speaker at all.
    I have tried every setting on both the TV and the blue ray player to no avail. I have even tried to not use the digital on my blue ray but when the stereo is set to play from my tv optical I still don't get 5.1 sound.
    When I do not use the TV optical out but I do use the digital coax out from the DVD player I still cannot play my DVDs in 5.1. I have new HDMI 15gbps HDMI cables and a new digital coaxial cable so I don't think it is a cable thing.
    The real question is how do I get to hear my blue ray and DVD discs in 5.1 sound? Will this work if I exchange my blue ray player for a Denon 3D blue ray or other player?

  • How to read the data file and write into the same file without a temp table

    Hi,
    I have a requirement as below:
    We are running lockbox process for several business, but for a few businesses we have requirement where in we receive a flat file in different format other than how the transmission format is defined.
    This is a 10.7 to 11.10 migration. In 10.7 the users are using a custom table into which they are first loading the raw data and writing a pl/sql validation on that and loading it into a new flat file and then running the lockbox process.
    But in 11.10 we want to restrict using temp table how can we achieve this.
    Can we read the file first and then do validations accordingly and then write to the same file and process the lockbox.
    Any inputs are highly appreciated.
    Thanks & Regards,
    Lakshmi Kalyan Vara Prasad.

    Hello Gurus,
    Let me tell you about my requirement clearly with an example.
    Problem:
    i am receiving a dat file from bank in below format
    105A371273020563007 07030415509174REF3178503 001367423860020015E129045
    in this detail 1 record starting from 38th character to next 15 characters is merchant reference number
    REF3178503 --- REF denotes it as Sales Order
    ACC denotes it as Customer No
    INV denotes it as Transaction Number
    based on this 15 characters......my validation comes.
    If i see REF i need to pick that complete record and then fill that record with the SO details as per my system and then submit the file for lockbox processing.
    In 10.7 they created a temporary table into which they are loading the data using a control file....once the data is loaded into the temporary table then they are doing a validation and updating the record exactly as required and then creating one another file and then submitting the file for lockbox processing.
    Where as in 11.10 they want to bypass these temporary tables and writing it into a different file.
    Can this be handled by writing a pl/sql procedure ??
    My findings:
    May be i am wrong.......but i think .......if we first get the data into ar_payments_interface_all table and then do the validations and then complete the lockbox process may help.
    Any suggestions from Oracle GURUS is highly appreciated.
    Thanks & Regards,
    Lakshmi Kalyan Vara Prasad.

Maybe you are looking for