Document Summary, wrong values displayed for not persistent prompt

Some prompt values displayed on the document summary portion of the document properties area are displaying incorrect values.
It looks like non persistent prompts are showing the  value of the prompt listed just before the non_persistent prompt, instead of the value entered by the user.
eg: persistent prompt 'enter code', user enters 1234
non persistent prompt 'enter date', users enters 1/2/2008
display in document summary:
code - 1234
date  - 1234
Is this a known issue with Webi? I imagine it is not an issue with the report, but if so, please let me know if there is something I can do to correct it.
Thanks!

HI Nilanjan,
Thanks for your suggestions but i do not have any data in Apshell to test if it is being displayed correct or not.
Please advice me further.
Regards,

Similar Messages

  • Wrong photo displaying for sender of iMessage

    Wrong photo displaying for sender of iMessage .Contact information says another contact is "ME,"  it says ME next to anther contact, but it is not me. They are not signed in in icloud. I am signed in. So I do not understand

    As per my post above, I believe the fix to be:
    "When I got to General, I worked my way down the list and imagine my surprise when I found Siri of all things had her name down against it and not mine.  Lo and Behold, when I changed this to my name and returned to iMessage, my photo now displayed against my replies.
    So, if you have someone else's photo showing on your iMessage replies I strongly recommend you look at Settings > General > Siri first!"
    Hope this helps Roger.

  • Wrong data values displayed for YTD in reports

    Hi,
    In my reports when i try to select measures as YTD, eg. March 2010 YTD, i get wrong values for entities. But, apart from YTD, i get absolutely correct values if i select measures as anually, quarterly or monthly.
    I have checked ISBEGINNING property in time dimension and assigned values as 0 and 1 for the respective values. I have also checked if i have any wrong statements in dbo.measureformula in SQL server Management studio which might give wrong calculations but could not find any.
    Please guide me through.
    Many thanks in advance.
    Regards,
    Poonam

    HI Nilanjan,
    Thanks for your suggestions but i do not have any data in Apshell to test if it is being displayed correct or not.
    Please advice me further.
    Regards,

  • Asset explorer -Wrong value displayed after retirement of an asset.

    Hi All,
    We have posted a settlement from AUC to Assetas 30.11.2009 .The amount settled is a negative amount (-100) .The asset value  is  for ex : Rs100 and after settlement the asset value is Rs 90.
    Then we had made retirement to that asset  of Rs 10(positive value) using tcode FB01 and TTY 20A.Then the asset value should reflect as Rs 100 again.
    I am not sure why the system now displays asset value as Rs 100 +Rs 10(retirement - positivevalue) = Rs 110 as asset value.
    However system should do Rs100 +(Rs -10) +Rs10=Rs100 as asset value in asset explorer.However it displays amount as Rs 110.
    Please advice where do i correct to get the values displayed correctly in asset explorer.
    Regards
    Rekha

    hi
    first implement notes 988238, then please recaculate the values.
    Blaz

  • AT SELECTION-SCREEN ON VALUE-REQUEST FOR not input value in input field

    Dear All,
    I make search help for field ARBPL in selection screen are not excepted selected value.
    Code is
    SELECT-OPTIONS:  p_arbpl FOR zdmde-arbpl MODIF ID two.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_arbpl-low.
    REFRESH sh_arbpl.
    SELECT * from crhd into CORRESPONDING FIELDS OF TABLE sh_arbpl.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
       EXPORTING
         RETFIELD               = 'P_ARBPL'
         DYNPROFIELD            = 'P_ARBPL'
         VALUE_ORG              = 'S'
       TABLES
         VALUE_TAB              = sh_arbpl.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_arbpl-high.
    REFRESH sh_arbpl.
    SELECT * from crhd into CORRESPONDING FIELDS OF TABLE sh_arbpl.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
       EXPORTING
         RETFIELD               = 'P_ARBPL'
         DYNPROFIELD            = 'P_ARBPL'
         VALUE_ORG              = 'S'
       TABLES
         VALUE_TAB              = sh_arbpl.
    Please tell how to input selected field from search help into input field in both low and high.
    Would appreciate your reply .
    Regards,
    Pooja

    Hi Pooja,
    For getting the response back from the user selection , please get the return code too. Before that instead of directly using the table crhd structure.. please do create a type declaration of that table , make sure that the field that you wanted to get using search help be specified at last of declaration type like this
    TYPES: BEGIN OF ty,
       OBJTY TYPE CR_OBJTY,
            ARBPL TYPE ARBPL,
    END OF ty.
    this is because the return parameter t_rtn will holds the last value of type which been selected by user.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          RETFIELD               = 'P_ARBPL'
          DYNPROFIELD            = 'P_ARBPL'
          VALUE_ORG              = 'S'
        TABLES
          VALUE_TAB              = sh_arbpl
          return_tab             = t_rtn.
    LOOP AT  t_rtn INTO x_rtn .
       ENDLOOP.
    try executing this code.
    TABLES crhd.
    TYPES: BEGIN OF ty,
       OBJTY TYPE CR_OBJTY,
            ARBPL TYPE ARBPL,
       END OF ty.
    DATA: sh_arbpl TYPE TABLE OF ty.
           DATA: dynpfields TYPE TABLE OF DYNPREAD,
    x_dynpfields TYPE dynpread,
    t_rtn TYPE STANDARD TABLE OF DDSHRETVAL ,
    x_rtn TYPE  DDSHRETVAL.
    SELECT-OPTIONS:  p_arbpl FOR crhd-ARBPL MODIF ID two.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_arbpl-low.
    REFRESH sh_arbpl.
    SELECT  * from crhd into CORRESPONDING FIELDS OF TABLE sh_arbpl WHERE werks eq '1000'.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          RETFIELD               = 'P_ARBPL'
          DYNPROFIELD            = 'P_ARBPL'
          VALUE_ORG              = 'S'
        TABLES
          VALUE_TAB              = sh_arbpl
          return_tab             = t_rtn.
    LOOP AT  t_rtn INTO x_rtn .
       ENDLOOP.
    x_dynpfields-fieldname = 'P_ARBPL-LOW' .
       x_dynpfields-fieldvalue = x_rtn-fieldval.
       APPEND x_dynpfields TO dynpfields.
       CALL FUNCTION 'DYNP_VALUES_UPDATE'
         EXPORTING
           dyname                     = sy-cprog
           dynumb                     = sy-dynnr
         TABLES
           dynpfields                 = dynpfields
    *   EXCEPTIONS
    *     INVALID_ABAPWORKAREA       = 1
    *     INVALID_DYNPROFIELD        = 2
    *     INVALID_DYNPRONAME         = 3
    *     INVALID_DYNPRONUMMER       = 4
    *     INVALID_REQUEST            = 5
    *     NO_FIELDDESCRIPTION        = 6
    *     UNDEFIND_ERROR             = 7
    *     OTHERS                     = 8
    Regards,
    Sivaganesh

  • Documents of Record doesnt display for all employees inCustom Responsiblity

    Hi
    I have created custom responsibility with function of Documents of Record. I have enabled the Passport and Visa Information under this custom responsibility, it is not displaying the icon fro searching employees, default it is showing the same employee Passport and Visa Information.
    If i log in with UAE HRMS Manager, it is displaying the Search button for all employees where as new custom responsibility is displaying only one employee.
    Can you please guide on this.
    Regards
    Arjun
    [email protected]

    I haven't done any work related to IP-camera. So, sorry I can't help you with
    reading images from IP camera and generating a movie. But I guess, you might
    find a solution in some posts of this forum or if I remember correctly,
    in the book "Killer Java Games", there's a chapter discussing this issue
    of making movies in Java.
    I just happened to work on a project that requires reading images from
    a MJPEG stream. Unfortunately, it is a commercial project and I'd be very
    unprofessional if I expose some code of that project here even though
    I wrote the code myself. Anyway, I used a algorithm similar to what you
    guys did in this thread ((I implemented it abit differently, though)
    http://forum.java.sun.com/thread.jspa?threadID=494920&start=0&tstart=0
    One thing I noticed is that after I read the first image successfully, there were
    still some data, which I haven't got time to investigate what kind of data they
    are, before I encountered the boundary between successive images and other
    customized header lines. So after reading an image, I just read each line of
    data and check if it starts with the boundary string. If I got to the boundary,
    then I start to read (and remove other header lines) before I start reading the
    next image. Again, similar to the post mentioned above, this method
    requires you read the server manual (or print out the boundary and header
    lines in case you don't have such document available). But it does give you
    easy access to custom header lines.
    Alternatively, you can detect the start of the raw JPEG data like one guy in the
    above post did.
    Good luck, mate!

  • Wrong period displayed for current period in HR Report Category

    Dear Friends,
    I have used HR report category (X_M00002) in my program that only shows two options (radiobutton) for period selection:
    1. Current Period
    2. Other Period
    Problem is that when I select current period and press enter key it takes 01.2006 (i.e. 01.04.2006 to 30.04.2006) instead of current period 01.2010.
    What could the possible error be?
    Regards,
    Amit

    Hi Amit
    The current period will not be set based on the current calendar month and year. The current period will be based on the current period for the payroll area which you have entered. You can check the current period of a given payroll area from the transaction PA03.
    Hope this answers your question.
    Regards
    Ranganath

  • Wrong GB displayed for number of songs

    I have an iPod mini and have always had about the same songs on my itunes and iPod. Ever since I recently updated my iTunes, it changed the number of total GB. I have always been able to fit these songs (958 songs) on my 4.0 GB iPod mini, but now iTunes says that the 958 songs are 6.67 GB, so they do not fit on my 4.0 GB iPod. Why did this suddenly change and can I fix it?

    Go to View, and click on Show Status Bar

  • Webi displays null and wrong values after BW upgraded to SP6

    Hi,
    Webi report retrieves blank values after BW Backend upgraded to SP6.
    We were on SAP EHP 1 for SAP Net Weaver 7.0 and SP4. On the BO side we are on BO XI R/3 FP 2.1.
              Once we add new filters to a simple webi query the webi displays the null values for the characteristics which already exist in the report and more ever wrong values displayed for few columns. We have checked the MDX query in BW by using 'MDXTEST' and the results are good.
            It looks like that it is a rendering issue in Webi side and exactly no idea...
    Can anybody know how to fix the issue or any SAP notes exists for resolving this?
    Thank you,
    Regards,
    Satya

    Hi Ingo,
    We are also facing the same issue that satya is facing.
    We have developed the reports in BO XI 3.1 SP2 FP2.1 and SAP BW 7.01 EHP1 which was running correctly and showing the right result.
    But we upgraded the BW system to SAP BW 7.01 SP6 and check the WebI reports which was showing the unexpected results. ( instead of n rows it shows only 1 row for any query without dimension values)
    So we upgraded the BO sys to BO XI 3.1 SP2 FP 2.6 and checked the result but no luck with that also.
    The workaround i found is i must need to add the Node objects from the universe in the Query which are also used in the query filter of Web Intelligence. But this is not reliable as we need to change all the developed queries.
    We have also tried to perform the things shown in the notes but no MDX trace is enabling.
    Please let me know if there is any other solution.

  • Use of Official Document number in VAT Books for Italy

    Dear All,
    I would like to share with you a big doubt I have regarding the use of Official Document Number in the VAT Books. This is a requirement for an Italian client.
    According to my clients requierement they would like to manage 5 different VAT Books:
    1. Sale book (for all finished products sold in Italy, EU and outside EU)
    2. Sale book for sundry sales (CAPEX, services, other goods ...)
    3. Purchase book (for all the goods bought in Italy and out-side EU and for all the services bought in Italy)
    4. EU purchase book (for all the goods and services bought from EU suppliers and for all the services bought from not EU suppliers)
    5. EU sale (reverse charge) book (with the same numbers and amounts of the purchase book number 4)
    For every VAT Book they want the Officil Document number to be displayed. Not only that, they want the Official Document Number to end in 1 (XXXXXXX1) at the start of every natural Year for EVERY VAT Book, and have sequential numbering with no gaps.
    My intention is to use: RFKKITVATM. This is a specific VAT report for Italian Companies. The report selects documents that contain regular VAT and that have been assigned an Official Document number (ODN). You run this report to generate such a list for the current month. It selects documents with an ODN based on the invoice or credit memo posting date. You can create as many layout-variants (one per VAT Book??).
    My question is: The VAT Books are based on different VAT Codes. How can we have every single VAT Book to start with an Official Document number ending in 1? The number range will be Document type dependant and not VAT Code dependant.
    As per my knowledger, To use Official Document Numbering (ODN) in Italy we have to make a number of settings:
    - Activate ODN
    - Specify which document types the system is to assign official document numbers to.
    - Assign installation-specific function modules to events
    - Define Number ranges
    Have you faced up a similar requirement? Is this a legal requierement or is my client mixing up with another legal requierement related to this subject:  To print a sequential number and the fiscal year on each page of the reportu2019s output list. The System starts the numbering automatically at 1, as it does for each subsequent year.
    Many thanks in advance for your help.

    Hello All,
    Am facing an issue when implementing the ODN solution for Italy. I cannot replicate the ODN in field BKPF-XBLNR_ALT when posting Invoice via MIRO.
    1. I have Defined a Document Class per VAT Book
    2. I have Assign a Document Class to Document Types (in my example Document Type "RE" to Document class "43". And select "Generate Official Document Number, with date control".
    3. I have mantained Number ranges
    4. I have Assign the Number ranges to Document Class.
    5. In order to transfer the ODN from Billing docs to Accounting docs I have entered the Document Type "RV" at Billing Document Type level.
    It all works as expected except for the Accounting documents coming from Logistic Invoice verification - MIRO transaction. Document Type "RE" is used for posting but my field BKPF-XBLNR on Accounting document remains blank.
    Is there any additional step am missing?
    Thanks in advance.
    Regards,

  • Cost in document currency is displaying wrong values

    Hi Experts,
    We have observed for some of the documents in VF03, cost is coming wrong.
    Scenario :
    When we are going to VF03 screen Cost in document currency is some value, when we click on the material and go to condition tab and then come back to previous screen, Cost in document currency is some other value.
    For Ex : For Billing Document A, intially Cost - 1000 when we clikc on the material and go to condition table and then come back, then the cost - 500.Document type is Z document type. For only some documents we are getting this kind of error.
    Kindly help me on this.
    Thanks and Regards,
    Zakir Appas A

    Hi kavi,
    Purge your cache in rpd and try to see the grand total once again. For me data is displaying properly now.

  • Values not getting displayed for members which doesnt have parents

    Hi
    I created a product dimension with 4 levels .For members which doesnt have parents,data is not getting displayed in JavaClient.
    The values for members which doesnt have parents are getting displayed in the view created for the measures which are dimensioned by Product .I mapped the same view in the CWM2 work space ,but value is not getting displayed for members which doesnt have parents ,but values are getting displayed for members which have parents for measures.
    Is it a bug , we were able to do it in Express ..
    Can anybody help us in doing this.??
    Thnx in Advance......

    Hi,
    This assumes that the members which do not have parents are mapped to the top level in the hierarchy. If they are at a level below the top level then they are not part of the hierarchy and therefore would not be displayed. So this sounds like expected behaviour.
    Hope this helps
    BI Beans PM Team
    Oracle

  • Rate and accessable value is not displaying for the tax invoice output

    Hello All,
      Rate and accessable value is not displaying for the tax invoice output. Rest of all outputs for invoices shows Rate and accessable value.
    Scenerio is free of charge sales order (samples) removing the goods from pant so excise invoice has been created and also updated. but for tax invoice out put rate and access value is not displaying.
        Pricing procedure: In pricing procedure account keys have not been maintained because there is not gl account upadation during billing for free of charge delivery.
    Thanks & Regards,
    ramesh

    hi Gurpreet,
    You can add values to that transient column programatically,either by getiing the row from the iterator and then row.setAttribute('Column_name','Value');
    Or providing value to it in the SQL...

  • In SFP transaction , when i press layout buton , give me error 'Direct display for documents not activated'

    in SFP transaction;
    when i press layout buton , it give me an error.
    SOFFICEINTEGRATION020
    'Direct display for documents not activated'

    Yes i installed .
    One of our product systems , i take  this error but  another one it works correctly . 

  • MSN Messenger uses wrong inbuilt webcam for video chat on triple screen set up. It uses a cinema display webcam not the iMac webcam.

    For some strange reason if i attach my 2  apple cinema displays to my iMac to make a triple  screen set up msn messenger video chat does work but it uses the apple cinema display inbuilt webcam and not the iMac webcam. Its annoying as i have to turn sideways to get into the video call view.
    So i have  a set up like this: an apple cinema display thunderbolt, then in the middle an iMac new then to the right of the iMac another apple thunderbolt cinema display. WWhen i use MSN messenger to make a video call it uses the inbuilt webcam on the far right apple thunderbolt cinema display and not the inbuilt webcam in the iMac in front of me, its annoying any ideas please.
    If i unplug both side cinema displays MSN messenger uses the inbuilt camera on the iMac like normal but when  i use extra screens it uses the webcam built into those and not the iMacs webcam.

    I would try with another client like skype or something
    and if it's only msn messanger which have the problem it may
    be more of a question for ms's forum?

Maybe you are looking for