Issue: Comments not showing correctly on iPhone

Hi,
Please fix the below issue on iPhone App.
Summary:
If there is a long comment it only shows some of it on the iPhone. Viewing the comment on the iPad allows you to see the whole comment.
Details:
If the comment is medium length, you can tilt the phone and thereby see it all. If the comment is very long, it only shows a certain number of lines and you'll then have to view it on the iPad to see read it all.
Thanks,
Kasper

Hi Kasper
This is a bug in the iphone version of revel that we found recently. We have this logged and are looking into it. Sorry for the inconvenience and thanks for reporting it.
Pattie

Similar Messages

  • APD issue, Data not showing correctly in APD.

    Hi All,
    Please guys help me with this APD issue that I am facing.
    There is an APD created whose target is a file and with one routine. Here the purpose of the routine was mostly just to sequence the fields the way I want them, and only to show certain ones, also to delete all KF that are zero.(which is commented out).
    No matter what I do, it always gets data which has the key figures as all zeros.  I put some code in there to delete the data which is all zeros but commented it out, because otherwise then it writes zero records.
    The code part which delete all KF that are zero is commented out. Now we are getting the file data with commented code and without commenting code same.
    The thing is, in Bex the query from which we are fetching data is showing proper data with zeroes as well as KF with values. But the same APD is showing only the data whose KF's are zeroes.
    I am pasting the routine here:
    REPORT RSAN_WB_ROUTINE_TEMP_REPORT .
    TYPES: BEGIN OF y_source_fields ,
             COUNTRY TYPE /BI0/OICOUNTRY ,
             SALESORG TYPE /BI0/OISALESORG ,
             /BIC/ZFCSTGRP TYPE /BIC/OIZFCSTGRP ,
             PLANT TYPE /BI0/OIPLANT ,
             MATERIAL TYPE /BI0/OIMATERIAL ,
             FISCPER TYPE /BI0/OIFISCPER ,
             KYF_0001 TYPE /BIC/OIZBAS_FCST ,
             KYF_0002 TYPE /BIC/OIZTUN_QTY ,
             KYF_0002_UNIT TYPE MEINS ,
             KYF_0003 TYPE /BIC/OIZCOR_FCST ,
             KYF_0004 TYPE /BIC/OIZTOT_FRCT ,
             KYF_0005 TYPE /BIC/OIZTER_TFCT ,
           END OF y_source_fields .
    TYPES: yt_source_fields TYPE STANDARD TABLE OF y_source_fields .
    TYPES: BEGIN OF y_target_fields ,
             COUNTRY TYPE /BI0/OICOUNTRY ,
             SALESORG TYPE /BI0/OISALESORG ,
             /BIC/ZFCSTGRP TYPE /BIC/OIZFCSTGRP ,
             PLANT TYPE /BI0/OIPLANT ,
             MATERIAL TYPE /BI0/OIMATERIAL ,
             FISCPER TYPE /BI0/OIFISCPER ,
             ZBAS_FCST TYPE /BIC/OIZBAS_FCST ,
             ZTUN_QTY TYPE /BIC/OIZTUN_QTY ,
             BASE_UOM TYPE /BI0/OIBASE_UOM ,
             ZCOR_FCST TYPE /BIC/OIZCOR_FCST ,
             ZTOT_FRCT TYPE /BIC/OIZTOT_FRCT ,
             ZTER_TFCT TYPE /BIC/OIZTER_TFCT ,
           END OF y_target_fields .
    TYPES: yt_target_fields TYPE STANDARD TABLE OF y_target_fields .
    Begin of type definitions -
    *TYPES: ...
    End of type definitions -
    FORM compute_data_transformation
         USING     it_source TYPE yt_source_fields
                   ir_context TYPE REF TO if_rsan_rt_routine_context
         EXPORTING et_target TYPE yt_target_fields .
    Begin of transformation code -
      DATA: ls_source TYPE y_source_fields,
            ls_target TYPE y_target_fields.
      LOOP AT it_source INTO ls_source.
       IF ls_source-KYF_0001 = 0
       AND ls_source-KYF_0002 = 0
       AND ls_source-KYF_0003 = 0
       AND ls_source-KYF_0004 = 0
       AND ls_source-KYF_0005 = 0.
         DELETE it_source.
         EXIT.
       ENDIF.
        MOVE-CORRESPONDING ls_source TO ls_target.
        APPEND ls_target TO et_target.
      ENDLOOP.
    End of transformation code -
    ENDFORM.
    End of transformation code -
    ENDFORM.
    Please help me and reply. Good answers are appreciated and rewarded with points.
    Thanks,
    Sumisha Subramanian.

    Hi All,
    Please guys help me with this APD issue that I am facing.
    There is an APD created whose target is a file and with one routine. Here the purpose of the routine was mostly just to sequence the fields the way I want them, and only to show certain ones, also to delete all KF that are zero.(which is commented out).
    No matter what I do, it always gets data which has the key figures as all zeros.  I put some code in there to delete the data which is all zeros but commented it out, because otherwise then it writes zero records.
    The code part which delete all KF that are zero is commented out. Now we are getting the file data with commented code and without commenting code same.
    The thing is, in Bex the query from which we are fetching data is showing proper data with zeroes as well as KF with values. But the same APD is showing only the data whose KF's are zeroes.
    I am pasting the routine here:
    REPORT RSAN_WB_ROUTINE_TEMP_REPORT .
    TYPES: BEGIN OF y_source_fields ,
             COUNTRY TYPE /BI0/OICOUNTRY ,
             SALESORG TYPE /BI0/OISALESORG ,
             /BIC/ZFCSTGRP TYPE /BIC/OIZFCSTGRP ,
             PLANT TYPE /BI0/OIPLANT ,
             MATERIAL TYPE /BI0/OIMATERIAL ,
             FISCPER TYPE /BI0/OIFISCPER ,
             KYF_0001 TYPE /BIC/OIZBAS_FCST ,
             KYF_0002 TYPE /BIC/OIZTUN_QTY ,
             KYF_0002_UNIT TYPE MEINS ,
             KYF_0003 TYPE /BIC/OIZCOR_FCST ,
             KYF_0004 TYPE /BIC/OIZTOT_FRCT ,
             KYF_0005 TYPE /BIC/OIZTER_TFCT ,
           END OF y_source_fields .
    TYPES: yt_source_fields TYPE STANDARD TABLE OF y_source_fields .
    TYPES: BEGIN OF y_target_fields ,
             COUNTRY TYPE /BI0/OICOUNTRY ,
             SALESORG TYPE /BI0/OISALESORG ,
             /BIC/ZFCSTGRP TYPE /BIC/OIZFCSTGRP ,
             PLANT TYPE /BI0/OIPLANT ,
             MATERIAL TYPE /BI0/OIMATERIAL ,
             FISCPER TYPE /BI0/OIFISCPER ,
             ZBAS_FCST TYPE /BIC/OIZBAS_FCST ,
             ZTUN_QTY TYPE /BIC/OIZTUN_QTY ,
             BASE_UOM TYPE /BI0/OIBASE_UOM ,
             ZCOR_FCST TYPE /BIC/OIZCOR_FCST ,
             ZTOT_FRCT TYPE /BIC/OIZTOT_FRCT ,
             ZTER_TFCT TYPE /BIC/OIZTER_TFCT ,
           END OF y_target_fields .
    TYPES: yt_target_fields TYPE STANDARD TABLE OF y_target_fields .
    Begin of type definitions -
    *TYPES: ...
    End of type definitions -
    FORM compute_data_transformation
         USING     it_source TYPE yt_source_fields
                   ir_context TYPE REF TO if_rsan_rt_routine_context
         EXPORTING et_target TYPE yt_target_fields .
    Begin of transformation code -
      DATA: ls_source TYPE y_source_fields,
            ls_target TYPE y_target_fields.
      LOOP AT it_source INTO ls_source.
       IF ls_source-KYF_0001 = 0
       AND ls_source-KYF_0002 = 0
       AND ls_source-KYF_0003 = 0
       AND ls_source-KYF_0004 = 0
       AND ls_source-KYF_0005 = 0.
         DELETE it_source.
         EXIT.
       ENDIF.
        MOVE-CORRESPONDING ls_source TO ls_target.
        APPEND ls_target TO et_target.
      ENDLOOP.
    End of transformation code -
    ENDFORM.
    End of transformation code -
    ENDFORM.
    Please help me and reply. Good answers are appreciated and rewarded with points.
    Thanks,
    Sumisha Subramanian.

  • Artists does not show correctly on iphone

    I imported a CD into itunes (amongst 100's), then synched with my Iphone 6.  The CD transferred, but the artist shows as "Unknown Artist" on the phone, but correctly in Itunes.  Any Ideas?   When I access the slbum from the "unknown artis" it shows the correct artist just like other CDs. I have many other albums by this artist that are grouped together correctly.  CD is "Electric" by the Pet Shop Boys.

    In iTunes on your Mac or PC, click on the album, and Get Info. Edit the info there, and resync the iPhone.

  • Photo events do not show correctly in my iPhone

    Photo events do not show correctly in my iPhone. I have 21 events in my iPhoto but they appear in many different groups in my iPhone.

    Mine too. Anyone have a clue how to fix this?

  • 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

  • SharePont 2013 Document Library lookup Column Properties not Showing Correctly when editing in Word

    Hi
    I keep seeing this issue albeit intermittently.  I have set up a doc library for my users which has a custom content type (lookup, metadata columns, etc)  . They all appear perfectly most of the time except the lookup column. Sometimes is just
    decides to display the title field of the current library and not the lookup list title .  It is weird as it has been working perfectly for ages given the library is populated with valid documents.
    There are some fixes listed here. Has anyone got any experience of this?
    https://social.msdn.microsoft.com/Forums/azure/en-US/e0b55531-509c-4219-8113-61b3e488de69/document-library-metadata-properties-of-a-content-type-do-not-show-correctly-when-editing-in-word?forum=sharepointdevelopmentprevious
    Freelance consultant

    Hi,
    According to your post, my understanding is that the lookup  column not display well while editing in word.
    Did you customize the Document Information Panel?
    I recommend you edit your custom document information panel or create a new document information panel, then re-publish it to check whether it works.
    https://support.office.com/en-gb/article/Create-or-edit-a-custom-Document-Information-Panel-for-a-content-type-b701a9af-3ea6-4c1a-9e1c-75363bd987c9?ui=en-US&rs=en-GB&ad=GB
    Or you can also use the methods in the post you have pasted to check whether it works.
    As the limitation of the environment, we could not reproduce the issue in our environment.
    I  would suggest you open a case to Microsoft Customer Service via Phone.
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • Spot colors not showing correctly in acrobat 11

    Spot colors not showing correctly in the output preview as well as the page correctly. I have a spot pms
    295 on a page in a few different areas of text and backgrounds. The spot color shows on 1 of my backgrounds
    and text and a spot color on another background does not. These items are on the same page. Although I
    can use the eyedropper to check the color of these items and it states the spot color is present. The page
    also prints correctly. Previews not happening.

    I included 3 screen shots from Acobat 11 of the test requested. Also, included the last screen shot from Acobat 9 of same file.
    Which shows correct preview. To eliminate possible ICC profile issue. I did change profiles to all that were in the profile list
    with no change in either test.

  • How do I report a video not showing correctly?

    I tried to find a Contact Us to "Report an issue" but ended up chasing my tail.
    This video is not showing correctly in the frameset during preview.
    http://itunes.apple.com/us/music-video/medley-surfer-girl-wouldnt/id504074645
    at least ... not for when whenever I tried to watch it.

    Most every product Mozilla has is from say a mozilla.org site link.
    https://mozillalabs.com/en-US/projects/
    https://www.mozilla.org/en-US/products/
    The only real video related thing Mozilla has is https://wiki.mozilla.org/Shumway and more info at http://mozilla.github.io/shumway/
    The site you downloaded this NewVideoPlayerSetup.exe from was a scam as it uses the inexperience of users and popularity of Mozilla and the Firefox browser to trick people into installing stuff like this.
    Next time if you are uncertain you should ask as somebody will then tell you if it is legitimate or not for example.

  • Sometimes JavaFX form (BorderPane) does not show correctly

    We have a problem with a JavaFX application running on Java 7. Sometimes a form (BorderPane) does not show correctly – it seems to be transparent (i.e. content previously shown at the same place is still visible). Controls seem to be present and respond to events – e.g. we can close the form by blindly clicking the appropriate button. Once the issue happens it is persistent, i.e. next time we open the form, it behaves the same.
    We have no reproducible scenario leading to the issue. It just happens here and there – we have not been able to identify any pattern yet.
    Additional information:
    the form (BorderPane) is loaded during application start-up but it is not shown initially,
    to show the form we remove previous contents from a StackPane and add the form instead,
    to hide the form we do the reverse.
    Do you have any ideas how to diagnose the problem? Where to look first? What kind of diagnostic code could we put in the application that would help us?

    I am unaware of any such issue being reported previously.
    Without a reproducible test case, you are unlikely to get much assistance.
    Other than the creation of a minimal test case which reproduces the issue, I could not even advise how you might go about diagnosing and fixing your issue.
    There were many bug fixes implemented for Java 8.
    I advise you to upgrade your test environment to the latest Java early access release (currently Java 8u40) and test to verify if your issue replicates in that version.
    If the issue still reproduces, create a bug report which includes your test case and full environment details.

  • MSI P67A-C45 OC settings not showing correctly in windows.

    I have a MSI P67A-C45 and been playing about with overclocking. When I overclock it all shows fine in the bios but when I boot into windows, it does not show everything correctly.
    I have used CPU-Z, CPUID HWMonitor and the most uptodate msi controlcenter 2. It seems to show the voltages almost correct but the CPU frequency is not the same. See the 2 pictures. One with my bios settings and another of the programs I used in windows.
    If I use OC genie is show up all correct, just not if I do it manually. Turned off EIST and most power saving but still the same.
    Just another thing, the bios is a bit buggy to. The mouse seems to have a fit and select when I don't want it to or the wrong option. This is while I scroll down on the menu.
    My bios with OC settings
    In windows. Not showing correctly.

    Quote from: coremaster on 21-January-11, 07:19:08
    I have a MSI P67A-C45 and been playing about with overclocking. When I overclock it all shows fine in the bios but when I boot into windows, it does not show everything correctly.
    I have used CPU-Z, CPUID HWMonitor and the most uptodate msi controlcenter 2. It seems to show the voltages almost correct but the CPU frequency is not the same. See the 2 pictures. One with my bios settings and another of the programs I used in windows.
    If I use OC genie is show up all correct, just not if I do it manually. Turned off EIST and most power saving but still the same.
    Just another thing, the bios is a bit buggy to. The mouse seems to have a fit and select when I don't want it to or the wrong option. This is while I scroll down on the menu.
    My bios with OC settings
    In windows. Not showing correctly.
    I'm having the same issue here, bios 1.5
    With EIST disabled, I can get into windows at 4.5GHZ on a i5 2500K
    With it enabled, I cant get anywhere beyond 4ghz
    I'm going to run some tests now to check, but with EIST disabled, doesn't matter the clock I set on bios, the clock on window will show up always as the default clock speed

  • On my iPad reminders has a list called scheduled but this list does not show in my iPhone or Mac Pro book what Di

    On my iPad reminders has a list called scheduled but this list does not show in my iPhone or Mac book pro. What do I need to do to have scheduled reminders on my iPhone and MacBook Pro?

    iBooks appear in the separate iBooks app in OS X 10.9 Mavericks.
    Audible handles only audiobooks. They can't help with any issue with an iBook.
    Regards.

  • I am using firefox 24.0 and my facebook page is not showing correctly

    in my pc facebook webpage is not showing correctly but i have tried in another pc at there my fb page is showing correctly

    Hello,
    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Site does not show correct on Samsung Tablet

    Hi all,
    I've seen a few questions regarding Muse sites not being displayed correct on a Samsung Tablet. My problem is similar but still different. The site is displaying correct on the desktop/ipad/iphone but not on the Samsung Tablet.
    In the previewt his is not shown. Now I also know that the preview more or less simulates how a site should look.
    This is the site: www.uwpersoonlijkeoptieadviseur.nl (a dutch site).
    I have looked at the links and they seem to be ok. I mean all the links link to the Tablet version.
    cheers,
    Larry

    Hi sanjit, the thing is that on a samsung tablet from around 3 years old the problem occurs. But on a samsung tablet almost a year /2years old the site displays correct.
    Both of them has got android 4.04
    See the image with the specs in which it loads correct.(white background)
    And here the specs of a older one (dark grey one And arround 3 years old)
    And this problem occurs:
    So on a newer tablet it shows correct.
    Verstuurd vanaf mijn iPhone
    Op 1 apr. 2014 om 17:22 heeft Sanjit_Das <[email protected]> het volgende geschreven:
    Re: Site does not show correct on Samsung Tablet
    created by Sanjit_Das in Help with using Adobe Muse CC - View the full discussion
    Hi Larry
    Please let me know if there is any specific page element not showing up correctly on Tablet.
    Also which browser are you using , browser version would help. Do you see the same problem with any other browser on same tablet.
    The device details would also help.
    Thanks,
    Sanjit
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6261109#6261109
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6261109#6261109
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6261109#6261109. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Help with using Adobe Muse CC at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • HT201270 ITunes not Showing iPad and iPhone after IOS7 upgrade.

    ITunes not Showing iPad and iPhone after IOS7 upgrade. I have reinstalled iTuned. Repaired services...etc

    Hey Sliqueg,
    There are a few troubleshooting articles that can help resolve the issue. Check them out here:
    For Windows:
    iPhone, iPad, or iPod touch: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    For Mac OS X:
    iPhone, iPad, iPod touch: Device not recognized in iTunes for Mac OS X
    http://support.apple.com/kb/TS1591
    Sincerely,
    Delgadoh

  • Solved the comment not showing problem: info for anyone else

    I have finally solved my problem regarding my comments not showing up on blogs and websites. I changed my email address and that seems to have done the trick. Just in case anyone else runs into the same thing. Thanks Miriam for trying to help me.

    jcrash2000 wrote:
    My question is; Is there anyone else having this same problem?
    "yahoo is my email provider"
    Judging by the number of other threads on this, yes many people have been having Yahoo mail issues with push, and it appears to be on Yahoo's side, not Apple's.

Maybe you are looking for