Comportamenti strani dello z2

    lo z2 6503 mi fa  strani scherzi sopratutto dopo un po che lo lascio schermo spento o appena acceso, la cosa non si verifica se il telefono è caldo usato da un po di tempo. in pratica ho provato diverse soluzioni prima di scirvervi di nuovo per capire cosa puo essere, in pratica apro un programma e torna di nuovo alla home , disattivando il blocco schermo non torna al blocco schermo, ma torna all home oppure mi apre da solo i recenti, se faccio scorrere il drawer si blocca e torna all home. se faccio scorrere le foto succede anche li, sembra come che qualcuno prema altri parti dello schermo da solo, poi ogni tanto mi compare questa retina che vede in foto, siccome voi riparate anche queste cose chiedo aiuto a voi per capire che puo essere. premetto che neppure dopo aver rinstallato da 0 firware sia kit kat sia lolipop e sia ultimo lolipop 5.1.1 il problema non svanisce. essendo  telefono  che mi hanno dato usato ho controllato nel service menu se era sbloccato  ma a quanto pare non è stato sbloccato il bootloader e anche le chiavi sembrano ok. lo schermo e stato sostituito perche era rotto con uno nuovo e originale, non puo essere un problema di touch, sembra un problema hardware  ma  con tutti i test fatti  non danno nessun esito negativo. grazie mille

Similar Messages

  • STRANS

    Hi,
    Has anybody tested xslt mapping via STRANS.
    I am unable to test it as it always gives me error XSLT mapping not specified.
    Without debugging, it is difficult for me to find the error that happens in the call transformation step
    It raises an exception with cx_mapping_fault and error code 4. I am uanble to find where it failed in call transformation
    This is the place where it fails.
      TRY.
          CALL TRANSFORMATION zxi_gen_error_email
            SOURCE XML xml
            RESULT email_details = ca_email_details_t.
        CATCH cx_transformation_error INTO ca_oref.
          MOVE ca_error_c TO ca_mpg_errcode.
          RAISE EXCEPTION TYPE cx_mapping_fault
            EXPORTING error_code = ca_mpg_errcode.
      ENDTRY.

    There was a problem with one character in the namespace which was in CAPS.  Now, it is working fine.

  • How to use STRANS to translate XML to ABAP with deep structure

    every experts, I want to use Tcode: STRANS to translate XML to ABAP, But it does not work well,
    here is XML code,I want to translate this XML into an an Inter table gt_orders with deep structure of oeb, and colum oeb is also and intertable,how can I do this.
    <?xml version="1.0" encoding="gb2312" ?><axmt410><ObjectID>setSalesOrder</ObjectID><azp01>000000</azp01><oea00>1</oea00><ta_oeaecn>SO-140227-3041</ta_oeaecn><oea03>25325017</oea03><oea02>2014-02-27 17:44:44.0</oea02><ta_oea002>2763.0</ta_oea002><ta_oea001>0.0</ta_oea001><oea14></oea14><oea15>25325017</oea15><oea23>RMB</oea23><oeaconf>S3</oeaconf><oea10></oea10><oeaud01>null</oeaud01><ta_oea007></ta_oea007><oea25>101</oea25><ta_oea008>0</ta_oea008><ta_oea009>null</ta_oea009><oeauser>Hanjingya</oeauser><ta_oeanday>2014-02-27 17:44:44.991</ta_oeanday><ta_oeamday>2014-02-28 08:30:14.866</ta_oeamday><ta_oeacday>2014-02-28 08:30:14.866</ta_oeacday><oeaud02>0</oeaud02><ta_oea030>null</ta_oea030><oeb><oeb03>1</oeb03><oeb04>7400208249</oeb04><oeb05>PCS</oeb05><oeb17>921.0</oeb17><oeb13>921.0</oeb13><oeb15></oeb15><oeb12>5</oeb12><oeb09>990001</oeb09><ta_oeb001></ta_oeb001><ta_oeb002>Yunnan</ta_oeb002><ta_oeb003>address1</ta_oeb003><ta_oeb004>zhangdagui、zhanglan</ta_oeb004><ta_oeb005>15974749998、15987782008</ta_oeb005><ta_oeb006>address and street</ta_oeb006><oebud01></oebud01></oeb><oeb><oeb03>2</oeb03><oeb04>7400208250</oeb04><oeb05>PCS</oeb05><oeb17>921.0</oeb17><oeb13>921.0</oeb13><oeb15></oeb15><oeb12>5</oeb12><oeb09>990001</oeb09><ta_oeb001></ta_oeb001><ta_oeb002>Yunnan</ta_oeb002><ta_oeb003>address2</ta_oeb003><ta_oeb004>zhangdagui、chenlan</ta_oeb004><ta_oeb005>15974749998、15987782008</ta_oeb005><ta_oeb006>address and street</ta_oeb006><oebud01></oebud01></oeb></axmt410>
    I write these codes in SAP XSLT  editor
    <xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
       <xsl:output encoding="iso-8859-1" indent="yes" method="xml" version="1.0"/>
       <xsl:strip-space elements="*"/>
       <xsl:strip-space elements="*"/>
       <xsl:template match="/">
         <asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
           <asx:values>
             <ORDERS>
               <xsl:apply-templates select="//axmt410"/>
             </ORDERS>
           </asx:values>
         </asx:abap>
       </xsl:template>
       <xsl:template match="axmt410">
         <OBJECTID>
           <xsl:value-of select="ObjectID"/>
         </OBJECTID>
         <AZP01>
           <xsl:value-of select="azp01"/>
         </AZP01>
         <OEA00>
           <xsl:value-of select="oea00"/>
         </OEA00>
         <TA_OEAECN>
           <xsl:value-of select="ta_oeaecn"/>
         </TA_OEAECN>
         <OEA03>
           <xsl:value-of select="oea03"/>
         </OEA03>
         <OEA05>
           <xsl:value-of select="oea05"/>
         </OEA05>
         <OEA02>
           <xsl:value-of select="oea02"/>
         </OEA02>
         <TA_OEA002>
           <xsl:value-of select="ta_oea002"/>
         </TA_OEA002>
         <TA_OEA001>
           <xsl:value-of select="ta_oea001"/>
         </TA_OEA001>
         <OEA14>
           <xsl:value-of select="ora14"/>
         </OEA14>
         <OEA15>
           <xsl:value-of select="ora15"/>
         </OEA15>
         <OEA23>
           <xsl:value-of select="ora23"/>
         </OEA23>
         <OEACONF>
           <xsl:value-of select="oeaconf"/>
         </OEACONF>
         <OEA10>
           <xsl:value-of select="ora10"/>
         </OEA10>
         <OEAUD01>
           <xsl:value-of select="oeaud01"/>
         </OEAUD01>
         <TA_OEA007>
           <xsl:value-of select="ta_oea007"/>
         </TA_OEA007>
         <OEA25>
           <xsl:value-of select="ora25"/>
         </OEA25>
         <TA_OEA008>
           <xsl:value-of select="ta_oea008"/>
         </TA_OEA008>
         <TA_OEA009>
           <xsl:value-of select="ta_oea009"/>
         </TA_OEA009>
         <TA_OEA013>
           <xsl:value-of select="ta_oea013"/>
         </TA_OEA013>
         <TA_OEA014>
           <xsl:value-of select="ta_oea014"/>
         </TA_OEA014>
         <TA_OEA015>
           <xsl:value-of select="ta_oea015"/>
         </TA_OEA015>
         <TA_OEA016>
           <xsl:value-of select="ta_oea016"/>
         </TA_OEA016>
         <TA_OEA017>
           <xsl:value-of select="ta_oea017"/>
         </TA_OEA017>
         <TA_OEA018>
           <xsl:value-of select="ta_oea018"/>
         </TA_OEA018>
         <TA_OEA019>
           <xsl:value-of select="ta_oea019"/>
         </TA_OEA019>
         <TA_OEA020>
           <xsl:value-of select="ta_oea020"/>
         </TA_OEA020>
         <TA_OEA021>
           <xsl:value-of select="ta_oea021"/>
         </TA_OEA021>
         <TA_OEA022>
           <xsl:value-of select="ta_oea022"/>
         </TA_OEA022>
         <TA_OEA028>
           <xsl:value-of select="ta_oea028"/>
         </TA_OEA028>
         <OEAUSER>
           <xsl:value-of select="oeauser"/>
         </OEAUSER>
         <TA_OEANDAY>
           <xsl:value-of select="ta_oeanday"/>
         </TA_OEANDAY>
         <TA_OEAMDAY>
           <xsl:value-of select="ta_oeamday"/>
         </TA_OEAMDAY>
         <TA_OEACDAY>
           <xsl:value-of select="ta_oeacday"/>
         </TA_OEACDAY>
         <OEAUD02>
           <xsl:value-of select="oeaud02"/>
         </OEAUD02>
         <TA_OEA030>
           <xsl:value-of select="ta_oea030"/>
         </TA_OEA030>
         <OEB>
           <xsl:for-each select="oeb">
             <OEB03>
               <xsl:value-of select="oeb03"/>
             </OEB03>
             <OEB04>
               <xsl:value-of select="oeb04"/>
             </OEB04>
             <OEB05>
               <xsl:value-of select="oeb05"/>
             </OEB05>
             <OEB17>
               <xsl:value-of select="oeb17"/>
             </OEB17>
             <OEB13>
               <xsl:value-of select="oeb13"/>
             </OEB13>
             <OEB15>
               <xsl:value-of select="oeb15"/>
             </OEB15>
             <OEB12>
               <xsl:value-of select="oeb12"/>
             </OEB12>
             <OEB09>
               <xsl:value-of select="oeb09"/>
             </OEB09>
             <TA_OEB001>
               <xsl:value-of select="ta_oeb001"/>
             </TA_OEB001>
             <TA_OEB002>
               <xsl:value-of select="ta_oeb002"/>
             </TA_OEB002>
             <TA_OEB003>
               <xsl:value-of select="ta_oeb003"/>
             </TA_OEB003>
             <TA_OEB004>
               <xsl:value-of select="ta_oeb004"/>
             </TA_OEB004>
             <TA_OEB005>
               <xsl:value-of select="ta_oeb005"/>
             </TA_OEB005>
             <TA_OEB006>
               <xsl:value-of select="ta_oeb006"/>
             </TA_OEB006>
             <OEBUD01>
               <xsl:value-of select="oebud01"/>
             </OEBUD01>
           </xsl:for-each>
         </OEB>
       </xsl:template>
    </xsl:transform>
    and I use below ABAP program for a test, but the items from XML can not translate into Interner table gt_orders-oeb[]
    TYPE-POOLS abap.
    CONSTANTS gs_file TYPE string VALUE 'C:\temp\order02.xml'.
    * This is the structure for the data from the XML file
    TYPES:
       BEGIN OF typ_s_oeb,
         oeb03     TYPE string,    "
         oeb04     TYPE string,    "
         oeb05     TYPE string,    "
         oeb17     TYPE string,    "
         oeb13     TYPE string,   
         oeb15     TYPE string,   
         oeb12     TYPE string,    "
         oeb09     TYPE string,    "
         ta_oeb001 TYPE string,    "
         ta_oeb002 TYPE string,    "
         ta_oeb003 TYPE string,    "
         ta_oeb004 TYPE string,    "
         ta_oeb005 TYPE string,    "
         ta_oeb006 TYPE string,    "
         ta_oeb013 TYPE string,    "
         ta_oeb014 TYPE string,    "
         ta_oeb015 TYPE string,    "
         ta_oeb016 TYPE string,    "
         ta_oeb017 TYPE string,    "
         ta_oeb018 TYPE string,    "
         ta_oeb019 TYPE string,    "
         ta_oeb020 TYPE string,    "
         ta_oeb021 TYPE string,    "
         ta_oeb022 TYPE string,    "
         oebud01   TYPE string,    "
       END OF typ_s_oeb.
    TYPES: typ_t_oeb TYPE TABLE OF typ_s_oeb WITH KEY oeb03.
    TYPES:
       BEGIN OF typ_s_order,
         objectid   TYPE string,   "
         azp01      TYPE string,   "
         oea00      TYPE string,   "
         ta_oeaecn  TYPE string,   "
         oea03      TYPE string,   "
         oea02      TYPE string,   "
         ta_oea002  TYPE string,   "
         ta_oea001  TYPE string,   "
         oea14      TYPE string,   "
         oea15      TYPE string,  
         oea23      TYPE string,   "
         oeaconf    TYPE string,   "
         oea10      TYPE string,   "
         oeaud01    TYPE string,   "
         ta_oea007  TYPE string,   "
         oea25      TYPE string,   "
         ta_oea008  TYPE string,   "
         ta_oea009  TYPE string,   "
         oeauser    TYPE string,   "
         ta_oeanday TYPE string,   "
         ta_oeamday TYPE string,   "
         ta_oeacday TYPE string,   "
         oeaud02    TYPE string,   "
         ta_oea030  TYPE string,   "
         ta_oea013  TYPE string,
         ta_oea014  TYPE string,
         ta_oea015  TYPE string,
         ta_oea016  TYPE string,
         ta_oea017  TYPE string,
         ta_oea018  TYPE string,
         ta_oea019  TYPE string,
         ta_oea020  TYPE string,
         ta_oea021  TYPE string,
         ta_oea022  TYPE string,
         ta_oea025  TYPE string,
         oeb        TYPE typ_t_oeb,
        END OF typ_s_order.
    * Table for the XML content
    DATA: gt_itab       TYPE STANDARD TABLE OF char2048,
           gs_itab       LIKE LINE OF gt_itab.
    * Table and work ares for the data from the XML file
    DATA: gt_orders     TYPE STANDARD TABLE OF typ_s_order,
           gs_orders     TYPE typ_s_order.
    * Result table that contains references
    * of the internal tables to be filled
    DATA: gt_result_xml TYPE abap_trans_resbind_tab,
           gs_result_xml TYPE abap_trans_resbind.
    * For error handling
    DATA: gs_rif_ex     TYPE REF TO cx_root,
           gs_var_text   TYPE string.
    * Get the XML file from your client
    CALL METHOD cl_gui_frontend_services=>gui_upload
       EXPORTING
         filename                = gs_file
       CHANGING
         data_tab                = gt_itab
       EXCEPTIONS
         file_open_error         = 1
         file_read_error         = 2
         no_batch                = 3
         gui_refuse_filetransfer = 4
         invalid_type            = 5
         no_authority            = 6
         unknown_error           = 7
         bad_data_format         = 8
         header_not_allowed      = 9
         separator_not_allowed   = 10
         header_too_long         = 11
         unknown_dp_error        = 12
         access_denied           = 13
         dp_out_of_memory        = 14
         disk_full               = 15
         dp_timeout              = 16
         not_supported_by_gui    = 17
         error_no_gui            = 18
         OTHERS                  = 19.
    IF sy-subrc <> 0.
       MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
               WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    * Fill the result table with a reference to the data table.
    * Within the XSLT stylesheet, the data table can be accessed with
    * "IPERSON".
    GET REFERENCE OF gt_orders INTO gs_result_xml-value.
    gs_result_xml-name = 'ORDERS'.
    APPEND gs_result_xml TO gt_result_xml.
    * Perform the XSLT styleshee
    TRY.
         CALL TRANSFORMATION zfx_so_xml_to_abap
         SOURCE XML gt_itab
         RESULT (gt_result_xml).
       CATCH cx_root INTO gs_rif_ex.
         gs_var_text = gs_rif_ex->get_text( ).
         MESSAGE gs_var_text TYPE 'S'.
    ENDTRY.
    LOOP AT gt_orders INTO gs_orders.
    ENDLOOP.

    The simplest way seems to me is to use a XSL file for that. The <xsl:output> attributes doctype-system and doctype-public generate the DTD declaration <!DOCTYPE YOUR_ROOT SYSTEM "yourDTDfile.dtd"> and <!DOCTYPE YOUR_ROOT PUBLIC "yourDTDfile.dtd">, respectively.
    When calling transformerInstance.transform() the XSLT processor performs the identity transformation - it just copies elements, attributes, content, processing instructions and comments to the result stream.
    If you're using an xsl file for your transformation already, simply add <xsl:output doctype-system="yourDTDfile.dtd"/> to your existing XSL file.
    If you're only using the identity transformation you'd need to change the line of code where you obtain the transformer instance from the TransformerFactory to:
    t_factory.newTransformer(new StreamSource("test.xsl"));
    and use this as test.xsl:
    <?xml version="1.0"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
       <xsl:output doctype-system="yourDTDfile.dtd"/>
       <!-- this is the identity transformation -->
       <xsl:template match="*|@*|comment()|processing-instruction()|text()">
          <xsl:copy>
             <xsl:apply-templates select="*|@*|comment()|processing-instruction()|text()"/>
          </xsl:copy>
       </xsl:template>
    </xsl:stylesheet>Good luck.

  • No valid XSLT program supplied in XSLT Tester (Transaction code: STRANS)

    Hi
    I a trying to execute the Simple Transformation through STRANS (XML&#61664;ABAP)
    I am supplying Transformation, Source File Path as input.
    Problem
    When I am trying to execute it is giving the following error
    XSLT Tester                                                                               
    Runtime Errors                                                                               
    Reason          : No valid XSLT program supplied
    Please let me know if Ii need to extend the Selection.
    Early answers will be rewarded
    Thanks
    Nikhil.B

    thx Anup but still no success.
    I am thinking whether we should do any repositories consitency check after upgrade? any manual adjustments? this is a standard component crmcmp_hdr.
    the error seems to be caused by implementing note 0001358764 before upgrade in CRM 7.
    Best Regards

  • Xml header in transformation strans

    Hello,
    I would like to create an xml file with the following header information:
    <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:tem="http://tempuri.org/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <soap:Body>
    <tem:mygesttem>
    <tem:mytem>
    So, I have created the following piece of code in transaction STRANS:
    <?sap.transform simple?>
    <tt:transform xmlns:tt="http://www.sap.com/transformation-templates">
    <tt:root name="ROOT"/>
    <tt:template>
    <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:tem="http://tempuri.org/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <soap:Body>
    <tem:mygestem>
    <tem:mytem>
    However, as soon as I launch it with CALL TRANSFORMATION in my ABAP program the xml file is different from I would expect:
    <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
    <soap:Body>
    <tem:mygestem xmlns="http://tempuri.org/">
    <tem:mytem>
    Could anyone tell me why the header is different from expected?
    Thank you,
    Oscar

    Any ideas? please.

  • Iphone 5 rumore dello schermo

    Premendo delicatamente sulla parte sinistra dello schermo al centro si sente un rumore come se qualcosa non fosse attaccato bene secondo voi è un problema da sostituzione??? Premetto che è il 4 che mi danno rigenerato 3 problemi al pulsante di stanby uno problemi di scocca evidentissimi ovunque, ed infine
    questo che fa questo strano rumore da un po', non e caduto ne urtato c'è l'ho da meno di un mese... Ma siamo sicuri che la Apple li sa costruire sti iphone???

    If you believe your Device to be faulty... take it to an Apple Store and have it evaluated...
    Be sure to make an appointment first.
    Se ritieni che il tuo dispositivo sia difettoso ... portarlo in un Apple Store e lo hanno valutato ...
    Essere sicuri di prendere un appuntamento prima.

  • All'accensione, senza aver preso nessun colpo o caduta, si formano delle righe colorate nella parte centrale dello schermo (circa 3 cm). I programmi vengono lo stesso esguiti  sempre con la parte centrale di circa 3 cm a righe ?.

    All'accensione, senza aver preso nessun colpo o caduta, si formano delle righe colorate nella parte centrale dello schermo (circa 3 cm). I programmi vengono lo stesso esguiti  sempre con la parte centrale di circa 3 cm a righe . E' un problema di hardware o software ?

    Ė certamente un problema legato al display, se è in garanzia portalo in assistenza

  • Vorrei disdire l'abbonamento alla gazzetta dello sport effettuato con il mio iphone ma non so come fare

    Salve a tutti; chiedo aiuto alla comunità per disdire l'abbonamento alla gazzetta dello sport del mio iphone, non riesco a capire come fare.

    Hi leonardol10168801,
    I've checked your account  (using the email address that you've used here in the forums), and all I see is an ExportPDF subscription that was canceled in June of last year. I don't see any subscriptions started in January. Did you purchase the subscription via Adobe Reader for mobile? If so, those subscriptions are handled by the various App Stores (Apple's App Store, Google Play), and Adobe doesn't have record of them.
    You may want to Come contattare l'assistenza client to discuss these charges with an agent.
    Best,
    Sara

  • I have a strane error message when syncing with itunes + i cannot access it

    Hi all,
    this is only place i thought of that might know these problems:
    1. I cannot access itunes store from itunes - it just says loading... and doesn't load anything
    2. I have an error:
    " ITunes cannot sync photos to the iPhone because the folder "My Pictures" cannot be found.
    I tried installing iTunes again and didn not help.
    Please help,
    Thanks in advance,
    Eran

    In the course of your troubleshooting to date, have you worked through the following document?
    iTunes: Troubleshooting issues with third-party iTunes plug-ins

  • Strans - Optional Transform templates

    Hi Gurus!
    I am new to transformations and I am having an issue that's revealing to be to mutch for me.
    <?sap.transform simple?>
    <tt:transform xmlns:tt="http://www.sap.com/transformation-templates"
                   xmlns:ddic="http://www.sap.com/abapxml/types/dictionary"
                   xmlns:def="http://www.sap.com/abapxml/types/defined" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                   xmlns="urn:iso:std:iso:20022:tech:xsd:pain.001.001.03">
       <tt:root name="DOCUMENT" type="ddic:Z3FI_SEPA"/>
       <tt:template>
         <DOCUMENT>
    Line 5 has an attribute with a literal value. This attribute is there because a version of XML file that I am trying to deserialize has this atribute in his <DOCUMENT> element:
    <?xml version="1.0" encoding="utf-8"?>
    <Document xmlns="urn:iso:std:iso:20022:tech:xsd:pain.001.001.03" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <CstmrCdtTrfInitn>
    Now I need to deserialize another document that is almost the same (with some additional non obligatory fields) but wiht atribute xmlns="urn:iso:std:iso:20022:tech:xsd:pain.008.003.02".
    Is there a way to remove/discard/ignore this attribute?
    Thank you guys!
    Best regards,
    Carlos

    Hi Carlos,
    maybe you can move the xmlns attribute to the DOCUMENT tag and use
    tt:cond frq="?" to conditionally use one of them, like:
    <tt:template>
    <tt:group>
         <tt.cond frq="?">
                   <Document xmlns="urn:iso:std:iso:20022:tech:xsd:pain.001.001.03">......
         </tt.cond>
         <tt.cond frq="?">
                   <Document xmlns="urn:iso:std:iso:20022:tech:xsd:pain.001.001.02">......
         </tt.cond>
    </tt:group>
    </tt:template>
    I'm almost sure it won't work because it's a different attribute and not a different tag, but you might try it.
    Other thing that should work is a tt:lax="on" but it surely won't.
    Anyway I can't try and confirm it now, but you might.
    regards,
    Edgar

  • STRANS encoding in UTF-8

    I do a simple transformation of some data and receive an XML. The encoding of this XML is
    <?xml version="1.0" encoding="ISO-8859-1"?>
    The client wants encoding UTF-8 however.
    How can I transform with this encoding?
    regards, Léon Hoeneveld

    Hi,
    by using of Standard xml anonymizer bean
    Receiver communication channel -->  Module tab --> enter the following data
    Module Name = AF_Modules/XMLAnonymizerBean
    Module Type = Local Enterprise Bean
    Module key = 0
    Module Configuration
    anonymizer.acceptNamespaces = ABC.interface if
    anonymizer.encoding =  UTF-8
    anonymizer.quote = '
    please refre below blog,
    http://wiki.sdn.sap.com/wiki/display/XI/ChangingNamespacesandtheencodingformatof+XML
    regards,
    ganesh.

  • Strane Issue with Discoverer Viewer

    Hi All
    I Created a report in doscoverer plus (OracleBI Discoverer 10g (10.1.2.2)). I have a page item LOCATION and in the drop down box i have four locations LOCATION 1,LOCATION 2,LOCATION 3,LOCATION 4. In discoverer plus the page items are working just fine, whenever i select a location from the page item it gives me the report based on my selection. The problem is when i look at the report in Discoverer Viewer and try to select a different location (other than the default which is LOCATION 1), for some reason it doessn't select a different location but just shows the default. Once i logout and log back in into the viewer it works fine again. Can anyone please tell me whats causing this?
    Thanks

    What browser are you using and have you tried a different browser?

  • IWeb on Pc lokks strane

    Hello
    I use iMac, OS 10.6.4 and iWeb version 3.0.2. Our new homepage has the address www.markeliushuset.se and works fine on Mac. Several of my friends that use pc have mentioned that the homepage looks strange on their pc-computers using Windows and Internet Explorer 7.The upper part of the homepage looks like a curtain that blocks the klick-buttons which thereby cannot be used.
    I would much appreciate help to solve this problem. My other homepage, www.sfkn.se, created with the same iWeb software, works fine on pc.
    Regards/Gunnar

    Make sure you use a web-safe font.....
    http://www.iwebformusicians.com/WebMusic/FontsandColors.html
    More info here.....
    http://www.iwebformusicians.com/WebMusic/iWebandInternetExplorer.html
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

  • [Nokia 5700] Marking and unmarking messages: stran...

    Cheers,
    When I press the # just ONCE, and I scroll down using the joystick the phone marks every message I come across. When I press the # key again, it UNmarks every message I come across.
    Holding down the # key and scrolling down does not do a thing...
    I've already tried a factory reset and a hard reset but to no avail. I am running the latest firmware V03.83.1 dated 22-06-07.
    I'm absolutely sure it didn't behave like this earlier. I can't remember when exactly I updated the firmware so I can't tell whether it is a bug in the new firmware.
    Does this sound familiar to anyone?
    Many thanks for your help,
    Jeroen

    soft reset *#7370#
    Backup data first.
    Previous Phones: 6600, 7610, 6230, 6230i, 1100, 1112, N70, N73, N95, N95 8GB, 5800XM, 5230, C5, iPhone 3GS, SE Xperia X10, N900, N8, SE Xperia Arc
    Current Phones: Nokia N9, iPhone 4

  • Problema punto luminoso nell'angolo destro in alto dello schermo di iphone 5

    secondo voi se lo faccio ritirare me lo sostituiscono interamente?

    It Is possible for Apple give an Answer?

Maybe you are looking for

  • Possible bug with Triggers tab

    Hi there, I'm using 1.0.0.12.15 and think there is a bug with the triggers tab. When I navigate to my table (which has one trigger on it), and then click on the Triggers tab, the trigger shows up multiple times. It's probably not a coincidence that i

  • HOW TO cache user clicks on links with attributes such as "_blank" ?

    HOW TO cache user clicks on links with attributes such as "_blank" in Adobe AIR with JS or MXML or AS3 for creating new costume browser window (AIR) ?

  • Samsung charge

    i am having problems syncing contacts in driod to back up manager and to gmail account. sync to backup will not complete process.?  thanks

  • HTC Desire Z and BBTalk (etc)

    It arrived yesterday (thanks, eXpansys) and fired up without any trouble.  Many thanks to the kind person who posted the sipdroid instructions:  I didn't note your name, sorry.  Anyway, I downloaded sipdroid, set it up and made a test call within 15

  • Back to school education program question

    I bought my macbook pro 2 weeks ago. I live in UK and a friend will bring it in a month for me from the us. When Ill first use the computer probably the back to school promotion will start. Is the promotion valid from the day that I buy the computer