View maintenence problem in UCCHECK?

Hi everyone,
Does anyone know anything about the unicode error 'VIEW'. I got this when I executed the tcode UCCHECK.
The message I got is:
'Generated Code for View Maintenance Dialog is not Unicode-Compatible You can regenerate with the program RSVIMT_UC_VIEW_MAINT_GEN'.
I tried to regenrate with the current program, but no use.
I read in one of the threads, that if we set the unicode checks active flag in the error program it will be solved.
Tried it but no result again.
I even tried to activate the view related to this program in SE11, as you can expect didn't work again.
So has anyone ever come across this problem? if so please help me in solving this.
Thank you all in anticipation.
Goldie.

hi ,
You need to use the transaction UCCHECK.
The report documentation is here
ABAP Unicode Scan Tool UCCHECK
You can use transaction UCCHECK to examine a Unicode program set for syntax errors without having to set the program attribute "Unicode checks active" for every individual program. From the list of Unicode syntax errors, you can go directly to the affected programs and remove the errors. It is also possible to automatically create transport requests and set the Unicode program attribute for a program set.
Some application-specific checks, which draw your attention to program points that are not Unicode-compatible, are also integrated.
Selection of Objects:
The program objects can be selected according to object name, object type, author (TADIR), package, and original system. For the Unicode syntax check, only object types for which an independent syntax check can be carried out are appropriate. The following object types are possibilities:
PROG Report
CLAS Class
FUGR Function groups
FUGX Function group (with customer include, customer area)
FUGS Function group (with customer include, SAP area)
LDBA Logical Database
CNTX Context
TYPE Type pool
INTF Interface
Only Examine Programs with Non-Activated Unicode Flag
By default, the system only displays program objects that have not yet set the Unicode attribute. If you want to use UCCHECK to process program objects that have already set the attribute, you can deactivate this option.
Only Objects with TADIR Entry
By default, the system only displays program objects with a TADIR entry. If you want to examine programs that don't have a TADIR entry, for example locally generated programs without a package, you can deactivate this option.
Exclude Packages $*
By default, the system does not display program objects that are in a local, non-transportable package. If you want to examine programs that are in such a package, you can deactivate this option.
Display Modified SAP Programs Also
By default, SAP programs are not checked in customer systems. If you also want to check SAP programs that were modified in a customer system (see transaction SE95), you can activate this option.
Maximum Number of Programs:
To avoid timeouts or unexpectedly long waiting times, the maximum number of program objects is preset to 50. If you want to examine more objects, you must increase the maximum number or run a SAMT scan (general program set processing). The latter also has the advantage that the data is stored persistently. Proceed as follows:
Call transaction SAMT
Create task with program RSUNISCAN_FINAL, subroutine SAMT_SEARCH
For further information refer to documentation for transaction SAMT.
Displaying Points that Cannot Be Analyzed Statically
If you choose this option, you get an overview of the program points, where a static check for Unicode syntax errors is not possible. This can be the case if, for example, parameters or field symbols are not typed or you are accessing a field or structure with variable length/offset. At these points the system only tests at runtime whether the code is sufficient for the stricter Unicode tests. If possible, you should assign types to the variables used, otherwise you must check runtime behavior after the Unicode attribute has been set.
To be able to differentiate between your own and foreign code (for example when using standard includes or generated includes), there is a selection option for the includes to be displayed. By default, the system excludes the standard includes of the view maintenance LSVIM* from the display, because they cause a large number of messages that are not relevant for the Unicode conversion. It is recommended that you also exclude the generated function group-specific includes of the view maintenance (usually L<function group name>F00 and L<function group name>I00) from the display.
Similarly to the process in the extended syntax check, you can hide the warning using the pseudo comment ("#EC *).
Applikation-Specific Checks
These checks indicate program points that represent a public interface but are not Unicode-compatible. Under Unicode, the corresponding interfaces change according to the referenced documentation and must be adapted appropriately.
View Maintenance
Parts of the view maintenance generated in older releases are not Unicode-compatible. The relevant parts can be regenerated with a service report.
UPLOAD/DOWNLOAD
The function modules UPLOAD, DOWNLOAD or WS_UPLOAD and WS_DOWNLOAD are obsolete and cannot run under Unicode. Refer to the documentation for these modules to find out which routines serve as replacements.
http://www.pac.co.il/infoweek/Resources%5CKeter_ECC6_Upgrade_Presentation_170107.ppt
The above link gives u a power point file on ecc 6.0 updation and what are required .
Check the below links for understanding of unicode.
UCCHECK downporting
UCCHECK
http://www.sap.com/korea/Company/Events/techday05/img/data_01.pdf
http://www.sap-press.de/download/dateien/1240/sappress_unicode_in_sap_systems.pdf
Re: ECC 6.0 Upgrade & changes required in programs
regards,
venkat.

Similar Messages

  • Meterlized view Refreshtime problem

    Hi,
    I have an issue with my MATERIALIZED view refreshment.
    Server170 having schema "Afccv" with the table name " Tbl_voicechat".
    Server 169 having a db link name "SERVICEDB1" point to same server.
    MATERIALIZED view on server 169 DB user "smschat" with the following code ::
    CREATE MATERIALIZED VIEW "SMSCHAT"."TBL_VOICECHAT_NEW1" TABLESPACE "SMSCHAT"
    BUILD IMMEDIATE
    REFRESH FAST
    AS SELECT <COLUMNNAMES>
    FROM AFCCV.TBL_VOICECHAT@SERVICEDB1;
    Refreshment time is 15 min.
    alter MATERIALIZED VIEW SMSCHAT.TBL_VOICECHAT_NEW1 REFRESH FAST ON DEMAND START WITH sysdate+0 NEXT sysdate+(15/86400*60);
    Also there is 5 indexes on this MATERIALIZED view.
    Problem is ::
    Sometimes it is refreshing properly in time and taking approximate 5-8 min to refresh. But sometimes it seems to be like hang or when I m checking the job for refreshment its only showing runnning.
    SQL> set time on
    11:44:02 SQL> alter session set nls_Date_format='dd-mon-yyyy hh24:mi:ss';
    Session altered.
    11:44:03 SQL> select mview_name ,last_refresh_date from dba_mviews;
    MVIEW_NAME LAST_REFRESH_DATE
    MGMT_ECM_MD_ALL_TBL_COLUMNS 20-jan-2011 11:44:40
    TBL_VOICECHAT_NEW1 07-jun-2012 09:44:54
    11:44:33 SQL> select * from dba_jobs_running;
    SID JOB FAILURES LAST_DATE LAST_SEC THIS_DATE THIS_SEC INSTANCE
    2893 252 0 07-jun-2012 09:44:51 09:44:51 07-jun-2012 11:14:06 11:14:06 0
    11:44:34 SQL>
    Now What to do and why it is not refreshing properly. DB link is working fine. no network issue is there. no locking is there on db.
    Kindly tell me where to check related to this issue. or what I can do for this.
    thanks in Advnace
    Pradeep.

    Pradeep Sharma wrote:
    Hi,
    I have an issue with my MATERIALIZED view refreshment.
    Server170 having schema "Afccv" with the table name " Tbl_voicechat".
    Server 169 having a db link name "SERVICEDB1" point to same server.
    MATERIALIZED view on server 169 DB user "smschat" with the following code ::
    CREATE MATERIALIZED VIEW "SMSCHAT"."TBL_VOICECHAT_NEW1" TABLESPACE "SMSCHAT"
    BUILD IMMEDIATE
    REFRESH FAST
    AS SELECT <COLUMNNAMES>
    FROM AFCCV.TBL_VOICECHAT@SERVICEDB1;
    Refreshment time is 15 min.
    alter MATERIALIZED VIEW SMSCHAT.TBL_VOICECHAT_NEW1 REFRESH FAST ON DEMAND START WITH sysdate+0 NEXT sysdate+(15/86400*60);
    Also there is 5 indexes on this MATERIALIZED view.
    Problem is ::
    Sometimes it is refreshing properly in time and taking approximate 5-8 min to refresh. But sometimes it seems to be like hang or when I m checking the job for refreshment its only showing runnning.
    SQL> set time on
    11:44:02 SQL> alter session set nls_Date_format='dd-mon-yyyy hh24:mi:ss';
    Session altered.
    11:44:03 SQL> select mview_name ,last_refresh_date from dba_mviews;
    MVIEW_NAME LAST_REFRESH_DATE
    MGMT_ECM_MD_ALL_TBL_COLUMNS 20-jan-2011 11:44:40
    TBL_VOICECHAT_NEW1 07-jun-2012 09:44:54
    11:44:33 SQL> select * from dba_jobs_running;
    SID JOB FAILURES LAST_DATE LAST_SEC THIS_DATE THIS_SEC INSTANCE
    2893 252 0 07-jun-2012 09:44:51 09:44:51 07-jun-2012 11:14:06 11:14:06 0
    11:44:34 SQL>
    Now What to do and why it is not refreshing properly. DB link is working fine. no network issue is there. no locking is there on db.
    Kindly tell me where to check related to this issue. or what I can do for this.
    thanks in Advnace
    Pradeep.
    >Hi,
    I have an issue with my MATERIALIZED view refreshment.
    Server170 having schema "Afccv" with the table name " Tbl_voicechat".
    Server 169 having a db link name "SERVICEDB1" point to same server.
    MATERIALIZED view on server 169 DB user "smschat" with the following code ::
    CREATE MATERIALIZED VIEW "SMSCHAT"."TBL_VOICECHAT_NEW1" TABLESPACE "SMSCHAT"
    BUILD IMMEDIATE
    REFRESH FAST
    AS SELECT <COLUMNNAMES>
    FROM AFCCV.TBL_VOICECHAT@SERVICEDB1;
    Refreshment time is 15 min.
    alter MATERIALIZED VIEW SMSCHAT.TBL_VOICECHAT_NEW1 REFRESH FAST ON DEMAND START WITH sysdate+0 NEXT sysdate+(15/86400*60);
    Also there is 5 indexes on this MATERIALIZED view.
    Problem is ::
    Sometimes it is refreshing properly in time and taking approximate 5-8 min to refresh. But sometimes it seems to be like hang or when I m checking the job for refreshment its only showing runnning.
    SQL> set time on
    11:44:02 SQL> alter session set nls_Date_format='dd-mon-yyyy hh24:mi:ss';
    Session altered.
    11:44:03 SQL> select mview_name ,last_refresh_date from dba_mviews;
    MVIEW_NAME LAST_REFRESH_DATE
    MGMT_ECM_MD_ALL_TBL_COLUMNS 20-jan-2011 11:44:40
    TBL_VOICECHAT_NEW1 07-jun-2012 09:44:54
    11:44:33 SQL> select * from dba_jobs_running;
    SID JOB FAILURES LAST_DATE LAST_SEC THIS_DATE THIS_SEC INSTANCE
    2893 252 0 07-jun-2012 09:44:51 09:44:51 07-jun-2012 11:14:06 11:14:06 0
    11:44:34 SQL>
    Now What to do and why it is not refreshing properly. DB link is working fine. no network issue is there. no locking is there on db.
    Kindly tell me where to check related to this issue. or what I can do for this.
    thanks in Advnace
    Pradeep.
    Hi All,
    Some more queries I also being use to check this process working
    11:44:34 SQL> select LAST_DATE,LAST_SEC,THIS_DATE,THIS_SEC,NEXT_DATE,NEXT_SEC,TOTAL_TIME,BROKEN from dba_jobs where job=252;
    LAST_DATE LAST_SEC THIS_DATE THIS_SEC NEXT_DATE NEXT_SEC TOTAL_TIME B
    07-jun-2012 09:44:51 09:44:51 07-jun-2012 11:14:06 11:14:06 07-jun-2012 11:14:04 11:14:04 44877 N
    11:49:28 SQL> SELECT t.used_ublk, t.used_urec FROM v$session s, v$transaction t WHERE s.taddr=t.addr and s.SID =2893 ;
    USED_UBLK USED_UREC
    389 27054
    11:49:59 SQL> /
    USED_UBLK USED_UREC
    390 27084
    11:50:02 SQL>

  • VIEW Query Problem

    Hi Greg,
    I had created a view on a table which doesn't have Primary Key, but it has Unique and Not Null constraints on required columns.
    I had wrote a procedure to query the data on VIEW. I have experienced strange problem, very first call to procedure will take more time than succeeding requests. For example from second request onwards, it returns data in < 2 Sec, but first transaction is taking 12 Sec to 30 Sec.
    I thought that very first time VIEW is taking time to refresh it self. So, I added FORCE keyword in CREATE VIEW stattement. However, that doesn't helped out.
    In my further investigation I came to know that base table on which VIEW created, has to be loaded in to memory before querying on VIEW.
    So, I had executed a simple select statement on base table, before I execute VIEW query in procedure.
    With this change I got results consistently < 2 Sec all the times.
    My question is instead of executing the select statement on base table is there a way to load base tables data in memory before querying on VIEW?
    Thanks,
    Subbarao

    Hi,
    A view is nothing but parsed SQL statements stored in the database, a view may or may not run faster. If you execute the SQL used to define the view how much time is it taking. If you want try looking at MATERIALIZED VIEW , that may help you.
    thanks

  • VMware Fusion with Oracle Data Integrator - 'View data' problem

    I am running ODI and Oracle 10g Express Edition under XP (SP2) under VMware Fusion (Beta 3) on a Macbook Pro. (Already lost interest??)
    The packaged demo works fine..
    I have created a set of tables with 10g and set up the ODI environment - physical & logical schemas, KMs etc. No problem. Successfully created reverse-engineered model from the tables. So far, fine.
    When I try to view the data associated to the data stores I get error: Execution failed; ORA-00903: Invalid table name.
    I have tried using different contexts etc. Obviously, the reverse engineering process can 'see' the tables..
    Any advice please?
    Many thanks, Steve.

    Hi,
    I tried to install the essbase driver adapter on ODI, but I can't connect to Essbase using topology manager. Anyone know about essbase drivers for ODI. I used ODI 10.1.3.4.
    Thanks all.
    Regards,
    Sumardi

  • List View Printing Problem

    Greetings,
    I'm using iCal 2.0.3 on OS X 10.4.3.
    I'm having two problems making a "List View" print look correct.
    Problem #1: I have a To Do item that was due several days ago. It shows up in the main iCal To Do pane with an attention icon next to it (showing past due). However, when I print and choose "List view", to do items that are past due do not show up. How can I make them show in the printout?
    Problem #2: When I print a "List view" for today's date, there are a small handful of to do items that were marked complete over one months ago that show up on the print out. Why? How can I make these go away?
    Many thanks for any assistance that can be provided.
      Mac OS X (10.4.3)  

    I have exactly the same problems John has: it seems iCal prints data in an absolutely unpredictable way. I dropped Now Up-to-Date and Entourage, and I wouldn't like to go back to them. This looks like a widespread complaint about Mac OS X and Apple should do something about it ASAP

  • Sharepoint 2013 explorer view error - problem opening this location in file explorer (HTTPS + Win7 Enterprise 64 bit + IE9 32 bit + Office 2007 32 bit)

    Hi,
    We have a problem using Sharepoint 2013 explorer view. (Error - We're having a problem opening this location in file explorer. Add this web site to your trusted sites list and try again).
    I'm using Windows 7 Enterprise 64 bit, Office 2007 32 bit and IE9 32 bit. And the sharepoint site is a https site.
    Some people in my organization are able to browse and some users getting the above error. (with the same client machine configuration)
    If I clear my browser cache, closes the browser and open it then the explorer view is working. But after a minute if I try again I'm getting the above mentioned error. This 1 minute expiration happens is since the first time I have used explorer
    view, not since I opened the browser.
    I have tried the following on my machine:
    1. Modified the web client service to run automatically.
    2. Verified the sharepoint site is part of trusted sites (https://*.spsite.com/)
    3. Compatibility mode is turned on.
    4. Tried adding
    AuthForwardServerList in the webclient registry settings under parameters. (restarted the web client)
    5. Verified the BasicAuthLevel set to 1 (since we are using SSL). Tried setting the BasicAuthLevel to 2 as well. (restarted the web client)
    6. Tried installing software update for web folders (KB907306).
    Verified the below on the production server:
    1. The web application has the root site collection.
    2. It has WebDav Publishing disabled under IIS Web Server feature.
    Could some one please help me in resolving this issue?
    Thanks.

    Hi  Deepak,
    According to your post, my understanding is that you failed to use "Open with Explorer"  in a document library.
    For your issue, please verify the following:
    ActiveX controls must be enabled in IE.
    As you are using Windows 7 Server as the client computer, you must install the Desktop Experience feature from Server Manager.
    Make sure there is a working Root site collection.
    Install this hotfix for windows 7 work with sharepoint 2013 :hotfixv4.microsoft.com/.../463266_intl_x64_zip.exe
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • CC 5.2 SP9 - Management view update problem

    Hello all,
    We are having trouble updating the management view, in CC SP09. After running full synchro jobs on profiles, then roles, then users, and finally updating the management view, the results seem wrong (in production, we were expecting about 50% of users with violations, while the management view did not see any)...
    Any help would be appreciated, thanks!
    Sophie Planchais

    I stole this from another thread but at least it saves me typing it all in
    Follow these instructions
    1. Full user synch
    2. Full role synch
    3. Full profile synch
    4. Batch risk analysis for users (full synch mode)
    5. Batch risk analysis for roles (full synch mode)
    6. Batch risk analysis for profiles (full synch mode)
    7. Batch risk analysis for critical actions (full synch mode)
    8. Management reports by itself.
    Wait for each job to complete before you run the next one.
    Sometimes I even run job 8 inbetween jobs 4-7, just to make sure.  In other words the job order is then 4, 8, 5, 8, 6, 8, 7, 8.  As I have had problems that job 8 will not finish (after 4, 5, 6, 7 have been run) which we surmise is due to too many changes being required.

  • PDF viewer control Problem

    I have problem with Windows Vista Os in 64 bit.The problem is that i have a webbrowser control in Windows application in VS2005 for displaying PDF file.Its working fine in 32 bit operating system.The PDF file is shown within the control.But when i deploy the application in 64 bit Vista operating system,its give an error and the pdf is open in new window.Please can you provide any PDF viewer control that is free and compatible with VS2005,so that pdf should open in that control and is compatible with both 32 bit and 64 bit OS.

    Looks like you need
    Acrobat Scripting Forum http://forums.adobe.com/community/acrobat/acrobat_scripting
    or
    Acrobat SDK Developer Forum http://forums.adobe.com/community/acrobat/acrobat_sdk

  • F:view causing problem in 11.1.1.4

    Hi,
    We are facing some problem in our application when we move to Jdev 11.1.1.4 from 11.1.1.3.
    I have even developed a sample app which works fine in 11.1.1.3 but gives an error in 11.1.1.4. We use <f:view> with a phaseListener inside one of the jsff.
    We get the following error when trying to launch the applcn:
    Root cause of ServletException.
    java.lang.IllegalStateException: <f:view> was not present on this page; tag oracle.adfinternal.view.faces.unified.taglib.output.UnifiedOutputTextTag@1d496c4encountered without an <f:view> being processed.
         at org.apache.myfaces.trinidad.webapp.UIXComponentELTag.setProperties(UIXComponentELTag.java:108)
         at javax.faces.webapp.UIComponentClassicTagBase.findComponent(UIComponentClassicTagBase.java:733)
         at javax.faces.webapp.UIComponentClassicTagBase.doStartTag(UIComponentClassicTagBase.java:1354)
         at org.apache.myfaces.trinidad.webapp.UIXComponentELTag.doStartTag(UIXComponentELTag.java:71)
         at oracle.adfinternal.view.faces.unified.taglib.output.UnifiedOutputTextTag.doStartTag(UnifiedOutputTextTag.java:50)
         at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:50)
         at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:261)
         at oracle.jsp.runtime.tree.OracleJspNode.execute(OracleJspNode.java:89)
         at oracle.jsp.runtimev2.ShortCutServlet._jspService(ShortCutServlet.java:89)
         at oracle.jsp.runtime.OracleJspBase.service(OracleJspBase.java:29)
         at oracle.jsp.runtimev2.JspPageTable.compileAndServe(JspPageTable.java:665)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:385)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:802)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:726)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    myTabs.jspx makes use of dynamicTabShell template..This jspx makes use of a bounded taskflow-myBoundedTFdefinition.xml which has the jsff(abc.jsff).This jsff contains the f:view tag.
    Any idea why <f:view> inside the jsff is causing the problem in 11.1.1.4 but worked in 11.1.1.3??
    Thanks,
    Santosh
    Sample code below
    mytabs.jspx
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1">
          <af:form id="f1">
            <af:pageTemplate viewId="/oracle/ui/pattern/dynamicShell/dynamicTabShell.jspx"
                             value="#{bindings.pageTemplateBinding}" id="pt1">
              <f:facet name="copyright"/>
              <f:facet name="about"/>
              <f:facet name="navigation"/>
              <f:facet name="globalLinks"/>
              <f:facet name="status"/>
              <f:facet name="globalToolbar"/>
              <f:facet name="globalSearch"/>
              <f:facet name="globalTabs"/>
              <f:facet name="welcome">
                <af:region value="#{bindings.myBoundedTFdefinition1.regionModel}"
                           id="r1"/>
              </f:facet>
              <f:facet name="innerToolbar"/>
            </af:pageTemplate>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    abc.jsff
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
              xmlns:f="http://java.sun.com/jsf/core">
      <f:view beforePhase="#{backingBeanScope.secondBean.myphaseMethod}"></f:view>
      <af:outputText value="This is from the abc jsff" id="ot1"
                     binding="#{backingBeanScope.secondBean.textop}"/>
    </jsp:root>Thanks

    In your abc.jsff:
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:f="http://java.sun.com/jsf/core">
    <f:view beforePhase="#{backingBeanScope.secondBean.myphaseMethod}"></f:view>
    <af:outputText value="This is from the abc jsff" id="ot1"
    binding="#{backingBeanScope.secondBean.textop}"/>
    </jsp:root>
    Why is <af:output> after you've closed the <f:view>? Shouldn't it be:
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:f="http://java.sun.com/jsf/core">
    <f:view beforePhase="#{backingBeanScope.secondBean.myphaseMethod}">
    <af:outputText value="This is from the abc jsff" id="ot1"
    binding="#{backingBeanScope.secondBean.textop}"/>
    </f:view>
    </jsp:root>

  • JSF 2.0: View Scope Problem

    Hey,
    I 'm having trouble using the JSF 2.0 view scope. My application is a search page displaying some search parameters and a list of results. The search parameters are backed by a session scope bean, the results a backed by a request scoped bean and there is some kind of controller bean in request scope, too. Searching and displaying the results works fine.
    The second step was some kind of details page to display when clicking on one result element. I have another controller bean for this goal, but when pressing the link the requested action is not performed. I remembered similar problems I had in the past where I put the bean containing the result list into view scope.
    But after putting the results bean into view scope searching is not working anymore. You click the search button, the search action is performed. But after successfully storing the results a new results bean is instantiated. An empty one of course.
    Now I 'm not sure anymore if I understand the view scope: I have a single page, I search something and the results are displayed on the same page. I cannot believe that request scoped results work fine and view scoped results do not.
    Can anyone help me?
    Thanks,
    Stephan

    I found the problem and a solution :-) The missing piece of the puzzle was the id attribute for the form tag. After some debugging of the JSF JavaScript I found the solution.
    The JavaScript function response(request, context) is invoked to handle the server response. Inside this function the doUpdate(element, context) is invoked.
    The doUpdate() function is doing the modification of the DOM. The function doUpdate() is two times invoked for a response. The first time the html elements are updated.
    The second time the view state hidden field is updated or created but only under the following condition:
    Comment in the JavaScript source code of the jsf.js
    //Now set the view state from the server into the DOM
    //but only for the form that submitted the request.If the forms of the both side haven't the same id the form can't be found on the second page.
    In the following way it is working:
    page1.xhtml
    <h:form id="myform">
            <h:commandLink value="Go to page 2" action="page2">
                <f:ajax render="@all" execute="@all"/>
            </h:commandLink>
    </h:form>
    .....page2.xhtml
    <h:form id="myform">
                <h:commandLink value="Go to page 1" action="page1">
                    <f:ajax render="@all" execute="@all"/>
                </h:commandLink>
    </h:form>So always set an explicit id for each JSF tag.

  • Problem in UCCHECK  (*kna1 = Kna1)

    Hi All,
    1) What is the meaning of  ABAP statement
    TABLES: *KNA1.
    2) What will happen if i execute ABAP statement
       *KNA1 = KNA1
    3) In UCCHECK t-code system is giveing me error in an object which contains the above statements, the error message is
    "OF KNA1" is not expected
    Pls can anyone brief on this 3 points
    Regard
    Anees

    Hi Sudheer,
    Thanks
    Ur answe was helpfull enough to solve my UCCHECK problem
    We solve the problem.
    Instead of *kna1 = Kna1
    we use corresponding  statement.
    Regard
    Anees

  • [Materialized View] - NEEDS_COMPILE Problem ... no refresh

    Hello,
    I've a strange problem with an Oracle 8.1.7.4 DB.
    I've a table 'BRANCARD'
    I create a MV with auto-refresh.
    <code>
    CREATE MATERIALIZED VIEW MV_00087_BRANCARD
    STORAGE (INITIAL 100K NEXT 100K PCTINCREASE 0)
    TABLESPACE BRANCA
    REFRESH FAST
    WITH PRIMARY KEY
    START WITH SYSDATE NEXT SYSDATE+1/1440
    DISABLE QUERY REWRITE AS
    select * from brancard where no_hop='00087' order by no_branc,ty_branc;
    Materialized view created.</code>
    my problem :
    At the first refresh...
    <code>
    select MVIEW_NAME, UPDATABLE, REWRITE_ENABLED, REWRITE_CAPABILITY, REFRESH_MODE, REFRESH_METHOD, STALENESS, AFTER_FAST_REFRESH, COMPILE_STATE from all_mviews
    MVIEW_NAME U R REWRITE_C REFRES REFRESH_ STALENESS AFTER_FAS COMPILE_STATE
    MV_00087_BRANCARD Y N TEXTMATCH DEMAND FAST FRESH FRESH NEEDS_COMPILE
    VUE_00087_ETA N N GENERAL DEMAND COMPLETE UNDEFINED UNDEFINED VALID
    VUE_00087_PASSINT N N NONE DEMAND COMPLETE UNDEFINED UNDEFINED VALID
    VUE_00087_PDT N N NONE DEMAND COMPLETE UNDEFINED UNDEFINED VALID
    VUE_00087_PLTTECH N N NONE DEMAND COMPLETE UNDEFINED UNDEFINED VALID
    VUE_00087_SER N N NONE DEMAND COMPLETE UNDEFINED UNDEFINED VALID
    VUE_00087_UAD N N NONE DEMAND COMPLETE UNDEFINED UNDEFINED VALID
    VUE_00087_UFP N N GENERAL DEMAND COMPLETE UNDEFINED UNDEFINED VALID
    VUE_00087_UHPDT N N NONE DEMAND COMPLETE UNDEFINED UNDEFINED VALID
    </code>
    the refresh failed without error. only 'NEEDS_COMPILE' value in COMPILE_STATE !!
    If i try an 'alter compile' it's OK
    If i try an execute DBMS_snapshot.refresh('MV_00087_BRANCARD', '?') it's ok
    ...but the refresh is not automatic ;((
    any idea about this strange behavior ?
    thanks for your help.

    Any DDL or DML operation on base table can invalidate a materialized view
    State of materialized views can be checked in dictionary view USER_MVIEWS or ALL_MVIEWS. and column- STALENESS
    You can use
    ALTER MATERIALIZED VIEW MV_Name COMPILE statement to validate the materialized view and get the correct state.
    Thanks
    Message was edited by:
    user542366

  • Materialized view refresh problem

    Hi,
    I have a materialized view which refreshes every 12 hour. Very often (not always) the refresh fails with the following error in the alert log.
    What could be the reason behind this and how to rectify this?
    Errors in file /d1/oracle/proddb/9.2.0/admin/PROD_d1/bdump/prod_j000_844222.trc:
    ORA-12012: error on auto execute of job 624
    ORA-12008: error in materialized view refresh path
    ORA-08103: object no longer exists
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 803
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 860
    ORA-06512: at "SYS.DBMS_IREFRESH", line 683
    ORA-06512: at "SYS.DBMS_REFRESH", line 195
    ORA-06512: at line 1
    Regards,
    Anand

    Important error descriptions are as follows. Follow actions here.
    ORA-12008 error in materialized view refresh path
    Cause: Table SNAP$_mview_name reads rows from the view MVIEW$_mview_name, which is a view on the master table (the master may be at a remote site). Any error in this path will cause this error at refresh time. For fast refreshes, the table master_owner.MLOG$_master is also referenced.
    Action: Examine the other messages on the stack to find the problem. See if the objects SNAP$_mview_name, MVIEW$_mview_name, mowner.master@dblink, mowner.MLOG$_master@dblink still exist.
    ORA-08103 object no longer exists
    Cause: The object has been deleted by another user since the operation began.
    Action: Remove references to the object.
    -aijaz

  • Union All vs. View Creation Problem

    Here is my problem basicly;
    I have three table.
    select * from table1;
    select * from table2;
    select * from table3;
    I need to create one view by combining those tables with 'union all' word.
    create or replace view view1 as
    select * from table1;
    union all
    select * from table2;
    union all
    select * from table3;
    Then, I want to write a query as;
    select * from view1 where column1 = x;
    When I did this, view1 first combines all the rows of the tables, then searches x value in all the data. That's OK. However I want to first search x value in the tables, and combine the results of each table and get the result rows.
    I mean, my query "select * from view1 where column1 = x;" need to act as
    select * from table1;
    column1 = x
    union all
    select * from table2;
    column1 = x
    union all
    select * from table3;
    column1 = x
    How can I do this?
    Thanks everyone..

    SnigRO
    I think what you mean is that your query is sequentially full scanning all three tables, and you would like instead for it to use index scans.
    Show the plan for the query. The predicate can be pushed down, but whether it makes any difference may depend:
    - statistics on each table (full scan may be faster than index scan)
    - are the various column1 columns indexed
    - certain documented or hidden optimiser parameters can encourage or discourage push down: eg optimizercost_based_transformation
    - Oracle version: there have been known bugs that interfere with push down (eg Bug 3723007 - Predicate push down may not occur in 10g - reported in 10.1)
    HTH
    Regards Nigel

  • Table view control problem in screen painter

    Hi All,
    i am unable to display the contents in the table view control in screen painter....actually i have created two screen one to take input and second to display details on next screen in table view control..but i m nt getting that details...
    my second screen PBO/PAI code is
    PROCESS BEFORE OUTPUT.
    loop at itab with control TCNTRL CURSOR tcntrl-current_line.
    MODULE STATUS_0101.
    endloop.
    PROCESS AFTER INPUT.
    loop at itab.
    endloop.
    MODULE USER_COMMAND_0101.
    can anyone solve my problem????????
    Thanks,
    Jayshree

    Hi,
    Use below approch (syntax may not be correct as I have typed it in notepad but use it as guide line)
    ***In screen flow logic
    PROCESS AFTER INPUT.
      module cancel at exit-command.
      chain.
        field: zproject_details-originator,
            zproject_details-proj_type.
        module check_data on chain-request.       
      endchain.
      module user_command_002.
    ***In abap code
    module cancel input.
      leave program.
    endmodule.
    module check_data input.
      if zproject_details-originator is initial.
        message exxxx "throw error message here
      endif.
      if zproject_details-proj_type is initial.
        message exxxx "throw error message here
      endif.      
    endmodule.
    module user_command_002.
      save_ok = ok_code.  "good practice to save okcode
      clear ok_code.
      case save_ok.
        when 'save' " using constant for fcode here is better
          perform save_data. "make it moduler instead of writing whole code in case statement
      enscase.
    endmodule.
    form save_data.
    ** do some additional checks if required before saving
    update zproject_details from zproject_details. " update database table here from work area contents
    endform.
    Regards,
    Vishal

Maybe you are looking for

  • Error while trying to start Enterprise manager(Data Base Control)

    We are getting error while trying to start the EM Database Control in database 11g (11.1.0.6).The error is given below. #emctl start dbconsole OC4J Configuration issue. /user1/oracledb/app/testdb/product/11.1.0/db_1/oc4j/j2ee/OC4J_DBConsole_appvserve

  • SQL Developer 2.1 editor settings

    In SQL Developer 2.1, when I single click on a pl/sql object in the navigation pane, a writable editor tab opens. How can I change this behavior so that it opens as read-only? I only want the pl/sql editor to be writable if explicitly selected. I cou

  • How to set wsa:Action in Jdeveloper?

    Hello, I am using JDeveloper 11g/SOA Suite 11g. I am creating a BPEL process that calls a remote web service. In the request that I am generating, the SOAP Action header and the wsa:Action value are not the same. Does anyone know how to explicitly se

  • Cropping in QT Pro

    I wish to remove stripes of width 8 pixels from the left and right sides of some NTSC DV footage. I want the resulting video to have its dimensions reduced the same amount. i.e. from 720 x 480 to 704 x 480. I have followed the advice in this thread:

  • Wifi cannot be activated again

    hi, I have been reading through the posts and it seems as though wifi issues are pretty common with the yoga. Once my wifi works, it seems to be performing well. However, I have the issue that the wifi just gets completely lost. when you go into airp