In Report output, Missing Plan data with the Seletion option - Single Value input (more than 10 values)

Hi ,
I am running the Query (Actual Vs Plan) in the BEx Analyzer, with the input for the characteristic like Fiscal Year, Posting Period and Cost Center(20 Single value) it not comming up with the plan data - Actual data is coming up fine.
If i gave 10 or less than 10 inputs ( single values input in the selection - option ) for the characteristic COST CENTER it coming up with all the data (Both plan and Actual).  if the COST CENTER input values more than 10, it not coming up plan data (Actual data is coming)
Cost Center Variable is designed with an Authorization Variable.
Can any one please help me to know why plan data is getting miss when the input limit more than 10 (single values input in the selection - option) in the Cost Center Variable? 
An also could you please share that, What is the Max limit for the Single values and Range Value for an Selection - option in the BEx Variable.

A)    Hi ,
             In Report, I am having 2 variant.
1.   For one variant, i have saved the input values for both the Select Single values & Select range for the cost center.
8 Values in single & 4 Values in Ranges         
It coming up with data successfully.
2.    Another variant having input only for select single values for the COST CENTER, it contains 20 records (This variant also have restricted with the same values as above variant for COSTCENTER variable)
Fiscal year                         : 2012
Posting period                   : 8
Cost Center                        : 20 values in Single                                             (Here I have separated the range values into single)
It’s not coming up with plan data. 
B)   If I gave only first 10 values in the Single value, Output for both actual and Plan are coming up…………. If I gave the Second 10 value in the Single value and got the Output for both actual and Plan.
C)    I have also checked the following details of this query, 
Executed the query in RSECADMIN and checked the Authorization log as below,
Relevant Characteristics for Detailed Authorization Check  (Characteristics with Full Authorization Are Not Listed!)
  List of Effective Authorization-Relevant Characteristics for InfoProvider ZPCA_M36: 
List Is Empty:
  There Are No Characteristics That Have to Be Checked in Detail 
          2.  Checked the Single value input by iteration, 1 to 10, it retrieves data.  More than 10 like 11, 12 … is getting failed to pull plan data.
          3. checked the selection Value range by iteration and I gave the range value count up to 25        inputs, its works fine.
Thanks.
Regards,
Subashini.

Similar Messages

  • How to display data with the same text and key in the drop down list?

    Hi All,
    Would like so to seek for you advice on the above mention topic. How to display the data with the same text and key using function module 'VRM_SET_VALUES'. From my testing by writing a program, this function module will only show the text and key if both have different data. Please find the coding as below. Is the normal behaviour of this function module? How to overcome this problem? Thanks in advance.
    REPORT ZTESTING.
    TYPE-POOLS: VRM.
    DATA: NAME  TYPE VRM_ID,
          LIST  TYPE VRM_VALUES,
          VALUE LIKE LINE OF LIST,
          c(20) type c.
    *      c = 'select any'.
    data:begin of itab occurs 0,
          kunnr like kna1-kunnr,
          name1 like kna1-name1,
         end of itab.
    data:begin of jtab occurs 0,
          kunnr like kna1-kunnr,
          land1 like kna1-land1,
         end of jtab.
    PARAMETERS: p_list(20) AS LISTBOX VISIBLE LENGTH 20
                              default 'SELECT'.
    AT SELECTION-SCREEN OUTPUT.
    NAME = 'p_list'.
    VALUE-KEY = 'Name'.     "---> Data for key is the same with text
    VALUE-TEXT = 'Name'.    "--> Data for text is the same with key
    APPEND VALUE TO LIST.
    VALUE-KEY = '2'.
    VALUE-TEXT = 'Country'.
    APPEND VALUE TO LIST.
    CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    start-of-selection.
    select kunnr name1 up to 20 rows from kna1 into table itab.
    select kunnr land1 up to 20 rows from kna1 into table jtab.
    case p_list.
    when '1'.
    loop at itab.
    write:/ itab-kunnr,itab-name1.
    endloop.
    when '2'.
    loop at jtab.
    write:/ jtab-kunnr,jtab-land1.
    endloop.
    endcase.
    <Added code tags>
    Moderator Message: Please use the "code" tags to format your code snippet.
    Edited by: Suhas Saha on Nov 17, 2011 11:19 AM

    shawnTan wrote:
    Hi All,
    >
    > Would like so to seek for you advice on the above mention topic. How to display the data with the same text and key using function module 'VRM_SET_VALUES'. From my testing by writing a program, this function module will only show the text and key if both have different data. Please find the coding as below. Is the normal behaviour of this function module? How to overcome this problem? Thanks in advance.
    >
    >
    REPORT ZTESTING.
    >
    > TYPE-POOLS: VRM.
    >
    > DATA: NAME  TYPE VRM_ID,
    >       LIST  TYPE VRM_VALUES,
    >       VALUE LIKE LINE OF LIST,
    >       c(20) type c.
    >
    > *      c = 'select any'.
    >
    > data:begin of itab occurs 0,
    >       kunnr like kna1-kunnr,
    >       name1 like kna1-name1,
    >      end of itab.
    >
    > data:begin of jtab occurs 0,
    >       kunnr like kna1-kunnr,
    >       land1 like kna1-land1,
    >      end of jtab.
    >
    > PARAMETERS: p_list(20) AS LISTBOX VISIBLE LENGTH 20
    >                           default 'SELECT'.
    >
    > AT SELECTION-SCREEN OUTPUT.
    >
    > NAME = 'p_list'.
    >
    > VALUE-KEY = 'Name'.     "---> Data for key is the same with text
    > VALUE-TEXT = 'Name'.    "--> Data for text is the same with key
    > APPEND VALUE TO LIST.
    >
    > VALUE-KEY = '2'.
    > VALUE-TEXT = 'Country'.
    > APPEND VALUE TO LIST.
    >
    > CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    >
    > start-of-selection.
    > select kunnr name1 up to 20 rows from kna1 into table itab.
    > select kunnr land1 up to 20 rows from kna1 into table jtab.
    >
    > case p_list.
    > when '1'.
    > loop at itab.
    > write:/ itab-kunnr,itab-name1.
    > endloop.
    >
    > when '2'.
    > loop at jtab.
    > write:/ jtab-kunnr,jtab-land1.
    > endloop.
    > endcase.
    >
    > <Added code tags>
    >
    > Moderator Message: Please use the "code" tags to format your code snippet.
    >
    > Edited by: Suhas Saha on Nov 17, 2011 11:19 AM
    This surely seems to be a bug to me(if not by design),  did you check for any SAP notes? Perhaps a front end trace can help(Note 407743) !
    -Rajesh.

  • Download alv report output to excel format with out header line

    Hi experts,
    i want to download a alv report output into excel formatt with out the header line but it has to download including field description. as this output will fed into another transaction, the downloaded excel file should be with out header line.
    fro eg:
    Report   : Zabc                      ABAP Development          Page  :     1
    Run Date : 12/14/06                                                     System: UD400 
    Run Time : 08:45:37
    this header details should not be downloaded into the excel file.
    could somebody help me please.
    thanks
    deepu

    hi jayanti,
    thanks for your response.
    i have delclared all the field types as character but still it is not downloading and it 's sy-subrc is 4... the code is as below.
    *field names
      lt_fieldnames-value = 'Material Number'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'Plant'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'Material Group'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'Material Description'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'UOM'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'Price Unit'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'Material Type'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'X-Plant Status'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'Valuation Class'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = lw_avmng.
      APPEND lt_fieldnames.
      lt_fieldnames-value = lw_avntp.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'Latest PO Qty'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'Latest PO Cost'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'PO Creation Date'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = lw_fcaqt.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'Prev. Yr. Std. Cost'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = lw_stcst.
      APPEND lt_fieldnames.
      CALL FUNCTION 'MS_EXCEL_OLE_STANDARD_DAT'
        EXPORTING
          file_name                       = 'XLSHEET'
        CREATE_PIVOT                    = 0
        DATA_SHEET_NAME                 = ' '
        PIVOT_SHEET_NAME                = ' '
        PASSWORD                        = ' '
        PASSWORD_OPTION                 = 0
        TABLES
        PIVOT_FIELD_TAB                 =
          data_tab                        = t_output1
          fieldnames                      = lt_fieldnames
        EXCEPTIONS
          file_not_exist                  = 1
          filename_expected               = 2
          communication_error             = 3
          ole_object_method_error         = 4
          ole_object_property_error       = 5
          invalid_pivot_fields            = 6
          download_problem                = 7
          OTHERS                          = 8
      IF sy-subrc <> 0.
        MESSAGE e001 WITH 'Data could not be downloaded'.
      ENDIF.
    ENDFORM.                               " z_dwn_xl
    thanks
    deepu

  • Grr1 report using GP12N plan data

    Hi Gurus,
    Is it possible to use GRR1 report and get plan data entered in GP12N in the report???If yes, please tell me know??
    Or best is to enter plan data in cost center and profit center accounting and create grr1 report???
    Please suggest.
    Thank You

    Dear Mr. Hari,
    Thank you for your information. I have defined the Notification in the key field and the Equipment in the data field of the DSO- since i want them as free characters.
    Now based on whatever help you have provided can i remove the Notification and the Equipment from the key and data fields respectively and will this solve my problem.
    My doubt is suppose if i remove them from the key and data fields, will i have the option of having them as free characters - because users want to drill down based on these fields for further analysis.
    Hope you will clarify my doubts and help in resolving my problem.
    Regards,
    M.M

  • How to do the ALV report output in groups and caluculate the tOTALS(URGENT

    Hi
    In my ALV report output .I have to group the output based on the DAYS field
    0-10 days in one group
    10-30 days in one group
    above 30 days one group
    There is also a field by name "AMOUNT" in my output.
    I have to calculate SUBTOTALs at the end of every group and at the end of the report i should caluculate GRAND TOTAL.
    Please remember that i should not use any any BLOCKED ALVs and for Totals i should not use the SYMBOLS provided in the application toolbar of the report
    Thanks in Advance

    Please don't repost your questions...
    Check out my answer in your other post.
    How to make the ALV report in groups  and caluculate the TOTALS
    Regards,
    Naimesh Patel

  • App-V PowerShell: Script to Query XenApp Servers for App-V Publishing Errors and Output an Excel Document with the Results

    Please Vote if you find this to be helpful!
    App-V PowerShell:  Script to Query XenApp Servers for App-V Publishing Errors and Output an Excel Document with the Results
    Just posted this to the wiki:
    http://social.technet.microsoft.com/wiki/contents/articles/25323.app-v-powershell-script-to-query-xenapp-servers-for-app-v-publishing-errors-and-output-an-excel-document-with-the-results.aspx

    Hi petro_jemes,
    Just a little claritification, you need to add the value to the variable "[string]$ou", and also change the language in the variable "$emailbody" in the function "Get-ADUserPasswordExpirationDate".
    I hope this helps.

  • HT201359 Why the ISTORE of Malta is not up to date with the latest movies and series like the UK & USA and why old movies are being uploaded .

    Why the ISTORE of Malta is not up to date with the latest movies and series like the UK &amp; USA and why old movies are being uploaded .
    I believe the apple should be universal in all the products and a small island like Malts should have the same products for sale on ISTORE like of the UK and USA.

    The iTunes and App stores are inherently different in different countries.  Local laws on copyright and other limits on the distribution of intellectual property make it impossible for Apple to simply put everything in every store.  Sometimes, the owner of the intellectual property does not allow it to be distributed everywhere.  Keep in mind that Apple does not own the music, books, movies and such that they allow for sale in their store front, so they do not necessarily have any say in what may, or may not appear in what store.

  • If i associate my apple id with another email will i lose my icloud data or i will still be able to access all my stored data with the new linked to my apple id email address?

    hi there
    if i associate my apple id with another email will i lose my icloud data or i will still be able to access all my stored data with the new linked to my apple id email address?
    i mean i am not signing up for a new account, just changing my old id primary email which is my apple id login into account.
    in other words, www.icloud.com will recognize that it is still me if i login on the site? will i be able to see there all my stored information?
    and if i change my password, does it automatically changes the @icloud.com password which should be the same as my apple id pass?
    thanks

    After opening the email it shoud of had you enter the Apple ID and password. Using certian web browser's can cause errors. You can adjust securty settings (big pain) or you use another browser. Using Firefox or Safari should do the trick.
    Let me know if using Firefox or Safari resolved it.

  • How to get the exact day date with the another date field?

    Hi,
    Please help me how to get the specific day of the week's date with the help of another date field.
    Actually , one field(week_day) has 1,2,3,4,5,6,7 here 1--MON,2-- TUE like that.
    another field has the date. based on that date, we have to go to that particular week and need to pick up the date by the above week_day. It should be in that week itself.
    Thanks in advance!!
    Regards,
    Vissu...
    Edited by: vissu on Oct 29, 2010 3:07 AM

    Hi,
    Something like this
    SELECT TRUNC(<DATE_COLUMN>,'DAY')+<WEEK_NO_COLUMN> FROM <YOUR_TABLE>;for the particular week of the date
    SELECT TRUNC(SYSDATE,'DAY')+<WEEK_NO_COLUMN> FROM <YOUR_TABLE>;for the current week
    cheers
    VT

  • Enable the extension to keep chrome bookmarks up to date with the safari bookmarks on your iphone

    on my laptop icloud comes up and tells me i need to enable the extension to keep chrome bookmarks up to date with the safari bookmarks on your iphone! if someone could help me i would be grateful !!

    Once you click "get new recovery key" all data on your sync account is erased forever. There is no way to get that back. If you have data on your iPhone you cannot move it from your iPhone to desktop Firefox. the iPhone sync is 1-way only. Unless you have a Firefox profile somewhere, you will ahve to manually rebuild your bookmarks.

  • HT4623 Why will my Iphone 4 not connect to internet on wifi nor data with the ios 6.1 update?

    Why will my iphone 4 not connect to the internet on wifi nor data with the ios 6.1 operating system?

    Settings > General > Reset > Reset Network Settings

  • How to get  data with the raw pattern from resultset ?

    would you tell me how to get data with the raw pattern from resultset ?
    thank you in advance!
    longgger2000

    I tried getBytes() and getObject()
    , but I can not get the right result , for example the
    data in oracle database is 01000000DFFF, when In used
    the method of getBytes() and getObject(), I get the
    result of [B@1c2e8a4, very different , please tell me
    why !
    thank you
    longgger2000
    [B is byte arrayseem that it return an bytes array for you.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Help tells me that i am up to date with the latest version BUT the firefox start link tells me i am NOT on the latest version. what is going on?

    help tells me that i am up to date with the latest version BUT the http://www.google.co.uk/firefox?client=firefox-a&rls=org.mozilla:en-GB:official link tells me i am NOT on the latest version. what is going on?.
    also:
    please can sync also copy my addons too?

    Firefox is a web browser not a homepage.
    It sounds like you you have the old www.google.com/firefox/ start page that used to be the default homepage in Firefox before Firefox 4.0 sometime. It is not being maintained by Google anymore so either ignore the message or while in Firefox go to Tools->Options->General->Homepage section and change your homepage.

  • What does "Always stay up to date with the latest photography innovations from Adobe" mean ?

    Hello,
    I'm considering buying Lightroom 6 standalone version, but I wonder what the fact that "Always stay up to date with the latest photography innovations from Adobe" isn't available means ?
    Will the standalone version be updated for free with new camera support ?
    Will the standalone version be updated for free with defects correction ?
    If there are new functionalities (lightroom minor version), won't they be available for standalone version before the next major version ?
    Thanks for your help

    My understanding is that LR6 will continue to receive bug fixes and new camera support updates, but not any new functionality/features that LRCC receives. See question 2 at the bottom on this post: Lightroom CC/Camera Raw FAQ

  • Cannot build a flow graph with the customized options

    Dear JMF-Gurus,
    we implemented a DataSource for video capturing that is based on the lti-civil API, so that video capturing on Mac OS X should be possible.
    When we try to build the flow graph, we get an jmf-error as described in the following log:
    # JMF Version 2.1.1e
    ## Platform: Mac OS X, ppc, 10.4.9
    ## Java VM: Apple Computer, Inc., 1.5.0_06
    ## DataSource created: net.sf.fmj.media.protocol.civil.DataSource@a76306
    $$ Profile: instantiation: 30 ms
    ## Processor created: com.sun.media.processor.unknown.Handler@21ec03
    ## using DataSource: net.sf.fmj.media.protocol.civil.DataSource@a76306
    $$ Profile: parsing: 377 ms
    ## Getting the supported output formats for:
    ## RGB, 176x144, FrameRate=10.0, 24-bit, Masks=3:2:1, PixelStride=3, LineStride=528
    ## # of nodes visited: 50
    ## # of formats supported: 38
    $$ Profile: getSupportedOutputFormats: 340 ms
    ## Building flow graph for: civil:?
    ## Building Track: 0
    ## Input: RGB, 176x144, FrameRate=10.0, 24-bit, Masks=3:2:1, PixelStride=3, LineStride=528
    ## Custom options specified.
    ## An output format is specified: YUV Video Format: Size = null MaxDataLength = -1 DataType = class [B yuvType = 2 StrideY = -1 StrideUV = -1 OffsetY = -1 OffsetU = -1 OffsetV = -1
    ## An output content type is specified: RAW
    ## Here's the completed flow graph:
          com.sun.media.parser.RawBufferParser@a075e6
             connects to: com.sun.media.codec.video.colorspace.JavaRGBToYUV@9c61d3
             format: RGB, 176x144, FrameRate=10.0, 24-bit, Masks=3:2:1, PixelStride=3, LineStride=528
          com.sun.media.codec.video.colorspace.JavaRGBToYUV@9c61d3
             connects to: com.sun.media.multiplexer.RawBufferMux@da7565
             format: YUV Video Format: Size = java.awt.Dimension[width=176,height=144] MaxDataLength = 38016 DataType = class [B yuvType = 2 StrideY = 176 StrideUV = 88 OffsetY = 0 OffsetU = 25344 OffsetV = 31680
    $$ Profile: graph building: 113 ms
    $$ Profile: realize, post graph building: 9 ms
    $$ Profile: instantiation: 0 ms
    ## Processor created: com.sun.media.processor.unknown.Handler@654dec
    ##   using DataSource: VIC.MonitorCDS@e0c0b6
    $$ Profile: parsing: 1 ms
    ## Getting the supported output formats for:
    ##   YUV Video Format: Size = java.awt.Dimension[width=176,height=144] MaxDataLength = 38016 DataType = class [B yuvType = 2 StrideY = 176 StrideUV = 88 OffsetY = 0 OffsetU = 25344 OffsetV = 31680
    ##   # of nodes visited: 48
    ##   # of formats supported: 37
    $$ Profile: getSupportedOutputFormats: 97 ms
    ## Building flow graph for: null
    ## Building Track: 0
    ## Input: YUV Video Format: Size = java.awt.Dimension[width=176,height=144] MaxDataLength = 38016 DataType = class [B yuvType = 2 StrideY = 176 StrideUV = 88 OffsetY = 0 OffsetU = 25344 OffsetV = 31680
    ## Custom options specified.
    ## An output format is specified: H263P/RTP, 176x144, FrameRate=10.0
    ## An output content type is specified: RAW/RTP
    XX Failed to realize: com.sun.media.ProcessEngine@8393ef
    XX   Cannot build a flow graph with the customized options:
    XX     Unable to transcode format: YUV Video Format: Size = java.awt.Dimension[width=176,height=144] MaxDataLength = 38016 DataType = class [B yuvType = 2 StrideY = 176 StrideUV = 88 OffsetY = 0 OffsetU = 25344 OffsetV = 31680
    XX       to: H263P/RTP, 176x144, FrameRate=10.0
    XX       outputting to: RAW/RTP
    XX Error: Unable to realize com.sun.media.ProcessEngine@8393ef
    ## com.sun.media.BasicFilterModule@31477b: input format changed: RGB, 640x480, 24-bit, Masks=3:2:1, PixelStride=3, LineStride=1920
    We guess that the problem was first the wrong input format (wrong video-size or wrong framerate) but this has been changed to the correct format.
    The flow graph looks like correct, but it doesn't work anyway. 
    What does the last line in the log means, and are there any information were the problem good be located?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    How were you even able to accomplish that? In my classpath I have fmj-nojmf.jar, jmf.jar and lti-civil.jar but I keep on getting this in my log.
    # JMF Version 2.1.1e
    ## Platform: Mac OS X, i386, 10.5.4
    ## Java VM: Apple Inc., 1.5.0_13
    ## DataSource created: com.sun.media.protocol.javasound.DataSource@f98d58
    I can't get it to find the civil datasource in fmj-nojmf.jar.

Maybe you are looking for