Partion By,Cumulative% problem in Discoverer: Pla help

I have a query like this for supplier spend report..
SELECT ORG_ID,
COMPANY,
SEGMENT1,
OU,
INV_ORG,
--INV_ORG_ID,
VENDOR_NAME,
INVOICE_ID,
PRODUCT_TYPE,
PERIOD_NAME,
AMOUNT_PAID,
SUM(AMOUNT_PAID) OVER(PARTITION BY ORG_ID,PERIOD_NAME ORDER BY AMOUNT_PAID DESC) CUM_TOTAL,
SUM(AMOUNT_PAID) OVER(PARTITION BY ORG_ID,PERIOD_NAME) TOTAL_PAID,
(AMOUNT_PAID / (SUM(AMOUNT_PAID) OVER(PARTITION BY ORG_ID,PERIOD_NAME))) /** 100*/ SUPP_PRCNT,
((SUM(AMOUNT_PAID)
OVER(PARTITION BY ORG_ID,PERIOD_NAME ORDER BY AMOUNT_PAID DESC)) /
(SUM(AMOUNT_PAID) OVER(PARTITION BY ORG_ID,PERIOD_NAME))) /** 100*/ CUM_PRCNT
FROM (SELECT CHQ.ORG_ID,
ORG.CURRENCY_CODE,
FVT.DESCRIPTION COMPANY,
GCC.SEGMENT1,
ORG.ORG_NAME OU,
DECODE(GCC.SEGMENT1,
7590,
'Kanowna Belle Organisation',
7060,
'Darlot Organisation',
7260,
'Cowal Organisation',
7570,
'Kanowna Belle Organisation',
7595,
'Kundana Organisation',
7070,
'Lawlers Organisation',
7180,
7541,
'Granny Smith Organisation',
7015,
7610,
'Kundana Organisation',
7014,
7538,
'Granny Smith Organisation'/*,
'Unknown'*/) INV_ORG,
/* (SELECT ORGANIZATION_ID
FROM apps.ORG_ORGANIZATION_DEFINITIONS
WHERE ORGANIZATION_NAME =
DECODE(GCC.SEGMENT1,
7590,
'Kanowna Belle Organisation',
7060,
'Darlot Organisation',
7260,
'Cowal Organisation',
7570,
'Kanowna Belle Organisation',
7595,
'Kundana Organisation',
7070,
'Lawlers Organisation',
7180,
7541,
'Granny Smith Organisation',
7015,
7610,
'Kundana Organisation',
7014,
7538,
'Granny Smith Organisation',
'Unknown')) INV_ORG_ID,*/
CHQ.VENDOR_ID,
CHQ.VENDOR_NAME,
count(INV.INVOICE_ID) INVOICE_ID,
INVL.PRODUCT_TYPE,
INVL.PERIOD_NAME,
SUM(NVL(INVP.PAYMENT_BASE_AMOUNT, INVP.AMOUNT)) AMOUNT_PAID
FROM APPS.AP_CHECKS_ALL CHQ,
APPS.AP_INVOICE_PAYMENTS_ALL INVP,
APPS.AP_INVOICES_ALL INV,
APPS.AP_INVOICE_LINES_ALL INVL,
APPS.AP_INVOICE_DISTRIBUTIONS_ALL INVD,
APPS.GL_CODE_COMBINATIONS GCC,
APPS.FND_FLEX_VALUES FV,
APPS.FND_FLEX_VALUES_TL FVT,
APPS.XXBG_HR_OPERATING_UNITS ORG
WHERE CHQ.CHECK_ID = INVP.CHECK_ID
AND INVP.INVOICE_ID = INV.INVOICE_ID
AND CHQ.ORG_ID = ORG.ORG_ID
AND INVL.INVOICE_ID = INV.INVOICE_ID
AND INVL.LINE_NUMBER =
(SELECT MIN(LINE_NUMBER)
FROM APPS.AP_INVOICE_LINES_ALL
WHERE INVOICE_ID = INVL.INVOICE_ID
AND LINE_TYPE_LOOKUP_CODE = 'ITEM'
AND DISCARDED_FLAG = 'N')
AND INVL.INVOICE_ID = INVD.INVOICE_ID
AND INVL.LINE_NUMBER = INVD.INVOICE_LINE_NUMBER
AND INVD.DISTRIBUTION_LINE_NUMBER = 1
AND INVD.DIST_CODE_COMBINATION_ID = GCC.CODE_COMBINATION_ID
AND FV.FLEX_VALUE_SET_ID = 1013043
AND FV.FLEX_VALUE = GCC.SEGMENT1
AND FV.FLEX_VALUE_ID = FVT.FLEX_VALUE_ID
--AND VENDOR_NAME = '3d Earthmoving Pty Ltd'  
AND INVL.PERIOD_NAME = 'AUG-09'
AND ORG.ORG_ID = 1563
GROUP BY CHQ.ORG_ID,
GCC.SEGMENT1,
ORG.ORG_NAME,
CHQ.VENDOR_ID,
CHQ.VENDOR_NAME,
--INV.INVOICE_ID,
FVT.DESCRIPTION,
ORG.CURRENCY_CODE,
INVL.PRODUCT_TYPE,
INVL.PERIOD_NAME)
/*WHERE ORG_ID = 1563
AND PERIOD_NAME = 'AUG-09'*/
ORDER BY AMOUNT_PAID DESC
Now in discoverer the query block becomes:
SELECT /*+ NOREWRITE */
O366135.OU AS E366147,
O366135.INV_ORG AS E366148,
O366135.VENDOR_NAME AS E366150,
O366135.INVOICE_ID AS E366151,
O366135.PRODUCT_TYPE AS E366152,
O366135.PERIOD_NAME AS E366153,
O366135.AMOUNT_PAID AS E366154,
O366135.TOTAL_PAID AS TOTAL_PAID,
O366135.SUPP_PRCNT AS E366300,
O366135.CUM_PRCNT AS E366301
FROM (SELECT ORG_ID,
COMPANY,
SEGMENT1,
OU,
INV_ORG,
--INV_ORG_ID,
VENDOR_NAME,
INVOICE_ID,
PRODUCT_TYPE,
PERIOD_NAME,
AMOUNT_PAID,
SUM(AMOUNT_PAID) OVER(PARTITION BY ORG_ID, SEGMENT1,PERIOD_NAME,PRODUCT_TYPE ORDER BY AMOUNT_PAID DESC) CUM_TOTAL,
SUM(AMOUNT_PAID) OVER(PARTITION BY ORG_ID, SEGMENT1,PERIOD_NAME,PRODUCT_TYPE) TOTAL_PAID,
(AMOUNT_PAID /
(SUM(AMOUNT_PAID)
OVER(PARTITION BY ORG_ID, SEGMENT1,PERIOD_NAME,PRODUCT_TYPE))) /** 100*/ SUPP_PRCNT,
((SUM(AMOUNT_PAID)
OVER(PARTITION BY ORG_ID,SEGMENT1,
PERIOD_NAME,PRODUCT_TYPE ORDER BY AMOUNT_PAID DESC)) /
(SUM(AMOUNT_PAID)
OVER(PARTITION BY ORG_ID,SEGMENT1, PERIOD_NAME,PRODUCT_TYPE))) /** 100*/ CUM_PRCNT
FROM (SELECT CHQ.ORG_ID,
ORG.CURRENCY_CODE,
FVT.DESCRIPTION COMPANY,
GCC.SEGMENT1,
ORG.ORG_NAME OU,
DECODE(GCC.SEGMENT1,
7590,
'Kanowna Belle Organisation',
7060,
'Darlot Organisation',
7260,
'Cowal Organisation',
7570,
'Kanowna Belle Organisation',
7595,
'Kundana Organisation',
7070,
'Lawlers Organisation',
7180,
7541,
'Granny Smith Organisation',
7015,
7610,
'Kundana Organisation',
7014,
7538,
'Granny Smith Organisation' /*,
'Unknown'*/) INV_ORG,
/* (SELECT ORGANIZATION_ID
FROM apps.ORG_ORGANIZATION_DEFINITIONS
WHERE ORGANIZATION_NAME =
DECODE(GCC.SEGMENT1,
7590,
'Kanowna Belle Organisation',
7060,
'Darlot Organisation',
7260,
'Cowal Organisation',
7570,
'Kanowna Belle Organisation',
7595,
'Kundana Organisation',
7070,
'Lawlers Organisation',
7180,
7541,
'Granny Smith Organisation',
7015,
7610,
'Kundana Organisation',
7014,
7538,
'Granny Smith Organisation',
'Unknown')) INV_ORG_ID,*/
CHQ.VENDOR_ID,
CHQ.VENDOR_NAME,
COUNT(INV.INVOICE_ID) INVOICE_ID,
INVL.PRODUCT_TYPE,
INVL.PERIOD_NAME,
SUM(NVL(INVP.PAYMENT_BASE_AMOUNT, INVP.AMOUNT)) AMOUNT_PAID
FROM APPS.AP_CHECKS_ALL CHQ,
APPS.AP_INVOICE_PAYMENTS_ALL INVP,
APPS.AP_INVOICES_ALL INV,
APPS.AP_INVOICE_LINES_ALL INVL,
APPS.AP_INVOICE_DISTRIBUTIONS_ALL INVD,
APPS.GL_CODE_COMBINATIONS GCC,
APPS.FND_FLEX_VALUES FV,
APPS.FND_FLEX_VALUES_TL FVT,
APPS.XXBG_HR_OPERATING_UNITS ORG
WHERE CHQ.CHECK_ID = INVP.CHECK_ID
AND INVP.INVOICE_ID = INV.INVOICE_ID
AND CHQ.ORG_ID = ORG.ORG_ID
AND INVL.INVOICE_ID = INV.INVOICE_ID
AND INVL.LINE_NUMBER =
(SELECT MIN(LINE_NUMBER)
FROM APPS.AP_INVOICE_LINES_ALL
WHERE INVOICE_ID = INVL.INVOICE_ID
AND LINE_TYPE_LOOKUP_CODE = 'ITEM'
AND DISCARDED_FLAG = 'N')
AND INVL.INVOICE_ID = INVD.INVOICE_ID
AND INVL.LINE_NUMBER = INVD.INVOICE_LINE_NUMBER
AND INVD.DISTRIBUTION_LINE_NUMBER = 1
AND INVD.DIST_CODE_COMBINATION_ID =
GCC.CODE_COMBINATION_ID
AND FV.FLEX_VALUE_SET_ID = 1013043
AND FV.FLEX_VALUE = GCC.SEGMENT1
AND FV.FLEX_VALUE_ID = FVT.FLEX_VALUE_ID
--AND VENDOR_NAME = '3d Earthmoving Pty Ltd'  
AND INVL.PERIOD_NAME = 'AUG-09'
AND ORG.ORG_ID = 1563
GROUP BY CHQ.ORG_ID,
GCC.SEGMENT1,
ORG.ORG_NAME,
CHQ.VENDOR_ID,
CHQ.VENDOR_NAME,
--INV.INVOICE_ID,
FVT.DESCRIPTION,
ORG.CURRENCY_CODE,
INVL.PRODUCT_TYPE,
INVL.PERIOD_NAME)
/*WHERE
--ORG_ID = 1563
AND
PERIOD_NAME = 'AUG-09'*/
ORDER BY AMOUNT_PAID DESC) O366135
WHERE (O366135.PRODUCT_TYPE = :"Order Type")
AND (O366135.PERIOD_NAME = :"Period")
AND (O366135.INV_ORG = :"Inventory Organisation")
AND (O366135.OU = :"Operating Unit");
Here the problem is I have the mandatory parameter "Period" and "Operating Unit", optional parameter "Order Type" and "Inventory Organisation". Order Type and Inventory Organisation are not passed in partition. That's why I am getting incorrect result.
Could anyone pls help how is that possible in Discoverer?
Pls help.

Hi,
Maybe you want to partition by the optional parameters only when they have been entered by the user. But you cannot do this because the partitioning is part of the query and cannot be changed by the parameters.
Rod West

Similar Messages

  • Auto login problem in Discoverer -- Urgent Help

    Hi All,
    I'm trying to call discoverer 4i plus from viewer.
    I did auto login for discoverer 4i plus for 9i AS(2.1).It worked
    fine. I did the same for 9i AS(2.2).Basically i tried to get
    login inforamtion from cookies in webdisc.js file .The edited
    webdisc.js like this
    var user = getCookie ("Username");
    If i remove this line my discoverer 4i plus works fine without
    having any problem.if add the above code then i get the
    following error
    "Unable to connect to the Oracle Discoverer Application server.
    Failed to connect to session XXXOracleDiscovererSession4 using
    OSAgent."
    Any help please..
    Thanks in advance,
    Sapna

    Hi Jerome ,
    Thanks for the reply.
    I installed 9iAS(2.2) on NT. clint is on WIN2000.
    Are u using cookies?
    In my viewer, i've provided a link to plus. When an user hit
    this link it should take the userid from viewer and auto logins
    to plus. In viewer, i'm putting the userid and password in a
    cookie and reads the information from cookie in webdisc.js(This
    is disco plus script file for auto login)
    I did the whole process in 9iAS(2.1) it works fine. Only this
    version(2.2) i'm getting the error
    "Unable to connect to the Oracle Discoverer Application server.
    Failed to connect to session XXXOracleDiscovererSession4 using
    OSAgent."
    I'm interested to know how u did auto login on NT using <PARAM>
    tag.
    Best Regards,
    Sapna

  • I have a problem in discoverer,please help me!

    when I open discoverer viewer via IE,I get a error.why?
    my system :rhel5u3
    fusion middleware:11.1.1.3.0
    discoverer :11.1.1.2.0
    oracle db:10.2.0.5.0
    weblogic:wls1035
    错误
    连接错误。
    - 创建会话时出错, 请检查其他错误。
    - oracle.discoiv.connections.ConnectionStoreException: weblogic.common.resourcepool.ResourceDeadException: 0:weblogic.common.ResourceException: Could not create pool connection. The DBMS driver exception was: IO Error: The Network Adapter could not establish the connection
    - weblogic.common.resourcepool.ResourceDeadException: 0:weblogic.common.ResourceException: Could not create pool connection. The DBMS driver exception was: IO Error: The Network Adapter could not establish the connection
    - weblogic.common.resourcepool.ResourceDeadException: 0:weblogic.common.ResourceException: Could not create pool connection. The DBMS driver exception was: IO Error: The Network Adapter could not establish the connection
    无法检索连接列表
    - 无法检索连接列表。有关详细信息, 请查看 Discoverer 应用程序日志。
    Edited by: 868547 on 2011-8-2 下午7:42

    Please look at this picture.
    http://img4.uutuu.com/data4/a/ph/original/110803/43ef7713546c67f23b51813e895532c1.jpg
    Edited by: 868547 on 2011-8-2 下午7:58

  • Cumulative data in Discoverer

    Hello,
    I am producing Cumulative data in Discoverer but cannot get the graph to represent the data in a user friendly way.
    I can write it in SQL using the "OVER (partition by..." but this will not suffice as items alter at runtime.
    Any suggestions or tips re: cumulative data?
    Thanks
    Rhys

    Hi,
    I reviewed your question and I found that you dont want to drill-down the Classifications into Col1,2,3..but you want to display them as report fields.
    So, you dont need Item Hierarchies...Only Corsstab Layout can solve your problem.
    By column 'Type', I meant, you have a create a new column (as a calculation) and name it as 'Type'(or whatever you like) which will retrive 2 values: Asset, Revenue.
    1. Create a new warksheet > Crosstab
    2. Drag and drop columns so that 'Classification' should be above 'Col1','Col2' and the calculation 'Type' should be at the left.
    3. Create calculation > Use Decode() to get the values: Asset, Revenue,etc
    Hope this helps!
    Yogini

  • Problem connecting Discoverer plus to Oracle 10g DB

    I have a problem connecting Disocverer Plus to DB 10g.
    DB 10g is located on a different server than Discoverer. All windows environment. When I enter DB name it gives me ORA-12154 error.
    Question – I searched all the documents and it doesn’t say how to configure DB 10g to work with Discoverer. Could some one help me pointing me in a right direction? Do I have to create Data Warehouse or can I connect to the DB directly.
    I added Database connection on the DB 10g listener. Do I have to do it on the BI listener as well. So complicated and no guidance.
    thanks

    In your Discoverer 10g home, navigate to:
    $OH/network/admin
    configure your tnsnames.ora alias's
    or a shortcut... on Oracle BI Discoverer connection string enter:
    username
    pwd
    db string like this (no breaks):
    (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=yourmachine.domain)(PORT=1523)))(CONNECT_DATA=(SID = vis)))
    There is guidance. The Discoverer Configuration Guide
    or MetaLink Support notes.
    The configuration guide specifically documents common problems
    http://download-west.oracle.com/docs/html/B13918_03/tshoot.htm#sthref1287
    D.1.4 Discoverer reports the error ORA-12154
    OracleBI Discoverer reports error ORA-12154: Could not resolve service name.
    Problem
    OracleBI Discoverer cannot connect to the database alias specified by the connection details.
    Solution
    Make sure that:
    the database alias is in the tnsnames.ora file on the middle tier
    the database alias exists in the tnsnames.ora file on every machine that runs sessions
    Hint: If you have SQL*Plus (or any other Oracle product) running on that machine, try connecting to the database with that product.
    Hope that helps point you in the right direction.
    Regards,
    Steve.

  • HT204407 Find my friends Icon disappeared after upgrade to ios 8. I tried restarting as well as reinstalled the app but its not working. I can find it in Usage, but not in spot light. Pla help!!j

    Find my friends Icon disappeared after upgrade to ios 8. I tried restarting as well as reinstalled the app but its not working. I can find it in Usage, but not in spot light. Pla help!!

    I have exactly the same problem on a 4S on iOS 8. Have tried uninstalling, deleting FMF from backup, resetting phone and restoring from backup, but the problem remains. Sometimes the icon appears on a backup Home screen in iTunes, but it never appears on the phone itself. The app is accessible by going to the store, purchases and opening it from there. The app appears to have been running the whole time, but becomes invisible anytime I return to the home screen.

  • Problems with Discoverer Viewer and the printable page

    Hi,
    I have a problem in Discoverer Viewer. I run a workbook, see the results and I click on "Printable Page". I set the page setup options to "Portait" and "100% scale". I preview the workbook in a PDF file and it's ok, I see the results in "Portait" and "100%".
    I close the PDF file and I click again on the "Printable Page". This time, I set the workbook to "Landscape" and "20% scale". I preview the workbook in a PDF file and it's NOT ok, the results are still in "Portait" and "100%". And the date/time in the workbook is the time when I run the workbook the first time. So, it's seems like a browser cache problem. The problem repeats until I clear the brower cache. At that moment, the workbook will take the page setup that I set at this time. However, it will be the same workbook with the same results until I clear the cache once again.
    If I save the PDF file on my Windows Desktop and I overwrite it each time, it's ok.
    Can somebody help me on this??
    Thank you!
    Mathieu

    Hi Michael,
    I'm clearing the browser cache by going in Tools -> Internet Options. In the "General" tab, I click on the "Delete files..." in the "Temporary Internet Files" section" (middle of the window).
    But I don't indicate that Discoverer is saving my printable page changes. I say that the first time I run a workbook, Discoverer saves it (the results) in the "Temporary Internet Files" folder in a PDF file. Each time I run the same workbook after that, Discoverer don't overwrite the file in the "Temporary Internet Files" folder. He takes the PDF file that is already there and show it to me. So, the results are the same even if the data has changed. It does this until I clear the browser cache (it deletes the PDF file in the "Temporary Internet Files" folder).
    Do you understand?
    Regards,
    Mathieu

  • I cannot open iCal because of a problem. Can anybody help me? The computer will not allow it to open and sends a message to apple each time. The icon has gone from the dock, but ical works on my iPad and I am afraid to sync it with my computer.?

    I cannot open iCal because of a problem. Can anybody help me? The computer will not allow it to open and sends a message to apple each time. The icon has gone from the dock, but ical works on my iPad and I am afraid to sync it with my computer in case it wipes everything .

    I have the exact same problem. I have not changed anything. This is probably a bug or something that has gone bad with Mac OS X (10.7.2). I have not found any solution for this on the web.
    MacBook Pro, Mac OS X (10.7.2).

  • I am not able to launch FF everytime i tr to open it, it says FF has to submit a crash report, i even tried doing that and the report was submitted too, but stiil FF did not start, and the problem still persists, please help me solve this issue in English

    Question
    I am not able to launch FF everytime i try to open it, it says FF has to submit a crash report,and restore yr tabs. I even tried doing that and the report was submitted too, but still FF did not start, and the problem still persists, please help me solve this issue
    '''(in English)'''

    Hi Danny,
    Per my understanding that you can't get the expect result by using the expression "=Count(Fields!TICKET_STATUS.Value=4) " to count the the TICKET_STATUS which value is 4, the result will returns the count of all the TICKET_STATUS values(206)
    but not 180, right?
    I have tested on my local environment and can reproduce the issue, the issue caused by you are using the count() function in the incorrect way, please modify the expression as below and have a test:
    =COUNT(IIF(Fields!TICKET_STATUS.Value=4 ,1,Nothing))
    or
    =SUM(IIF(Fields!TICKET_STATUS=4,1,0))
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Hi everybody.. i have a problem nad i need help a.s.a.p ... i forgut my ipad passcode and tryed to remember it tell it locked and i cant get open .. it says connect to itunes .. i did that and its still not opening? what can i do? thanks

    hi everybody.. i have a problem nad i need help a.s.a.p ... i forgut my ipad passcode and tryed to remember it tell it locked and i cant get open .. it says connect to itunes .. i did that and its still not opening? what can i do? thanks

    http://support.apple.com/kb/HT1808
    Regards.

  • An error has occurred. Please try again, and if the problem persists, contact your help desk or system administrator. (Error 3000)

    Hi,
    When i open my Password Reset portal then provide Username credentials in text box and click on next then asked the Securites Question Answers to me,i provide the correct Answers to the securites Question after this password reset portal asked
    me New Password and Confirm Password then click on next for resetting the password then gives below Error only for 2 Users. and all other users are working fine.
    An error has occurred. Please try again, and if the problem persists, contact your help desk or system administrator. (Error 3000:)
    Regards
    Anil Kumar

    Anything in the event log?

  • Users of imovie experience a lot of problems and crying for help and no one at Apple did not respond I do not understand how a company like Apple puts experts to help users Please note that anonymous experts in Internet offer their help for money

    Users of imovie experience a lot of problems and crying for help and no one at Apple did not respond
    I do not understand how a company like Apple puts experts to help users
    Please note that anonymous experts in Internet offer their help for money

    Users of imovie experience a lot of problems and crying for help and no one at Apple did not respond
    I do not understand how a company like Apple puts experts to help users
    Please note that anonymous experts in Internet offer their help for money

  • Solved my iPhone 5 Battery Problems: Maybe it can help you!

    Hi every one, I saw many topics regarding battery problems with the iPhone 5. I responded to one discussion describing what I did to solve the iPhone 5 battery dying fast on me. So I thought I'd make a discussion here to help out other users with the same problem.
    I would have 25-30% drop with in the hour and all I did was text a couple of my friends. I was using an iPhone 4 for the longest time, and on that phone I was able to watch videos, listen to music and use all the other features of the phone. The battery still lasted me the whole day, I was getting  worried that I wouldn't be able to use the iPhone 5 the same with out it dying on me fast.
    My friend suggested draining the battery and then charging the phone to see if any improvements were seen. I did that and I saw a small change in the battery strength. I drained the battery two more times, and that is when I saw a huge difference.
    I use my Phone as my iPod when I work out, and I run continuous music on it for 1.5-2 hours straight, along with sending texts to my friends. In this duration I would only use 15-20% which was a huge improvement from before. I would say that the battery life was on par with my iPhone 4 battery! It is such a relief, now I can use my iPhone 5 to it's fullest potential without having to worry it'll die on me fast.
    I recommend other iPhone 5 users try draining their batteries a couple of times before charging as well if they are experiencing problems.
    Hope this helps!
    Dylan

    I would let the battery completely die before I would charge it again. I would keep 3g off and only turn it on if I'm going to use it and turn it off again. Because the phone uses more power for the 3g/4g that the battery dies even faster.
    I text a lot to friends so I'm constantly texting through out the day and when I work out continously run music on it for close to 2hours. It would only drain 15-20% of the battery, which really is a huge improvement.
    I also use Siri quite often through wifi and it barely uses any battery power. Try letting the phone die until it turns off a couple of times before you charge it. That is what I did before a friend requested doing that after I was getting fraustrated with the battery power.

  • Sometimes my iphone 5S produces low sound even on full volume level. Then i do restart it. But i am not sure where exactly the problem is? Need help.

    Sometimes my iphone 5S produces low sound even on full volume level. Then i do restart it. But i am not sure where exactly the problem is? Need help.

    Hi saiyed adil, 
    Thank you for contributing to the Apple Support Communities. 
    It appears that your iPhone 5s sometimes produces low sound, but a restart corrects it. 
    It can take some time to isolate and resolve intermittent issues like this one, and I'd recommend going through the steps in this guide the next time it occurs:
    If you hear no sound or distorted sound from your iPhone, iPad, or iPod touch speaker - Apple Support
    All the best,
    Jeremy 

  • My emails no longer show up unless I go to the mail app manually. Never had a problem before this. Help!

    My emails no longer show up unless I go to the mail app manually. Never had a problem before this. Help! I have shut off phone I have tried to change the time for how long the mail will show up but nothing is working

    Do you mean you don't get notified of new emails automatically (eg. on the Lock Screen)?  This could be because this function is turned off in Settings > Notifications.  It could also be that the email account you use is having problems with its PUSH service, if it offers one.

Maybe you are looking for