Error when Create User Defined Field

Hi all, i got an error when create UDF
Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
Here is part of my code
oUserFieldMD.Name = fieldname
        oUserFieldMD.Description = fielddesc
        oUserFieldMD.Type = fieldtype
        oUserFieldMD.DefaultValue = defaultValue.ToString()
        If fieldtype <> SAPbobsCOM.BoFieldTypes.db_Date Then
            oUserFieldMD.Size = fieldlength
            oUserFieldMD.EditSize = fieldlength
        End If
        If fieldtype = SAPbobsCOM.BoFieldTypes.db_Float Then
            oUserFieldMD.SubType = SAPbobsCOM.BoFldSubTypes.st_Price
        Else
            oUserFieldMD.SubType = SAPbobsCOM.BoFldSubTypes.st_None
        End If
        oUserFieldMD.TableName = tablename
        lRetVal = oUserFieldMD.Add()
        prgbar.Value = prgbar.Value + 1
        If (lRetVal <> 0) Then
            msgs.Add(tablename & " - " & fieldname & " : " & oCompany.GetLastErrorDescription())
        Else
            msgs.Add(tablename & " - " & fieldname & " : successfully created!")
        End If
the error come when reach lRetVal = oUserFieldMD.Add()
what is wrong with my code ?
thanks.

This could be a x64/x86 problem. Try following this thread
[GetCompanyService|GetCompanyService] and recompile your code for the platform you need.

Similar Messages

  • 8i personal : error when Create user defined aggregate function

    Hi,
    I have problem on creating user defined aggregate function.
    I try to create the sample aggregate function "SecondMax" from 9i developer guide(append at the end of this post).
    It's work to create object type and the type body, but
    there is error when I create the aggregate function..
    "CREATE FUNCTION SecondMax (input NUMBER) RETURN NUMBER
    PARALLEL_ENABLE AGGREGATE USING SecondMaxImpl;"
    I am using 8i personal now.. is that the syntax of create function in 9i is different from that in 8i?
    Example: Creating and Using a User-Defined Aggregate
    This example illustrates creating a simple user-defined aggregate function SecondMax() that returns the second-largest value in a set of numbers.
    Creating SecondMax()
    Implement the type SecondMaxImpl to contain the ODCIAggregate routines.
    create type SecondMaxImpl as object
    max NUMBER, -- highest value seen so far
    secmax NUMBER, -- second highest value seen so far
    static function ODCIAggregateInitialize(sctx IN OUT SecondMaxImpl)
    return number,
    member function ODCIAggregateIterate(self IN OUT SecondMaxImpl,
    value IN number) return number,
    member function ODCIAggregateTerminate(self IN SecondMaxImpl,
    returnValue OUT number, flags IN number) return number,
    member function ODCIAggregateMerge(self IN OUT SecondMaxImpl,
    ctx2 IN SecondMaxImpl) return number
    Implement the type body for SecondMaxImpl.
    create or replace type body SecondMaxImpl is
    static function ODCIAggregateInitialize(sctx IN OUT SecondMaxImpl)
    return number is
    begin
    sctx := SecondMaxImpl(0, 0);
    return ODCIConst.Success;
    end;
    member function ODCIAggregateIterate(self IN OUT SecondMaxImpl, value IN number)
    return number is
    begin
    if value > self.max then
    self.secmax := self.max;
    self.max := value;
    elsif value > self.secmax then
    self.secmax := value;
    end if;
    return ODCIConst.Success;
    end;
    member function ODCIAggregateTerminate(self IN SecondMaxImpl, returnValue OUT
    number, flags IN number) return number is
    begin
    returnValue := self.secmax;
    return ODCIConst.Success;
    end;
    member function ODCIAggregateMerge(self IN OUT SecondMaxImpl, ctx2 IN
    SecondMaxImpl) return number is
    begin
    if ctx2.max > self.max then
    if ctx2.secmax > self.secmax then
    self.secmax := ctx2.secmax;
    else
    self.secmax := self.max;
    end if;
    self.max := ctx2.max;
    elsif ctx2.max > self.secmax then
    self.secmax := ctx2.max;
    end if;
    return ODCIConst.Success;
    end;
    end;
    Create the user-defined aggregate.
    CREATE FUNCTION SecondMax (input NUMBER) RETURN NUMBER
    PARALLEL_ENABLE AGGREGATE USING SecondMaxImpl;
    Using SecondMax()
    SELECT SecondMax(salary), department_id
    FROM employees
    GROUP BY department_id
    HAVING SecondMax(salary) > 9000;

    This could be a x64/x86 problem. Try following this thread
    [GetCompanyService|GetCompanyService] and recompile your code for the platform you need.

  • Error when creating user defined TYPE

    Hi
    I have an object type created as follows
    create type emp_add is object(empno number(3),street varchar2(50),zipcode number(6));
    when I create a type based on the Object created above using
    create type add_rec is emp_add;
    I am getting compilation error
    SQL> sho err
    Errors for TYPE ADD_REC:
    LINE/COL ERROR
    1/17 PLS-00103: Encountered the symbol "EMP_ADD" when expecting one of
    the following:
    array VARRAY_ table object fixed varying opaque sparse
    How can I get rid of this error.I am a Beginner in Oracle database development.
    Thanks in advance

    Do this ->
    satyaki>
    satyaki>create type emp_add is object(empno number(3),street varchar2(50),zipcode number(6));
      2  /
    Type created.
    Elapsed: 00:00:07.77
    satyaki>
    satyaki>create or replace type add_rec as table of emp_add;
      2  /
    Type created.
    Elapsed: 00:00:00.96
    satyaki>
    satyaki>Regards.
    Satyaki De.

  • Not able to create user defined field

    hi experts
    i am not able to create a user defined field through, 'user defined field management ' window,
    when i am selecting this window SAP B1 is hanging ,later i need to close the application .what should be the problem ,
    please help me to solve this issue
    thanks in advance
    ajith

    hi
    thanks for reply
    following is the my sap b1 version and PL
    SAP Business One 2007 B (8.60.035)  SP: 00  PL: 08  2007B_CORE_080709_0214
    yes i created user defined fields in employee  master records
    kind regards
    ajith

  • Creating User Defined Fields via DI API

    Hello,
    Has anyone tried creating User Defined Fields via DI without direct database intervention ? My add on relies on some UDF's that have to be created on install.
    Thank you

    I regularly use the UI API to do this.  You can find several discussions on this forum.  I have not put this in my installation program, but I use UserFieldsMD in the DI API and a CSV file from Excel to store the information about the fields.

  • Problem in creating user defined fields

    hi,
       i created nearly 25 userdefined fields. after that b1 is not allowing me to created further, I like to know any restriction is there to create or kindly give me the solution to create.
    Regards
    R.vijai

    Vijaya,
    This kind of bottlenecks are common when using SQL Server 2000 where it has a row size limitation.
    Click on the link below and read the thread as it also related to the similar error.
    Error in defining the User Defined Fields
    Suda

  • Create User-defined field for Marketing Documents

    I need to create a User-Defined field for Marketing Documents under Title and Rows.
    I need to do it via .NET instead of manually go into SAP to create it.
    Does anyone can give me idea on how to do this?

    Hi David,
    There are examples of how to do this in the SDK samples (look for MetaDataOperations project in the DI samples).
    There are also examples in the SDK help. Here's one:
    Private Sub AddUserField()
    '// The UserFieldsMD represents a meta-data object that allows you
    '// to addremove fields from tables or change the fields' characteristics
        Dim oUserFieldsMD As SAPbobsCOM.UserFieldsMD
    '// In any meta-data operation there should be no other object "alive"
    '// but the meta-data object, otherwise the operation will fail.
    '// This restriction is intended to prevent a collisions.
        '// The meta-data object needs to be initialized with a
        '// regular UserFields object
        Set oUserFieldsMD = oCompany.GetBusinessObject(oUserFields)
        '// When adding user tables or fields to the SAP Business One database
        '// use a prefix identifying your partner name space
        '// this will prevent collisions between the various partners add-ons
        '// SAP's name space prefix is "BE_"
        '// Set the Fields' mandatory properties
        oUserFieldsMD.TableName = "OCRD" '// BP table
        oUserFieldsMD.Name = "BE_UserField1"
        oUserFieldsMD.Description = "A user field"
        oUserFieldsMD.Type = db_Alpha '// am alphanumeric type
        oUserFieldsMD.EditSize = 20
        '// Add the field to the table
        oUserFieldsMD.Add
    End Sub
    Kind Regards,
    Owen

  • Error when use User-Defined Function

    I just create User defined function "getfilename" and I put there:
    "DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File","FileName");
    String ourSourceFileName = conf.get(key);
    return ourSourceFileName; ".
    But In test mapping I have worning:
    "Runtime exception during processing target field mapping /ns1:Z_KBFI_INPUT_FILE/IS_IFILE/FILE_NAME. The message is: Exception:[java.lang.NullPointerException] in class com.sap.xi.tf._KBFIMsgMapping_ method get_fname$[com.sap.aii.mappingtool.tf3.rt.Context@37d4662c] com.sap.aii.mappingtool.tf3.MessageMappingException: Runtime exception during processing target field mapping /ns1:Z_KBFI_INPUT_FILE/IS_IFILE/FILE_NAME. The message is: Exception:[java.lang.NullPointerException] in class com.sap.xi.tf._KBFIMsgMapping_ method get_fname$[com.sap.aii.mappingtool.tf3.rt.Context@37d4662c] at com.sap.aii.mappingtool.tf3.AMappingProgram.processNode(AMappingProgram.java:284) at com.sap.aii.mappingtool.tf3.AMappingProgram.processNode(AMappingProgram.java:238)...."
    And in RWB in Communication Channel Monitoring I can not see file name in the payload.
    Maby I do something wrong, please tell me.

    my source file 200610.txt is like this:
    HR 0610 061030 061021
    DR 03 C 0610 820114 00010111 0000015000 PLN descr...
    DR 03 D 0610 403201 00010111 0000015000 PLN descr..
    TR 0000000002
    Then in sxmb_moni in inbound message (payload) I have:
    <?xml version="1.0" encoding="utf-8" ?>
    - <ns:KBFIMsgTypeSource xmlns:ns="http://p4.org/xi/KBFI/Interface">
    - <FIRecordset>
    - <HeaderLine>
      <LineKey>HR</LineKey>
      <PostingPeriod>0610</PostingPeriod>
      <PostingEndDate>061030</PostingEndDate>
      <PostingDate>061021</PostingDate>
      </HeaderLine>
    - <PostingLine>
      <LineKey>DR</LineKey>
      <ServerID>03</ServerID>
      <DCFlag>C</DCFlag>
      <PostingPeriod>0610</PostingPeriod>
      <GLAccount>820114</GLAccount>
      <SubAccount>00010111</SubAccount>
      <NetValue>0000015000</NetValue>
      <Currency>PLN</Currency>
      <Description>descr...</Description>
      </PostingLine>
    - <PostingLine>
      <LineKey>DR</LineKey>
      <ServerID>03</ServerID>
      <DCFlag>D</DCFlag>
      <PostingPeriod>0610</PostingPeriod>
      <GLAccount>403201</GLAccount>
      <SubAccount>00010111</SubAccount>
      <NetValue>0000015000</NetValue>
      <Currency>PLN</Currency>
      <Description>descr..</Description>
      </PostingLine>
      </FIRecordset>
      </ns:KBFIMsgTypeSource>
    But I don't have payload for Response (black and white flag).
    In DynamicConfiguration i have:
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Response
      -->
    - <SAP:DynamicConfiguration xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Record namespace="http://sap.com/xi/XI/System/File" name="SourceFileSize">141</SAP:Record>
      <SAP:Record namespace="http://sap.com/xi/XI/System/File" name="FileType">txt</SAP:Record>
      <SAP:Record namespace="http://sap.com/xi/XI/System/File" name="SourceFileTimestamp">20061212T121622Z</SAP:Record>
      <SAP:Record namespace="http://sap.com/xi/XI/System/File" name="FileEncoding">ISO646-US</SAP:Record>
      <SAP:Record namespace="http://sap.com/xi/XI/System/File" name="FileName">200610.txt</SAP:Record>
      <SAP:Record namespace="http://sap.com/xi/XI/System/File" name="Directory">/usr/sap/PXD/put/archive</SAP:Record>
      </SAP:DynamicConfiguration>

  • Error after transport: "User defined field Management hanged"

    i have create the document lines table through dot net code ,after creating tables user defined field management set up hanged .if it is possible the re solution please tell me.
    Srinivasan

    Hi S Thirumurugan ,
    You need to create the table using the SDK...if not the User defined field manangement setup cannot open it table will be inconsistant constraint with the table...
    For adding the table through SDK check the SDK Help...
    With regards,
    MadhuSudhana Rao.G

  • Can i create user-defined fields that are checkboxes?

    I need to create a set of user defined fields on Activities that are a checkboxes. I cant see any options in the manage user fields dialog to set the field as a checkbox, the only options are alphanumeric, Datetime, Units & Totals etc.
    Can user defined fields be added that appear as checkboxes? if so, how do i do it?

    What you need will not be available by UDF.  You need SDK programming for any Check Boxes.  However, you may use predefined list for UDF to imitate part of functions of the check box.
    Thanks,
    Gordon

  • DI error when binding user defined table

    Hi,
    I am using matrix. Im binding a User defined table '@NEW' to a Datasource
    oForm.DataSources.DBDataSources.Add("@NEW")
    I also bind the fields to column of the matrix as given below
    oColumn = oColumns.Item("CodeNo")
    oColumn.DataBind.SetBound(True, "@NEW", "U_CodeNo")
    When the table @New contains no records i get error while binding the fields to the matrix.
    I tried the same using STANDARD SAP tables.I am not getting any error and it works fine.
    Can anyone help me?

    Hi,
    I am using matrix. Im binding a User defined table '@NEW' to a Datasource
    oForm.DataSources.DBDataSources.Add("@NEW")
    I also bind the fields to column of the matrix as given below
    oColumn = oColumns.Item("CodeNo")
    oColumn.DataBind.SetBound(True, "@NEW", "U_CodeNo")
    When the table @New contains no records i get error while binding the fields to the matrix.
    I tried the same using STANDARD SAP tables.I am not getting any error and it works fine.
    Can anyone help me?

  • Getting error when run user defined transaction code

    Hi there,
    I created one ZTcode by using standard Tcode's program and screen number. When I run this Ztcode,  shows an error "Error when access file TC10 Ztcode" on taskbar. What is problem, pls reply.
    ur answer is most useful.
    Regards,
    Zakir Khan.

    TC10 stores information related to SAP transaction like TC10-TRTYP which give the type of transaction (display, edit, initial)
    The standard program check in this table (and other TC*) how it should perform.
    Way to solve the problem
    - try defining you Z-transaction by referencing standard transaction, not giving the program/dynpro.
    - If that don't work you may have to duplicate the called program and then override sy-tcode by the original value in the program before accessing tables TC*
    - Other way is to duplicate records in table TC10 and other tables
    Regards

  • LDAD Time Sync Error when creating user

    Hi, we have a web service for eDirectory 8.8 SP5 that creates a few
    users and does a couple other services. When the web service it
    configured to connect to 1 of the 2 eDirectory servers (1 is a master,
    and the other is read/write replica) then everything works just fine
    (both server work just fine as long as you only connect to one of them
    only). However, we tried to add redundancy by putting a load balancer
    in front of the 2 eDir servers. When we use the VIP to make the LDAP
    connection, we keep on getting this error when we try to create a user:
    Caused by: LDAPException: Other (80) Other
    LDAPException: Server Message: NDS error: time not synchronized (-659)
    LDAPException: Matched DN:
    at com.novell.ldap.LDAPResponse.getResultException(Un known Source)
    at com.novell.ldap.LDAPResponse.chkResultCode(Unknown Source)
    at com.novell.ldap.LDAPConnection.chkResultCode(Unkno wn Source)
    at com.novell.ldap.LDAPConnection.modify(Unknown Source)
    at com.novell.ldap.LDAPConnection.modify(Unknown Source)
    I've ran ndsrepair -T and the time looks like it is synched and both
    servers are running NTP. Do you know what could be causing this
    problem? Also, it isn't the LB connection itself b/c everything works
    fine if we disable one of the servers in the LB and still use the VIP
    just to connect to just 1 server.
    Thanks
    Kalin35
    Kalin35's Profile: http://forums.novell.com/member.php?userid=72672
    View this thread: http://forums.novell.com/showthread.php?t=421486

    -----BEGIN PGP SIGNED MESSAGE-----
    Hash: SHA1
    Can you tell us more about the changes taking place? For example, I
    believe this can happen if you modify objectA on replica0 and then modify
    objectA in another way on replica1. Timestamps on objects are made up of
    the seconds since 1970 followed by a replica number (each replica's is
    unique) and then an event number. As a result perhaps eDir feels time is
    out of sync when it makes a change on a box and then the other replica
    synchronizes in changes it received just a second earlier from your
    application. It may be tricky to isolate if this is the case but it
    should be possible with a bit of analysis. In the meantime you may want
    to ensure your application (or your VIP) batches changes to one box and
    then to the other as much as possible. The benefit of multi-master
    replication (which eDirectory does by default) is you can write changes to
    multiple boxes simultaneously, but the challenge is the same and requires
    a way to resolve differences using transitive vectors which are made up of
    those timestamps.
    Good luck.
    On 09/21/2010 04:06 PM, Kalin35 wrote:
    >
    > Hi, we have a web service for eDirectory 8.8 SP5 that creates a few
    > users and does a couple other services. When the web service it
    > configured to connect to 1 of the 2 eDirectory servers (1 is a master,
    > and the other is read/write replica) then everything works just fine
    > (both server work just fine as long as you only connect to one of them
    > only). However, we tried to add redundancy by putting a load balancer
    > in front of the 2 eDir servers. When we use the VIP to make the LDAP
    > connection, we keep on getting this error when we try to create a user:
    >
    > Caused by: LDAPException: Other (80) Other
    > LDAPException: Server Message: NDS error: time not synchronized (-659)
    > LDAPException: Matched DN:
    > at com.novell.ldap.LDAPResponse.getResultException(Un known Source)
    > at com.novell.ldap.LDAPResponse.chkResultCode(Unknown Source)
    > at com.novell.ldap.LDAPConnection.chkResultCode(Unkno wn Source)
    > at com.novell.ldap.LDAPConnection.modify(Unknown Source)
    > at com.novell.ldap.LDAPConnection.modify(Unknown Source)
    >
    >
    > I've ran ndsrepair -T and the time looks like it is synched and both
    > servers are running NTP. Do you know what could be causing this
    > problem? Also, it isn't the LB connection itself b/c everything works
    > fine if we disable one of the servers in the LB and still use the VIP
    > just to connect to just 1 server.
    >
    > Thanks
    >
    >
    -----BEGIN PGP SIGNATURE-----
    Version: GnuPG v2.0.15 (GNU/Linux)
    Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
    iQIcBAEBAgAGBQJMmTgcAAoJEF+XTK08PnB5F70QAI2FqxmouS Ljb2CZYOgEPE14
    8sIKFJmskkQJBInS41vT0HOllbKzTQwVel99facLbr425piggC X6tN9r0U4Pnoil
    0jBdjb/HX6qy1E1gcCQWlMLFNjKw7pG8kY+iT+lteAjrjU0h5uJB2JYoX 5KXaKQX
    8GDCW38mXuWLX6x9WEwZ0WXMlU/Xbynjs8R1k9LY34pxK9Map2pADZKO8TT7V8Hs
    zG7ZMmsMeos/3vgbc5sUmflGGpmivmhihp7RZE8ME5FvKRC1ximsaEqLrWNrpT 1H
    IAnnBgG5vdcOcDDIiYKnTIj2JYMhb4JapxaNyQurIDgAbBQo1g yyWmYJlRfe+pQP
    TjIQHRTVZQdy4Y98G2RisNbSwZMv8zC1buDDq1njCYS/OO/3rqo3/yL5bh2n/pjf
    e6WMVAzsihd/csc9vOW7Z/9X0apKrckZUorhftdrEJCWOdnOXOx1MaZXhl0ppAKy
    sdJU12wdFMUi32F79yjxrcriUq/Hh3w76vT9nVXUR9XuSIXR77uuWtvBt/qSNAqt
    9IOL64jMHPw/AGyBTrvdp+Xz8MVkVzwXotctamACVmTeZ6bhFzPigfZ72zTQwH DV
    QNF3Mql5hw1LdgwytgeIzbAuHYZdml2b2e+esU5DkEZNegpFYj gptZSAohzTCQMH
    pY9I+p8g4ca4urXWtzpp
    =AZgR
    -----END PGP SIGNATURE-----

  • Error when creating a description field. MySQL syntax to use?

    I'm creating a form which has a description field in it. I created this form with many fields. However I then got an error and decided to limit the form to only 2 fields. These 2 fields (user and title) insert with no problem. However when I added the description field into the mix. I gat the same error I had previously gotten.
    Error:
    Internal error.
    Developer Details:
    tNG_fields.getFakeRecordset:
    SQL error: Error creating temporary table:
    You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'desc TEXT, job_id TEXT)' at line 1
    SQL:
    CREATE TEMPORARY TABLE KT_fakeRS_20080204 (client_id TEXT, name TEXT, desc TEXT, job_id TEXT) (FIELDS_FAKE_RS_ERROR)
    tNG Execution Trace - VIEW
    * tNG_insert.executeTransaction
    o STARTER.Trigger_Default_Starter
    * tNG_insert.getRecordset
    * tNG_insert.getLocalRecordset
    * tNG_insert.getFakeRecordset*
    I'm using the "Text" syntax for the field "desc" (description)
    What am I doing wrong? Do I need to define the table row in a different way?

    Hi,
    I am working on an image gallery using the tutorials.
    I used the sql
    SELECT *,
    rand() as random_number
    FROM image_img
    ORDER BY random_number DESC LIMIT 1
    on my default.php page but on preview i get the message
    You have an error in your SQL syntax near 'LIMIT 0, 10' at line 1
    I tried the solution above by removing the desc limit.
    I got the same prob.
    I will like to know how best to tackle this.
    Thanks
    Yomi

  • Error when create user via OIM web

    Hi Gurus..
    I hava some problem when I creating new user via web OIM, error appear while inpute the start date value.
    Need help for you guys,
    This is the error code.
    <Error> <oracle.adfinternal.view.faces.config.rich.RegistrationConfigurator> <BEA-000000> <ADF_FACES-60096:Server Exception during PPR, #5
    java.lang.NullPointerException
        at oracle.iam.identitytaskflow.utils.UserManagerValidationUtils.handleAccountEndDateValidation(UserManagerValidationUtils.java:237)
        at oracle.iam.identitytaskflow.utils.UserManagerValidationUtils.processDateValidations(UserManagerValidationUtils.java:589)
        at oracle.iam.identitytaskflow.utils.UserManagerValidationUtils.processDateValidation(UserManagerValidationUtils.java:543)
        at oracle.iam.identitytaskflow.common.components.UIInputDate$DateValueValueChangeListener.processValueChange(UIInputDate.java:135)
        at javax.faces.event.ValueChangeEvent.processListener(ValueChangeEvent.java:134)
        at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcast(UIXComponentBase.java:675)
        at org.apache.myfaces.trinidad.component.UIXEditableValue.broadcast(UIXEditableValue.java:210)
        at org.apache.myfaces.trinidad.component.UIXSelectInput.broadcast(UIXSelectInput.java:216)
        at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
        at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
        at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
        at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
        at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
        at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
        at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:902)
        at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:357)
        at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:186)

    probably yes but I am not so sure about that, I have checked the User.xml for make sure this but I can't found something wrong. any clue Shashank?
    Regards,
    -Rius-

Maybe you are looking for