11g db links issue

Hi All,
We are sitting on 11gR2 . I have one issue , where one of the db link refuse to work because of the wrong password. on 11g , we can find the password for db links.well, is there any workaround of these situation , as we can not recreate the db links , as this db links is being used by many schames.
SQL> select * from [email protected] ;
select * from [email protected]
ERROR at line 1:
ORA-01017: invalid username/password; logon denied
ORA-02063: preceding line from RDSAP
-------db link ddl-------
create database link
PACKAGING.RDSAP.US.ESTEE.COM
connect to PDM9 identified by  using 'rdsap'
;

Hi,
Hi All,
We are sitting on 11gR2 . I have one issue , where one of the db link refuse to work because of the wrong password. on 11g , we can find the password for db links.well, is there any workaround of these situation , as we can not recreate the db links , as this db links is being used by many schames.
SQL> select * from [email protected] ;
select * from [email protected]
ERROR at line 1:
ORA-01017: invalid username/password; logon denied
ORA-02063: preceding line from RDSAP
-------db link ddl-------
create database link
PACKAGING.RDSAP.US.ESTEE.COM
connect to PDM9 identified by  using 'rdsap'
;See, the error is very much straight forward. Username/Password that you have specified in DB link is not correct.
Drop the exsiting DBlink and recreate it with correct Username and Password.
Also just a small thing that you can take care is of the "CASE" of your password since 11g is case sensitive for passwords...
Regards,
Navneet

Similar Messages

  • OBIEE 11g: Dashboard Javascript Issue

    Hi Gurus,
    We have upgraded obiee from 10g to 11g and finding issues with javascript in a dashboard.
    Functionality: There are some custom labels showing prompt values in it with large font. When user change prompt value and Apply, it should change the value of those text as well.
    In 10g its running fine, but in 11g its not happening after we change the value of prompts. I found the following Javascript is responsible for this functionality. Even I saw one thread to suggest the exactly same code, but in 10g.
    <script type="text/javascript">
    (function(){
    var tblTag = document.getElementsByTagName('table');
    var tdElem= document.getElementsByTagName('td');
    for(m=0;m<tdElem.length;m++){
    if(tdElem[m].className=='GFPSubmit'){tdElem[m].childNodes[0].tBodies[0].rows[0].cells[0].childNodes[0].childNodes[0].innerHTML='Run Report';
    }//close if statement
    }//close for loop
    }// close function clickVal()
    </script>
    Thread:
    Change Go Button Text on Prompt Only
    I need to understand what its actually doing? and Does it really work in 11g? Whats the alternative code?
    Thanks in advance.

    In 10g these are the html objects, after upgrade you need to know the html objects for that report based on that you need to modify javascript code.
    From given code, activity is doing on these objects; You need to find out the equivalent object name for 'GFPSubmit' in 11g.
    GFPSubmit
    table
    td
    If make sense mark

  • Slow program response, crashes when creating titles and dynamic link issues

    Dear reader,
    I am now trialling Adobe CC OSX with Premiere Pro and After Effects before deciding to subscribe but I am experiencing a lot of issues while working.
    I am now working on an animation, but editing raw mxf files also gives crashes and slow responses/ program refreshes.
    1) Slow mouse response
    2) Slow program refresh while key framing visuals
    3) Rendering in PP is extremely slow when AE is open in the background, when closing AE and re-initiate the render in PP it renders super fast
    4) Crashes. When I overlay titles in my time line PP regularly crashes
    5) Dynamic Link issues when working combined in AE and PP where file connections in the time line get lost when the AE project has too many sequences
    I am curious to find out if other people are also experiencing these issues.
    I am indecisive in getting the paid yearly plan or move to FCPX instead? Or should I get a new MacPro and is this model too old?
    It worked fine 2 months ago, however I was still working on FCP7. After updating it is really bad working with it...
    My system consist of:
    MacPro mid-2010
    OSX 10.9.5 (13F34) (new installation)
    2x2,66Ghz 6-core Intel Xeon
    24GB DDR3 ECC
    Nvidia Quadro K5000, 4GB
    2x PCIe SSD 1TB
    2x HDD 3TB
    2x HDD 2TB
    Feedback is much appreciated! Best regards, Alexander

    this does work for basic colour correction but not when trying to grade an entire suqence to achieve a specific style, applying a vingette or certain effects have to be done in after effects.
    I want to try and get my whole sequence into after effects but preserve the edits and effects added in permier pro, is there any way to do this?
    rich

  • Oracle 11g - External Table Issue SQL - PL/SQL?

    Oracle 11g - External Table Issue?
    =====================
    I hope this is the right forum for this issue, if not let me, where to go.
    We are using Oracle 11g (11.2.0.1.0) on (Platform : solaris[tm] oe (64-bit)), Sql Developer 3.0.04
    We are trying to use oracle external table to load text files in .csv format. Here is our data look like.
    ======================
    Date1,date2,Political party,Name, ROLE
    20-Jan-66,22-Nov-69,Democratic,"John ", MMM
    22-Nov-70,20-Jan-71,Democratic,"John Jr.",MMM
    20-Jan-68,9-Aug-70,Republican,"Rick Ford Sr.", MMM
    9-Aug-72,20-Jan-75,Republican,Henry,MMM
    ALL NULL -- record
    20-Jan-80,20-Jan-89,Democratic,"Donald Smith",MMM
    ======================
    Our Expernal table structures is as follows
    CREATE TABLE P_LOAD
    DATE1 VARCHAR2(10),
    DATE2 VARCHAR2(10),
    POL_PRTY VARCHAR2(30),
    P_NAME VARCHAR2(30),
    P_ROLE VARCHAR2(5)
    ORGANIZATION EXTERNAL
    (TYPE ORACLE_LOADER
    DEFAULT DIRECTORY P_EXT_TAB_D
    ACCESS PARAMETERS (
    RECORDS DELIMITED by NEWLINE
    SKIP 1
    FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' LDRTRIM
    REJECT ROWS WITH ALL NULL FIELDS
    MISSING FIELD VALUES ARE NULL
    DATE1 CHAR (10) Terminated by "," ,
    DATE2 CHAR (10) Terminated by "," ,
    POL_PRTY CHAR (30) Terminated by "," ,
    P_NAME CHAR (30) Terminated by "," OPTIONALLY ENCLOSED BY '"' ,
    P_ROLE CHAR (5) Terminated by ","
    LOCATION ('Input.dat')
    REJECT LIMIT UNLIMITED;
    It created successfully using SQL Developer
    Here is the issue.
    It is not loading the records, where fields are enclosed in '"' (Rec # 2,3,4,7)
    It is loading all NULL value record (Rec # 6)
    *** If we remove the '"' from input data, it loads all records including all NULL records
    Log file has
    KUP-04021: field formatting error for field P_NAME
    KUP-04036: second enclosing delimiter not found
    KUP-04101: record 2 rejected in file ....
    Our questions
    Why did "REJECT ROWS WITH ALL NULL FIELDS" not working?
    Why did Terminated by "," OPTIONALLY ENCLOSED BY '"' not working?
    Any idea?
    Thanks in helping.
    Edited by: qwe16235 on Jun 11, 2011 11:31 AM

    I'm not sure, but maybe you should get rid of the redundancy that you have in your CREATE TABLE statement.
    This line covers all fields:
    FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"'
    {code}
    So I would change the field list to:
    {code}
    DATE1 CHAR (10),
    DATE2 CHAR (10),
    POL_PRTY CHAR (30),
    P_NAME CHAR (30),
    P_ROLE CHAR (5)
    {code}
    It worked on my installation.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Oracle 11g - External Table Issue?

    Oracle 11g - External Table Issue?
    =====================
    I hope this is the right forum for this issue, if not let me, where to go.
    We are using Oracle 11g (11.2.0.1.0) on (Platform : solaris[tm] oe (64-bit)), Sql Developer 3.0.04
    We are trying to use oracle external table to load text files in .csv format. Here is our data look like.
    ======================
    Date1,date2,Political party,Name, ROLE
    20-Jan-66,22-Nov-69,Democratic,"John ", MMM
    22-Nov-70,20-Jan-71,Democratic,"John Jr.",MMM
    20-Jan-68,9-Aug-70,Republican,"Rick Ford Sr.", MMM
    9-Aug-72,20-Jan-75,Republican,Henry,MMM
    ------ ALL NULL -- record
    20-Jan-80,20-Jan-89,Democratic,"Donald Smith",MMM
    ======================
    Our Expernal table structures is as follows
    CREATE TABLE P_LOAD
    DATE1 VARCHAR2(10),
    DATE2 VARCHAR2(10),
    POL_PRTY VARCHAR2(30),
    P_NAME VARCHAR2(30),
    P_ROLE VARCHAR2(5)
    ORGANIZATION EXTERNAL
    (TYPE ORACLE_LOADER
    DEFAULT DIRECTORY P_EXT_TAB_D
    ACCESS PARAMETERS (
    RECORDS DELIMITED by NEWLINE
    SKIP 1
    FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' LDRTRIM
    REJECT ROWS WITH ALL NULL FIELDS
    MISSING FIELD VALUES ARE NULL
    DATE1 CHAR (10) Terminated by "," ,
    DATE2 CHAR (10) Terminated by "," ,
    POL_PRTY CHAR (30) Terminated by "," ,
    P_NAME CHAR (30) Terminated by "," OPTIONALLY ENCLOSED BY '"' ,
    P_ROLE CHAR (5) Terminated by ","
    LOCATION ('Input.dat')
    REJECT LIMIT UNLIMITED;
         It created successfully using SQL Developer
    Here is the issue.
    It is not loading the records, where fields are enclosed in '"' (Rec # 2,3,4,7)
    It is loading all NULL value record (Rec # 6)     
    *** If we remove the '"' from input data, it loads all records including all NULL records
    Log file has
    KUP-04021: field formatting error for field P_NAME
    KUP-04036: second enclosing delimiter not found
    KUP-04101: record 2 rejected in file ....
    Our questions
    Why did "REJECT ROWS WITH ALL NULL FIELDS" not working?
    Why did Terminated by "," OPTIONALLY ENCLOSED BY '"' not working?
    Any idea?
    Thanks in helping.
    Edited by: qwe16235 on Jun 10, 2011 2:16 PM

    The following worked for me:
    drop table p_load;
    CREATE TABLE P_LOAD
    DATE1 VARCHAR2(10),
    DATE2 VARCHAR2(10),
    POL_PRTY VARCHAR2(30),
    P_NAME VARCHAR2(30),
    P_ROLE VARCHAR2(5)
    ORGANIZATION EXTERNAL
    (TYPE ORACLE_LOADER
    DEFAULT DIRECTORY scott_def_dir1
    ACCESS PARAMETERS (
    RECORDS DELIMITED by NEWLINE
    badfile scott_def_dir2:'p_load_%a_%p.bad'
    logfile scott_def_dir2:'p_load_%a_%p.log'
    SKIP 1
    FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' LDRTRIM
    MISSING FIELD VALUES ARE NULL
    REJECT ROWS WITH ALL NULL FIELDS
    DATE1 CHAR (10) Terminated by "," ,
    DATE2 CHAR (10) Terminated by "," ,
    POL_PRTY CHAR (30) Terminated by "," ,
    P_NAME CHAR (30) Terminated by "," OPTIONALLY ENCLOSED BY '"' ,
    P_ROLE CHAR (5) Terminated by ","
    LOCATION ('Input.dat')
    REJECT LIMIT UNLIMITED;
    Note that I had to interchange the two lines:
    MISSING FIELD VALUES ARE NULL
    REJECT ROWS WITH ALL NULL FIELDS
    Just to get the access parameters to parse correctly.
    I added two empty lines, one in the middle and one at the end - both were rejected.
    In the log file, you will see the rejectiions:
    $ cat p_load_000_9219.log
    LOG file opened at 07/08/11 19:47:23
    Field Definitions for table P_LOAD
    Record format DELIMITED BY NEWLINE
    Data in file has same endianness as the platform
    Reject rows with all null fields
    Fields in Data Source:
    DATE1 CHAR (10)
    Terminated by ","
    Enclosed by """ and """
    Trim whitespace same as SQL Loader
    DATE2 CHAR (10)
    Terminated by ","
    Enclosed by """ and """
    Trim whitespace same as SQL Loader
    POL_PRTY CHAR (30)
    Terminated by ","
    Enclosed by """ and """
    Trim whitespace same as SQL Loader
    P_NAME CHAR (30)
    Terminated by ","
    Enclosed by """ and """
    Trim whitespace same as SQL Loader
    P_ROLE CHAR (5)
    Terminated by ","
    Enclosed by """ and """
    Trim whitespace same as SQL Loader
    KUP-04073: record ignored because all referenced fields are null for a record
    KUP-04073: record ignored because all referenced fields are null for a record
    Input Data:
    Date1,date2,Political party,Name, ROLE
    20-Jan-66,22-Nov-69,Democratic,"John ", MMM
    22-Nov-70,20-Jan-71,Democratic,"John Jr.",MMM
    20-Jan-68,9-Aug-70,Republican,"Rick Ford Sr.", MMM
    9-Aug-72,20-Jan-75,Republican,Henry,MMM
    4-Aug-70,20-Jan-75,Independent
    Result:
    SQL> select * from p_load;
    DATE1 DATE2 POL_PRTY P_NAME P_ROL
    20-Jan-66 22-Nov-69 Democratic John MMM
    22-Nov-70 20-Jan-71 Democratic John Jr. MMM
    20-Jan-68 9-Aug-70 Republican Rick Ford Sr. MMM
    9-Aug-72 20-Jan-75 Republican Henry MMM
    Regards,
    - Allen

  • URL link issue

    Hi
    I am trying to create a link in my project to one of our
    company intranet pages. I am using a click box and the URL - it
    works fine in the Preview from Slide or next 5 slides, but when I
    Preview in Web Browser it doesn't connect. Any suggestions as to
    what might be the cause?
    Thanks
    Alex

    Hi Alex
    Hmmm, before investigating too deeply, I'm seeing some
    familiarity here. For starters, the first link is to a .PDF. It's
    been my experience that links to .PDF and Word .DOC files is "iffy"
    at best. If you truly copied and pasted the links, I'd first try
    removing the %20 from that first link. That's something the browser
    normally inserts for a space. So instead of:
    http://wlgweb/Corporat/HumanResources/Staff%20Conduct/EmailInternetUsagePolicy.pdf
    Change it to read:
    http://wlgweb/Corporat/HumanResources/Staff
    Conduct/EmailInternetUsagePolicy.pdf
    This may help and it may just be twisting in the wind. But
    I'd try that first. I've often seen linking issues arise from that
    silly %20. If possible, try to avoid that. I'm guessing here that
    it may not be possible to control in your case as someone else may
    be in control of those names. I've personally always opted to
    either use a mix of upper/lower case names ( StaffConduct ) or
    substitution of an underscore where spaces would normally occur (
    Staff_Conduct ).
    Other wierdness I've seen when linking to .PDF content:
    * I personally had a different PDF reader (Foxit) installed
    as my default. When Foxit was my default reader, PDF links refused
    to open.
    * I think this one is IE specific, but I've also seen it
    where if I have a .PDF in the same folder and open that way, even
    though the address is totally correct, the first time through, the
    link fails. With the totally correct address showing in the address
    bar. I simply refresh the page and bingo, the PDF shows! Go figure.
    I really don't believe that this one is related to Captivate and
    the way it calls the links. My gut tells me it's an IE thing. But I
    have nothing to back me up on this.
    I'm not sure what to say or suggest for the second link. I
    tested it myself and it doesn't work, which tells me that either
    the link is simply incorrect, or possibly it's located on an
    intranet site.
    Sincerely... Rick

  • OCCI linking issue on HUPX11

    Hello,
    I am trying to make an OCCI9.2 sample application (occidesc) getting linking issue. I am don't think I have all the required Oracle library in my linking options. What am I missing?
    My development environment: HUPX11, g++3.3.2, OCCI 9.2
    ===============================================
    Link flags:
    LDFLAGS = -L$(ORACLE_HOME)/lib32 \
    -L$(ORACLE_HOME)/rdbms/lib32 \
    -locci -locci9 -lclntsh \
    `cat /u01/home/oracle/product/920/lib32/sysliblist`
    ========================================================
    Linker errors:
    /usr/ccs/bin/ld: Unsatisfied symbols:
    typeinfo for oracle::occi::SQLException(first referenced in occidesc.o) (data)
    oracle::occi::SQLException::SQLException[in-charge](oracle::occi::SQLException const&)(first referenced in occidesc.o) (code)
    oracle::occi::Environment::createEnvironment(oracle::occi::Environment::Mode, void*, void* (*)(void*, unsigned long), void* (*)(void*, void*, unsigned long), void (*)(void*, void*))(first referenced in occidesc.o) (code)
    oracle::occi::MetaData::getBoolean(oracle::occi::MetaData::AttrId) const(first referenced in occidesc.o) (code)
    oracle::occi::MetaData::operator=(oracle::occi::MetaData const&)(first referenced in occidesc.o) (code)
    oracle::occi::MetaData::getUInt(oracle::occi::MetaData::AttrId) const(first referenced in occidesc.o) (code)

    I can't find any documentation referencing supported compiler for OCCI. Do you know of any from Oracle that support my environment?
    Environment:
    Oracle 9.2
    HPUX B.11.00 A
    Thanks,
    Minh

  • Secure link issue

    I cannot update my I tunes. I get a secure link issue when I run a diagnostic check. This is using windows xp system

    Many thanks.
    With those symptoms, I'd try the following document:
    Apple software on Windows: May see performance issues and blank iTunes Store
    (If there's a SpeedBit LSP showing up in Autoruns, it's usually best to just uninstall your SpeedBit Video Accelerator.)

  • Report Links issue in obiee 11g

    hi all,
    we are using obiee 11.1.1.5 version. we are facing issue with report links. when there is no data in the dashboard, the dashboard is displaying only Refresh button, it is not displaying Export and Print(even though we customized the report links to display Refresh, Export, Print). when there is data in the dashboard it is displaying Refresh, Export and Print as expected. Is this product limitation or a bug in obiee.

    You need to repost this in the OBI-EE forum.

  • OBIEE 11g Action Link translation issue

    Hi All,
    I have a translation issue with the Action links in OBIEE 11.1.1.5 version.
    The pop-up which is displayed on clicking the column having action link is not getting translated. This seems to be the issue with all the action links.
    All other catalog objects, captions etc are translated properly.
    Has anyone faced similar issues ? Is there a workaround for this ?
    Thanks for any pointers.

    Action links are not getting translated. I faced a similar problem in OBIEE 11.1.1.6 version.
    What you can do is replace that action link with a 'link or image' option in dashboard objects.
    'Link or Image' types of object get translated in OBIEE 11.1.1.5 as well as OBIEE 11.1.1.6 version.
    hope this helps.

  • DB Link issue between 8i and 11g

    Hi, We have developed the shell script to connect oracle 11g database and do something and then update the oracle 8i database tables using the DB link. We have created the Public DB link in Oracle 11g database.
    When we execute the script manually everything works fine. But while executing the same script using the LINUX - crontab the script failed to execute the DB link and throws the below error message
    Error Message:
    =========
    ORA-12154: TNS:could not resolve the connect identifier specified Error loading the files
    Anyone come accross this error before? please help
    Thanks in advance

    user4883361 wrote:
    Hi sb92075:
    How about Easysoft ODBC-Oracle Driver?
    http://www.easysoft.com/products/data_access/odbc_oracle_driver/index.html
    does this driver will permit me to create a DB link between 11g and 8i?
    Thanks
    Since it is not possible to prove a negative, you are left with the challenge to prove me wrong.
    If you can make it work, then I was incorrect.
    Please post your conclusion here, after you determine the answer to your question.

  • OCI 11g linking issue

    Hi,
    I have an application that uses OCI for RDB data access. It works fine with 10.2 Now I am trying to compile it (in visual studio 8) with OCI version 11.
    I made sure all the paths and libraries are properly included. The libraries compile but the executable is not linked.
    The following error shows up.
    error LNK2001: unresolved external symbol OCIStmtPrepare. (the same line appears with most of the oci calls I made).
    Just to cheat the compiler I copied the oci.lib from the 10.2 version and relinked the executable, the linker error is gone. The executable is created (this only proves that the paths and libraries are prperly set). But when I run it the application does not crashes with system error (as expected). Can someone please shed some light on what could be wrong and a possible solution for this probelm.
    Thanks in advance for the help.
    Thanks,
    Venkata.

    Hi Venkata,
    it was not my intention to confuse you. I have a filter that gives me all forum entries when the word "RDB" is used. To find hidden questions about Oracle Rdb which is not Oracle RDBMS. And there was a possibility that you are really using Oracle Rdb because there exists an interface to run native OCI applications against Oracle Rdb.
    Oracle Rdb is the DBMS that has been acquired by Oracle from Digital back in 1994. See here if you are interested: http://www.oracle.com/technetwork/products/rdb/overview/index.html
    So if you say "I am using ORACLE RDB ... and the database I am trying to connect to is version 10.2" then you meant that you are using Oracle RDBMS 10.2. Oracle Rdb highest version is 7.2.
    Sorry to have stepped in here, but as it is clear now that your database is a 10g database, I can't contribute to your problem.
    Regards
    Wolfgang

  • OBIEE 11g Security LDAP Issue

    Hi,
    I have an issue where certain LDAP users who were once able to log into OBI 11g now cannot.
    This has only happened for those users who I have used the proxy ('Act As') functionality on ie. If UserA can login, and the Administration Act's As UserA, after an OBI restart UserA cannot log in anymore.
    I have narrowed this issue down to the presenation catalog. If I swap the current catalog with the SampleAppLite catalog for example, the problem goes away i.e. the LDAP user (UserA in the example above) can log in fine.
    I have also noticed while accessing the catalog via catalog manager, the Administrator cannot access the 'System' folder. This is with reference to the original catalog (which causes the issue with UserA above) that was upgrade from 10g to 11g.
    Any ideas?
    Thanks.

    This is going to be almost impossible to diagnose without being logged in, in front of your application.
    As a starting point I would recommend you check the permissions on each catalog element. Go to Catalog link > Change view to 'Admin View' > Catalog Root and then use the permissions link for that item and everything below. Ticking 'Show Hidden Items' will let you see the System folders.
    Also check the privileges (Administration > Manage Privileges) as I seem to remember that the 'Act as Proxy' privilege is denied out of the box. Maybe something here is amiss.
    It might be easiest to bite the bullet and create a new web catalog from scratch!
    Paul

  • OBIEE 11g Calendar alignment issue

    Facts: OBIEE 11g - 11.1.5 on Windows 2003 server.
    There's an alignment issue going on with OBIEE calendar, wich happens only when the month is october. For all other months, the calendar is displayed properly. It does not depend on the year. You may change the year and select October, you'll get the error.
    You might see what happens on the link below.
    http://img210.imageshack.us/img210/7876/firefoxds.jpg
    This behavior may occur when using IE9 (both using compatibility mode or not), Mozila Firefox and Google Chrome.
    I've looked over Metalink and the forums and could not find any information about this error.
    Any tips?!
    Thanks!
    Marcos
    Edited by: BI_Creation on Dec 1, 2011 11:37 AM
    Edited by: BI_Creation on Dec 1, 2011 11:40 AM

    Hi there. Does anybody noticed this issue on calendars?! That only occurs when the month is october....
    Just updating, the correct version of OBIEE is 11.1.1.5.0.
    Thanks in advance.
    Marcos

  • Command Link Issue

    Hi,
    I am using Jdevloper 11g.
    I am facing issue with the following code.
    In brief - I am taking Value from session and want to display those values as Command link on jspx, in af:forEach.
    When I bind that Command Link with Managed Bean that time it displays Last Element only (Code given below).
    When I removed Binding ( binding="#{ManagedBean.schemeName}") at that time it displays all the values on page as Command Link.
    Binding is required for my app to find Link text. Is there any alternative?
      <af:forEach var="item"    items="#{sessionScope.SchemeList}">
    <af:commandLink text="#{item.schemeName}"
                                                    id="cb14" immediate="true"  partialSubmit="true"
                                                    binding="#{ManagedBean.schemeName}"
                                                     inlineStyle="#{item.eligibilStatus eq 'Y' ? 'color:black' : 'color:Red'}"
                                                  actionListener="#{ManagedBean.schemeChangeListener}"/>
    </af:forEach>Thank You,
    Regards,
    Dilkhush

    Hello,
    Thank you,
    The solution you had given that is working.
    Now my issue is I have created Programmatically VO.
    I refereed following link to create Programmatically VO
    http://adfpractice-fedor.blogspot.com/2011/01/adf-bc-programmatically-populated-vo.html
    but My issue is how to set VOs Bind Variable Value.
    Because have to send that value from the bean.
    In above link they took two inputText to set Bind Variable value but in my condition I cannot take InputText.
    I am setting that value in my Managed bean as shown below.
    public void schemeChangeListener(ActionEvent actionEvent) {
          OperationBinding opBinding =
              CommonUtil.getOperationBinding("#{bindings}",
                                             "initParamValues");
          opBinding.getParamsMap().put("custID", customerID.getValue().toString());
          opBinding.getParamsMap().put("accountType", (CommonUtil.evaluateEL("#{bindings.ADAccountType.attributeValue}")).toString());
          opBinding.getParamsMap().put("productID", (CommonUtil.evaluateEL("#{bindings.DMAProductId.attributeValue}")).toString());
          opBinding.getParamsMap().put("entityID", homeEntityID);
          opBinding.getParamsMap().put("schemeCode", linkText);
          opBinding.execute();
    }and I have taken that VO as Table on jspx page.
    Issue is before going to bean method it goes to View object and show NullPointerException because the values never get set.
    The above code is called when the commandLink is clicked code given below.
    <af:commandLink text="#{item.schemeName}"
                                                  id="sName" immediate="true"  partialSubmit="true"
                                                  inlineStyle="#{item.eligibilStatus eq 'Y' ? 'color:black' : 'color:Red'}"
                                                  actionListener="#{MakBean.schemeChangeListener}"/>is there any solution how can I set the Bind Variable value from bean and get Expected result in table.
    Thank you
    Regards,
    Dilkhush

Maybe you are looking for