JDO with container (J2EE) managed DataSource

Hello,
I would like to use application server managed DataSource with JDO and
would love to find a piece of documentation/link that would take me
through it.
In absence of such a document, any advice/idea will be appreciated.
Based on the bits and pieces that I have already discovered, I assume that:
when binding the PersistanceManagerFactory to JNDI, I should use
DataSource ds = (DataSource)ic.lookup("jdbc/myDataSourceName");
pmf.setConnectionFactory(ds);
... to set the datasource (instead of ConnectionFactory). Is that it?
I found some older topics (July?) that mentioned that this is NOT
officially supported. Quote:
<i>A couple of warnings, though:
* The use of external datasources is untested.
* If using the datasource within an appserver, the Connections from it
should not be automatically committed/rolled back with the completion of
the
global transaction. Kodo performs its own transaction management on the
Connections it uses. In future releases we'll be able to handle
Connections
that are controlled by the appserver.</i>
Is it still the case now or is this the official way to integrate
application server (Websphere 5.0) with JDO now? Assuming that Kodo was
configured to integrate with TransactionManager of the application server,
is there a reason not to let the application server control the
transactions? Are we going to run into problems if we do it?
Thank you,
Petr

Hi Ben,
Thank you for your advice, that is an experience that it is good to know
about.
In terms of forcing (configuring) Kodo to use the existing data source
from application server, how did you do it?
Based on the structure bellow, I would assume that you used the Java
Connector option. Other then the experience you mentioned, are you happy
camper?
Thank you,
Petr
Ben Eng wrote:
Here is my experience using Kodo with BEA WebLogic Server. Your mileage may
vary with IBM WebSphere.
When using a JDBC driver in the application server\'s classpath (which would
be the case with a managed DataSource), the JDBC driver does not have access
to your J2EE application\'s classes for deserializing them from BLOBs.
Therefore, the Kodo serialized BLOB mapping would not work in this
configuration. You will need to rely solely on more sophisticated O/R
mappings.
Kodo integrates well with the application servers managed Transactions, when
packaged as a JCA resource adapter. With BEA WLS, I found that I had to
repackage things as follows:
myApp.ear
|
+-application.xml
+-jakarta-commons-logging-1.0.2.jar
+-jdbc2_0-stdext.jar
+-jdo1_0.jar
+-kodo-jdo-runtime.jar
+-serp.jar
+-mysql-connector-java-3.0.3-beta-bin.jar  (or whatever your JDBC
driver is)
|
+-kodo.rar
| +-META-INF
| +-MANIFEST.MF
| +-ra.xml
| +-weblogic-ra.xml
+-myEJB.jar
+-META-INF
| +-MANIFEST.MF
+-myEJB.class
Both the kodo.rar and myEJB.jar MANIFEST.MF looks like this:
Manifest-Version: 1.0
Class-Path: serp.jar jdo1_0.jar kodo-jdo-runtime.jar
jakarta-commons-logging-1.0.2.jar jdbc2_0-stdext.jar
mysql-connector-java-3.0.3-beta-bin.jar
When the JDBC driver is packaged with the application EAR like this,
deserialization of BLOB also works fine. If you do have the JDBC driver in
the application server\'s classpath, it will be loaded from there first and
deserialization of BLOBs will break. Unfortunately, this is limitation is
terribly limiting, because CMP EntityBeans and JMS destinations that require
persistent storage will need to use managed DataSources. Probably the best
compromise is to have the JDBC driver in the application server\'s classpath,
not in the application EAR, and live without BLOB mappings (not a big loss
in real world applications).
Ben
\"Petr Bulanek\" <[email protected]> wrote in message
news:[email protected]...
Hello,
I would like to use application server managed DataSource with JDO and
would love to find a piece of documentation/link that would take me
through it.
In absence of such a document, any advice/idea will be appreciated.
Based on the bits and pieces that I have already discovered, I assumethat:
when binding the PersistanceManagerFactory to JNDI, I should use
DataSource ds = (DataSource)ic.lookup(\"jdbc/myDataSourceName\");
pmf.setConnectionFactory(ds);
.. to set the datasource (instead of ConnectionFactory). Is that it?
I found some older topics (July?) that mentioned that this is NOT
officially supported. Quote:
<i>A couple of warnings, though:
* The use of external datasources is untested.
* If using the datasource within an appserver, the Connections from it
should not be automatically committed/rolled back with the completion of
the
global transaction. Kodo performs its own transaction management on the
Connections it uses. In future releases we\'ll be able to handle
Connections
that are controlled by the appserver.</i>
Is it still the case now or is this the official way to integrate
application server (Websphere 5.0) with JDO now? Assuming that Kodo was
configured to integrate with TransactionManager of the application server,
is there a reason not to let the application server control the
transactions? Are we going to run into problems if we do it?
Thank you,
Petr

Similar Messages

  • Managed datasources, Global transactions and XA

    I have a question regarding the use of managed datasources and global transactions with oc4j 10.1.3.
    From the documentation at:
    http://download-west.oracle.com/docs/cd/B25221_04/web.1013/b14428/servdats.htm#CHDGJECC
    I conclude that managed datasources by default support global transactions.
    I have tested the following scenario:
    A stateless session bean starts a container managed transaction. The bean updates data in two different databases through two different
    managed datasources. The transaction is atomic.
    What surprises me is that this works. I would think that I would need to configure the datasources to make use of XA.
    Can someone explain why this works, wat is the difference between XA transactions and global transactions in this context?

    Further to give more info the error users are facing is
    Could not connect to 'oracle.jdbc.xa.client.OracleXADataSource'.

  • Problem with Contains - missing records

    Hi, 
    I have created a full-text catalog for my table tDoc, but when I search records with contains, 
    I dont get all records. I search for 16949, and with LIKE, I get all 5, but with CONTAINS I only 
    get three. Se image below.
    What I am doing wrong?
    It does not make any difference if I use wildcards (*) with contains.
    /Daniel.

    Hi Samus
    I hope you are still here, If so, then please close the thread by marking the answer that fit your needs or please inform us if the issue is still open. In the mean time I will try to give some
    points that you need to consider
    >> Full-text queries perform linguistic searches against text on
    words and
    phrases based on rules of a particular language.
    * It is look like you use FTS as a "like" filter, and this is not the same! It's like using subtraction in math, in order to obtain the + behavior. It can be done [10-(-10)], but should it done? are you using the right operator if you want
    to get "like" filter? In contrast to full-text search, the LIKE Transact-SQL predicate works on character patterns only.
    * Jayakumaur gave you the great basic explanationIn the forum we can not always to write the exact full tutorial. It is more of a short solutions place, where we can point you to external links if needed.
    * It is not that "/" is a noise exactly (actually this statement was wrong). It is more of "Separator" between words. SQL Server FTS engine recognize that this is not part of the word. Same with "," or spaces for example, but
    not "_" which in most languages used as part of the word. The engine work on linguistic searches, like it "understand" the language (using the dictionary it has), and therefore it recognize starting/ending of "words". It is working
    on word but phrases as well.
    FTS separates the string into individual words based on word boundaries (Separators).
    You can see the words split result using this statement:
    SELECT * FROM sys.dm_fts_parser (' "Standard ISO_TS_16949_2009" ', 1033, 0, 0)
    GO
    Now you can see that those words do not fit your search :-)
    * Moreover you can chake this "Standard ISO_TS_16949_2009 is", and see what a noise word mean (the "is" is a Noise word and not the "/")
    * Now you can try "Certifikat ISO TS/16949" and you will see that "/" is not a word at all but only a "Separator".
    >> FTS will not match the exact word, but the
    meaning of the words in the search condition.
    >>See more:
    http://msdn.microsoft.com/en-us/library/ms142571.aspx#like
    * Configure and Manage Word Breakers and Stemmers for FTS (by default "_" is not a Breakers but you can add it if you want!)
    http://technet.microsoft.com/en-us/library/ms142509%28v=sql.110%29.aspx
    * sys.dm_fts_parser (Transact-SQL)
    http://technet.microsoft.com/en-us/library/cc280463%28v=sql.110%29.aspx
    [Personal Site] [Blog] [Facebook]

  • Integrating Oracle EBS R12 with Oracle Access Manager 11g

    Hi Everyone ,
    Oracle Access Manager version 11.1.1.5
    Oracle Identity Management 11.1.1.6.0
    Oracle Access Manager WebGate 11.1.1.5
    Oracle E-Business Suite AccessGate patch p12796012
    Apps Version : 12.1.1
    DB Version 11.2.0.3
    PLatform : OEL 5.8
    We are trying to Integrating Oracle E-Business Suite Release 12 with Oracle Access Manager 11g using Oracle E-Business Suite AccessGate.We followed metalink id's
    1309013.1 and 1543803.1 and some other documents.We have performed every step as documented , and everything seems to work fine untill user tries to log out from Oracle Applications i.e User
    is able to login to Oracle Applications through access gate and everything is working fine. But as user click logout button an error messsage is diplayed like "*500*
    *Internal Server Error Servlet error: An exception occured* " (The url at the time of this message is http://hostname:port/OA_HTML/AppsLogout ).
    Apps Tier (oacore) Application log:-
    +13/05/15 19:04:20.229 html: Servlet error+
    java.lang.NoSuchMethodError: oracle.apps.fnd.sso.SSOManager.getAuthAgentLogoutUrl(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
    at oracle.apps.fnd.sso.AppsLogoutRedirect.doGet(AppsLogoutRedirect.java:193)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    +at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)+
    at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
    +at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)+
    at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
    +at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)+
    +at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)+
    +at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)+
    +at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)+
    Apps Tier Apache Error log :-
    +[Wed May 15 18:50:52 2013] [error] [client 192.168.0.2] [ecid: 1368624052:192.168.0.61:10798:0:44,0] File does not exist: /u01/eBiZR12/apps/apps_st/comn/java/classes//+
    WE have set all required profile in Oracle Application as directed in documents , and users are able to login just fine , but they are not able to logout.
    IS there something that we are missing , any help is highly appreciated.
    Regards
    Edited by: TheKop88 on May 16, 2013 11:39 AM

    Hi there ,
    Thanks for reply ,
    We had already gone through that document earlier. We noticed that when Apllication Profile "*Apllications SSO Type* " is set to SSWA then OA_HTML/AppsLogout is
    working fine , but when we set "*Applications SSO Type*" to SSWA w/SSO then OA_HTML/AppsLogout is not working(not redirecting) .Error thrown on web browser is "+500 Internal Server Error Servlet error: An exception occurred. The current application deployment descriptors do not allow for including it in this response+" . we believe that we might have missed some Profile settings that is causing this error.
    Regards
    Edited by: TheKop88 on May 16, 2013 12:03 PM
    Edited by: TheKop88 on May 16, 2013 12:07 PM

  • Access manager policyagent 2.1 fro webspher5.0  with sun access manager in

    Help It is very urgent
    I have installed my sun access manager and sun direcory server on same machine solaris10.SSL is diable in directory server.Access manager working on ssl mode means it is working on Http with port 80 and Https with port443.Access manager url is
    http://lhostname:80/amconsole or https://hostname:443/amconsole and
    http://host:80/amserver/UI/Login or https://host:443/amserver/UI/Login.it is displaying access manager login page.It is working properly standalone.
    But when i configure it with policyagent2.1 for WebSphere5.0 .WebSphere installed on windows2000 server.when i type the application URL that is running on WebSphere it does not show access manager login page.It show u r not authurised to view this page.WebSphere running on Http.
    and amService log detail is*****************************************************
    03/02/2006 05:57:32:018 PM GMT+05:30: Thread[Servlet.Engine.Transports : 0,5,main]
    Naming service URL list: [https://my.domain.com:443/amserver/namingservice]
    03/02/2006 05:57:32:018 PM GMT+05:30: Thread[Servlet.Engine.Transports : 0,5,main]
    Only one naming service URL specified. NamingServiceMonitor will be disabled.
    03/02/2006 05:57:32:018 PM GMT+05:30: Thread[Servlet.Engine.Transports : 0,5,main]
    getServiceURL for service: auth protocol: https host: my.domain.com port: 443
    03/02/2006 05:57:32:112 PM GMT+05:30: Thread[Servlet.Engine.Transports : 0,5,main]
    ERROR: Naming service connection failed
    com.iplanet.services.comm.client.SendRequestException: com.ibm.ws.orbimpl.transport.protocol.https.HttpsURLConnection
         at com.iplanet.services.comm.client.PLLClient.send(PLLClient.java:141)
         at com.iplanet.services.comm.client.PLLClient.send(PLLClient.java:73)
         at com.iplanet.services.naming.WebtopNaming.getNamingResponse(WebtopNaming.java:360)
         at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:421)
         at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:353)
         at com.iplanet.services.naming.WebtopNaming.getServiceURL(WebtopNaming.java:187)
         at com.sun.identity.authentication.AuthContext.setLocalFlag(AuthContext.java:1159)
         at com.sun.identity.authentication.AuthContext.createAuthContext(AuthContext.java:1100)
         at com.sun.identity.authentication.AuthContext.createAuthContext(AuthContext.java:1071)
         at com.sun.identity.authentication.AuthContext.<init>(AuthContext.java:142)
         at com.sun.identity.policy.client.AuthService.getAppSSOToken(AuthService.java:103)
         at com.sun.identity.policy.client.AuthService.getApplicationSSOToken(AuthService.java:79)
         at com.sun.identity.policy.client.PolicyEvaluator.getAppSSOToken(PolicyEvaluator.java:499)
         at com.sun.identity.policy.client.PolicyEvaluator.init(PolicyEvaluator.java:193)
         at com.sun.identity.policy.client.PolicyEvaluator.<init>(PolicyEvaluator.java:172)
         at com.sun.identity.policy.client.PolicyEvaluatorFactory.getPolicyEvaluator(PolicyEvaluatorFactory.java:118)
         at com.sun.identity.policy.client.PolicyEvaluatorFactory.getPolicyEvaluator(PolicyEvaluatorFactory.java:87)
         at com.sun.identity.agents.policy.AmWebPolicy.<init>(Unknown Source)
         at com.sun.identity.agents.policy.AmWebPolicyManager.<init>(Unknown Source)
         at com.sun.identity.agents.policy.AmWebPolicyManager.<clinit>(Unknown Source)
         at com.sun.identity.agents.filter.AmFilter.<init>(Unknown Source)
         at com.sun.identity.agents.filter.AmFilterManager.getAmFilter(Unknown Source)
         at com.sun.identity.agents.filter.AmFilterManager.getAmFilter(Unknown Source)
         at com.sun.identity.agents.filter.AmFilterManager.getAmFilterInstanceForModeConfigured(Unknown Source)
         at com.sun.identity.agents.filter.AmAgentFilter.doFilter(Unknown Source)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:132)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:71)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:863)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:491)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:173)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:79)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:199)
         at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
         at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:182)
         at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:331)
         at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
         at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:432)
         at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:343)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:592)
    Thanks & Regards
    Saini

    This is an SSL handshake problem of Websphere - has nothing to do with AM.
    Websphere�s JDK does not trust the Signer / Cert of AM�s deployment container.
    Either configure a truststore (or use an existing webshpere truststore) where you import the Cert of the Signing CA of your AM DC�s cert.
    Other option - import the mentioned cert in cacert file of IBM JDK - but be aware that this might get lost when applying an Websphere fixpack/refreshpack.
    BTW what have you configured for server.port,server.host and server.protocol in your AMConfig.properties?
    If you have not changed that settings agent will use the port/protocol specified to communicate with AM.
    -Bernhard

  • Integration of ADF with Vignette(Content Management Tool)

    Hi
    Is it possible to integrate ADF with vignette(Content Management Tool) in any way so that i could have the power of both the tools in developing web pages and managing the contents of it in a better way?

    ADF is an standards-based J2EE development framework, if Vignette support integration with J2EE applications then the answer would be yes, but you need to ask Vignette support.
    BTW - this forum is for Oracle Portal questions, please use the ADF forum for questions on ADF.
    Thanks,
    Mick.

  • How set autocommit=false with container transactions?

    Hi all!
    A'm using EJB's with transaction attribute=Container.
    This is simple scenario:
    call Session Bean
    begin transaction
    call EntityBean1 {
    database update 1
    call EntityBean2 {
    database update 2
    end transaction
    return from session bean
    The problem is:
    when update2 fails update1 not rolling back.
    A know, that solution of this problem is set AUTOCOMMIT=FALSE in Connection, but how do this with container transactions? Point me exactly to place, where this can be done, if this possible. Or may be no general solution (I.e. Each case demands it's own approach.)?
    (I can't directly call method of Connection object because of transaction managed by container)
    Tnx a lot.

    Hi there,
    I have the same problem with Orion and NuSphere MySql.
    When I define a container-managed transaction, the autocommit mode is not changed.
    I have a session bean for which I set the transaction attribute to REQUIRED and two entity beans for which the transaction attribute is SUPPORTS in the ejbjar.xml file.
    The session beans calls the two entity beans and makes some modifications on them like for instance removing them from the database.
    When I check whether a transaction can be rolled back, for instance by putting in my code a loop that never ends and then stopping the server, it seems my application is running in autocommit mode. No rollback is done.
    This is very strange.
    The two entity beans are stored using gemini tables which permit rollbacks. So when I start a transaction inside mySql using sql statements, I can do a rollback without problem.
    Any idea of what's going wrong ?
    Dimitri.

  • Question about Starting Eclipse with PVCS Version Manager Plugin and Flash Builder 4 plugin

    I used Eclipse 3.4.2 SR2 with PVCS Version Manager plugin.
    I installed Adobe Flash Builder 4 Plugin to the Eclipse.
    Eclipse executed successfully at first time.
    After I open *.mxml file with the Eclipse and close.
    After minutes, I execute Eclipse.
    But I waited 40 minutes to see Eclipse Editor screen.
    Are there any problem in Adobe Flash Builder 4 Plugin?
    ====== If you know Korean Character, You can see below message, I hope so ========
    Environment
    * OS: Windows XP SP3
    * Eclipse: 3.4.2 SR2
    * JDK: 1.5.0
    * Serena PVCS Version Manager : 8.3.0
    * Adobe Flash Builder 4 Plugin
    위의 환경에서 Eclipse에 Version Manager Plugin을 설치하여 사용할 때는 잘 동작 하였습니다.
    하지만, Adobe Flash Builder 4 Plugin 을 설치하고 *.mxml 파일을 열어 작업한 후에 Eclipse를 Close 하였습니다.
    잠시후에 다시 Eclipse를 실행하면 약 40분 정도 시간이 지나서야 Eclipse 편집창을 볼 수 있었습니다.
    혹시 Adobe Flash Builder 4 Plugin 제품과 Serena PVCS Version Manager 제품이 서로 conflict 하는 것이 아닌가
    의심을 하고 있습니다.
    귀사에서 이런 경험이 있다면 해결 방법을 알려주시면 감사하겠습니다.
    Thank's

    I experimented with the latest Zend Studio 8 trials on both platforms yesterday, and it looks a little different depending on which platform you're using:
    On OS X, because Zend Studio is now contained entirely within the app bundle, it's tricky navigating to the proper eclipse folder with our Plug-in Utility. As it turns out, the Zend dropins folder does exist if you look down low enough:
    /Applications/Zend Studio.app/Contents/Resources/Java/dropins
    When I typed that path into the Burrito Plug-in Utility manually, it found the dropins folder, and proceeded to install the link without complaint. However, the Zend dropins folder is not working properly on OS X either, as already found on Win, so it's not using the link.
    On Win, Zend Studio 8 doesn't include the dropins folder in the first place, as noted earlier. Apparently, Zend doesn't have its dropins folder enabled on either Mac or Win.
    To see if this problem is specific to dropin links, I downloaded the latest Orbit plugins from eclipse.org and tried adding those directly to the Zend dropins folder, instead of using a link. Zend doesn’t appear to recognize them either.
    I'll check with our contact at Zend to see what happened.
    -Chris

  • WebLogic Admin Console won't work with java security manager enabled.

    By just enabling the security manager on the command line with -Djava.security.manager and using the default weblogic.policy in the server/lib directory, the admin console will not work. I just see a blank page when I try to access the admin console with permission errors all over on the server console.
    In looking at the admin console's weblogic.xml it should have access to everything since it contains:
    grant {
    permission java.security.AllPermission;
    Are there known issues with this? If I add this permission to the weblogic.policy file everything works fine but then I might as well not turn on the security manager.
    Thanks,
    Dave

    David,
    I was glad to see your post regarding WLS 9.2 and the troubles with enabling Java Security Manager.
    Were you able to learn any more on things like - why doesn't the admin console work when the security manager is enabled with the default policy file. Also, why is it so difficult to add permissions for your own applications and get them to actually work.
    I'd be curious to see if you were able to get it to work or if you have any insights or resources that can help with this as we are really struggling to get a restrictive policy file that works.
    Thanks,
    D

  • Issues integrating WebCenter with Oracle Access Manager

    Hi All,
    I am trying to integrate WebCenter 10.1.3.2 with Oracle Access Manager (CoreId). Followed the steps described in the Chapter 11 of the OC4J Security Guide.
    I was able to successfully authenticate WebCenter using IWA with Access Manager.
    Then I proceeded with the below steps:
    - Implemented ADF Security in the application. Created application roles and login page and worked fine on my local machine.
    - Provide the auth-method of "COREIDSSO" in orion-application.xml
    - Renamed the app-jazn-data.xml to give the OID groups
    - Mapped the OID groups to application roles in orion-application.xml
    - Used the jazn migration tool to populate the system-jazn-data.xml
    When trying to access the application, it looks like the ADF Context identifies that this is an authenticated user.
    ADFContext.getCurrent().getSecurityContext().isAuthenticated() retruns true
    ADFContext.getCurrent().getSecurityContext().isAuthorizationEnabled() returns true
    I get the below error message on the server console:
    [CoreIDLoginModule::getUserSessionFromCookie]: This user session for F3iwZhUGgjej9RSrMLSo0wjH5Ec6c2oeC0OBRH12y7%2FvfPVncz6dYoBoFD6q8DWAlMtzah%2FYV4T1t7jztVFYbxwfOyu0VOMXMEIosRrFicfJwoPRrM8MOkFsziQxpUqo98XrC9iBRHffdWSItNHZRZK4ZoCJMi6HZZ6noOc4Z%2BGJDGj3kWndYHTWjiG0cJhkSbL95wMmrXCDElzZHjPMdkuNQUHW1TfAJvgSlDeX6hhhIThlc%2BGmxMP3MQ%2FZoxUysbKieIJgDXo1%2FEMmLmTVjA%3D%3D is not valid or user is not logged in.
    I also tried using the "Headervar" variable to display the obmygroups value, but it comes as blank.
    Any help would be appreciated.
    Thanks
    Aneesh

    We recently integrated Webcenter Application (with ADF Authentication and Authorization) with OAM. May be the following will be of some help to you.
    We did the following steps documented in Chapter 11 Oracle Access Manager in Oracle J2EE security guide.
    OAM
    1. Created ALL specified policies , authentication schemes, protection specified in OAM section of the document.
    OC4J
    1. Ran all configuration listed for the OC4J section.
    Webcenter
    1. Developed the Webcenter Application
    2. Enabled ADF Security (Authentication & Authorization)
    3. Deployed the application. While deploying chose File based provider.
    4. After the deployment, changed orion-application.xml to have COREIDSSO as documented in Oracle documentation
    system-jazn-data.xml
    1. Added login module details as specified in the document. (Changed only the application name. Rest all was same as we used names as specified in the earlier steps of the document)
    OID Migration
    Reference document: "Configuring a WebCenter Application to Use Oracle Access Manager" in Webcenter Framework Developer guide.
    1. Located app-jazn-data.xml in the deployed application
    2. Removed "realm-name" and "type" subelements of "grantee" tags. Removed any realm details in user name.
    3. changed references to "class oracle.security.jazn.spi.xml.XMLRealmRole" to "oracle.security.jazn.realm.CoreIDPrincipal"
    4. ran the JAZN migration tool with "all" options. Migration from app-jazn-data.xml to OID.
    OAM
    Created policies for protecting our application.
    Test the application.
    Debugging.
    1. Enable oracle.adf.share.security , oracle.j2ee.security & oracle.j2ee.security.oc4j loggers to debug if the application is not working the way you expect to work.
    2. Set log level in Enterprise manager.
    3. All logging information are written in log.xml in $ORACLE_HOME/j2ee/OC4J_Webcenter/log/OC4J_WebCenter_default_group_1/oc4j
    Thanks

  • Maximum number of fields contained in 1 datasource

    Hello guys,
    Question,
    How many fields can be contained in 1 generic datasource??
    Is there a maximum to this??
    We are connected with SAP BI 7.0 to an external oracle database and 1 view within this database contains 110 fields. The customer wants this complete view to be extracted into BI.
    So for this purpose I have created a generic datasource based on this view.
    Now, I seem to be able to map all the fields within the datasource but then when I do a preview or I export the output of the datasource to excel (to check if the data looks OK), then only 90 fields are exported/visible.
    Hence the question..
    Is there a limit to the number of fields contained in one datasource??
    Many thanks for information
    Regards
    Willem

    There is as such no limits on the no. of fields in the datasource. But when you see the output in SAP, there is a limitation on the width of the output .. I guess its 1024 chracter.
    The output might not be able to accomodate all the fields and hence when you downloaded, only 90 fields got downloaded. You need to change the layout of the output to see all the fileds in SAP.
    Thanks...
    Shambhu

  • Hi Team, I wuold like to know if you have any app to make Firefox OS working with cisco Call Manager 10.5. Something like Cisco Jabber for Android or iOS.

    I'm interesting on buying a Firefox Smart Phone, but
    I would like to know if are any app to install on Firefox OS smart phone in order to work with cisco call manager 10.5.
    Something like Cisco Jabber for Android o iOS.
    Thanks,

    Hi Itech,
    If Cisco Jabber has a webapp, or mobile version of their website available, you should technically be able to access it through Firefox OS.
    You may also search Firefox Marketplace for an alternative solution:
    * [https://marketplace.firefox.com/]
    - Ralph

  • Disk Utility has Lost Connection with the Disk Managment Tool

    Hi,
    For starters, this problem is not associated with the thread that Brian Z. has posted at the top of this forum. Having said that, here's my problem:
    I had installed Security Update 2006-003, and Quicktime 7.1. Permissions were repaired before and after each installation, and all went well.
    Some hours later, I was experimenting with Apple Remote Desktop. I had activated ARD in the System Preferences>Sharing pane, and it provided me an IP address associated with ARD. I then turned on Airport, and ARD provided me with an IP address associated with that connection. However when I turned off my modem connection, System Preferences>Sharing hung, and had to be Force Quit.
    Console Log follows:
    ===== Mon May 15 2006 ===== 21:09:09 America/Anchorage =====
    2006-05-15 21:09:17.488 System Preferences[2732] Can't open input server /Library/InputManagers/Menu Extra Enabler.bundle
    2006-05-15 21:09:28.224 System Preferences[2732] ### Error:268435460 File:FileSharing.m Line:308
    2006-05-15 21:09:38.230 System Preferences[2732] ### Error:268435460 File:FileSharing.m Line:343
    2006-05-15 21:09:48.415 System Preferences[2732] ### Error:268435460 File:FileSharing.m Line:343
    Thinking a plist had become corrupted, I trashed the following:
    com.apple.systempreferences.plist
    com.apple.RemoteDesktop.plist
    com.apple.Remotemanagement.plist
    com.apple.sharing.firewall.plist.
    System Preferences started out very slowly, but then all the panes except Sharing would work ok.
    I booted from the install disk and performed a Disk Repair. There were no problems reported.
    When I tried to run a Repair Permissions, after about 20 seconds I got the, "Disk Utility has lost connection with the disk management tool and can not continue. Please quit and relaunch Disk Utility."
    I quit D.U. and the Installer, and was able to successfully run a Repair Permissions from the D.U. in my Utilities folder. It had no problems to report.
    Continuting to troubleshoot the System Preferences problem, I then trashed the com.apple.preferencepanes.cache. This solved my System Preferences>Sharing problem.
    However, I am still unable to perform a Repair Permissions after booting from my install disk (I get the subject message). Repairing permissions from the Disk Utility in my Utilies folder works fine.
    Any thoughts out there on a logical way to troubleshoot where my problem is? Is there a way to get a console log when I'm running DU from the install disk, or a comparable source??
    Thanks,
    Bob

    I found this crash log that was generated about the time I had problems with System Preferences hanging.
    Thoughts?
    Bob
    Entitled "writeconfig.crash.log"
    Host Name: Bobs-Big-Mac.local
    Date/Time: 2006-05-15 21:08:17 -0800
    OS Version: 10.3.9 (Build 7W98)
    Report Version: 2
    Command: writeconfig
    Path: /System/Library/PrivateFrameworks/Admin.framework/Resources/writeconfig
    Version: ??? (???)
    PID: 2707
    Thread: 0
    Exception: EXC_BREAKPOINT (0x0006)
    Code[0]: 0x00000001
    Code[1]: 0x90a8d2c0
    Thread 0 Crashed:
    0 com.apple.Foundation 0x90a8d2c0 _NSRaiseError + 0xf8
    1 com.apple.Foundation 0x90a349d8 -[NSConnection sendInvocation:] + 0x6a4
    2 com.apple.Foundation 0x90a2d8e0 -[NSObject(NSForwardInvocation) forward::] + 0x198
    3 libobjc.A.dylib 0x90866810 objcmsgForward + 0xb0
    4 writeconfig 0x0000baac 0x1000 + 0xaaac
    5 writeconfig 0x0000ec84 0x1000 + 0xdc84
    6 writeconfig 0x0000ad88 0x1000 + 0x9d88
    7 writeconfig 0x0000abfc 0x1000 + 0x9bfc
    PPC Thread State:
    srr0: 0x90a8d2c0 srr1: 0x0202f030 vrsave: 0x00000000
    cr: 0x24000442 xer: 0x00000000 lr: 0x90a8d298 ctr: 0x90a23528
    r0: 0x00000000 r1: 0xbffff430 r2: 0xa0a204bc r3: 0xa0a34e20
    r4: 0x9086eb88 r5: 0x20000000 r6: 0xbffff110 r7: 0x00000000
    r8: 0x00000001 r9: 0x0030d370 r10: 0x00000239 r11: 0x28000442
    r12: 0x90a23528 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0x00000000
    r24: 0x00310680 r25: 0xbffffcd8 r26: 0x00311c50 r27: 0xa0a2af6c
    r28: 0xa0a30e7c r29: 0xa0a24ae0 r30: 0x003109a0 r31: 0x90a8d1d0
    Binary Images Description:
    0x1000 - 0x28fff writeconfig /System/Library/PrivateFrameworks/Admin.framework/Resources/writeconfig
    0x80830000 - 0x8090efff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x8c2bc000 - 0x8c2c5fff libBSDPClient.A.dylib /usr/lib/libBSDPClient.A.dylib
    0x8fe00000 - 0x8fe4ffff dyld /usr/lib/dyld
    0x90000000 - 0x9014ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c0000 - 0x9026efff com.apple.CoreFoundation 6.3.9 (299.37) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x902b0000 - 0x90529fff com.apple.CoreServices.CarbonCore 10.3.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x905a0000 - 0x90610fff com.apple.framework.IOKit 1.3.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90640000 - 0x906c8fff com.apple.CoreServices.OSServices 3.0.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90733000 - 0x90740fff com.apple.CommonPanels 1.2.1 (1.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x90810000 - 0x90810fff com.apple.ApplicationServices 1.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90860000 - 0x908cffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x908f5000 - 0x90912fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x90940000 - 0x909b3fff com.apple.DesktopServices 1.2.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90a20000 - 0x90b7bfff com.apple.Foundation 6.3.8 (500.61) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90d40000 - 0x90d40fff com.apple.Carbon 10.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90d50000 - 0x90d6bfff com.apple.SystemConfiguration 1.7.1 (???) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90d7c000 - 0x90d8cfff com.apple.speech.recognition.framework 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90dd0000 - 0x90df0fff com.apple.DirectoryService.Framework 1.7.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90e10000 - 0x90e11fff com.apple.ServerControl 10.2.3 /System/Library/PrivateFrameworks/ServerControl.framework/Versions/A/ServerCont rol
    0x90e13000 - 0x90e4bfff com.apple.LaunchServices 10.3.5 (98.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x90e60000 - 0x90e66fff com.apple.ServerPrefs 10.2.3 /System/Library/PrivateFrameworks/ServerPrefs.framework/Versions/A/ServerPrefs
    0x90e80000 - 0x90e9ffff com.apple.MediaKit 2.6 (232.3) /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x90ec0000 - 0x90ec0fff com.apple.Cocoa 6.3 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9102d000 - 0x91047fff com.apple.openscripting 1.2.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x910c0000 - 0x910c1fff com.apple.AFPDefines 2.0.1 /System/Library/PrivateFrameworks/AFPDefines.framework/Versions/A/AFPDefines
    0x910e0000 - 0x91134fff com.apple.bom 1.2.7 (64.1) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x91141000 - 0x91141fff com.apple.CoreServices 10.3 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91230000 - 0x9123afff com.apple.framework.machinesettings 1.3.3 /System/Library/PrivateFrameworks/MachineSettings.framework/Versions/A/MachineS ettings
    0x91242000 - 0x9124cfff com.apple.framework.AppleTalk 1.2.0 (???) /System/Library/Frameworks/AppleTalk.framework/Versions/A/AppleTalk
    0x91251000 - 0x9125afff com.apple.DiskArbitration 2.0.5 /System/Library/PrivateFrameworks/DiskArbitration.framework/Versions/A/DiskArbi tration
    0x912e0000 - 0x912f7fff com.apple.LangAnalysis 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91303000 - 0x91370fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x913a0000 - 0x9145ffff ColorSync /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x915e0000 - 0x91699fff com.apple.QD 3.4.71 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x916f0000 - 0x91728fff com.apple.AE 1.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91760000 - 0x917f3fff com.apple.print.framework.PrintCore 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9194f000 - 0x9194ffff com.apple.audio.units.AudioUnit 1.3.3 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91970000 - 0x919befff com.apple.print.framework.Print 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91a40000 - 0x91ab3fff com.apple.NavigationServices 3.3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91afb000 - 0x91b0bfff com.apple.ImageCapture 2.1.5 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91b30000 - 0x91b44fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91b60000 - 0x91b6bfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91ba3000 - 0x91bbdfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x91bd0000 - 0x91bdffff libPSRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPSRIP.A.dylib
    0x91c00000 - 0x91c13fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x92037000 - 0x92052fff libcurl.2.dylib /usr/lib/libcurl.2.dylib
    0x92070000 - 0x92096fff com.apple.FindByContent 1.4 (1.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x92170000 - 0x92357fff com.apple.security 2.4 (179) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x927f0000 - 0x92827fff com.apple.CFNetwork 1.2.2 (7) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9283f000 - 0x92857fff com.apple.WebServices 1.1.1 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x92880000 - 0x92c05fff com.apple.HIToolbox 1.3.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92de0000 - 0x92e30fff com.apple.HIServices 1.4.1 (0.0.1d1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92e70000 - 0x9336ffff com.apple.AppKit 6.3.10 (743.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93680000 - 0x93958fff com.apple.CoreGraphics 1.203.30 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x939d0000 - 0x939d4fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x93a50000 - 0x93a64fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x93a6a000 - 0x93a84fff libPDFRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x93bec000 - 0x93ca4fff com.apple.audio.toolbox.AudioToolbox 1.3.4 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94270000 - 0x94333fff com.apple.DiskImagesFramework 10.3.8 (77) /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x94580000 - 0x9458bfff com.apple.securityhi 1.2 (90) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94593000 - 0x9459ffff com.apple.help 1.0.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x945b0000 - 0x945b9fff libz.1.dylib /usr/lib/libz.1.dylib
    0x94650000 - 0x946affff com.apple.SearchKit 1.0.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x94720000 - 0x94721fff com.apple.securityfoundation 1.0 (6) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94800000 - 0x9488cfff com.apple.ink.framework 101.1.4 (55.12) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94e0b000 - 0x94e1efff com.apple.speech.synthesis.framework 3.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x95140000 - 0x951b5fff com.apple.DiscRecordingEngine 2.1.17 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x954c0000 - 0x95ac6fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95b20000 - 0x95df0fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95f00000 - 0x95f20fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x96028000 - 0x960f0fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x968d0000 - 0x969b2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x96a04000 - 0x96a6dfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96aa0000 - 0x96acefff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x96b50000 - 0x96bdffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96c00000 - 0x96c67fff com.apple.audio.CoreAudio 2.1.3 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96cb0000 - 0x96d9efff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x96de0000 - 0x96df0fff com.apple.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96ee0000 - 0x96ee8fff libbsm.dylib /usr/lib/libbsm.dylib

  • Clearing GL with Open Item Management

    Dear Experts.
                    A liability GL (Remuneration Gl account) has been created by the client in the system without open item management. After that several entries has been posted in that GL account. Few months back they have activated Open Item Management for that GL using a program.Now they want to clear few entries in that GL account and while clearing the GL in F-03 system is displaying an error
    Document splitting: Items for clearing 1000/9300000661/2012/001 not found
    Message no. GLT0002
    Diagnosis
    Document splitting cannot perform clearing because it was not possible to find complete splitting information on the items to be cleared (company code, document number, fiscal year, item).
    System Response
    Clearing cannot be performed and the document cannot be posted.
    Procedure
    Exclude the affected item from clearing.
    It may be that this item was not posted with active document splitting. In this case, this item or document would have to be migrated.
    This error occurs due to the Open Item Management activation in the GL after entries were posted.
    Now the client wants to clear few entries in this GL account for which Open Item Management was activated recently. The client is not willing to create a new GL and post transfer entries. Is there any other possibility to clear this GL account.
    Please provide your valuable suggestions.
    Regards,
    Ramprasath

    Hi,
    The reason for the error GLT0002 is that there is no values for
    document in tables FAGL_SPLINFO and FAGL_SPLINFO_VAL
    Regarding the clearing process in the FAGL_ACTIVATE_OP:
    The clearing of the 'old' items is the standard process in the report.
    Here is the part from the documentation:
    (Please review the documentation on FAGL_ACTIVATE_OP via se38
    enter in FAGL_SWITCH_TO_OPEN_ITEM view documentation)
    The system then activates open item management and clears all existing
    open items. After this clearing, you have the option of having the
    system repost the amounts that were initially written off.
    This is done to start newly with the OI management once it is activated.
    So if you want to activate the OI management for an other account in
    your  system, please take into account that the clearing should NOT be
    opened again in standard.
    I would request you to please read the documentation in SE38 for FAGL_SWITCH_TO_OPEN_ITEM
    and please check whether all criteria's are fulfilled or not.
    I hope this helps.
    Regards
    Eugene

  • Posting to G/L accounts with open item management not permitted Fagl_post

    Dear Expert,
    When i run the foreign cur rev. through FAGL_FC_VAL then system is not post the currency rev on open item on GL account.  It showing subject message and also show below mesaage:-
    Message no. FAGL_POST_SERVICE012
    Diagnosis
    You use GL account 210012 in company code 1000 with open item management. However, posting  are not permitted G/L accounts in individual ledger with open item management.
    Please advice on this issue.
    Thanks & Regards,
    Pankaj

    Hello Pankaj,
    Is your adjustment account was defiined as OI management. if yes, then t is generally not permitted to use the O/I managed account as an djustment account. The adjustment account is the same as O/I
    managed GL account, so the error message FAGL_POST_SERVICE012 is issued. This is justified because open items must be made valid for ALL ledgers in the client but FAGL_FC_TRANS posts ledger specific posting by having ledger group in the document header - Ledger Grp 0L.
    The best solution is to assign non-O/I managed account as an adjustment account, and this is the 'standard' solution.Please also check note 884639.
    Best Regards,
    Gladys xing

Maybe you are looking for