The dml not giving proper value in the returning into variable

DELETE FROM temp_records_med
WHERE slno NOT IN (SELECT COLUMN_VALUE
FROM TABLE (v_slno_tab));
RETURNING COUNT(slno) INTO p_retval;
There are 4 rows deleted but the the the variable has got 0 in it.
Why?

I am deleting from the below given table based on SLNO.
How to get the count of records that are deleted?
DESC temp_records_med
SQL>
FILEID NUMBER,
FILENAME VARCHAR2(100 BYTE),
SLNO NUMBER,
IMSI VARCHAR2(20 BYTE),
IMEI VARCHAR2(20 BYTE),
CALLEVENTSTARTTIMESTAMP DATE,
UTCTIMEOFFSET VARCHAR2(6 BYTE),
CALLEVENTDURATION NUMBER,
CAUSEFORTERMINATION NUMBER,
CALLTYPE NUMBER,
SERVICETYPE NUMBER,
SERVICECODE NUMBER,
SUPPLSERVICECODE VARCHAR2(5 BYTE),
DIALLEDDIGITS VARCHAR2(20 BYTE),
CONNECTEDCALLINGNUMBER VARCHAR2(20 BYTE),
THIRDPARTYNUMBER VARCHAR2(20 BYTE),
RECORDINGENTITYIDENTIFICATION VARCHAR2(20 BYTE),
CALLREFERENCE VARCHAR2(20 BYTE),
ACCESSPOINTNAMENI VARCHAR2(20 BYTE),
ACCESSPOINTNAMEOI VARCHAR2(20 BYTE),
DATAVOLUMEINCOMING NUMBER,
DATAVOLUMEOUTGOING NUMBER,
SGSNADDRESS VARCHAR2(20 BYTE),
GGSNADDRESS VARCHAR2(20 BYTE),
CHARGINGID VARCHAR2(20 BYTE),
CHARGEAMOUNT NUMBER
CREATE OR REPLACE PROCEDURE p1 (p_retval OUT NUMBER)
IS
   CURSOR med_rec_cur
   IS
      SELECT *
        FROM temp_records_med;
   TYPE med_rec_tab IS TABLE OF temp_records_med%ROWTYPE;
   TYPE slno_tab IS TABLE OF temp_records_med.slno%TYPE;
   v_count         NUMBER;
   v_filename      temp_records_med.filename%TYPE;
   v_fileid        temp_records_med.fileid%TYPE;
   v_med_rec_tab   med_rec_tab;
   v_slno_tab      g_slno_tab;
   dml_errors      EXCEPTION;
   v_count1 number;
   v_count2 number;
BEGIN
   OPEN med_rec_cur;
   LOOP
      BEGIN
         FETCH med_rec_cur
         BULK COLLECT INTO v_med_rec_tab LIMIT 1000;
         FORALL i IN v_med_rec_tab.FIRST..v_med_rec_tab.LAST SAVE EXCEPTIONS
            INSERT INTO meddetail
                 VALUES v_med_rec_tab (i)
              RETURNING       slno
            BULK COLLECT INTO v_slno_tab;
      EXCEPTION
         WHEN DUP_VAL_ON_INDEX
         THEN
            NULL;
         WHEN OTHERS
         THEN
            NULL;
      END;
      EXIT WHEN med_rec_cur%NOTFOUND;
   END LOOP;
   CLOSE med_rec_cur;
  DELETE FROM temp_records_med
         WHERE slno NOT IN (SELECT COLUMN_VALUE
                          FROM TABLE (v_slno_tab));
    --RETURNING COUNT(slno) INTO p_retval;
   COMMIT;
END;Edited by: user8731258 on Sep 8, 2010 10:50 PM

Similar Messages

  • The listbox event.changeEx is not giving proper index, when the text in the list is all in Chinese.

    We have a PDF built from Acrobat Pro. There is a listbox with text in Chinese.The listbox event.changeEx is not giving proper index, when the text in the list is all in Chinese. Do we need to set any configuration for the PDFs to work with Chinese text for listbox selection event.
    Something like Font or locale in adobe pro or the Windows 7 OS to be in Chinese.
    Please suggest.

    Please share your thoughts on the issue

  • Multiple value variable - not showing Multiple values in the report

    Hi,
    I have careated a Multiple value variable for one of the characteristics in my Query. however, When i run the Query and select multiple values for the same, the report displays values for only the first selection.
    Could you help me resolve this ?
    Rgds
    Shweta

    Hello Shweta,
       Are you running the report in the Analyzer excel or Web?
    May be you can check the following:
    1. Use the latest FEP. It is working for me.
    2. May be the other values that you selected do not have corresponding keyfigures values. Hence it is showing only the first one.
    Try selecting other values ( except first one selected this time )
    Regards,
    Sheik Bilal

  • The "SignFile" task was not given a value for the required parameter "CertificateThumbprint"

    We have a line of business app which is deployed via clickonce. I can build and publish the application without any problems but when I try to use Continuous Integration (Build each check-in) I get the following error:
    2>C:\Program Files (x86)\MSBuild\12.0\bin\amd64\Microsoft.Common.CurrentVersion.targets(3450,5):
    error MSB4044:
    The "SignFile" task was not given a value for the required parameter "CertificateThumbprint".
    [C:\Builds\1\Pulse\DefaultBuild\src\Pulse\Pulse\Pulse.csproj]
    Done executing task "SignFile" -- FAILED.
    We sign the application (to be more specific: the ClickOnce manifest) using a code signing certificate which is registered in the AD as Trusted Publisher.
    The Certificate is stored in Certificate store on my local workstation. The Certificate is also in the certificate store of the build server (1. In the Personal Store, 2. in the Personal store of the TFSBuildServiceHost Service Account and 3. in the Personal
    store of the tfs/build server itself).
    Where are using Visual Studio 2013 Update 4, C#, .Net 4.5 and TFS 2013 Update 4.
    I have no clue what causes this error, any help is appreciated.

    I installed the
    Windows Software Development Kit (SDK) for Windows 8 and now I can build the solution via command line.
    "C:\Program Files (x86)\MSBuild\12.0\bin\amd64\MSBuild.exe" C:\Builds\1\Pulse\DefaultBuild\src\Pulse\Pulse.sln
    "C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" C:\Builds\1\Pulse\DefaultBuild\src\Pulse\Pulse.sln
    But the TFS Build still fails.
    Here is the error output gathered from the tfsbuild logfile:
    Task "AL"
    C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.5.1 Tools\x64\AL.exe /culture:de /out:obj\Debug\de\Pulse.resources.dll /platform:AnyCPU /template:obj\Debug\Pulse.exe /embed:obj\Debug\Pulse.View.Localization.CreditsView.de.resources /embed:obj\Debug\Pulse.View.Localization.PulseMainWindow.de.resources
    Microsoft (R) Assembly Linker version 12.0.20806.33440
    Copyright (C) Microsoft Corporation. All rights reserved.
    Done executing task "AL".
    2>Done building target "GenerateSatelliteAssemblies" in project "Pulse.csproj".
    2>Target "CreateSatelliteAssemblies" in file "C:\Program Files (x86)\MSBuild\12.0\bin\amd64\Microsoft.Common.CurrentVersion.targets" from project "C:\Builds\1\Pulse\DefaultBuild\src\Pulse\Pulse\Pulse.csproj" (target "CoreBuild" depends on it):
    2>Done building target "CreateSatelliteAssemblies" in project "Pulse.csproj".
    Target "SetWin32ManifestProperties" skipped. Previously built successfully.
    Target "_DeploymentComputeNativeManifestInfo" skipped, due to false condition; ('$(GenerateClickOnceManifests)'!='true') was evaluated as ('true'!='true').
    2>Target "CleanPublishFolder" in file "C:\Program Files (x86)\MSBuild\12.0\bin\amd64\Microsoft.Common.CurrentVersion.targets" from project "C:\Builds\1\Pulse\DefaultBuild\src\Pulse\Pulse\Pulse.csproj" (target "_DeploymentComputeClickOnceManifestInfo" depends on it):
    Task "RemoveDir" skipped, due to false condition; ('$(PublishDir)'=='$(OutputPath)app.publish\' and Exists('$(PublishDir)')) was evaluated as ('bin\Debug\app.publish\'=='bin\Debug\app.publish\' and Exists('bin\Debug\app.publish\')).
    2>Done building target "CleanPublishFolder" in project "Pulse.csproj".
    Target "_DeploymentGenerateTrustInfo" skipped, due to false condition; ('$(TargetZone)'!='') was evaluated as (''!='').
    2>Target "_DeploymentComputeClickOnceManifestInfo" in file "C:\Program Files (x86)\MSBuild\12.0\bin\amd64\Microsoft.Common.CurrentVersion.targets" from project "C:\Builds\1\Pulse\DefaultBuild\src\Pulse\Pulse\Pulse.csproj" (target "GenerateApplicationManifest" depends on it):
    Task "Copy"
    Creating directory "bin\Debug\app.publish".
    Copying file from "obj\Debug\Pulse.exe" to "bin\Debug\app.publish\Pulse.exe".
    Done executing task "Copy".
    Using "SignFile" task from assembly "Microsoft.Build.Tasks.v12.0, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Task "SignFile"
    2>C:\Program Files (x86)\MSBuild\12.0\bin\amd64\Microsoft.Common.CurrentVersion.targets(3450,5): error MSB4044: The "SignFile" task was not given a value for the required parameter "CertificateThumbprint". [C:\Builds\1\Pulse\DefaultBuild\src\Pulse\Pulse\Pulse.csproj]
    Done executing task "SignFile" -- FAILED.
    2>Done building target "_DeploymentComputeClickOnceManifestInfo" in project "Pulse.csproj" -- FAILED.
    2>Target "_CheckForCompileOutputs" in file "C:\Program Files (x86)\MSBuild\12.0\bin\amd64\Microsoft.Common.CurrentVersion.targets" from project "C:\Builds\1\Pulse\DefaultBuild\src\Pulse\Pulse\Pulse.csproj" (target "_CleanGetCurrentAndPriorFileWrites" depends on it):
    2>Done building target "_CheckForCompileOutputs" in project "Pulse.csproj".
    Target "_SGenCheckForOutputs" skipped, due to false condition; ('$(_SGenGenerateSerializationAssembliesConfig)' == 'On' or ('@(WebReferenceUrl)'!='' and '$(_SGenGenerateSerializationAssembliesConfig)' == 'Auto')) was evaluated as ('Off' == 'On' or (''!='' and 'Off' == 'Auto')).
    2>Target "_CleanGetCurrentAndPriorFileWrites" in file "C:\Program Files (x86)\MSBuild\12.0\bin\amd64\Microsoft.Common.CurrentVersion.targets" from project "C:\Builds\1\Pulse\DefaultBuild\src\Pulse\Pulse\Pulse.csproj" (target "_CleanRecordFileWrites" depends on it):
    Task "ReadLinesFromFile"
    Done executing task "ReadLinesFromFile".
    Task "ConvertToAbsolutePath"
    Done executing task "ConvertToAbsolutePath".
    Task "FindUnderPath"
    Comparison path is "C:\Builds\1\Pulse\DefaultBuild\src\Pulse\Pulse".
    Done executing task "FindUnderPath".
    Task "FindUnderPath"
    Comparison path is "C:\Builds\1\Pulse\DefaultBuild\bin\".
    Done executing task "FindUnderPath".
    Task "FindUnderPath"
    Comparison path is "obj\Debug\".
    Done executing task "FindUnderPath".
    Task "RemoveDuplicates"
    Done executing task "RemoveDuplicates".
    2>Done building target "_CleanGetCurrentAndPriorFileWrites" in project "Pulse.csproj".
    2>Target "_CleanRecordFileWrites" in file "C:\Program Files (x86)\MSBuild\12.0\bin\amd64\Microsoft.Common.CurrentVersion.targets" from project "C:\Builds\1\Pulse\DefaultBuild\src\Pulse\Pulse\Pulse.csproj" (target "CoreBuild" depends on it):
    Task "RemoveDuplicates"
    Done executing task "RemoveDuplicates".
    Task "MakeDir"
    Done executing task "MakeDir".
    Task "WriteLinesToFile"
    Done executing task "WriteLinesToFile".
    2>Done building target "_CleanRecordFileWrites" in project "Pulse.csproj".
    2>Done Building Project "C:\Builds\1\Pulse\DefaultBuild\src\Pulse\Pulse\Pulse.csproj" (default targets) -- FAILED.
    1>Done executing task "MSBuild" -- FAILED.
    1>Done building target "Build" in project "Pulse.sln" -- FAILED.
    1>Done Building Project "C:\Builds\1\Pulse\DefaultBuild\src\Pulse\Pulse.sln" (default targets) -- FAILED.
    Build FAILED.
    "C:\Builds\1\Pulse\DefaultBuild\src\Pulse\Pulse.sln" (default target) (1) ->
    "C:\Builds\1\Pulse\DefaultBuild\src\Pulse\Pulse\Pulse.csproj" (default target) (2) ->
    (_DeploymentComputeClickOnceManifestInfo target) ->
    C:\Program Files (x86)\MSBuild\12.0\bin\amd64\Microsoft.Common.CurrentVersion.targets(3450,5): error MSB4044: The "SignFile" task was not given a value for the required parameter "CertificateThumbprint". [C:\Builds\1\Pulse\DefaultBuild\src\Pulse\Pulse\Pulse.csproj]
    0 Warning(s)
    1 Error(s)

  • PO query not giving correct values

    Hi
    I am running the following query in PL?SQL Developer
    SELECT hou.name Operating_unit,
           pha.segment1 po_number,
           pha.revision_num,
           ap.vendor_name,
           hla1.location_code,
           papf.full_name Buyer,
           to_char(pha.creation_date, 'DD-MON-RRRR HH24:MI:SS') creation_date,
           pdta.type_name,
           assa.vendor_site_code,
           hla2.location_code,
           initcap(pha.authorization_status) po_status,
           pha.currency_code,
           pla.line_num,
           pltt.line_type,
           msib.segment1 item,
           (mcb.segment1 || '.' || mcb.segment1) category,
           msib.description,
           msib.primary_unit_of_measure UOM,
           pla.quantity,
           pla.unit_price,
           (pla.quantity * pla.unit_price) amount,
           (gcc.segment1 || '-' || gcc.segment2 || '-' || gcc.segment3 || '-' ||
           gcc.segment4 || '-' || gcc.segment5) charge_account,
           pla.list_price_per_unit,
           at.name,
           pha.freight_terms_lookup_code,
           pha.fob_lookup_code,
           initcap(pha.pay_on_code) pay_on_code,
           pha.acceptance_required_flag,
           ood.organization_code,
           ood.organization_name,
           msib.primary_unit_of_measure UOM,
           pla.quantity,
           plla.country_of_origin_code,
           (gcc.segment1 || '-' || gcc.segment2 || '-' || gcc.segment3 || '-' ||
           gcc.segment4 || '-' || gcc.segment5) charge_account,
           (pla.quantity * pla.unit_price) amount,
           plla.receive_close_tolerance,
           plla.invoice_close_tolerance,
           plla.quantity,
           plla.quantity_received,
           plla.quantity_cancelled,
           plla.quantity_billed,
           plla.match_option,
           plla.accrue_on_receipt_flag,
           plla.enforce_ship_to_location_code,
           plla.days_early_receipt_allowed,
           plla.days_late_receipt_allowed,
           plla.receipt_days_exception_code,
           plla.qty_rcv_tolerance,
           initcap(plla.qty_rcv_exception_code),
           plla.allow_substitute_receipts_flag,
           plla.receiving_routing_id,
           plla.enforce_ship_to_location_code,
           initcap(pda.destination_type_code),
           papf.full_name requestor,
           hla3.location_code,
           --pda.quantity_ordered,  -- commented because giving wrong value
           (select quantity_ordered
              from po_distributions_all
             where po_header_id IN (select po_header_id
                                      from po_headers_all
                                     where segment1 = pha.segment1)) quantity_ordered, -- Added
           (gcc.segment1 || '-' || gcc.segment2 || '-' || gcc.segment3 || '-' ||
           gcc.segment4 || '-' || gcc.segment5) po_charge_account,
           haou.name,
           prha.segment1,
           prla.line_num,
           to_char(prla.rate_date, 'DD-MON-RRRR') rate_date,
           (gcc.segment1 || '-' || gcc.segment2 || '-' || gcc.segment3 || '-' ||
           gcc.segment4 || '-' || gcc.segment5) po_charge_account,
           (SELECT acc.segment1 || '-' || acc.segment2 || '-' || acc.segment3 || '-' ||
                   acc.segment4 || '-' || acc.segment5
              FROM gl_code_combinations acc
             WHERE acc.code_combination_id = pda.accrual_account_id) accrual_account,
           (SELECT acc.segment1 || '-' || acc.segment2 || '-' || acc.segment3 || '-' ||
                   acc.segment4 || '-' || acc.segment5
              FROM gl_code_combinations acc
             WHERE acc.code_combination_id = pda.variance_account_id) variance_account,
           pla.line_num,
           plla.shipment_num,
           ood.organization_code,
           ood.organization_name,
           msib.segment1,
           msib.description,
           pla.quantity
      FROM hr_operating_units           hou,
           po_headers_all               pha,
           ap_suppliers                 ap,
           hr_locations_all             hla1,
           per_all_people_f             papf,
           po_document_types_all        pdta,
           po_document_types_all_b      pdtab,
           ap_supplier_sites_all        assa,
           hr_locations_all             hla2,
           po_lines_all                 pla,
           po_line_types_b              pltb,
           po_line_types_tl             pltt,
           mtl_system_items_b           msib,
           po_line_locations_all        plla,
           mtl_categories_b             mcb,
           po_distributions_all         pda,
           gl_code_combinations         gcc,
           ap_terms                     at,
           org_organization_definitions ood,
           hr_locations_all             hla3,
           po_requisition_headers_all   prha,
           po_req_distributions_all     prda,
           po_requisition_lines_all     prla,
           hr_all_organization_units_tl haou
    WHERE 1 = 1
       AND pha.segment1 = '6395'        --&po_number
       AND hou.organization_id = 204    --&operating_unit
       AND hou.organization_id = pha.org_id
       AND pha.vendor_id = ap.vendor_id
       AND hla1.location_id = pha.ship_to_location_id
       AND papf.person_id = pha.agent_id
       AND SYSDATE BETWEEN papf.effective_start_date AND papf.effective_end_date
       AND ((pdtab.document_type_code IN ('PO', 'PA') AND
           pdtab.document_subtype = pha.type_lookup_code))
       AND pdta.document_subtype = pdtab.document_subtype
       AND pdta.document_type_code = pdtab.document_type_code
       AND pdta.org_id = Pdtab.org_id
       AND pha.org_id = pdta.org_id
       AND ap.vendor_id = assa.vendor_id
       AND pha.org_id = assa.org_id
       AND pha.vendor_id = assa.vendor_id
       AND pha.vendor_site_id = assa.vendor_site_id
       AND pha.bill_to_location_id = hla2.ship_to_location_id
       AND pla.po_header_id = pha.po_header_id
       AND pltb.line_type_id = pla.line_type_id
       AND pla.line_type_id = pltt.line_type_id
       AND pltt.language = USERENV('LANG')
       AND msib.inventory_item_id = pla.item_id
       AND plla.po_line_id = pla.po_line_id
       AND msib.organization_id = plla.ship_to_organization_id
       AND mcb.category_id = pla.category_id
       AND pda.po_line_id = pla.po_line_id
       AND pda.po_header_id = pha.po_header_id
       AND pda.code_combination_id = gcc.code_combination_id
       AND at.term_id = pha.terms_id
       AND ood.organization_id = plla.ship_to_organization_id
       AND pda.deliver_to_person_id = papf.person_id
       AND hla3.location_id = pda.deliver_to_location_id
       AND haou.organization_id = prha.org_id
       AND haou.language = USERENV('LANG')
       AND prha.org_id = pha.org_id
       AND prha.requisition_header_id = prla.requisition_header_id
       AND pda.req_distribution_id = prda.distribution_id
       AND prda.requisition_line_id = prla.requisition_line_id
       AND haou.organization_id = hou.organization_id
       AND prla.org_id = pha.org_id
       AND prda.code_combination_id = gcc.code_combination_id    --added
       AND hla3.inventory_organization_id = msib.organization_id   --added
       AND pda.line_location_id = prla.line_location_id  --added
       AND plla.po_header_id = pha.po_header_id  --added
    I tested it for 10 POs. for 2 the query is giving right value. but for others it is giving wrong value.
    Mainly the PO Charge Account, accrual and variance account values are not matching. What changes I can make to get the correct data?
    I am using r12 version
    Thanks

    Hi Srini,
    Thanks for replying. I check and the application context is set.
    I think we might be missing certain conditions. Can you help me with that.

  • How to force the user to enter a value in the prompt

    Is there a way to force the user to enter a value in the prompt before they run the report?
    We have a customer specific dashbaord. The user has to enter a customer number in Dashbaord prompt on a first page of the dashboard. We store that value in a presentation variable. That presenatation variable value is being referenced in all the other pages of the dashabord. If the user does not enter a values in the first page and directly navigates to the other pages on the dashbaord, the reports on the other pages start to run for all the customers. Is there a way to force the customer to enter a value in the prompt before running any of the reports on the dashboard?
    Thanks!

    by Answer prompts, do you mean Column prompt?
    I can not use Column prompt in this senario as the user should not have to enter the same customer number over and over again when he navigates from one page to another on the same dashboards. If there is a way to default the column prompts then this would be an acceptable solution.
    I have already defaulted the prompt to a value as suggested in hte blog, but the issues occurs when the user erases the defaulted value. Is there are way to set the default value within the report?
    Can you please explaing mroe about option 3 regarding Java Script. Also please let me know what other options there are so that I can check whether they will fit my needs.
    Thank you very much!

  • I can no longer edit the info for my songs, movies and tv shows.  This occurred since I loaded Windows 7 Pro on my C drive, and then fownloaded ITunes 10.  Why will the program not allow me to access the track info to edit it?

    I can no longer edit the info for my songs, movies and tv shows.  This occurred since I loaded Windows 7 Pro on my C drive, and then fownloaded ITunes 10.  Why will the program not allow me to access the track info to edit it?

    Ah yes school boy error there out of frustration and discontent..
    My issue is with music/apps/films etc not downloading from iTunes / App Store.
    They initially fail and message is displayed stating unable to download / purchase at this time, yet if I retry it says I've already purchased (?) or alternatively I go to the purchased section and there they are waiting with the cloud symbol..
    However some items get frozen in the download window and cannot be retried or deleted. Message appears stating to tap to retry, but even if you stole every bath and sink in the uk you'd still not have enough taps.
    I post here as the iTunes guys are useless in there 'help' and have only advised posting here or phoning apple, at my expense, to explain a problem that could be rectified by forwarding my original email to a techie. However the tech team apparently don't have an email address as they're from ye olde Middle Ages..!
    Anyways I digress.
    So I tried sync to pc, but instead of showing the file as ready to listen/use/view, the iCloud symbol shows and I'm back to square one as the item is unable to download..
    At frustration station waiting for a train from pain...
    All my software is up to date, and had all worked fine prior to the last big iOS update that resulted in all the changes in display and dismay.
    Answers in a postcard :-)
    Much love

  • Must use Step Input Keyboard prior to using midi controller? When I attempt to use my midi keyboard conteoller for step input, it won't work unless I input the first note in each track via the Step Input Keyboard. This doesn't seem right...

    When I try to use my midi controller keyboard for step input, it won't work unless I input the first note in each track via the Step Input Keyboard.. What am I doing wrong?
    Logic Studio 9.1.7, OS X 10.7.5

    Hi
    Playhead in the right place?
    CCT

  • Why does the swiping not work to scroll down the screen

    why does the swiping not work to scroll down the screen or swipe from side to side

    Thank you for the reply. But can you tell me what this configuration is about and how I should do this?

  • Just purchased the latest ipod nano. Running itunes 11.1.3(8). Why will the music not load? Under devices the 'syn' choice can't be selected and instead only have 'transfer purchases from ipod' What to do?

    Just purchased the latest ipod nano. Running itunes 11.1.3(8). Why will the music not load? Under devices the 'sync' choice can't be selected and instead only have 'transfer purchases from ipod' What to do?

    Just purchased the latest ipod nano. Running itunes 11.1.3(8). Why will the music not load? Under devices the 'sync' choice can't be selected and instead only have 'transfer purchases from ipod' What to do?

  • In my shuffle 4g the songs not playing properly most of the times it gives some kind of sound and stop playing songs.

    in my shuffle 4g the songs not playing properly most of the times it gives some kind of sound and stop playing songs.

    First, make sure the headphones plug is completely pushed into the headphones jack.  Because the jack serves multiple functions, the fit may be tighter than expected (especially if you have the Apple EarPods).
    Also, try using the headphones with another device, to rule out bad headphones.  Or try another set of (known working) headphones with the shuffle.
    Are you using older headphones that have remote control buttons?  Not the latest EarPods and not the immediately previous version of white Apple earbuds.  Or non-Apple headphones with remote control buttons.  It's possible they are not compatible and interfering with the shuffle's operation.  Any standard headphones (with no buttons) should work.
    If that does not help, you can try doing a Restore on the shuffle in iTunes.  The Restore button is on the shuffle's Summary screen in iTunes.  This will erase the shuffle, reinstall its software, and set it to defaut settings.  If a software (or settings) problem on the shuffle is the cause, the Restore should fix it.
    Otherwise, if the Restore does not help, it may be a hardware problem.  If it has been less than one year since purchase, it is under warranty.

  • TS3938 The message "PowerPC applications are no longer supported" sounds like the end, not an interruption. Nevertheless the gaming world could use a wake up call. Is this really a solution?

    The message "PowerPC applications are no longer supported" sounds like the end, not an interruption. Nevertheless the gaming world could use a wake up call. Is this really a solution?

    Scot Lee wrote:
    The message "PowerPC applications are no longer supported" sounds like the end, not an interruption. Nevertheless the gaming world could use a wake up call. Is this really a solution?
    Yes Rosetta has been gone for over two years. You can always search here for how Michael Lax's instructions on how to run SL Server in a virtul environment, but I don't think it is too kind to gamers.
    Advice? Buy an old Mac that runs PPC software.
    Cheers
    Pete

  • On the iphone4 (not s)did they fix the signal problem and if they did when did they fix it how long ago (date roughly)

    on the iphone4 (not s) did they fix the signal problem and if they did when did they fix it how long ago (date roughly)???????

    Apple has not made any changes to the iPhone 4 since its release. The over 80 million people with the phones don't seem to think there's a serious problem.

  • When i go to terms and conditions it allways syaing the server not available atamoment .what is the advise?

    when i go to terms and conditions it allways syaing the server not available atamoment .what is the advise?

    What are you trying to connect to?  iWork for icloud beta cannot be used from an iphone, only a Mac or PC.

  • What's wrong in the code.....Not giving proper answer.

    Hi All,
    below is code for adding 2 simple no's using pl-sql but by setting serveroutput on size 50000,I'm unable to find answer to this ..
    declare
    no_1 number;
    no_2 number;
    result number;
    a number;
    b number;
    begin
    dbms_output.put_line ('Enter the First Number :'||&no_1);
    a:=no_1;
    dbms_output.put_line ('Enter the Second Number :'||&no_2);
    b:=no_2;
    result:=to_number(a+b);
    dbms_output.put_line ('Sum of given numbers is '||result);
    end;
    Thanks in advance.

    In the code you are trying to display the user supplied number, after taking the no_1 and no_2 it is displaying the number. After that there are no value in the
    variables no_1. So do like below.
    declare
    result number;
    a number;
    b number;
    begin
    dbms_output.put_line ('Enter the First Number :');
    a:=&no_1;
    dbms_output.put_line ('Enter the Second Number :');
    b:=&no_2;
    result:=a+b;
    dbms_output.put_line ('Sum of given numbers is '||result);
    end;
    Regards
    SUN

Maybe you are looking for

  • Intel Xserve won't boot from 3rd party drive in ADM

    Right, I've got a Late 2006 Xserve Dual 2.66 with the normal non-RAID SAS/SATA board, which has been running fine for 2 years with a pair of non-Apple Seagate Barracuda ES 250GB drives (Bay 1 & 2), and an original 80GB ADM in Bay 3 as a spare boot di

  • Artist Name Cut Off on iTunes Home Screen

    I have WinXP, 1280x1024 resolution. No other problems with resolution. In iTunes, the artist's names are cut off under the album image and title in the center area of the home screen (New Releases, Just for You etc.). There is no way to expand these

  • Why must this method invocation be caught?!

    Hi there. I have this following piece of code: public class Dog extends Animal {      public static void main(String[] args) {           Animal animal = new Dog();           System.out.println(animal.getAge(args[0]));      int getAge(String arg) {   

  • Dynamic Variant creation

    Hi Folks, I have a requirement where-in i need to schedule report 1 in background from report 2. Report 1 has a selection screen which contains one select-option and variant for the same is created. Now i need to schedule report 1 in such a way so th

  • New design iphone 4

    will the new design iphone 4 be available to at&t customer?