Error coming while executing my first dynpro program....

Hi ,
I am new to this dynpro arena. I created my first test program and tried to execute it through SE80 but below error comes up. Can anyone help me in solving this error. If this is related to some configuration to be checked then please let me know the steps which i should follow to rectify it.
Thanks in Advance
Error when processing your request
What has happened?
The URL http://gcecc62:8000/sap/bc/webdynpro/sap/zak_prg3 was not called due to an error.
Note
The following error text was processed in the system ECC : Die URL enthält keine vollständige Domainangabe (gcecc62 statt gcecc62.).
     The error occurred on the application server gcecc62_ECC_00 and in the work process 0 .
     The termination type was: RABAX_STATE
     The ABAP call stack was:
Method: CHECK of program CX_FQDN=======================CP
Method: LATE_CONSTRUCTOR of program CL_WDR_UCF====================CP
Method: HANDLE_REQUEST of program CL_WDR_UCF====================CP
Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_WDR_MAIN_TASK==============CP
Method: EXECUTE_REQUEST of program CL_HTTP_SERVER================CP
Function: HTTP_DISPATCH_REQUEST of program SAPLHTTP_RUNTIME
Module: %_HTTP_START of program SAPMHTTP
What can I do?
     If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system ECC in transaction ST22.
     If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server gcecc62_ECC_00 in transaction SM21.
     If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 0 in transaction ST11 on the application server gcecc62_ECC_00 . In some situations, you may also need to analyze the trace files of other work processes.
     If you do not yet have a user ID, contact your system administrator.
Error code: ICF-IE-http -c: 800 -u: SAPUSER -l: E -s: ECC -i: gcecc62_ECC_00 -w: 0 -d: 20080412 -t: 162409 -v: RABAX_STATE -e: UNCAUGHT_EXCEPTION
HTTP 500 - Internal Server Error
Your SAP Internet Communication Framework Team

Hello,
It occurs because you don't have a FQDN configured at you server. To use web dynpros you must have it.
You can find how to configurate FQDN in the following links:
[http://help.sap.com/saphelp_nw2004s/helpdata/en/67/be9442572e1231e10000000a1550b0/content.htm], [http://help.sap.com/saphelp_nw2004s/helpdata/en/43/e86de5008b4d9ae10000000a155369/frameset.htm].
Regards,

Similar Messages

  • Error coming while executing the query in analyzer

    HI,
    Any body help me in this matter.
    when i execute the qurey in bex its showing error message coming with popup box.
    Error is showing like this.
    "no value found"
    " Exception 1 when calling WB_HTML_HELP_URL_GEToccured"
    but when i click on "OK" button its showing result.can any body tell me why its showing error message like this .
    regards
    mahesh

    Hi ,
          It happens because of the improper connectivity and configuration.In case of Web Reports so many pop ups will appear because of improper config..As long as you are getting the reports its ok,,,Should be taken care of Basis
    Regards
    Siva

  • The multi-part identifier "#AIP.agentcode" could not be bound is error coming while executing code

    DECLARE @Groupid varchar(50)
    DECLARE @Agentcode varchar(50)
    Declare @From numeric(20)
    Declare @TO numeric(20)
    DECLARE @date nvarchar(30)
    Declare @tempSelect varchar(max)=''
    Declare @tempQuery varchar(max)
    declare @sqlstr nvarchar(max)
    declare @alias nvarchar(100)
    declare @agent1 varchar(4000)
    declare @agentid varchar(20)
    declare @transvalue varchar(20)
    Set @From= 20140801
    Set @TO= 20140810
    SET @Groupid=2
    SET @Agentcode=121
    --set @ttotal = @TO - @From
    --set @counter = @From
    --set @i = 0
    set @tempQuery=''
    truncate table  jv.dbo.a_tbl_AIP_LOGIN 
    insert into jv.dbo.a_tbl_AIP_LOGIN (agentcode)
    select distinct   AgentCode   from jv.dbo.aGENT WHERE Flagactive='y' and email like '%@%'
    union
    SELECT Distinct 
    jv.dbo.POLICYADMININFO.AGENTID 
    FROM jv.dbo.POLICYADMININFO(NOLOCK)
    WHERE ORDEFFDATE BETWEEN @From AND @TO AND TRANSTYPE = 'NB'  and POLICYADMININFO.AGENTID>0 
    Update T set RM_NAME=RMMASTER.rmname,SM_NAME=SM_MASTER.name,REGION=rmmaster.region,AIP_NAME=agent.FirstName     
     from jv.dbo.a_tbl_AIP_LOGIN T
    left join jv.dbo.AGENT (NOLOCK) on    t.agentcode=agent.AgentCode
    LEFT JOIN jv.dbo.SM_MASTER(NOLOCK) ON AGENT.SMID = SM_MASTER.SMID
    LEFT JOIN jv.dbo.RMMASTER(NOLOCK) ON sm_master.Region =rmmaster.region   
    --------------------------------------FOR AIP Operation----------------------------------------------------------
    if (@groupid=2)
    Begin 
    select agentcode into #AIP from jv.dbo.a_tbl_aip_login where AgentCode=@Agentcode
    SELECT PolicyAdminInfo.AgentID,ORDEFFDATE,isnull(convert(bigint, SUM(cast(TransVal*s1.mf as money))),0) TRANSVAL
    into #aipbusiness FROM   jv.dbo.POLICYADMININFO(NOLOCK) 
    INNER join #AIP on PolicyAdminInfo.AgentID=#AIP.agentcode
    LEFT JOIN jv.dbo.Amwayskuitem_New(NOLOCK) S1 ON S1.SKU_ITEM=POLICYADMININFO.SKUNO  
    LEFT JOIN jv.dbo.POLICYINFO(NOLOCK) I ON I.POLICYNO=POLICYADMININFO.ApplNo and I.PRODUCTTYPE=POLICYADMININFO.ProductType
    LEFT JOIN jv.dbo.PolicyStatus_new S ON I.PolicyStatus=S.PolicyStatus
    WHERE ORDEFFDATE BETWEEN @From AND @TO AND TRANSTYPE = 'NB' 
    AND NOT ISNULL(S.EffStatus,'')='CANCELLED' 
    GROUP BY  PolicyAdminInfo.AGENTid,ORDEFFDATE
    order by agentid
    end
    set @transvalue ='transval';
    while(@From <=@TO )
         Begin
           set @alias=' a'+CONVERT(nvarchar,@From) --as '+@i +' 
    --set @tempSelect=@tempSelect + ',' +@alias+'.'+@agentid +','+@alias+'.'+@transvalue ;
    set @tempSelect=@tempSelect + ','+@alias+'.'+@transvalue +' ['+replace(convert(nvarchar, jv.dbo.convDatetime(@From),103),'/','-')+']';
    --set @tempSelect=@tempSelect + ','+@alias+'.'+@alias 
    --set @tempSelect=@tempSelect + ',' +@alias
       set @tempQuery=@tempQuery+' left outer join (select agentid,transval from #aipbusiness where #aipbusiness.ordeffdate='+CONVERT(nvarchar,@From)+')' +  @alias + '  on #AIP.agentcode='
    +  @alias +'.agentid'        
    set @from =@From +1;
    End 
    SET @sqlStr  = 'select a_tbl_AIP_LOGIN.Region,a_tbl_AIP_LOGIN.RM_NAME RMName,a_tbl_AIP_LOGIN.SM_NAME SMName,a_tbl_AIP_LOGIN.AIP_NAME AIPName' + @tempSelect +  ' from jv.dbo.a_tbl_AIP_LOGIN' +@tempQuery +' Order by Region,RM_NAME ,SM_NAME
    ,AIP_NAME '
    --select @sqlStr as out
    execute sp_Executesql  @sqlStr
    --select @tempSelect as out
    drop table #aip
    drop table #aipbusiness
    malik

    Hello,
    In your dynamic SQL you are trying to access the local temporary table #AIP, which was created in the stored procedure. You run the dynamic SQL with sp_Executesql, which starts as a separate session, where you can't access the local temp table from the other
    session; this don't work.
    Use a global temp table, which will cause other issues, or run everything as one big dynamic SQL statement.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • I am getting a error while executing the Web Dynpro Application Page.

    Hi All,
    I am getting a Error while executing a web dynpro application ::: 
    : Navigation in Phase WDDOMODIFYVIEW Cannot Be Triggered. Component: Z_WEP_PERSONAL_DATA, View: OVERVIEW, Window: Z_XXP_PERSONAL_DATA
    I have checked this error description in ST22  :
    What happened?
        The exception 'CX_WDR_RT_EXCEPTION' was raised, but it was not caught anywhere
         along
        the call hierarchy.
        Since exceptions represent error situations and this error was not
        adequately responded to, the running ABAP program
         'CL_WDR_CLIENT_APPLICATION=====CP' has to be
        terminated.
    Error analysis
        An exception occurred which is explained in detail below.
        The exception, which is assigned to class 'CX_WDR_RT_EXCEPTION', was not caught
         and
        therefore caused a runtime error.
        The reason for the exception is:
        Navigation in Phase WDDOMODIFYVIEW Cannot Be Triggered. Component:
        Z_XXP_PERSONAL_DATA, View: OVERVIEW, Window: Z_XXP_PERSONAL_DATA
    Can u plz help me regarding this error.
    Thanks,
    Deepika

    >Navigation in Phase WDDOMODIFYVIEW Cannot Be Triggered
    Looks to me like you are trying to fire a navigation plug within WDDOMODIFYVIEW. According to the rules of the WD Phase Model this is not allowed.

  • An unknown error occurred while executing the PowerShell script:

    Hello all,
    Not the most descriptive title, granted. I'm hoping this may prompt the next version toprovide additional valuable content.
    Kindly requesting any help on this problem. I'm running VMM 2012 R2 version 3.2.7668
    When I try to look at properties of an existing Private Cloud, I get this error, only if I "look" at certain attributes. If I stay away from the specific attributes, everything is hunky dory. For reasons unknown, after I get this error, I have
    to exit and go back into VMM in order to get anything else to run.
    The text in the error dialogue box is not entirely applicable because I was connected to the VMM server and will connect again, when I exit/relaunch.
    An unknown error occurred while executing the PowerShell script:
    The connection to the VMM management server scvmm2.mmmmmm.com was lost.
    Ensure that scvmm2.mmmmmm.com is online and that you can access the server remotely from your computer. Then connect to scvmm2.mmmmmm.com and try the command again using the new connection. Or, you can ensure that the Virtual Machine Manager service is started
    on scvmm2.mmmmmm.com. Then connect to scvmm2.mmmmmm.com and try the command again using the new connection. If the command fails again because of a connection failure, restart the Virtual Manager service and then try the operation again.
    Try the operation again. If the issue persists, contact Microsoft Help and Support.
    ID: 27235
    This is what I get in Events
    Warning 4/9/2015 3:27:04 PM PowerShell (Microsoft-Windows-PowerShell) 4100 Executing Pipeline
    Log Name:      Microsoft-Windows-PowerShell/Operational
    Source:        Microsoft-Windows-PowerShell
    Date:          4/9/2015 3:27:04 PM
    Event ID:      4100
    Task Category: Executing Pipeline
    Level:         Warning
    Keywords:      None
    User:          mmmmmm\paufra
    Computer:      tools-francis.mmmmmm.com
    Description:
    Error Message = The connection to the VMM management server scvmm2.mmmmmm.com was lost. (Error ID: 1610)
    Ensure that scvmm2.mmmmmm.com is online and that you can access the server remotely from your computer. Then connect to scvmm2.mmmmmm.com and try the command again using the new connection. Or, you can ensure that the Virtual Machine Manager service is started
    on scvmm2.mmmmmm.com. Then connect to scvmm2.mmmmmm.com and try the command again using the new connection. If the command fails again because of a connection failure, restart the Virtual Manager service and then try the operation again.
    Fully Qualified Error ID = 1610,Microsoft.SystemCenter.VirtualMachineManager.Cmdlets.GetSCReplicationGroupCmdlet
    Recommended Action = Ensure that scvmm2.mmmmmm.com is online and that you can access the server remotely from your computer. Then connect to scvmm2.mmmmmm.com and try the command again using the new connection. Or, you can ensure that the Virtual Machine Manager
    service is started on scvmm2.mmmmmm.com. Then connect to scvmm2.mmmmmm.com and try the command again using the new connection. If the command fails again because of a connection failure, restart the Virtual Manager service and then try the operation again.
    Context:
            Severity = Warning
            Host Name = Default Host
            Host Version = 4.0
            Host ID = 94963cd4-5979-4786-9da2-c8814de8c7c3
            Host Application = C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\VmmAdminUI.exe
            Engine Version = 4.0
            Runspace ID = 359d7a46-3752-4929-8c09-0de4152d10e4
            Pipeline ID = 16
            Command Name = Get-SCReplicationGroup
            Command Type = Cmdlet
            Script Name =
            Command Path =
            Sequence Number = 91
            User = mmmmmm\paufra
            Shell ID = Microsoft.PowerShell
    User Data:
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-PowerShell" Guid="{A0C1853B-5C40-4B15-8766-3CF1C58F985A}" />
        <EventID>4100</EventID>
        <Version>1</Version>
        <Level>3</Level>
        <Task>106</Task>
        <Opcode>19</Opcode>
        <Keywords>0x0</Keywords>
        <TimeCreated SystemTime="2015-04-09T22:27:04.993655700Z" />
        <EventRecordID>285</EventRecordID>
        <Correlation ActivityID="{48059811-1A63-41E1-9057-7498D0E4FC20}" />
        <Execution ProcessID="2344" ThreadID="4076" />
        <Channel>Microsoft-Windows-PowerShell/Operational</Channel>
        <Computer>tools-francis.mmmmmm.com</Computer>
        <Security UserID="S-1-5-21-4008432563-1984933819-4238309236-2721" />
      </System>
      <EventData>
        <Data Name="ContextInfo">        Severity = Warning
            Host Name = Default Host
            Host Version = 4.0
            Host ID = 94963cd4-5979-4786-9da2-c8814de8c7c3
            Host Application = C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\VmmAdminUI.exe
            Engine Version = 4.0
            Runspace ID = 359d7a46-3752-4929-8c09-0de4152d10e4
            Pipeline ID = 16
            Command Name = Get-SCReplicationGroup
            Command Type = Cmdlet
            Script Name =
            Command Path =
            Sequence Number = 91
            User = mmmmmm\paufra
            Shell ID = Microsoft.PowerShell
    </Data>
        <Data Name="UserData">
        </Data>
        <Data Name="Payload">Error Message = The connection to the VMM management server scvmm2.mmmmmm.com was lost. (Error ID: 1610)
    Ensure that scvmm2.mmmmmm.com is online and that you can access the server remotely from your computer. Then connect to scvmm2.mmmmmm.com and try the command again using the new connection. Or, you can ensure that the Virtual Machine Manager service is started
    on scvmm2.mmmmmm.com. Then connect to scvmm2.mmmmmm.com and try the command again using the new connection. If the command fails again because of a connection failure, restart the Virtual Manager service and then try the operation again.
    Fully Qualified Error ID = 1610,Microsoft.SystemCenter.VirtualMachineManager.Cmdlets.GetSCReplicationGroupCmdlet
    Recommended Action = Ensure that scvmm2.mmmmmm.com is online and that you can access the server remotely from your computer. Then connect to scvmm2.mmmmmm.com and try the command again using the new connection. Or, you can ensure that the Virtual Machine Manager
    service is started on scvmm2.mmmmmm.com. Then connect to scvmm2.mmmmmm.com and try the command again using the new connection. If the command fails again because of a connection failure, restart the Virtual Manager service and then try the operation again.
    </Data>
      </EventData>
    </Event>

    Hi Sir,
    First , please try to run the VMM configuration analyzer on that computer :
    http://www.microsoft.com/en-us/download/details.aspx?id=41555
    In addition , please try to use "VMMTrace" mentioned in following article to collect trace log and find some useful information :
    http://blogs.technet.com/b/jonjor/archive/2011/01/07/vmmtrace-simplified-scvmm-tracing.aspx
    Best Regards,
    Elton Ji
    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] .

  • XL reporter error occurred while executing report! Rows: 25203 Columns: 30

    An error occurred while executing report! Rows: 25203 Columns: 30 Unspecified error
    One user gets this error when trying to run a custom XL report. It works for other users(on different PCs). The user can run other XL reports successfully.

    Hello  pls
    follow below procedure
    start->my computer>cdrive>program files >sap>sap business one> remove these two files 1).AddOnsInstall.sbo and 2).AddOnsLocalRegistration.sbo and clear all ur %temp%Files,prefetch,recent files and restart and open sap then u will get connected to xl reporter add on. and u will not get any errors
    regards
    Jenny

  • Error occured while executing Matlab script

    Hello!
    I want to run a Matlab script under LabVIEW, but there is always
    a error message which says "Error occured while executing script".
    Should I install Matlab on the same computer at first? if yes, do
    I need to configure Matlab under LabVIEW?
    Thanks!
    Le

    Yes No
    Eric P. Nichols
    P.O. Box 56235
    North Pole, AK 99705

  • Unexpected error [0x8CFB0B0] while executing command 'Get-LinkedRoleGroupForLogonUser'

    Hi Experts....
    I am facing a weired error when connecting to Exchange On-Premises...
    I have 2 virtual machines in Virtual-Box .On 1st machine I has installed Active Directory..
    On 2nd machine I have to install Exchange Server.I have joined the second machine in the domain.
    After Installing all the pre-requisites and updates for Exchange when I open the exchange management console I faced the following error....
    Initialization Failed
    The following error occurred when retreiving user information for 'ABC\Administrator':
    Unexpected error [0x8CFB0B0] while executing command 'Get-LinkedRoleGroupForLogonUser'
    Click here to Retry
    Can anyone help me in this regard....!!!!
    Thank You...!!!!

    Hi,
    From the error description, I recommend open C:\Program Files\Microsoft\Exchange Server\V14\RemoteScripts, check the ConsoleInitialize.ps1 file, find "function global:Get-LinkedRoleGroupForLogonUser()", here is the right file of this part for your reference.
    foreach ($sid in $sids)
             try
               $accountName = $sid.Translate([System.Security.Principal.NTAccount]).Value
             catch
               continue
             if ($accountName -ne $null)
               foreach ($roleGroup in $allLinkedRoleGroups)
                 if ([string]::Compare($roleGroup.LinkedGroup,$accountName,$True) -eq 0)
                   $roleGroup
    Hope it helps.
    Best regards,
    Amy
    Amy Wang
    TechNet Community Support

  • Cannot execute my first JSF Program

    Hey all. I am trying to execute my first JSF program but i get this output on the browser when i try to run my login.jsp file through tomcat version 5.
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: /login.jsp(17,0) According to the TLD attribute for is mandatory for tag outputLabel
         org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:83)
         org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:402)
         org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:274)
         org.apache.jasper.compiler.Validator$ValidateVisitor.visit(Validator.java:722)
         org.apache.jasper.compiler.Node$CustomTag.accept(Node.java:1458)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2176)
         org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2226)
         org.apache.jasper.compiler.Validator$ValidateVisitor.visit(Validator.java:759)
         org.apache.jasper.compiler.Node$CustomTag.accept(Node.java:1458)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2176)
         org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2226)
         org.apache.jasper.compiler.Validator$ValidateVisitor.visit(Validator.java:759)
         org.apache.jasper.compiler.Node$CustomTag.accept(Node.java:1458)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2176)
         org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2226)
         org.apache.jasper.compiler.Validator$ValidateVisitor.visit(Validator.java:759)
         org.apache.jasper.compiler.Node$CustomTag.accept(Node.java:1458)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2176)
         org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2226)
         org.apache.jasper.compiler.Node$Visitor.visit(Node.java:2232)
         org.apache.jasper.compiler.Node$Root.accept(Node.java:485)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2176)
         org.apache.jasper.compiler.Validator.validate(Validator.java:1515)
         org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:253)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:459)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:442)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:552)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:291)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:301)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:248)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)
         com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:142)
         com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
         com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)Here is my login.jsp
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
        pageEncoding="ISO-8859-1"%>
        <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
        <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <f:view>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>Login Page</title>
    <f:loadBundle basename="com.tutorial.messages" var="msg"/>
    </head>
    <body>
    <h:form>
    <h:messages layout="table"></h:messages>
    <h:panelGrid columns = "2">
    <h:outputLabel rendered="true" value="#{msg.name}"></h:outputLabel>
    <h:inputText value ="#{loginBean.name}"></h:inputText>
    <h:outputLabel rendered="true" value ="#{msg.password}"></h:outputLabel> }
    <h:inputSecret value="#{loginBean.password.convertedId}">
    <f:converter converterId="javax.faces.Long"></f:converter >
    <f:validator validatorId="com.tutorial.validatePassword"></f:validator >
    <h:commandButton action="login" value="Login"></h:commandButton>
    </h:inputSecret>
    </h:panelGrid>
    <h:commandButton action = "login" value = "#{msg.login}"></h:commandButton>
    </h:form>
    </f:view>
    </body>
    </html>Here is my welcome.jsp
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
        pageEncoding="ISO-8859-1"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
        <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>Welcome</title>
    <f:loadBundle basename="com.tutorial.messages" var ="msg"/>
    </head>
    <body>
    <f:view>
    <h:form>
    <h:outputLabel value = "#{msg.welcome} #{loginBean.name }"></h:outputLabel>
    </h:form>
    </f:view>
    </body>
    </html>I have a LoginBean class which is simple and i am sure nothing is wrong in that. the stack trace tells me that my outputLabel in jsp is not right? but by searching on goole and the tutorial i dont see anything wrong. here is my faces-config.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE faces-config PUBLIC
        "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
        "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config>
         <managed-bean>
              <managed-bean-name>
              loginBean</managed-bean-name>
              <managed-bean-class>
              com.tutorial.LoginBean</managed-bean-class>
              <managed-bean-scope>
              session</managed-bean-scope>
         </managed-bean>
         <navigation-rule>
              <display-name>
              login</display-name>
              <from-view-id>
              /login.jsp</from-view-id>
              <navigation-case>
                   <from-outcome>
                   login</from-outcome>
                   <to-view-id>
                   /welcome.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
         <validator>
              <display-name>
              Validate Password</display-name>
              <validator-id>
              com.tutorial.validatePassword</validator-id>
              <validator-class>
              com.tutorial.validatePassword</validator-class>
         </validator>
    </faces-config>Thank you so much for looking into it.

    its a Small issue
    just use the following
    <code><h:outputText rendered="true"
    value="#{msg.name}"></h:outputText></code>
    instead of <code><h:outputLabel rendered="true"
    value="#{msg.name}"></h:outputLabel> </code>
    and your problem will be fixed.Thanks Master. You are awesome ;). it worked. sorry i was using the tutorial for JSF in jbuilder. dont have intentions to learn right now until i am good in JSP but had to set up everything to run JSF.
    Thank you bro.

  • Error during Portal Setup: An error occurred while executing a custom action:_GrantLocalPermissionsToWCSAccount

    Error:
    Configure Portal Setup
    An error occurred while executing a custom action:_GrantLocalPermissionsToWCSAccount.11EE91AB_EABF_48A6_9973_4DCD73190AC6
    This upgrade attempt has failed before permanent modifications were made. Upgrade has successfully rolled back to the original state of the system. Once the correction are made, you can retry upgrade for this role.
    Errors in the Log:
    MSI (s) (38:14) [21:30:36:094]: NOTE: custom action _GrantLocalPermissionsToWCSAccount.11EE91AB_EABF_48A6_9973_4DCD73190AC6 unexpectedly closed the hInstall handle (type MSIHANDLE) provided to it. The custom action should be fixed to not close that handle.
    CustomAction _GrantLocalPermissionsToWCSAccount.11EE91AB_EABF_48A6_9973_4DCD73190AC6 returned actual error code 1603 (note this may not be 100% accurate if translation happened inside sandbox)
    MSI (s) (38:94) [21:30:36:115]: User policy value 'DisableRollback' is 0
    MSI (s) (38:14) [21:30:36:094]: NOTE: custom action _GrantLocalPermissionsToWCSAccount.11EE91AB_EABF_48A6_9973_4DCD73190AC6 unexpectedly closed the hInstall handle (type MSIHANDLE) provided to it. The custom action should be fixed to not close that handle.
    CustomAction _GrantLocalPermissionsToWCSAccount.11EE91AB_EABF_48A6_9973_4DCD73190AC6 returned actual error code 1603 (note this may not be 100% accurate if translation happened inside sandbox)
    MSI (s) (38:94) [21:30:36:115]: User policy value 'DisableRollback' is 0
    I cannot get past this error. I am running Sharepoint Foundation 2010 with Sp1. This is on a Windows Server 2008 R2 Server +Sp1.
    Any ideas?
    David Baur

    I finally figured this out, The issue was that I had put in the Self Service Portal Computer Name and Service account into the Service Manager SQL as SysAdmin, once I removed it flew through just fine.
    David Baur

  • Receiving the error message while executing the Real Time DTP

    Hi,
    I am receiving the error message while executing the Real time DTP for Billing data.
    Error Message - Record filtered in advance as error records with the same key exist     RSM2     722
    When I check the logs below is the message I am able to see. Can someone suggest as how to proceed further.
    Diagnosis
    The existing DTP requires a serialized update because fields are updated
    non-commutatively during the processing run (for example, MOVE).
    Therefore all new data records that have the same semantic key as
    incorrect records that have not yet been corrected in earlier requests
    or earlier data packages of the same request, are filtered out after the
    extraction in a special step. In this way the system ensures that
    incorrect data records are not repeated for your changes, which may not
    contain errors themselves.
    System Response
    The data record is not updated but is written to an error stack.
    Procedure
    Procedure
    Correct all incorrect data records and update them using an error DTP.
    Procedure for System Administration
    I checked the error stack and corrected the entries and let me know as how to proceed further. I am unable to execute the Error DTP as its not allowing me to edit and has only display options.
    Regards,
    Ram

    Hi Arvindh,
    Its  write optimized DSO.. there is no option to generate SIDs.
    Hi Kiran,
    I checked the link u sent me. Here the main issue is..The function module is standard  and its not allowing me  to do enhancement  point..
    Any idea in using Badi's??
    Thanks all...

  • [0098]SQL*Plus encountered oracle error 100 while executing SQL Statement

    Hi,
    i'm trying to delete duplicate records from a table and running following script. this script is triggered from a unix script. it successfully deletes the records but in the last throws following error message,
    :[0098]SQL*Plus encountered oracle error 100 while executing SQL Statement:2:Investigation required:
    can anybody please help? below is the script.
    DECLARE
    --CURSOR FOR DUPLICATE ROWS
    CURSOR CUR_DUPLICATE_ROWS IS
    Select RMS_NOTE_ID, RMS_SUMMARY_NOTE_ID, count(*) cnt from PARTY_NOTE
    group by RMS_NOTE_ID,RMS_SUMMARY_NOTE_ID having count(*) > 1;
    var_date PARTY_NOTE.PARTY_NOTE_CREATED_DATE%TYPE;
    BEGIN
    FOR DUPLICATE_ROWS_REC IN CUR_DUPLICATE_ROWS
    LOOP
    delete from party_note
    where RMS_NOTE_ID= DUPLICATE_ROWS_REC.RMS_NOTE_ID
    and RMS_SUMMARY_NOTE_ID= DUPLICATE_ROWS_REC.RMS_SUMMARY_NOTE_ID
    and rowid not in (select max(rowid) from party_note
    where RMS_NOTE_ID= DUPLICATE_ROWS_REC.RMS_NOTE_ID and RMS_SUMMARY_NOTE_ID= DUPLICATE_ROWS_REC.RMS_SUMMARY_NOTE_ID);
    commit;
    END LOOP;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    NULL;
    WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE(SQLERRM);
    ROLLBACK;
    END;

    Try this:
    delete party_note
    where  rowid not in (select max(rowid)
                         from   party_note
                         group  by rms_note_id, rms_summary_note_id
    commit;No need for cursors and loops.
    And when that's completed, consider ALTERing the table to add a unique index (or even a primary key) so you'll never need to do this again.

  • SCSM2012 Beta installation problem: An error occurred while executing a custom action:_PopulateUserRoles

    I'm installing the SCSM2012 Management Server
    component on a SQL dev box.  During the installation, the very last step (Import Management Packs) fails with this error:
    An error occurred while executing a custom action:_PopulateUserRoles
    This upgrade attempt has failed before permanent modifications were made. Upgrade has successfully rolled back to the original state of the system. Once the correction are made, you can retry upgrade for this role.
    I've already verified that the account I'm logged in with has SA access to the SQL database.  Windows 2008 R2 firewall is turned off.....
    Has anybody else run into this problem?

    I don't see anything indicative in the setup log.  The setup seems to get all the way to the part where it installs the management packs.  Then right after that is when the installation fails and it rolls back.
    From the setup log, towards the end:
    Property(S): ACTIONSUSER = NETWORK SERVICE
    Property(S): ACTIONSDOMAIN = NT AUTHORITY
    Property(S): ACTIONSUSER_FOR_DB = NETWORK SERVICE
    Property(S): ACTIONSDOMAIN_FOR_DB = NT AUTHORITY
    Property(S): SOURCEDIR = C:\SCSM\SCSM2012_Beta\Setup\Server\
    Property(S): SourcedirProduct = {295201AE-EAB6-416C-8252-7C065243EF55}
    Property(S): ProductToBeRegistered = 1
    MSI (s) (9C:54) [17:33:22:951]: Note: 1: 1708
    MSI (s) (9C:54) [17:33:22:951]: Product: Microsoft System Center Service Manager 2012 -- Installation failed.
    MSI (s) (9C:54) [17:33:22:959]: Windows Installer installed the product. Product Name: Microsoft System Center Service Manager 2012. Product Version: 7.5.1354.0. Product Language: 0. Manufacturer: Microsoft Corporation. Installation success or error status:
    1603.
    MSI (s) (9C:54) [17:33:23:010]: Deferring clean up of packages/files, if any exist
    MSI (s) (9C:54) [17:33:23:013]: MainEngineThread is returning 1603
    MSI (s) (9C:20) [17:33:23:061]: RESTART MANAGER: Session closed.
    MSI (s) (9C:20) [17:33:23:061]: No System Restore sequence number for this installation.
    === Logging stopped: 11/7/2011  17:33:22 ===
    MSI (s) (9C:20) [17:33:23:065]: User policy value 'DisableRollback' is 0
    MSI (s) (9C:20) [17:33:23:065]: Machine policy value 'DisableRollback' is 0
    MSI (s) (9C:20) [17:33:23:065]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (9C:20) [17:33:23:065]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (9C:20) [17:33:23:066]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (9C:20) [17:33:23:067]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
    MSI (s) (9C:20) [17:33:23:067]: Restoring environment variables
    MSI (s) (9C:20) [17:33:23:089]: Destroying RemoteAPI object.
    MSI (s) (9C:28) [17:33:23:089]: Custom Action Manager thread ending.
    MSI (c) (C8:B4) [17:33:23:144]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
    MSI (c) (C8:B4) [17:33:23:175]: MainEngineThread is returning 1603
    === Verbose logging stopped: 11/7/2011  17:33:23 ===

  • An error occurred while executing a custom action:_PopulateUserRoles

    I am trying to install Service Manager 2012 RTM onto a brand new server 2008r2. The purpose is to replace the other Data Management server that is giving me problems upgrading to service pack1. I go through the setup and connect to the SQL server and
    the database that has my existing DM. I am using the same credentials and everything is the same. It goes all the way to the end and I get an error :
    An error occurred while executing a custom action:_PopulateUserRoles
    This upgrade attempt has failed before permanent modifications were made. Upgrade has successfully rolled back to the original state of the system. Once the correction are made, you can retry upgrade for this roll

    After this error, I reran setup and used the domain admin account instead of the Service Manager Admins group I created in AD. The  error did not happen again, but I did get the "Setup cannot complete - RollbackCleanup"
    error. This was fixed by following this link: "http://www.cireson.com/scsm/scsm-an-error-occurred/" and this MS article: "http://support.microsoft.com/kb/922918/en-us".
    These are the steps (I had to create the DWORD 32 bit):
    Click Start, click Run, type regedit, and then click
    OK.
    Locate and then click the following registry subkey:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control
    In the right pane, locate the ServicesPipeTimeout entry.
    Note  If the ServicesPipeTimeout entry does not exist, you must create it. To do this, follow these steps:
    On the Edit menu, point to
    New, and then click DWORD Value.
    Type ServicesPipeTimeout, and then press ENTER.
    Right-click ServicesPipeTimeout, and then click Modify.
    Click Decimal, type 60000, and then click
    OK.
    This value represents the time in milliseconds before a service times out.
    Restart the computer.
    Hope this helps!
    BR,
    Robert
    Robert

  • ODBC error occurred while executing SQLExtendedFetch to retrieve the result

    Good morning everyone,
    I had the following error message while trying to run a simple query in Answers with 3 dimensional columns, 1 fact, and 4 calculated facts...
    "State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 16001] ODBC error state: S1001 code: 0 message: [Oracle][ODBC]Memory allocation error.. [nQSError: 16011] ODBC error occurred while executing SQLExtendedFetch to retrieve the results of a SQL statement. (HY000)
    It's taking around 2,5 minutes to run, then it give that error message.
    Has anyone got any ideas on where I should get started?
    Update: after 2nd time - it's running fine....I've added a filter...could this be the issue? Too many rows initially?

    Damon,
    you were correct - it was indeed an ODBC issue. Switching to OCI has fixed the issue. This link was also very helpful:
    regarding performance
    In my case, the problem with OCI happened because I was using System DSN name instead of how it's called in tnsnames.

Maybe you are looking for