Comparing Records Question

I have created a record:
TYPE for_list is table of varchar2(4000) index by binary_integer;
TYPE for_loop_state is record (
list for_list,
next_index integer
I would like to create procedure that has stores the values of the previous record into another record. Each time this new procedure is accessed, I would like to compare the contents of both records to determine if they are different. Based of that knowledge I would like to discard the contents of the first record.
I also would like to be able to somehow uniquely distinguish the contents of the second record from the first one, by adding a counter or something. I would like to have some input on how I should go about doing that.
Is this a feasible idea, or should I pursue another direction?
Thx

I have a procedure that is processing steps, the procedure will generates msgs that will be sent to the client (browser, ivrs) based on the ui_type (WEB, IVR, Remote). This procedure will loop over each step to build msgs until no more steps are found.
If it encounters what we call a 'for' step then it executes another procedure that checks the state of the list that is defined in a record. If it exists then it then iterates to the next item in the list to generate a msg to be sent back to the client.
My problem is that I have list variables that have the same name, and when I encounter the same name in my program I want to discard/reinitialize the contents of that list.
I am trying to determine an efficient and quick way to go about it.
CODE EXAMPLE:
TYPE for_list is table of varchar2(4000) index by binary_integer;
TYPE for_loop_state is record (
list for_list,
next_index integer
TYPE for_loops_list is table of for_loop_state index by steps.output_param%TYPE;
all_for_loops for_loops_list;
procedure for_step(list_string IN varchar2, ret_var_name IN varchar2, end_for_label IN varchar2) is
state for_loop_state;
end_idx number;
list_value varchar2(4000);
begin
-- get the current for list state, based on its output variable name
if all_for_loops.exists(ret_var_name) then
state := all_for_loops(ret_var_name);
else
state.next_index := 0;
list_value := parse_next_param(list_string, 1, end_idx);
-- end_idx is thrown away; for loops only have 1 input parameter (the list)
state.list := get_for_list(list_value);
all_for_loops(ret_var_name) := state;
end if;
if state.next_index < state.list.count then
pkg_session_values.put(ret_var_name, state.list(state.next_index));
all_for_loops(ret_var_name).next_index := state.next_index + 1;
else
all_for_loops.delete(ret_var_name);
jump(end_for_label);
end if;
end;

Similar Messages

  • Multi-track recording question

    Multi-track recording question
    Hey, just need some help on multi tracking using audition, hope this is the right forum?
    Wanted to know if anyone has a clue about assigning inputs from an audio interface to separate tracks on a recording program (ie: Adobe audition)
    I record live with my band alot, and have every amp and the kit mic'd up, but how do i make it so that each microphone is recording to a different track on the PC?
    My interface is an M audio fast track ultra, if that is of any use.
    Any advice appreciated! Thanks!

    FreeCT wrote:
    Wanted to know if anyone has a clue about assigning inputs from an audio interface to separate tracks on a recording program (ie: Adobe audition). I record live with my band alot, and have every amp and the kit mic'd up, but how do i make it so that each microphone is recording to a different track on the PC?
    In Audition, assuming that you can see all of the inputs available in the Hardware Setup, you find the right-facing arrow (input assign) on each track in MV's Main view, and you click on the box it's pointing to, go to Mono, and select the input you want for that particular track. The mono ones say [01M], [02M], etc. If you want to record a stereo track, then select the Stereo option where the inputs are paired and say [01S] et seq. This would have input 1 as left, input 2 as right.
    If you can't see all of the inputs available, try selecting the ASIO driver in Hardware Setup...

  • How to compare records in singe internal table

    Hi Folks,
    iam having 3 records in my first itab( T_FINAL) with fields
    material no,  descrip ,  mat type and  group.
    and 16 records in second itab(T_MVKE ) with fields
    mat no ,  distri.chanel  and division
    now I want to fetch the records from T_MVKE  by comparing the records in
    T_FINAL .my requirement is to check the given mat no. in sales org.2000,2100.  if yes then i have to consider 2000 only, if it is in only 2100 then consider 2100 only . is it is in 2000 only then consider 2100 only
    my code is
    LOOP AT T_FINAL.
        READ TABLE T_MVKE WITH KEY MATNR = T_FINAL-MATNR.
       IF SY-SUBRC = 0.
       ON CHANGE OF T_MVKE-MATNR OR T_MVKE-VKORG.
    IF T_MVKE-VKORG = '2000' and SY-TABIX > 1.
          CONCATENATE '2000' 'TS' P_WERKS T_FINAL-MATNR INTO KEY.
    ELSEIF T_MVKE-VKORG = '2000' AND SY-TABIX = 1.
         CONCATENATE '2000' 'TS' P_WERKS T_FINAL-MATNR INTO KEY.
    ELSE.
        CONCATENATE '2100' 'TS' P_WERKS T_FINAL-MATNR INTO KEY.
        ENDIF.
    this logic fails ,. could tell me how to compare values in single itab?
    Thanks
    neha

    Hi ,
    if i've understand you correctly , try that:
    LOOP AT t_final.
      AT NEW matnr.
        CLEAR: v_2000, v_2100.
    *1) 2000
        READ TABLE  t_mvke    WITH KEY matnr = t_final-matnr
                                       vkorg = 2000.
        IF sy-subrc = 0.
          v_2000 = 'X'.
        ENDIF.
    *2) 2100
        READ TABLE  t_mvke    WITH KEY matnr = t_final-matnr
                                       vkorg = 2100.
        IF sy-subrc = 0.
          v_2100 = 'X'.
        ENDIF.
    *compare
        IF v_2000 = 'X' AND  v_2100 = 'X'.
    *read 2000 only
        ELSEIF v_2000 = ' '  AND v_2100 = ' '.
    *nothing found
        ELSE.
    *all other combinations
    *read 2100 only
        ENDIF.
      ENDAT.
    ENDLOOP.
    regards Andreas

  • Compare records in a FORM with that in an Excel file

    Guys,
    As part of automating a Payroll process I need to compare the records on an Oracle FORM to that in an external Excel file. There are multiple columns that need to be compared. Does anyone have a sample ATS Java script to do this that I can refer to? I am using the external file as a databank.
    Thanks,
    Murali.

    Murali,
    For each part of your Oracle Form -- set a variable, this is often done for you during record. Since you are doing text matching -- add a text matching test for each place on the form that you want to check against your excel file.
    Personally, I'd save it as a csv. But I suppose it will work as an xls.
    Then just name the columns of your excel sheet to be the same as the name of the variables you are looking for on the Oracle form.
    You shouldn't have to do any coding to make this happen, its all built in oats functionality. You should be able to do all of this stuff from OFT or openscript.
    Once you have that -- you'll need to set the test to iterate smoothly -- which means having the last step of your RUN section return you to the same page as the first step of the RUN section.
    Then just set your test to iterate however many rows of the databank you want and you'll be going through and comparing each row of data to the information returned by the oracle form.
    For instance --
    You are looking up a customer by cust_id and you will get address (add1), name (name), phone number (phone) back and want to make sure these are all correct.
    Your data bank will look like this:
    cust_id, add1, name, phone
    1234, 100 Main St, John Doe, 800-555-1212
    5678, 200 5th Ave, Suzie Queue, 800-555-1234
    Your test steps will look like this (they are not exact)
    Step 1) Go to the start of the Oracle Form
    Step 2) Select the Form section to enter the Cust_ID {variable to get Cust_ID from databank} Enter the 1st Cust_Id from the databank
    Step 3) Get additional information for the specific Cust_ID from the Form
    Step 4) Select the Address and do a text matching case {variable to get Add1 from databank}
    Step 5) Select the Name and do a text matching case {variable to get Name from databank}
    Step 6) Select the Phone # and do a text matching case {variable to get Phone # from databank}
    Step 7) Pass test and enter message indicating that {variable to get Cust_Id from databank} is all correct
    Step 8) Return to the start of the Oracle Form
    I hope this is helpful.
    --tiff                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Nokia Lumia 1020 Recording Questions

    I'm planning on recording a show that I am involved in with a Nokia Lumia 1020 (which I haven't actually got yet), but was wondering whether it's possible to use the 1020 as just a camcorder and live capture/save the video file to a laptop?
    I've heard ways of doing it with a camcorder and live capturing it straight into Sony Vegas.
    But getting a new phone sounds much better than getting a new camcorder or camera.
    Also, one other reason for me thinking of using the 1020 is because the previous cameras we've used to record shows haven't been great at recording in a theatre and seem to get a bit drowned in light, since the theatre itself is dark (especially at the back where the camera will be) and the stage is flooded with bright stage lights, it often makes the dances and dancers look bad.
    Do you think the Lumia 1020 would be alright with this situation?
    So, two questions there!
    Thanks,
    Joe!

    I would be sure that you have nothing on your device memory to ensure that you have enough memory. it is going to record in 1080p unless you choose otherwise. so the file is going to be big.
    I do not believe there is a way to record using your 1020 and have it live save to a memory outside of the device memory. at least, I have not heard of or seen anything to say this is possible.
    coloring, imo, should be pretty good. so long as there isn't any lights aimed directly at the camera. I have been very happy with its videos that it creates.

  • Addressing/comparing record data in a .ctl file.

    Unfortunatly I am importing a flat file with data redundancy. I would like to dedup this data during the load. Below is the portion of the .ctl file I am unable to get working. The issue is in bold, SQL*LOADER does not like the position to position comparison. I have tried the bind method as well, but no luck.
    Please let me know how I can compare two strings within the same record for a SQL*LOADER control file..
    Agent #1 ID is positions 135-139 and Agent #2 ID is positions 964-968. Agent #1 always gets loaded ( based on the other portions of the WHEN clause ). Agent #2 should not get loaded if this is the same agent ID as Agent #1.
    --Agent #1
    INTO TABLE myschema.Agent
    WHEN ( 1489     :      1490 )='04' and ( 1491 : 1492 )='02' and ( 135     :      139 ) != '00000'
         AGENT_NO POSITION( 135     :      139 ) "TRIM(:AGENT_NO)",
         CASE_NO POSITION( 1          :      10 ) "TRIM(:CASE_NO)"
    Agent #2 If Not the same As agent 1
    INTO TABLE myschema.Agent
    WHEN ( 1489     : 1490 ) = '04' AND
         ( 1491 : 1492 ) = '02' AND
         ( 964 : 968 ) != '00000' AND      
          ( 135 : 139 ) != ( 964 : 968 )
         AGENT_NO POSITION( 964 : 968 ) "TRIM(:AGENT_NO)",
         CASE_NO POSITION( 1     :      10 ) "TRIM(:CASE_NO)"
    )

    Got it!
    Thank you very much !
    -Pamsath

  • DNS Records Questions - TXT Files

    Hello everyone,   I would like to preface this post with, this is my first time dealing with DNS records.  However, the instructions seem a little confusing, so i would like your professional feedback.  
    Currently using Godaddy for hosting.  Ill start with the instructions, then my set up, my result and my questions. 
    Instructions:
    You will be adding two separate TXT entries to your DNS record - note - be sure that you do not add any carriage returns when copying the key, below:
    First Entry (This is called the DKIM policy record):
    Name:  _domainkeyTXT:   "t=y; o=~;"If your domain is 'foo.com', then the 'name' entry will look like this when it is displayed as: "_domainkey.foo.com" 
    Second Entry: (This is called the 'selector record' and includes a public crypto key):
    Name: key1._domainkeyTXT: "k=rsa\; p=MFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAKQrQeUnNX/CQBIXWqeHc8lKl+EwhGKzPuDRbDjnN2Xzl8N4Fc2oQ6R+opnEM6U4x4p
    3NggEyNg8Mp2W6oUYpAECAwEAAQ=="
    If your domain is 'foo.com', then the 'name' entry for this will look like this when it is displayed: "key1._domainkey.foo.com"
    That's it!
    You can send a test message to a yahoo email address, then select Actions->View Full Headers in Yahoo
    when you view the email.  If you have configured DKIM correctly, the header information for the email will include a line similar to:
    Authentication-Results: mta1084.mail.mud.yahoo.com  from=mypinpointe.com; domainkeys=pass (ok)
    Fisrt Entrey
    Hostname: @
    TXT Value: _domainkey.mydomain.com:   t=y; o=~;
    TTL: 1/2 hour
    Second Entry:
    Hostname: @
    TXT Value: key1._domainkey.mydomain.com: k=rsa; p=MFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAKQrQeUnNX/CQBIXWqeHc8lKl+EwhGKzPuDRbDjnN2Xzl8N4Fc2oQ6R+opnEM6U4x4p3NggEyNg8Mp2W6oUYpAECAwEAAQ==
    TTL: 1/2 hour
    Results
    1. a really long string of code, but when you search for it here is the result  Doesnt say domainkeys=pass (ok): 
          Authentication-Results: mta1466.mail.gq1.yahoo.com  from=giglinxusa.com; domainkeys=neutral (no sig);  from=crapemyrtle.mypinpointe.com; dkim=pass (ok)
    Questions
    1. Should the TXT value include "", like they have it in the instructions?
    2. In the first entry, should there be so many spaces after the .com:    t=y
    3. What are carriage returns? (assuming spaces)

    Hello,
    but I don't understand anything else then you will use Godaddy.
    What is the aim of this? Connecting an email domain to your internal network or about web services? Please be more specific in your description what you are trying to achieve.
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://msmvps.com/blogs/mweber/
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.

  • Just a Few Recording Questions

    Hey everyone,
    I have a few questions about how garageband works...
    Do you have the ability to record multiple tracks at the same time using firewire and keep them as separate tracks?
    Can you then play back those tracks all at once and simultaneously record another track?
    As stated, I would be using firewire to record and the headphones jack for monitoring.
    Thank you very much!

    Tom Bacho wrote:
    Do you have the ability to record multiple tracks at the same time using firewire and keep them as separate tracks?
    http://www.bulletsandbones.com/GB/GBFAQ.html#recordmultipletracks
    (Let the page FULLY load. The link to your answer is at the top of your screen)
    Can you then play back those tracks all at once and simultaneously record another track?
    yes

  • Comparing records in tables and displaying them

    Hi,
    I have 2 sets of data as follows:
    Set 1
    AcctName |EffDt |     ExpDt|     BalAmt|     Status|
    ABC|     1-Jan-11|     31-Dec-11|     47500|     Active|
    DEF|     5-Jul-11|     4-Jul-12|     46204|     Active|
    GHZ|     5-Feb-11|     4-Feb-12|     43251|     Active|
    Set 2
    AcctName | EffDt | ExpDt| BalAmt | Status|
    ABC | 2 Jan 2010 | 1 Jan 2011 | 47500 | Exp|
    XYZ | 5 Dec 2010 | 3 Dec 2011 | 46564 | Exp|
    ABC | 11 Nov 2010| 10 Nov 2011 | 40142 | Exp|
    I want to compare the set 2 data with set 1 data.
    I need to get an output such that:
    if there exists an Acct with same name and the ExpDt is equal to the Effdt then, the output should be the union of set 1 and set 2 and should not contain the that matching acct from set 2 since there exists a nonzero balanced latest Acct -
    AcctName| EffDt | ExpDt | BalAmt | Status|
    ABC | 1 Jan 2011 | 31 Dec 2011 | 47500 | Act|
    DEF | 5 Jul 2011 | 4 Jul 2012 | 46204 | Act|
    XYZ | 5 Dec 2010 | 3 Dec 2011 | 46564 | Exp|
    GHZ | 5 Feb 2011 | 4 Feb 2012 | 43251 | Act |
    ABC | 11 Nov 2010 | 10 Nov 2011 | 40142 | Exp|
    Can you please help me in comparing these sets and get the desired output?
    Note: Column Names
    AcctName -> Account Name
    EffDt -> Effective Date
    ExpDt -> Expiry Date
    BalAmt -> Balance Amount
    Thanks & Regards,
    869467

    Thanks for the reply.
    Please find the scripts for table creation & insertions below-
    create table set1(AcctName VARCHAR2(50), EffDt DATE, ExpDt DATE, BalAmt NUMBER(10), Status VARCHAR2(10));
    insert into set1 values('ABC','1 Jan 2011','31 Dec 2011',47500,'Active');
    insert into set1 values('DEF','5 Jul 2011','4 Jul 2012',46204,'Active');
    insert into set1 values('GHZ','5 Feb 2011','4 Feb 2012',43251,'Active');
    create table set2(AcctName VARCHAR2(50), EffDt DATE, ExpDt DATE, BalAmt NUMBER(10), Status VARCHAR2(10));
    insert into set2 values('ABC','2 Jan 2010','31 Dec 2011',47500,'Active');
    insert into set2 values('XYZ','5 Dec 2010','4 Dec 2011',46564,'Active');
    insert into set2 values('ABC','11 Nov 2010','10 Nov 2011',40142,'Active');
    Yes I need the output in almost the same way.
    The output should not contain those accts records from set 2 where there exists a record for it in set1 on the expiry date of that acct.
    Thanks & Regards,
    869467

  • Compare records

    Hi,
       This is very urgent, i need to compare two records of an internal table and then add one counter to it.
    like
    Filed1               Field2
    A                         100
    A                         200
    B                         300
    C                         400
    Now i have to set a counter for field1 and for A the value of the counter would be 2. For B and C it would be 1. Can you suggest how to do that? It is really urgent.

    hi,
    You must already have a counter by different value that you have in the table or you know what king of value you will have?
    you can sort you table by A and use the event AT :
    AT - itab
    Syntax
    LOOP AT itab result ...
      [AT FIRST.
       ENDAT.]
        [AT NEW comp1.
         ENDAT.
           [AT NEW comp2.
           ENDAT.
           AT END OF comp2.
           ENDAT.]
         AT END OF comp1.
         ENDAT.]
      [AT LAST.
      ENDAT.]
    ENDLOOP.
    and then do the same thing with sorting by B.
    Regards

  • Please help - what do I need? Recording questions

    We do not have digital cable but do NOT need a converter box because we have comcast basic cable.  (I did buy one anyway with the coupon).  We will switch to digital eventually but right now the budget doesn't allow the extra monthly charges.   I am purchasing a new TV for one of the rooms but want to still be able to record programs while watching another channel, which I can currently do with my VCR/DVD combo.  I also need to buy a new recorder (combo perhaps?) because this one is on the way out but still want to be able to do what I'm currently doing.  (I still tape programs in another room on an old VCR and can watch them in the other room).  However, my question is what equipment do I buy? With what I've been reading, I'm guessing a dual tuner DVD/DVR/VCR combo?  Is that correct?  I'm totally confused at this point.  However, I also want to be able to still use this equipment (recording one channel while watching another) when we switch to digital cable.  I don't want to spend the money on equipment that won't be usable when we upgrade to digital.  Any advice?? Your help would be appreciated.
    Thank you.

    I would suggest a Tivo to meet your needs.  There is a montly service fee involved to the Tivo service, cost depending on what type of plan you get but no more then about $15 a month.  With Tivo you can set it to record your fravorite shows once, choose if you want it to record all showings or just new eps.  Then you never have to worry about missing your favorite shows.  It has a dual tuner that can record 2 shows at once and you can watch a previously recorded show at the same time. 
     I had comcast DVR for a long time but had to pay for the digital service on top of that even though I never watched channels over 75.  So i made the switch to Tivo and love it.  If you already have Netflix then you get a major bonus.  You can watch instant queue movies on your TV.  And if you have broadband internet access some movies are sent in HD format as long as you have the TivoHD DVR model.

  • How to compare record count of two tables?

    Hi,
    i am in need of simple sql script where i can compare two table record count.
    i have something like below:
    (select count(*) from table1) minus (select count(*) from table2)
    now the problem is if the table1 count greater then table2 count the output is fine.
    If the table2 record count is more then i am getting zero as the output.
    how can i get the difference in two tables record count?
    Thanks a lot in advance.
    --Raman.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Doing a MINUS between the counts does not yield the diff.
    e.g. if table A has 100 records and table B has 70 records then,
    SELECT count(*) FROM A
    minus
    SELECT count(*) from B
    will give 100 and not 30.
    Try this:
    SELECT (
    CASE WHEN ((select count(*) cnt from A) - (select count(*) cnt from B)) <0
    THEN ((select count(*) cnt from A) - (select count(*) cnt from B))* -1
    ELSE ((select count(*) cnt from A) - (select count(*) cnt from B)) END) Difference
    FROM dualor this is simpler
    SELECT abs(((select count(*) cnt from A) - (select count(*) cnt from B))) difference FROM dualEdited by: Caitanya on Jan 9, 2009 7:12 AM
    Applied abs function after seeing BluShadow's post :)

  • Newbie home recording questions

    Heyas,
    I just got audition 3, ive used cool edit pro alot - the old versions 2.0 etc.. I always just used this to laydown something in my head to work out parts or show bandmates. So the quality really hasnt mattered that much before Audition 3 has tons of new stuff in it.
    Im trying to make the recordings sound good though now, I have two questions:
    1. What is the best export format when you do a "save as" out of your mastering track? I saved as a constant highest quality drop down, and it still sounds really cheap. The volume seems low and its not a very dynamic, full sounding recording. Anyone have a basic guide for mastering out of audition3 ?
    2.I am recording all my tracks to the peak before clipping and I know the inputs are clean and loud. Basically looking for a guide, tutorial, or tips on how to mixdown and master a typical 4 piece bands, guit, vocal, drums, bass etc.with adobe audition. Guides or links for panning tricks, or something to bring out that "full sound" . Dont get me wrong, the tracks are very clean, and mixed well, just low volumes, and not that awesome "big, full" sounds that I have heard other people make on the same basic setup..
    thanks everyone!
    Alex
    Gear currently using:
    Line 6 lineport UX2 for inputs - Adobe audition 3 - Shure SM58s for vocals - Reason 4 for sound effects, drums loops.  Alesis SR 16 for basic drums as well

    Best thing to do is do a search on this forum for mastering or across on AdobeMasters forum eg http://www.audiomastersforum.net/amforum/index.php/topic,4933.0.html as an example only

  • Basic voice recording question

    Sorry for the basic question. I'm using a Plantronics headphone and an early Powerbook G4 laptop running 10.3.9. I just want to do some voice recording on Garageband 3.
    My system preference for sound is audio line-in port (I don't see a microphone jack on this G4 laptop).
    My system preference for Garageband only gives me the built-in audio option for audio input.
    I don't seem to be able to figure out how to record my voice. Can anybody help with the settings or procedures. Thanks much!

    Hi charles,
    Not familiar with that version of the iBook, but if there is a headphone jack, the line-in would be the same size plug as that (i think it wil have to arrows pointing towards a dot).
    Recording voice has alot of options. If we knew what you were trying to record (singing, podcast, voice over) we could be more specific. Budget is a huge factor as well.
    Just a couple of quick suggestions,
    Podcasting, can't go wrong with a USB mic (Sampson and Blue both make good ones) and you don't have to buy anything else to work with them.
    Vocals (singing), you should get a digital interface, a good pre amp and a good mic. In this catagory, the more money you spend (usually) the better quality you will have.
    lets start here and you can get back to us....
    good luck Charles and welcome to the forum!
    xs4is

  • Mac Speech Dictate and other Audio Recording Questions

    Thanks again for this great resource. I have a Macbook Pro, my first issue is I want to record audio from my stereo system, through the headphone output. I can't use the cables because I have an AV splitter, I have a DVD, Satellite, TV, all going through the splitter and to the stereo system, so I need to record stuff to my Macbook Pro from the stereo headphone output.
    How is this accomplished?
    My second question, is it possible to use Mac Speech Dictate to pull segments of audio from a radio talk show into typed text? I sometimes write transcripts of talk radio segments for a blog and it takes such a long time to pause, type, pause, etc. I am looking for the best solution to just play the audio and have the program type it out.
    Once I have the best program, how would I get the audio in, would the internal mic pick it up if I played the audio through my stereo system at a loud volume?
    Thanks for your time and any assitance you can give me.

    Hi there,
    I'm having issues understanding what you want to do with the cables from your stereo. Do you want to record the talk show from the stereo into your MBP? If so, then you can use a simple Y-adaptor (Stereo RCA -> 1/8" minijack) to connect your stereo's audio output to the MBP's line-in jack. Or, are you trying to go the opposite direction? MBP to stereo? Sorry for my confusion.
    Edit: I'm sorry, I completely misread your first post. If you want to go from the stereo's headphone jack to the line-in on the MBP, you only need a 1/8" to 1/8" male-male cable. Is that what you were looking to do?
    --Travis
    Message was edited by: Travis A. (Thanks)

Maybe you are looking for

  • Mid-2010 15in. MacBook Pro going to black screen requiring reset by holding power button

    Hello all,      I have been searching for a problem solution for quite some time now. I have a mid-2010 15" Macbook Pro (2.4GHz Intel I5; 4 GB mem) updated to version 10.7.5. The computer randomly goes to a black screen, while the program / movie / w

  • No disc burner software found

    so still trying to figure out why i can no longer burn discs and it still says no disc burner software found. here is my diagnostics Microsoft Windows 8 x64 Home Premium Edition (Build 9200) To be filled by O.E.M. To be filled by O.E.M. iTunes 12.0.1

  • Process 'Discovery' as-is process modeling

    Is there a forum or experts/bkms directed to capturing 'as-is' processes in ARIS or other modeling tool? Specifically, my question is regarding frameworks. To capture 'as-is' processes for an SAP implementation do BPX's have a choice? SCOR? SAP Solut

  • MacBook Shuts Down on grey Apple Screen

    Hello, Today I went to turn on my macbook when it then would shut down approximately 15-20 seconds after it has reached the apple boot screen. I've resetted the PRAM twice as well as booted from the Leopard DVD. I tried to run Disk Utility and tried

  • Microsoft Word (2013) is Flaky When Opening Files from OneDrive (thru Windows Expolorer)

    A lot of MS Word files (saved as .docx) on OneDrive do not open the first time.  Word often hangs when opening.  We are using Windows 7 and this happens on multiple computers.  We have tried to repair/reinstall MS Office 2013 but this does not help.