How do I report a bug for SAP 3D Visual Viewer?

How do I report a bug for SAP 3D Visual Viewer?
I have version 8.0.100.27428, Jun 18 2014

Hi Ellen,
Hope you are doing good.
The best option would be to raise a OSS incident in the component: CA-VE-VEV or CA-VE-CAD so that my colleagues can actually investigate this further and release a bug patch if needed.
Thank you!
Kind Regards,
Hemanth
SAP AGS

Similar Messages

  • How to report a bug for Communication Express

    Hello everyone,
    Is there a way to report a bug for Communication Express? I know it's possible to report a bug for Application Server or Portal Server, but I couldn't find how to do it for Communication Express. Is there any other way except submitting a service request?
    Thanks,
    Milosh

    Milos@saga wrote:
    Is there a way to report a bug for Communication Express? I know it's possible to report a bug for Application Server or Portal Server, but I couldn't find how to do it for Communication Express. Is there any other way except submitting a service request?The only formal method to log a bug is via a Sun Service Request. Informally I can log a bug but if you want to get the bug fixed sometime in the near future then you will still need to log a service request to have the bug escalated.
    Regards,
    Shane.

  • How I can report a bug in Lumia phones to Microsof...

    How I can report a bug that is only in Lumia phones to Microsoft developer & technical team?
    YouTube link
    http://youtu.be/eIYm7mLd7Jw
    A big bug in lumia phones on GSM-WLL  Networks.
    This problem is found only in Nokia(Microsoft) smartphones and only in incoming and outgoing calls in this phones(other Services like sending and receiving sms, USSD codes running & … work very well on WLL network with lumia mobile phones).
    - In outgoing calls: System busy error.
    - In incoming calls: After one ring, automatically call is rejected and 4-5 second busy beeps with loudspeaker is hearing form Lumia phone(even if phone is on silent)
    HTC and Samsung mobiles with WP platform is working without  any problem on GSM-WLL Networks(Tested).
    Lumia phones that tested with this problem:
    - Lumia 610; wp7-7.8
    - Lumia 520, 720, 1020; wp8-8.1
    - Lumia 920; wp8-8.1- windows 10 technical preview.
    Note 1: Nokia X phones also have this issue.
    Note 2: This problem is not found on Nokia Asha phones.
    Note 3: Iranian Telecom Company claims this  problem is  from Nokia Mobiles phones.

    Hi Deepak,
    You can find Business View Manager at the following path if it is installed on your machine.
    Click on Start>All Program>BusinessObjects XI Release 2>BusinessObjects Enterprise>Business View Manager.
    In case it is not installed you can contact your administrator                 
    To know more about Business View Manager go to http://help.sap.com and under Business Objects tab search for u2018xi3_bv_admin_en.pdfu2019. Select Product as Business Objects Enterprise.
    Please let us know if this solves your queries.
    Regards,
    Aditya Joshi
    Edited by: Aditya Joshi on Oct 1, 2008 12:12 PM
    Edited by: Aditya Joshi on Oct 1, 2008 12:15 PM

  • TS1702 How can i report an app for their coding

    Hi, i just wonder how can i report space ape for making bad game? Their samurai siege constantly have bad coding, one instance where they advice their users to change the device clock to "work around their bugs" and do not advice other of potential harm this could do to the device, leaving quite a few losing their other game progress and work progress. On another instance is how to create a new village. One would assume that you can create the new village if you have new game center, but the server still remember the device if it was once log in. Like atm, i have 1 village on my iphone 5, and im thinking of making a new village on my ipad, but when i installed the game on my ipad, i forgot to log out of the gc, and it continually loading my iphone 5 village on my ipad. I have tried log out, delete, reinstall, etc. one should not have that much trouble trying to get a new village on a new device. Now i have two device logging each other off because of this issue, and still can't get it to give me new village.
    This is bad if i log on my friend's phone to check my village, and she can't create a new game because she is stuck with my village, and i can not play mine if she open the app. This is really stupid coding. Not only these two issuse, the company constantly producing new updates, and pay no attention whatsoever on quality assurance. And i'm fed up with it, as they are continually violating apple rules.
    <Edited by Host>

    Contact the developer.

  • Reporting a bug for the C++ compiler

    How do I report a bug to Oracle regarding the C++ compiler ? I am using Solaris Studio 12.3.

    Here is an alternative implementation, as a file called has_xxx_test_ex.cpp, also supported by the mpl and tti code for introspecting a class/struct for a class template of a given name taking typename ( or class ) type parameters:
    struct stype { template< typename T > struct xxx {}; };
    typedef void boost_mpl_has_xxx_has_xxx_template_substitute0_tag ;
    template < template < typename U0 > class U >
    struct boost_mpl_has_xxx_has_xxx_template_substitute0
        typedef boost_mpl_has_xxx_has_xxx_template_substitute0_tag type ;
    template < template < typename U0 , typename U1 > class U >
    struct boost_mpl_has_xxx_has_xxx_template_substitute1
        typedef boost_mpl_has_xxx_has_xxx_template_substitute0_tag type ;
    template < typename T >
    class has_xxx_template
        template < typename U , typename V = boost_mpl_has_xxx_has_xxx_template_substitute0_tag >
        struct has_xxx_template_test
            static const bool value = false ;
        template < typename U >
        struct has_xxx_template_test <     U ,
                                        typename boost_mpl_has_xxx_has_xxx_template_substitute0
                                            < typename U :: xxx < > > :: type
                                     >
            static const bool value = true ;
        template < typename U >
        struct has_xxx_template_test <    U ,
                                        typename boost_mpl_has_xxx_has_xxx_template_substitute1
                                            < typename U :: xxx < > > :: type
                                     >
            static const bool value = true ;
        template < typename U >
        struct has_xxx_template_introspect : has_xxx_template_test < U > { } ;
        public :
            static const bool value = has_xxx_template_introspect < T > :: value ;
    int main()
        has_xxx_template<stype> aclass;
        return 0;
    When this is compiled with the C++ compiler of 12.3 with this command line:
    CC +d -library=stlport4 -features=tmplife -features=tmplrefstatic -g -erroff=%none -KPIC -c -o "has_xxx_test_ex2.o" "has_xxx_test_ex2.cpp"
    the result is:
    "has_xxx_test_ex2.cpp", line 30: Warning (Anachronism): Using xxx as a template without a declaration.
    "has_xxx_test_ex2.cpp", line 54:     Where: While specializing "has_xxx_template<stype>".
    "has_xxx_test_ex2.cpp", line 54:     Where: Specialized in non-template code.
    "has_xxx_test_ex2.cpp", line 30: Error: Template template-parameter U<U0> requires a class template argument.
    "has_xxx_test_ex2.cpp", line 54:     Where: While specializing "has_xxx_template<stype>".
    "has_xxx_test_ex2.cpp", line 54:     Where: Specialized in non-template code.
    "has_xxx_test_ex2.cpp", line 39: Warning (Anachronism): Using xxx as a template without a declaration.
    "has_xxx_test_ex2.cpp", line 54:     Where: While specializing "has_xxx_template<stype>".
    "has_xxx_test_ex2.cpp", line 54:     Where: Specialized in non-template code.
    "has_xxx_test_ex2.cpp", line 39: Error: Template template-parameter U<U0, U1> requires a class template argument.
    "has_xxx_test_ex2.cpp", line 54:     Where: While specializing "has_xxx_template<stype>".
    "has_xxx_test_ex2.cpp", line 54:     Where: Specialized in non-template code.
    "has_xxx_test_ex2.cpp", line 36: Error: Multiple declaration for has_xxx_template<stype>::has_xxx_template_test.
    "has_xxx_test_ex2.cpp", line 54:     Where: While specializing "has_xxx_template<stype>".
    "has_xxx_test_ex2.cpp", line 54:     Where: Specialized in non-template code.
    3 Error(s) and 2 Warning(s) detected.

  • Urgently required Crystal Reports 2008 FixPack_03 for SAP B1 8.8

    Dear All,
    I Urgently need Crystal Reports 2008 FixPack_03 for SAP B1 8.8. It is unavailable on the following link:
    Crystal Reports 2008 Reference [original link is broken]
    I have also searched it but unable to find it. If anyone has this, kindly share it.

    Hi Iqbal,
    There is a service pack in the following link
    https://www.sdn.sap.com/irj/sdn/businessone?rid=/webcontent/uuid/807d22cb-cb1d-2b10-8794-fb76d7feca88 [original link is broken]
    There is a fix pack 03 included in the folder, I don't know if this is relevant.
    Cheers

  • How do i report a bug to apple?

    how do i report a bug to apple?

    Actually going to http://www.apple.com/feedback/ gives you access to all feedback links.

  • How to deploy BI  on EHP1 for SAP NetWeaver Composition Environment 7.1

    Hello Gurus,
    i have installed SAP NetWeaver 7.01 SR1 SP3 ABAP Trial Version  at home on vista 32 bits.
    it's running well...
    next i have installed EHP1 for SAP NetWeaver Composition Environment 7.1 - Preview Version
    and follow this guide :
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b057d7e3-b89e-2b10-1e9e-c426e967f8e1
    the portal is running well....coooool.. ( http//:localhost:50100/irj/portal)
    after i follow this documentation to create some cubes on BI abap trail (client 001).
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/4096b8fc-6be7-2a10-618e-b02a5e5e798f
    i create my report with the query designer,
    and i see my bi report with transaction RSRT and ABAP WEB tab ( http://localhost:80000)
    it's running well....whaooouuu !!!!
    Now i'm lost, i would like to deploy my bi report on the portal, but i don't know what i must do.
    ( and when i try with the query designer or rsrt + java web i have a error message )
    - perhaps create an user communication  between portal/bi abap  where ?
    - how to deploy bi java on portal (EHP1 for SAP NetWeaver Composition Environment 7.1)
    by the way, i can't find the bi post install template in the configuration wizard on the the portal...
    thank's for your help.
    Florent,
    Edited by: Florent BUTTY on Mar 24, 2009 1:43 PM

    Hi,
    Can you please tell me what is the diff between 7.01 & 7.1? if you can share any docs, is highly appreciated.
    Thanks,
    Kiran

  • Connecting SAP Crystal Report with EHP6 FOR SAP ERP 6.0

    Hello Everyone!
    I have downloaded SAP Crystal Report demo 30 days and we have an IDES for "EHP6 FOR SAP ERP 6.0", how can I make some reports and train myself with crystal report?
    I don't understand how to make the connection to our SAP DB, can you help me?
    Thank  you!
    Denis

    Ok solved.
    - I assure where is the  saplogon.ini (in my case: %appdata%\SAP\Common\saplogon.ini)
    - I open the saplogon.ini with notepad and set the UTF format and than save it replacing the original one if it was not in UTF format
    - I go to : control panel>system>advanced>environment variables>system variables and I create a new one with name "SAPLOGON_INI_FILE" and path "C:\Users\....\AppData\Roaming\SAP\Common\saplogon.ini";
    - Open SAP Crystal Reports 2013 (in my case) > VIEW > Preferred Viewing Locale > (here I set the language of the SAP System I am going to log on with crystal report, in my case was in english so I set English)
    - (within SAP Crystal Reports 2013) > FILE > Log On or Off Server... > Create New Connection > SAP Table, Cluster, or Function > (now it shows me all the different SAP Systems that are also in the SAP GUI Logon, choose one, set the client-username-password and then finish)
    Thank you,
    Closed.

  • How do I report sdk bug?

    Anyone knows the link to report sdk bug?
    Thanks a lot.
    Fred

    Hi Fred,
    SDK bugs need to be reported through the standard SAP support site in the Customer Portal or Channel Partner Portal, depending on your status. I'm not sure about the link for Customer Portal (but you can go to service.sap.com and find links from there). In the Channel Partner Portal go to the SAP Business One solution page and then client on My Customer Messages. You'll then have a link to create a new message. Create a new message and set the component to SBO-SDK
    Kind Regards,
    Owen

  • Crystal Reports background processing for SAP Business One 8.8

    Dear Partners,
    I have an SDK program developed in SAP Business One SDK that works in 2007, it calls crystal reports externally and can be executed as a background task using the windows schedular or from the command prompt.
    My problem is it does not work under SAP Business One SDK 2008 PL18 with SQL Server 2008, Visual Studio 2008.
    I receive the following message after this line in my code,"oReport.PrintToPrinter(CopyNo, False, 0, 0)".
    'CrystalDecisions.CrystalReports.Engine.LogOnException: Logon failed.
    Error in File XX_Report_Ver_0.01 {1A6620A2-5D73-49D2-9347-32ED068AA64E}.rpt:
    Unable to connect: incorrect log on parameters. ---> System.Runtime.InteropServices.COMException (0x8004100F): Logon failed.
    Error in File XX_Report_Ver_0.01 {1A6620A2-5D73-49D2-9347-32ED068AA64E}.rpt:
    Unable to connect: incorrect log on parameters.
       at CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.GetLastPageNumber(RequestContext pRequestContext)
       at CrystalDecisions.ReportSource.EromReportSourceBase.GetLastPageNumber(ReportPageRequestContext reqContext)
       --- End of inner exception stack trace ---
       at CrystalDecisions.ReportAppServer.ConvertDotNetToErom.ThrowDotNetException(Exception e)
       at CrystalDecisions.ReportSource.EromReportSourceBase.
       at CrystalDecisions.ReportSource.EromReportSourceBase.GetLastPageNumber(ReportPageRequestContext reqContext)
       at CrystalDecisions.CrystalReports.Engine.FormatEngine.PrintToPrinter(Int32 nCopies, Boolean collated, Int32 startPageN, Int32 endPageN)
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.PrintToPrinter(Int32 nCopies, Boolean collated, Int32 startPageN, Int32 endPageN)
       at BGProductionRpt.ECR_Common.ECR_PrintReport(Int32 CopyNo) in C:\SDK Development\8.8\test\XX_Rpt\ECR_Common.vb:line 485'
    My Question is what Crystal Reports libraries or other method should I be using ?
    Crystal Reports 2008 for SAP Business One eg. 51038978.zip - downloaded from portal obviously dosn't contain the CrystalDecisions libraries.
    Crystall Reports 2008 - cr2008_sp3_fullbuild, cr2008fp33.exe, cr2008fp33_mm, cr2008fp33_clickonce - also download from the portal, the cr2008_sp3_fullbuild does contain the crystal decisions libraries.
    Finally other choices are crystal reports included with the visual studio 2008 and crystal reports full version direct from Business Objects.
    I have tried different versions of crystal decision libraries- eg, 12.0110 or 12.02 but still no joy.
    Also if I manage to get the report to fire what should the client be running eg, if they have the Crystal Reports 2008 for Business One do they also need to install the Crystal Reports Run time - cr2008fp33_clickonce.
    Any help would be appreciated.
    Thanks.

    Hi John
    Since the SDK works in 2007 it will be using the OLD DB access method.
    Change the Crystal report to use an OLE DB datasource rather than the SAP Business One data source.
    Regards
    Rob

  • How to install Simple Finance Apps for SAP Fiori?

    My system:
    1. ERP 6.0 EHP 7
    2. Netweaver Gateway installed
    3. HANA db on different machine
    What I have done:
    1. I installed the add-on that I got from SMP. The apps seem to be present on the server side.
    2. I added the necessary roles to my user so that I could use the apps in Fiori Launchpad.
    3. Logged on to Fiori Launchpad and I can see the apps there, however every Tile that appears has a text "Cannot load tile" on it.
    Looking at /IWFND/ERROR_LOG I see that the service gives "Resource Chip not found" error.
    Questions:
    1. How can I debug Fiori Launchpad related errors to find out why tiles don't load.
    2. Can somebody please provide an easy-to-follow step-by-step guide to install SFIN apps so that I could make sure that I did everything right.

    Hello Rauno,
    1. Open the Fiori Launchpad in Google Chrome using Chrome Developer Tools. Do you see any errors in Console or Network?
    2. The SAP Help Portal documentation, e.g. Installation Information for SAP Fiori for the SAP Simple Finance Add-On 1.0, encompasses several activities which may be relevant to the error: System profile configuration, service activation, authorizations, applicable SAP notes, and so forth.
    Regards,
    Scott

  • Crystal Reports transport files for SAP APO / SCM

    Hi there,
    Problem: we want to use Crystal Reports on top of SAP APO / SCM and have some difficulties getting the definitions of BW / OLAP servers right and don't know which transports to import on the SAP to report with Crystal.
    System is a SAP SCM system with APO module. There is a cube in this module (because there is some internal BW system) and I can see the cube in Crystal Reports. When I want to report from this cube I get an error:
    "/CRYSTAL/MDX_GET_STREAM_INFO" not found.
    This means some transport files were not imported and some functions are missing.
    The following transports are missing:
    ====quote from transports_EN.txt included in transports for Crystal Reports=====
    The following files must be used on an SAP BW system:
    (These files are Unicode enabled.)
    Content Administration transport (K900579.r21 and R900579.r21)
    Personalization transport (K900580.r21 and R900580.r21)
    MDX Query Connectivity transport (K900581.r21 and R900581.r21)
    ODS Connectivity transport (K900582.r21 and R900582.r21)
    ===========================================================
    My SAP BASIS expert refuses to import these transports in SAP SCM, because he thinks it is not an SAP BW system as listed in the above transports_EN.txt file. Just trying is not an option because transports cannot be removed once imported...
    In my opinion these transports have to be imported to clearly access the cube and will work on SAP SCM even if it's not a 'dedicated' SAP BW environment. In other words, these transports should be imported and will work on SAP OLAP servers like SAP BW, SAP SCM, SAP SRM (APO) or SAP SEM.
    Does anyone of you have some more experience on reporting from SAP SCM / APO cubes and if I can import these transports without getting some nasty errors, because its not an SAP BW system?
    Kind regards!
    Edited by: J. van de Mheen on Mar 3, 2009 4:21 PM

    Thanks for your reply, but this is not helping me much.
    Let me explain more.
    In the transport_EN.txt file we see this:
    If your SAP system is running on a 6.20 *BASIS system* or later, you must use the files listed below:
    (These files are Unicode enabled.)
    * Open SQL Connectivity transport (K900574.r21 and R900574.r21)
    * Info Set Connectivity transport (K900575.r21 and R900575.r21)
    * Row-level Security Definition transport (K900576.r21 and R900576.r21)
    * Cluster Definition transport (K900585.r21 and R900585.r21)
    * Authentication Helpers transport (K900578.r21 and R900578.r21)
    The following files must be used on an *SAP BW system*:
    (These files are Unicode enabled.)
    * Content Administration transport (K900579.r21 and R900579.r21)
    * Personalization transport (K900580.r21 and R900580.r21)
    * MDX Query Connectivity transport (K900581.r21 and R900581.r21)
    * ODS Connectivity transport (K900582.r21 and R900582.r21)
    So I have to import 5 transports in SAP BASIS system and 4 transports in SAP BW system to make full use of the integration kit.
    SAP SCM / APO is basically a BASIS system, so the BASIS expert says only those 5 transport have to be installed.
    But SAP SCM / APO is also having some reporting capabilities and stores data in OLAP cubes (Infocubes).
    In Crystal I can see these cubes when using SAP BW MDX connection.
    To make the error go away, I must have some function modules used in transport 'MDX Query Connectivity transport. But the BASIS expert doesn't want to import this transport, because it is listed as a transport for a SAP BW system and he says SAP SCM / APO is NOT a SAP BW system (it's a BASIS system).
    And now I have to get some proof that this transport has to be imported in the SAP SCM / APO BASIS system before he installs it...

  • How can i get access code for SAP 4.7 IDES version ?

    How can i get the access code for SAP 4.7 IDES version ?
    Thanks

    Hello Rahul,
    If you have registered / licensed IDES Version.
    You can generate Access code for Developer / Objects from http://service.sap.com/sscr
    Regards ,
    Santosh Karadkar

  • How to get sum of bugs for particular Mnth and particular Year dynamically?

    Hi All,
    I've a query related to dynamic date and year :
    select bug_id,
    category,
    count(*) Total_bugs,
    SUM(CASE when bug_date >= '10/1/2011' and bug_date <= '10/31/2011' Then 1 else 0 end) OCT_11,
    SUM(CASE when bug_date >= '9/1/2011' and bug_date<= '9/30/2011' Then 1 else 0 end) SEP_11,
    FROM AA_BUG_TBL
    GROUP BY BUG_ID,BUG_CATEGORY
    In the above query,Can we write one sum statement to get sum of bugs for a particular month and particular year dynamically?
    for ex:2 bugs between 10/1/2011 and 10/31/2011 then 2 under oct_11
    5 bugs between 09/01/11 and 09/30/2011 then 5 under sep_11
    In this case we need to calculate correct no of days for feb
    Thanks,
    Mahender.

    So...
    You need to iterate based on something like the month, quarter, year... Then query on that. I'll use a "WITH" clause to illustrate:
    with my_bugs as
        select bug_id
             , bug_date
             , case when to_char ( bug_date, 'QYYYY' ) = '12009' then 1 else 0 end y2009q1_bug
             , case when to_char ( bug_date, 'QYYYY' ) = '22009' then 1 else 0 end y2009q2_bug
             , case when to_char ( bug_date, 'QYYYY' ) = '32009' then 1 else 0 end y2009q3_bug
             , case when to_char ( bug_date, 'QYYYY' ) = '42009' then 1 else 0 end y2009q4_bug
             , case when to_char ( bug_date, 'YYYY' ) = 2009 then 1 else 0 end y2009_bug
             , case when to_char ( bug_date, 'YYYY' ) = 2010 then 1 else 0 end y2010_bug
             , case when to_char ( bug_date, 'YYYY' ) = 2011 then 1 else 0 end y2011_bug
             , case when 1 = 1 then 1 else 0 end is_bug_flag
          from bugs
      select bug_id
           , bug_date
           , sum   ( y2009q1_bug ) over () as total_bugs_2009q1
           , sum   ( y2009q2_bug ) over () as total_bugs_2009q2
           , sum   ( y2009q3_bug ) over () as total_bugs_2009q3
           , sum   ( y2009q4_bug ) over () as total_bugs_2009q4
           , sum   ( y2009_bug   ) over () as total_bugs_2009
           , count (*)             over ( partition by is_bug_flag ) as total_bugs
        from my_bugsI mocked up some data so my results will be drastically different than yours but here are the results:
        BUG_ID BUG_DATE  TOTAL_BUGS_2009Q1 TOTAL_BUGS_2009Q2 TOTAL_BUGS_2009Q3 TOTAL_BUGS_2009Q4 TOTAL_BUGS_2009 TOTAL_BUGS
          2014 10-SEP-10                 0                 0               114              1143         1257         10000
          2015 14-APR-10                 0                 0               114              1143         1257         10000
          2016 30-NOV-09                 0                 0               114              1143         1257         10000
          2017 03-JUN-11                 0                 0               114              1143         1257         10000
          2018 29-DEC-10                 0                 0               114              1143         1257         10000
          2019 12-JAN-11                 0                 0               114              1143         1257         10000
          2020 21-APR-10                 0                 0               114              1143         1257         10000
          2021 12-JAN-11                 0                 0               114              1143         1257         10000
          2022 29-NOV-10                 0                 0               114              1143         1257         10000
          2023 20-JUL-11                 0                 0               114              1143         1257         10000
          2024 04-MAR-11                 0                 0               114              1143         1257         10000

Maybe you are looking for

  • Setting of "opening web pages from last session"not works when open next time

    In Options, setting to "open windows & tab pages from last time" does not work. I have tries several time but nothing happens. have written to you earlier also , please help

  • Multiple apps failing after update to OS 10.6.8

    Process:         iTunes [2521] Path:            /Applications/iTunes.app/Contents/MacOS/iTunes Identifier:      com.apple.iTunes Version:         ??? (???) Build Info:      iTunes-1113011001003008~1 Code Type:       X86 (Native) Parent Process:  laun

  • Path in itune \settings\extended correct but titles not found ( ! symbol )

    Hi to everybody I made probably a mistake somewhere trying to find a place for my 10 GB "iTunes Music" directory. To make it short the situation is as follows: Finally I moved back the "itunes music" dir to its original place in \ownfiles\ownmusic an

  • Duplicate Inbox Mails

    Help! I keep receiving my e-mails in duplicate! I think I created a new account and that's why, but now I don't know how to undo it. Thanks in advance!

  • Switching from gdm to dtlogin

    Hi, I changed my window manager to gdm from dtlogin. But, gdm is too slow and it takes ages to get the login screen and then login. Also, my terminal has become very slow and it takes minimum 1 minute to get me the prompt. I want to switch back and d