Cumulative quantities not showing

Hi experts,
I have defined following structure in BEx query designer. The cumulative balance column is not displaying correct result.
The "cumulated" option has been selected for the formula "Cumulative Balance".
--- Debit | Credit | Monthly Balance | Cumulative Balance |
Jan | 100 | | 100 | 100 |
Feb |  | | | |
Mar | 400 | | 400 | 400 |
Dec
I used to have correct data displayed when there are values for the whole year (from Jan to Dec). Hence, I suspect the problem lies on the unfilled rows (Feb in this example). Besides, I used to have a result row at the bottom of the structure as well!
1. Is there any solution to this problem?
2. How can I display zeros (0) instead of blank for the months without values?
3. How can I display a result row at the bottom of the structure?
Thanks in advance for your advice.
Regards,
Joon

hi,
Instead of creating structure you can see the cumulative values at a runtime only.
right click on the KF, properties > data cell> calculation tab -->check cumulative after applying single value.
Calculate single value -- sum
calculation direction -- calculate along row
tick apply detail calculation to result
Calculate result as -- Sum
tick calculation based on previous calculations.
this way the KF will show the cumulative values at runtime, you can save the view as global view and publish to users.
This has an advantage as this is easier to do rather than defining each cell in structure.
regards,
Arvind.

Similar Messages

  • Non-cumulative Values not showing in Inventory Management Queries

    Hi:
    Has anyone had a problem with the new version and Non-cumulative key figures not showing up in Bex for Inventory Managemet reports? Specifically, they showed and validated back to ECC for our Development and QA boxes but now in our Regression box they are all showing zeros. Our Cumulative values are all showing correctly still within the Regression box. For example, Total Receipts and Total Issues are correctly poplating values but Total Stock is not.
    I have checked and validate that the configuration in the Regression box matches or Dev and QA box.

    Found the problem.  It had to do with the compression variant in the delta process chain.  The compression was set to 'no marker update'.  Since we only started receiving measureable deltas in or regression box this is where the incorrect setting showed up.  Reinitalized and the deltas are working correctly now.

  • Inventory Non cumulative values are not showing correct result

    Hi Guys,
    I have created a report on Inventory cube taking material in rows and 0T0TALSTCK and 0VALSTCKVAL in colums and i created a variable on calender day . What ever the date if we give we will get the quantity and value as on that date.
    Here Quantity is showing perfectly and in case of value it is showing wrongly. In this case the interesting thing is if we substract the  (Reciet value - Issue ) value then i am getting the correct value.
    Some times Even quantity is zero the noncumulative keyfigure (0VALSTCKVAL)is not showing zero it is showing some value but if i do (Reciet value - Issue ) it will show correctly.
    Please help on this issue.
    Thanks & Regards
    K.Srinivas

    Hi,
    when the quantity is correct, then you have a problem with the values. You have loaded the infocube correcly.
    check your keyfigures and the transformation with the BI content.
    => for example: do you have the coding in the BF transformation?
    * see OSS note 571669
        LOOP AT SOURCE_PACKAGE ASSIGNING <SOURCE_FIELDS>.
          IF <SOURCE_FIELDS>-stockcat EQ 'V' OR
             <SOURCE_FIELDS>-stocktype EQ 'V'.
            DELETE SOURCE_PACKAGE.
          ENDIF.
        ENDLOOP.
    => you have used the datasource 2LIS_03_UM. There are no quantities. Is there your problem.
    Sven

  • ALV GRID Report is not showing all records which is in internal table

    hi all,
    have one doubt. please clarify me. ALV Report is working fine since long tiem. But suddenly this report is showing few records only for the given input.   Example:   it_main table have 50 records, but output is showing only 10 records only. (we have not made any modifications in this report).
    temporarily i have given excel output file from it_main table. excel file is showing all records.
    here it_main have all the records. but output is showing few records only. it is not showing any error. i have tested with REUSE_ALV_LIST_DISPLAY function also. but it also showing same results(few records only.)
    please give me some idea.
    FORM display_alv_report.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_buffer_active          = 'X'
          i_callback_program       = sy-repid
          is_layout                = wa_layout
          it_fieldcat              = it_fcat
          it_events                = it_events
          i_save                   = 'A'
          is_variant               = wa_variant
        TABLES
          t_outtab                 = it_main
        EXCEPTIONS
          program_error            = 1
          OTHERS                   = 2.
      IF sy-subrc <> 0.
        MESSAGE text-204 " 'Error in Display the list'
        TYPE 'I'.
        LEAVE TO LIST-PROCESSING.
      ENDIF.
    ENDFORM.            .                    "DISPLAY_ALV_REPORT
    Best Regards,
    Srinivas

    hi
    Please study this program and give me suggestions.
    ALV Declaration
    DATA : it_events TYPE slis_t_event,               "ALV event
               it_fcat   TYPE slis_t_fieldcat_alv,        "Field catalog
               it_list_top_of_page TYPE slis_t_listheader,
               c_tabname  TYPE slis_tabname   VALUE 'IT_MAIN'.
    DATA : wa_layout  TYPE slis_layout_alv,
                wa_event   TYPE slis_alv_event,
               wa_fcat    TYPE slis_fieldcat_alv,
               wa_variant TYPE disvariant.
    START-OF-SELECTION.
      PERFORM material_pass.
      PERFORM data_retrieval.
    END-OF-SELECTION.
      PERFORM sub_display_report.
    FORM sub_display_report .
      DATA status(1).
      IF r1 = 'X'.
        PERFORM build_fieldcatalog USING :
          '1'  'ERDAT'     'S.O DATE'             '' '10'  'X',
          '2'  'VBELN'     'SALE ORDER'           '' '10'  'X',
          '3'  'POSNR'     'SALE ITEM'            '' '6'   '',
          '4'  'BSTKD'     'CUSTOMER PO'          '' '35'  '',
          '5'  'BEZEI'     'REASON FOR REJECTION' '' '40'  '',
          '6'  'PLNUM'     'PLANNED ORDER'        '' '10'  '',
          '7'  'AUFNR'     'PROD.ORDER.'          '' '12'  '',
          '8'  'MATNR'     'MATERIAL NUMBER'      '' '18'  '',
          '9'  'MAKTX'     'MATERIAL DESCRIPTION' '' '40'  '',
          '10' 'WERKS'     'PLANT'                '' '4'   '',
          '11' 'KWMENG'    'SALE ORDER QTY'       '' '15'  '',
          '12' 'VRKME'     'UNIT'                 '' '4'   '',
          '13' 'GAMNG'     'PROD.ORDER QTY'       '' '13'  '',
          '14' 'IGMNG'     'CONFIRMED ORDER QTY'  '' '13'  '',
          '15' 'GMEIN'     'UNIT'                 '' '4'   '',
          '16' 'MENGE'     'G.R QUANTITY'         '' '13'  '',
          '17' 'SOBAL'     'S.O BALANCE'          '' '13'  '',
          '18' 'PRDBAL'    'PROD.BALANCE'         '' '13'  '',
          '19' 'GSM'       'GSM'                  '' '4'   '',
          '20' 'SIZE1'     'SIZE1'                '' '10'  '',
          '21' 'SIZE2'     'SIZE2'                '' '10'  ''.
        CALL FUNCTION 'GUI_DOWNLOAD'
          EXPORTING
            filename              = pathname
            filetype              = ftype
            append                = 'X'
            write_field_separator = 'X'
          TABLES
            data_tab              = it_mains
          EXCEPTIONS
            file_write_error      = 1.
        IF sy-subrc = 0.
          status = 'S'.
        ELSE.
          status = 'E'.
        ENDIF.
      ELSEIF r2 = 'X' OR r3 = 'X'.
        PERFORM build_fieldcatalog USING :
          '1'  'ERDAT'     'S.O DATE'             '' '10'  'X',
          '2'  'VBELN'     'SALE ORDER'           '' '10'  'X',
          '3'  'POSNR'     'SALE ITEM'            '' '6'   '',
          '4'  'BSTKD'     'CUSTOMER PO'          '' '35'  '',
          '5'  'BEZEI'     'REASON FOR REJECTION' '' '40'  '',
          '6'  'PLNUM'     'PLANNED ORDER'        '' '10'  '',
          '7'  'AUFNR'     'PROD.ORDER.'          '' '12'  '',
          '8'  'MATNR'     'MATERIAL NUMBER'      '' '18'  '',
          '9'  'MAKTX'     'MATERIAL DESCRIPTION' '' '40'  '',
          '10' 'WERKS'     'PLANT'                '' '4'   '',
          '11' 'KWMENG'    'SALE ORDER QTY'       '' '15'  '',
          '12' 'VRKME'     'UNIT'                 '' '4'   '',
          '13' 'GAMNG'     'PROD.ORDER QTY'       '' '13'  '',
          '14' 'IGMNG'     'CONFIRMED ORDER QTY'  '' '13'  '',
          '15' 'GMEIN'     'UNIT'                 '' '4'   '',
          '16' 'MENGE'     'G.R QUANTITY'         '' '13'  '',
          '17' 'SOBAL'     'S.O BALANCE'          '' '13'  '',
          '18' 'PRDBAL'    'PROD.BALANCE'         '' '13'  '',
          '19' 'GSM'       'GSM'                  '' '4'   '',
          '20' 'SIZE1'     'SIZE1'                '' '10'  '',
          '21' 'CUT1'      'CUT1'                 '' '11'  '',
          '22' 'SIZE2'     'SIZE2'                '' '10'  '',
          '23' 'CUT2'      'CUT2'                 '' '11'  '',
          '24' 'SIZE3'     'SIZE3'                '' '10'  '',
          '25' 'CUT3'      'CUT3'                 '' '11'  '',
          '26' 'SIZE4'     'SIZE4'                '' '10'  '',
          '27' 'CUT4'      'CUT4'                 '' '11'  '',
          '28' 'SIZE5'     'SIZE5'                '' '10'  '',
          '29' 'CUT5'      'CUT5'                 '' '11'  '',
          '30' 'SIZE6'     'SIZE6'                '' '10'  '',
          '31' 'CUT6'      'CUT6'                 '' '11'  ''.
        CALL FUNCTION 'GUI_DOWNLOAD'
          EXPORTING
            filename              = pathname
            filetype              = ftype
            append                = 'X'
            write_field_separator = 'X'
          TABLES
            data_tab              = it_mainall
          EXCEPTIONS
            file_write_error      = 1.
        IF sy-subrc = 0.
          status = 'S'.
        ELSE.
          status = 'E'.
        ENDIF.
      ENDIF.
      PERFORM build_layout.
      PERFORM build_events.
      PERFORM sub_comment_build USING it_list_top_of_page.
      PERFORM sub_set_variant.
      PERFORM display_alv_report.
      IF status = 'S'.
        MESSAGE 'Excel Output file Downloaded to Given Path' TYPE 'I'.
      ELSE.
        MESSAGE 'Download Not Possible' TYPE 'I'.
      ENDIF.
    ENDFORM.                    " SUB_DISPLAY_REPORT
    FORM BUILD_FIELDCATALOG
    FORM build_fieldcatalog USING  p_col_pos
                                   p_fieldname
                                   p_text
                                   p_datatype
                                   p_outputlen
                                   p_col_freez.
      wa_fcat-row_pos        = '1'.
      wa_fcat-col_pos        = p_col_pos.
      wa_fcat-fieldname      = p_fieldname.
      wa_fcat-tabname        = c_tabname.
      wa_fcat-reptext_ddic   = p_text.
      wa_fcat-datatype       = p_datatype.
      wa_fcat-ddic_outputlen = p_outputlen.
      wa_fcat-key            = p_col_freez.
      APPEND wa_fcat TO it_fcat.
      CLEAR wa_fcat.
    ENDFORM.                    " BUILD_FIELDCATALOG
    *&      Form  BUILD_LAYOUT
    FORM build_layout.
      CLEAR: wa_layout.
      wa_layout-window_titlebar   = 'LIST OF GSM WISE OPEN SALE ORDERS'.
      wa_layout-colwidth_optimize = 'X'.
      wa_layout-totals_text       = 'CUMULATIVE'.
    ENDFORM.                    "BUILD_LAYOUT
    *&      Form  BUILD_EVENTS
    FORM build_events.
      CLEAR wa_event.
      REFRESH it_events.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type     = 0
        IMPORTING
          et_events       = it_events
        EXCEPTIONS
          list_type_wrong = 1
          OTHERS          = 2.
      IF sy-subrc = 0.
        READ TABLE it_events INTO wa_event
             WITH KEY name = 'TOP_OF_PAGE'.
        IF sy-subrc EQ 0.
          wa_event-form = 'TOP_OF_PAGE'.
          APPEND wa_event TO it_events.
          CLEAR wa_event.
        ENDIF.
      ENDIF.
    ENDFORM.                    "BUILD_EVENTS
         -->P_IT_LIST_TOP_OF_PAGE  text
    FORM sub_comment_build  USING it_top_of_page TYPE slis_t_listheader.
      DATA ls_line TYPE slis_listheader.
      CLEAR ls_line.
      ls_line-typ = 'H'.
      ls_line-info = str1.
      APPEND ls_line TO it_top_of_page.
      CLEAR ls_line.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
       EXPORTING
         it_list_commentary = t_header[].
    ENDFORM.                    " SUB_COMMENT_BUILD
    *&      Form  SUB_SET_VARIANT
          text
    -->  p1        text
    <--  p2        text
    FORM sub_set_variant .
      CLEAR wa_variant.
      wa_variant-report = sy-repid.
      wa_variant-username = sy-uname.
    wa_variant-variant = c_variant.
    wa_variant-variant = p_layout.
    ENDFORM.                    " SUB_SET_VARIANT
    *&      Form  DISPLAY_ALV_REPORT
    *Display Report Using ALV GRID
    FORM display_alv_report.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_buffer_active          = 'X'
          i_callback_program       = sy-repid
         i_callback_pf_status_set = c_pf_status
         i_callback_user_command  = c_user_command
          is_layout                = wa_layout
          it_fieldcat              = it_fcat
         it_sort                  = it_sort[]
          it_events                = it_events
          i_save                   = 'A'
          is_variant               = wa_variant
        TABLES
          t_outtab                 = it_main
        EXCEPTIONS
          program_error            = 1
          OTHERS                   = 2.
      IF sy-subrc <> 0.
        MESSAGE text-204 " 'Error in Display the list'
        TYPE 'I'.
        LEAVE TO LIST-PROCESSING.
      ENDIF.
    ENDFORM.            .                    "DISPLAY_ALV_REPORT
    *ALV Report Header
    FORM top_of_page.
      DATA : t_header TYPE slis_t_listheader WITH HEADER LINE,
             wa_header TYPE slis_listheader,
             t_line LIKE wa_header-info,
             ld_lines TYPE i,
             ld_linesc(10) TYPE c.
      wa_header-typ  = 'H'.
    T_HEADER-INFO = 'LIST OF GSM WISE OPEN SALE ORDERS'.
      wa_header-info = str1.
      APPEND wa_header TO t_header.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = t_header[].
    ENDFORM.                    "TOP_OF_PAGE
    here it_main internal table having all data. but output is showing few records only.
    pl. give some idea.
    Thanks & Regards
    Srinivas.

  • Pivot table total on a computed column not showing when using a filter

    I have this strange issue. I will try to explain.
    I have three columns in my report - Delivered Qty, Opened Quantity, and the third one is computed that is (Delivered Qty - Opened Qty). The data is displayed in a table by quarter. So basically I have Quarter, Delivered Qty, Open Qty, Not Opened Qty. I also have the total row. A pie chart shows the opened vs. un-opened quantities. It all works fine.
    The issue is when I add a prompt and the corresponding filter, the total for the computed field is blank. This happens whether it is pivot table or a regular table. That causes the pie chart to show 100% for the Opened qty.
    When I remove the filter, it works again. I can see the total for the computed field and the pie chart looks great.
    Can anyone please help me? I have a number of hours trying to play around with this and also looked in the forum to see if any one might have already discussed similar issue in the past. I could not find any.
    Thanks.

    I found the issue with my table total not showing up. Basically the new materialized view had its own data table alias. However, in the filter I was using date columns from different date table alias (copy and paste problem). As soon as I changed to the right date columns from the associated alias table, the row total showed up.
    Thanks anyways for your support.

  • Cumulative Quantities in a BEx Query

    Hi Friends,
    I have to get the Cumulative Values for a Key Fig Actual Quantity in a BEx Query.
    The scenario is as follows:
    I have the following data in the cube:
    YearWeek       ActQuantity
      200601                     35
      200602                     40
      200651                      30
      200652                      35
      200701                      20
      200702                      35
      200703                      45 
      200747                      30
      200748                      45
      200749                      40
      200750                      25
      200751                      40
      200752                      35
      200801                      40
      200802                      35
      etc.,
    The Report Req is as follows:
       The user will enter any range (Eg: 200748 - 200802)
    and he wants to see the report as follows:
    YearWeek ActQnty  CumQnty
                                   (Cumltd from 1st wk of the year)
    200748                    45             2500  (2455 + 45)
    200749                    40             2540  (2500 + 40)
    200750                    25             2565
    200751                    40             2605
    200752                    35             2640
    200801                    40                40 (since it is 1st week)
    200802                    35               75
    Important thing is the report should show the quantities only for that period (weeks), the user entered. But the cumulative values must be from the first week of that calender year.
    Thanks for any help/suggestion.
    Regards,
    Ranjith

    Hi Rakesh,
       Actually the user enters two values (eg: 200740 - 200748) and he wants to see the actual quantities and cumulative quantities only for the weeks between the user entered i.e., between 200740 and 200748.
      But when I execute the query with user exit variable I defined, I am getting actual quantities and cumulative quantities from 200701 to 200748. The values are correct but I want to restrict this report only to the period between 200740 and 200748.
      The user entry range may also cross between two different years (eg: 200748 - 200812)
    Thanks for your help.
    Ranjith

  • Cummulated kpi which is created in BEX dssigner is not showing in WEBI Side

    I am facing below issue
    i have create one  kpi working capital commutative in Bex designer  which is cumulation  .its working fine
    means result is coming cummulated in bi side. but in WEBI side above kpi is NOT Showing . Already I Have  allow external access to this query
    Please advise me the above issue
    Thanks
    Nishant

    Hi suman,
    PFA attached screen shot and detail about above problem
    In BEX designer side we create two KPI one is not cumulated and other one is Cumulated .but on WEBI  side ONLY ONE KPI Which is non cumulated in nature is showing and other one which is cumulated nature is not showing
    For Ref purpose i have attached screen shoot
    1) First pic show KPI Is  cumulated in nature
    2) Second Pic KPI Is Non cumulated in nature
    3) third pic show on Webi side on that side only comulative  KPI is shown

  • LISTCUBE not showing any data with SAPKW70110

    Hi all
    we just upgraded our system from SAPKW70107 to SAPKW70110 and now do have the following problem:
    All InfoCubes containing non-cumulatives don't show any data anymore in transaction LISTCUBE.
    All the cubes did work fine before.
    What is curious is that some queries based on these cubes are working and at least showing some data (but not the correct data).
    We couldn't find anything in the notes so far..
    Anything we could do?
    Regards
    bivision

    Hi,
    You can use improvised listcube to display data. It can be created by taking help from the following link ;-
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/70e092a3-9d8a-2d10-6ea5-8846989ad405?QuickLink=index&overridelayout=true
    However you should raise this issue to SAP .
    Navesh
    Edited by: navsamol on Oct 11, 2011 8:17 PM

  • Certain PR is not showing in collective release ME55.

    Dear Experts
    My clients is experiencing one issue at the time of collective release of PR using T. Code ME55. Certain PR is not showing at the time of  executing  with  giving required input Release group and release code, however if the execution is done by giving input  Release group, release code and Purchase Requisition the same document is showing. can any one tell me the possible reason for the same. Why the PR is not displaying for release using release code and release group in ME55.
    Below Investigation has been done.
    1. For single line item single PR is created  through PS route using T.Code CJ20N.
    2. Account assignment for the PR is "Q" Project Make to Order.
    3. Line item not deleted for the same PR.
    4. Status showing as 03 In Release (In Status tab).
    5. in "Quantities/Dates" tab Closed check box in not activated.
    Regards
    Sanjib Naik
    Message was edited by: Sanjib Naik

    Hi Dev,
    By default system is taking "Sort Indicator 1" Sorting by Purchase requisition number & item. with the combination of  Release Code & Release Group.
    I have tried with giving input  Release Code, Release Group & Purchase Requisition Number
    10032658 & 10034951after executing the sysem is showing Only one PR Number i.e 10032658  with 2 line item.
    Here system is showing duplicate entry for PR. 10032658 of the first line item and ignoring to display the 10034951 details.
    Final conclusion is that, system is not showing last PR Number. Instead of that 2nd last PR is displaying with duplicate entry.Please see the screenshot.
    1. PR Number : 10034951 Delivery date is 30.08.2014 (Which is not Showing in ME55).
    1. PR Numebr:   10032658 Delivery date is 10.07.2015 (Which is showing in ME55)
    Thanks & Regards,
    Sanjib Naik

  • Dvt bargraph not showing proper data on x axis

    hi,
    I am using a <dvt:barGraph> on my jsff page. It reads data from the viewObject. On x axis, i have set the values as date. For the very first bar, it displays the date correctly in format 'dd-month-yyyy' but for all the subsequent bars, it just shows the date i.E. just 'dd'.
    can anyone help plz?
    code:
    <dvt:barGraph id="graph1" value="#{bindings.viewObject11.graphModel}" subType="BAR_VERT_STACK"
    inlineStyle="height:160px; width:100%;" seriesEffect="SE_GRADIENT"
    seriesRolloverBehavior="RB_HIGHLIGHT" threeDEffect="true"
    contentDelivery="immediate" imageFormat="PNG" >
    <dvt:background>
    <dvt:specialEffects/>
    </dvt:background>
    <dvt:graphPlotArea/>
    <dvt:seriesSet>
    <dvt:series/>
    </dvt:seriesSet>
    <dvt:o1Axis/>
    <dvt:y1Axis />
    <dvt:legendArea automaticPlacement="AP_NEVER"/>
    </dvt:barGraph>
    jdev version:11.1.1.4.0
    Edited by: user12333779 on Feb 10, 2012 9:30 PM

    Hi Abhishek,
    For your questions, please check the listed items as below:
    1. The Cumulative Flow Diagram shows the flow of the items on your backlog, and it will only show the last 30 weeks of data. You can check the links below for more information about cumulative flow diagram:
    http://blogs.msdn.com/b/visualstudioalm/archive/2006/01/12/511845.aspx
    http://adiws.blogspot.com/2012/04/scrum-for-team-system-product.html
    2. If you want to check the work item status work items in a particular period, seems it's not available for TFS 2012. You can use work item query with start date and finish date and then create a chart by the query if you use TFS 2013 Update 2 or above.
    Check this page
    for more information. 
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • ITunes does not show up on apple tv 1st gen.

    i have a 1st gen apple tv with the 160 gig HD. recently, it will not show the itunes site. Under teh movies tab there are my movies and trailers and that's it. Does anyone know how to get the itunes store back on apple tv?

    Known issue currently, you'll need to wait for the fix.

  • My downloaded text sounds do not show up under the sounds tab in settings after installing 8.1.1. can someone help me please?

    i downloaded a couple text tones and since installing 8.1.1, they will not show up under the sounds tab. in fact, they do not show up in my recent purchases on itunes, but when i go to buy them again, it says that i have already bought this tone. I just want to use the tones i paid for as the tones on my phone. not asking much.... thanks for the help. i hope someone can help me get the tones working. thank you.

    This was happening to me too but only for some of my songs. I have a mac so I dunno about PCs, but for most of my ringtones I had to create an ACC version in itunes to make them short enough then turn that into a m4r and those all worked fine. But if the song was already short enough and I didn't create an ACC version and just turned the original into a m4r, then it wouldn't appear in my itunes.
    so if you're on a mac:
    1. go to get info, options, pick when you want the song to start and end.
         Has to be pretty short to work, 30 second or less is good
         if it's already short enough that's fine
    2. right click and click 'create ACC version'
         a copy with the length you put in will appear, drag that into a folder or whatever and just type in m4r where m4a would be
         still make an ACC version even if it's the right length
    Hopefully this helps someone else.

  • Internet Streams in Playlists do not show up on Apple TV

    I use the following setup:
    - Apple TV MD199LL/A (Software 6.0.1) just updated to the latest
    - iTunes 11.1.3 for Windows (from a Windows 7 x64)
    - iTunes 11.1.3 for MAC (from a Apple MacBook Pro x64, Maverix)
    Homesharing is turned on both computers
    From both machines I share pictures, videos and music.
    All photos, videos and music files are getting displayed  on the Apple TV menu, and can be played.
    All iTunes playlists from both machines are  getting displazed on the Apple TV
    BUT!
    If a internet stream is added to a playlist, this entry does not show on the Apple TV menu.
    If the playlist contains only internet streams the Apple TV menu says "There are no songs in this library"
    If I hit the play key on my remote, it  will randomly play the first stream in the playlist (not realy reproducable pattern)
    I can play those streams in iTunes and send it via AirPlay without problems,
    Can anyone help me with this and tell me what I'm doing wrong?
    Thank you

    You can only view that rental on the iPad. For it to show up it has to be rented directly on ATV or through a computer and streamed via home sharing

  • When I sync my iPod to my MacBook through iTunes new events do not show up and old events are not deleted. I am using Snow Leopard  and not iSync.

    I am using Snow Leopard on a MacBook. I have an iPod touch 3G. I do not use iSync it Mobile Me. When I sync my iPod through iTunes new events on my iPod do not show up on my Mac and old events do not delete. I have read help instructions that include deleting the data on the iPod. The iPod has the correct data and the Mac does not so I have not followed those instructions. I need help as the only reason I bought the Mac was to be able to sync, back up, view and print my calendar. Currently it is useless. If only Apple could have learned from the elegance of the Palm software.

    Start here:
    iPhone, iPad, or iPod touch: Device not recognized in iTunes for Windows

  • Synced videos do not show up on iPod

    Every time I sync my iPod with iTunes, although iTunes says the videos are synced, they do not show up in the Video app on the iPod.
    This is a fairly new problem.  All these videos have been synced before and they all showed up just fine in the Video app, but as of late the iPod does not show them.  Searching for them yields no results.
    The videos are in a compatible format and do not have an extremely high definition.  Again, I do not think the problem is with the videos, because previously I was able to view them all just fine.
    I have at least 1G of memory left, 2G without syncing the videos.
    I have erased and re-synced them in iTunes, to no avail.  I can play the videos on the iPod from iTunes, but not on the actual iPod device.  I'm using windows iTunes, and it is up to date.  The iPod software is up to date.  I don't want to do a restore because I've already done that multiple times for multiple issues, but if that's what I have to do, I will. It's a pretty old iPod.  I'm syncing with a third-party Duracell cable, but I really don't think that's the problem.
    I'm not sure what it means, but in iTunes I have checked the option that reads, "Prefer standard definition videos".  Syncing with that option unchecked changes nothing so far as I can tell.
    Thanks for all your help!
    iPod Touch 4th Gen. 8G
    iOS 6.1.6
    1G free with videos, 2G free without
    iTunes for Windows 64-bit V12.1
    Duracell 30 pin to USB iPod cable

    Try:
    - DFU mode and then restore to factory settings/new iPod via iTunes                   
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    - Try with a new video

Maybe you are looking for

  • How to Call  fnd_submit.submit_program  in a custom Form ?

    Hi, Im creating a custom form based on TEMPLATE.fmb in Oracle EBS R12. I want to call a concurrent program (called: RVCTP) through trigger WHEN_WINDOW_CLOSED or WHEN_BOTTON_PRESSED whatever.. I'm using this function: fnd_submit.submit_program How i c

  • No Sound Quicktime

    I am having a rather odd issue with my macbook. I installed flip4mac on my machine to watch broadcasts which are in Windows Media Player. It is from this site: http://www.pm.gov.uk/output/page306.asp, it is quite boring without sound. Does anyone kno

  • Out Of Application Memory - Exporting - Urgent!!

    Hi, My name is Matthew and finished a 2hrs 1080p 30fps video but I am unable to export it with Final Cut Pro X... I have upgraded to 16GB RAM but it uses up all of th RAM and give me a error until it eats up all the RAM... any alternative way to expo

  • ITunes 8.0 invalid character message

    So today i decided to upgrade my itunes becasue every time i tried to do it in the past i was unable, automatically that is. So i did it manually today. First i swiped all of my old iTunes off my computer then tried downloading iTunes 8.0. the setup

  • Importing/Converting Problem

    When trying to import a CD into Itunes, I get an error message saying: "Error occurred while converting the file. You do not have the privileges to make changes." I am wondering whether anyone has had this issue and what can be done to correct it. An