JDBC parameters in *.dbc file

Hi,
I have JDBC parameters as bellow , EBS version 12.1.3
FND_JDBC_BUFFER_DECAY_INTERVAL=60
FND_JDBC_BUFFER_MIN=5
FND_JDBC_BUFFER_MAX=20
FND_JDBC_STMT_CACHE_SIZE=100
FND_JDBC_USABLE_CHECK=true
FND_JDBC_PLSQL_RESET=false
FND_JDBC_CONTEXT_CHECK=true
FND_JDBC_BUFFER_DECAY_SIZE=50
FND_MAX_JDBC_CONNECTIONS=100
MY Assumption is as bellow
When JVM starts.
+Each JVM pool will open 5 connections in each pool.If all 5 are used it will open  5more connections as so on..
+And Max connections per jvm at any give time is 100.
+ I am getting confused around FND_JDBC_BUFFER_MAX
My Assumption is each pool have FND_MAX_JDBC_CONNECTIONS - FND_JDBC_BUFFER_MAX at any time,
Can somone please provide more details on FND_JDBC_BUFFER_MAX .
MOS doc does not provide accurate details.
-Thanks
Vijay

What happens if all 20 Connections are actively used  as of now.. They will still terminated / cleaned ?
If the connections are still being used then more available connections will be added to the pool (temporarily) until some of them get cleaned. If more JDBC connections need to be allocated and all the existing ones are still in use then you would start encountering out of processes/connections errors. That's why you need to tune your parameters (based on the number of JVMs, load, JDBC connections, ..etc) to avoid such errors.
So it means that pool will start from FND_JDBC_BUFFER_MIn and once it reached FND_JDBC_BUFFER_MAX , buffer maintenance starts.
If oool reached FND_JDBC_BUFFER_MAX, again FND_JDBC_BUFFER_MIN number of new connection will opens. but each pool will try maintain FND_JDBC_BUFFER_MAX of connections (20) under normal usage .
Am i Correct ?
Correct.
Please keep in mind that each JVM has its own JDBC pool.
Thanks,
Hussein

Similar Messages

  • Not getting connection using DBC file in JSP page

    Hi,
    I have a custom page. I am trying to open a JDBC connection using DBC file. Below is the command I am using for that -
    ctx = new WebAppsContext(dbfilename);
    Connection conn = ctx.getJDBCConnection();
    My dbc file location is 'C:\OA\jdevhome\jdev\dbc_files\secure'.
    the code is raising exception after getJDBCConnection is called.
    Any Idea where I am missing?
    Regards,
    Adarsh

    This is not an OA question...
    The DBC information is already set in the JVM for the Oracle Application Server:
    WebAppsContext ctx = new WebAppsContext(System.getProperty("JTFDBCFILE"));
    Connection conn = ctx.getJDBCConnection();
    And always check for if the WebAppsContext or the Connection objects are null.

  • How to identify the location of .dbc file in Oracle Apps ?

    Hi Guys,
    I'm looking for some system property to identify the exact .dbc file's location using my java program so that I can fetch the jdbc url to make a jdbc connection.
    I know we can get it from $FND_SECURE but there may be a possibility of two or multiple files in the location some times.
    My problem is I need to get the APPS_JDBC_URL from the dbc file to establish the connection to my db.
    Help appreciated.
    Thanks,
    Raghu.

    Hi,
    If want the file directory name to be captured in the BPEL process then add <element name="directory" type="string"/> in the inbound or outbound adapter header wsdl file. Then declare a variable of the header message type and in the 'adapter' tab of the receive or invoke activity select that variable which you previously created.
    Hope this helps.
    Rdgs.

  • Dbc file and Jsp error

    Dear all,
    I am trying to do multinode installtion on AIX 5.3 HACMP . During post installation i am getting this error.
    Dbc file and Jsp error
    Updating Server Security Authentication
    java.sql.SQLException: Io exception: Invalid number format for port number
    Database connection to jdbc:oracle:thin:@host_name:port_number:database failed
    Updating Server Security Authentication failed with exit code 1
    adgendbc.sh exiting with status 1
    ERRORCODE = 1 ERRORCODE_END
    SQLPLUS Executable : /mglapp/oramgl/mglora/8.0.6/bin/sqlplus
    SP2-0642: SQL*Plus internal error state 2165, context 4294967295:0:0
    Unable to proceed
    ERRORCODE = 1 ERRORCODE_END
    Thanks in advance

    Maybe you have problem with the date format, please ensure that NLS_DATE_FORMAT env variable is set to a valid value.
    Please view SP2-0642: Sql*Plus Internal Error State 2165, Context 4294967295:0:0 Doc ID: Note:396154.1.
    Hope it helps.
    Adith

  • DBC file error while runing PG.xml in jdeveloper

    HI
    1) I have installed Oracle database 10g on my local machine at location C:\oraclexe
    2) Now I have installed Jdev 10G on my local machine at location C:\Jdev10gOAF
    3) I have set the env variable JDEV_USER_HOME = C:\Jdev10gOAF\jdevhome\jdev
    4) Now I want to start with OAF Tutorials present in my Jdev at location C:\Jdev10gOAF\jdevhome\jdev\myprojects
    5) I have opened the toolbox.jws file in Jdev and it has loaded all the projects ExtendLabSolutions.jpr, LabSolutions.jpr,LabSolutions.jpr,Tutorial.jpr
    6) Now Problem comes here when I try to run the HelloWorldPG.xml
    Jdev is giving the error:
    "The DBC Filename Field in the Runtime Connection is not specificed. To run OAF, you must specify a DBC file name."
    7) I know that we need to give the dbc file name in runtime options of the project in Jdev , but the issue is from where should I get the DBC file for the Oracle database that I have installed locally on my system as mentioned in poitn 1.
    Any help on setting up Jdev .
    Thanks

    I am not sure where this file is stored in 10g but you can create DBC file by your own. Below is a sample file content. Change the content as per your server and save the file as DBC.
    In oracle apps, I think this file can be found in $FND_TOP
    I will tell you exct locations tomorrow.
    #DB Settings
    #Thu Oct 16 11:13:12 IST 2008
    GUEST_USER_PWD=GUEST/ORACLE
    APPL_SERVER_ID=595952B22AD32F0DE040A8C09464338D18426369623970520232270129039383
    FND_JDBC_BUFFER_DECAY_INTERVAL=300
    APPS_JDBC_DRIVER_TYPE=THIN
    FND_JDBC_BUFFER_MIN=1
    GWYUID=APPLSYSPUB/PUB
    FND_JDBC_BUFFER_MAX=5
    APPS_JDBC_URL=jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=server_name)(PORT=1526)))(CONNECT_DATA=(SID=vis1)))
    FND_JDBC_STMT_CACHE_FREE_MEM=TRUE
    FND_JDBC_STMT_CACHE_SIZE=0
    TWO_TASK=vis1
    FND_MAX_JDBC_CONNECTIONS=500
    FND_JDBC_USABLE_CHECK=false
    FNDNAM=APPS
    FND_JDBC_PLSQL_RESET=false
    DB_PORT=1526
    FND_JDBC_CONTEXT_CHECK=true
    FND_JDBC_BUFFER_DECAY_SIZE=5
    DB_HOST=server_name

  • How to execute BC4J code on remote server using DBC Files

    Hi People,
    I have a requirement here that i do not know if it's possible to achieve. We have an Application Module that fetches some records and another Application Module that receives them as parameters and inserts these records in interface tables. However, the BC4J code is installed on the JAVA_TOP of the Development Instance, and will not be installed on the destination server. What i would like to do is to place the target instance DBC file on the FND_TOP/secure directory on the Dev instance, and instantiate the Application module pointing to this DBC file, so that the AM connections would point to the target instance (thus inserting the data on the correct tables). Is that possible?
    Please let me know if you want further clarification. I have seen something similar working on iSetup (extract from source env -> Load on dest env) but have got no clue about implementing that.
    Best regards
    Thiago

    Hi,
    you can follow this steps.
    1. Create a database link to the remote server
    CREATE DATABASE LINK remote_Server
    CONNECT TO apps IDENTIFIED BY apps
    USING 'remote';
    2. Create a Synonym for the table in the remote server
    CREATE SYNONYM po_headers_remote
    FOR po_headers_all@remote_Server
    3. Create entity object based on this synonym.
    4. Create View Object based on above EO.
    Through this view object you can udpate remote database...
    Hope this helps.
    --Prasanna                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • EBS datasource in WebLogic cluster using the EBS dbc file

    Hi All
    Please let me know if someone has successfully created EBS datasource in WebLogic cluster using the EBS dbc file.
    I have successfully created the datasource with one managed server but I am getting 'OAuth Mashaling Failure' error while adding the second managed server to this datasource.
    Thanks

    Thanks Hussein
    Here is the complete error:
    [wlst] Caused by: weblogic.common.ResourceException: weblogic.common.ResourceException: OAUTH marshaling failure
    [wlst] at weblogic.jdbc.common.internal.PooledConnectionEnvFactory.createResource(PooledConnectionEnvFactory.java:133)
    [wlst] at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1249)
    [wlst] at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1166)
    [wlst] at weblogic.common.resourcepool.ResourcePoolImpl.start(ResourcePoolImpl.java:249)
    [wlst] at weblogic.jdbc.common.internal.ConnectionPool.doStart(ConnectionPool.java:1154)
    [wlst] at weblogic.jdbc.common.internal.ConnectionPool.start(ConnectionPool.java:154)
    [wlst] at weblogic.jdbc.common.internal.ConnectionPoolManager.createAndStartPool(ConnectionPoolManager.java:454)
    [wlst] at weblogic.jdbc.common.internal.ConnectionPoolManager.createAndStartPool(ConnectionPoolManager.java:372)
    [wlst] at weblogic.jdbc.module.JDBCModule.prepare(JDBCModule.java:255)

  • Nprocs and dbc file

    Dear all,
    Am planning to increase nprocs of forms from 1 to 2
    <frmsrv_nprocs oa_var="s_frmsrv_nprocs">2</frmsrv_nprocs>
    <servlet_comment oa_var="s_forms_servlet_comment">#</servlet_comment>
    <formservlet_session_cookie oa_var="s_form_session_cookie">true</formservlet_session_cookie>
    <forms_nprocs oa_var="s_forms_nprocs">1</forms_nprocs>
    Which one need to be modifed in the context fle ?s_frmsrv_nprocs or s_forms_nprocs
    WIll this increase the performance of forms ?
    In the doc, Guidelines to setup the JVM in Apps Ebusiness Suite 11i and R12 (Doc ID 362851.1)
    it is mentioned to add
    Also, ensure you add the following parameter to the DBC file:
    JDBC\:oracle.jdbc.maxCachedBufferSize=262144
    I cannot find dbc file in $FND_TOP/secure ... I can only find template.dbc.. Do I have to add in template.dbc ?

    Am planning to increase nprocs of forms from 1 to 2
    <frmsrv_nprocs oa_var="s_frmsrv_nprocs">2</frmsrv_nprocs>
    <servlet_comment oa_var="s_forms_servlet_comment">#</servlet_comment>
    <formservlet_session_cookie oa_var="s_form_session_cookie">true</formservlet_session_cookie>
    <forms_nprocs oa_var="s_forms_nprocs">1</forms_nprocs>
    Which one need to be modifed in the context fle ?s_frmsrv_nprocs or s_forms_nprocsIt is the first one -- See (Oracle EBS R12 Context Variables [ID 458282.1]) for thr definition of each context variable.
    WIll this increase the performance of forms ?Not necessarily.
    In the doc, Guidelines to setup the JVM in Apps Ebusiness Suite 11i and R12 (Doc ID 362851.1)
    it is mentioned to add
    Also, ensure you add the following parameter to the DBC file:
    JDBC\:oracle.jdbc.maxCachedBufferSize=262144
    I cannot find dbc file in $FND_TOP/secure ... I can only find template.dbc.. Do I have to add in template.dbc ?It is under $INST_TOP/appl/fnd/12.0.0/secure
    Thanks,
    Hussein

  • RW-00023: Error:  DBC file was not created- When try to install 11i on OEL5

    I got an erorr in the appl-top log file as below, also my installation wizard showing post installation checks did not succeed. Please advice.....:-)
    DBC File Check
    RW-00023: Error: - DBC file was not created:
    File = /d01/oracle/visappl/fnd/11.5.0/secure/VIS_oracleapp1/vis.dbc
    HTTP Check
    checking URL = http://oracleapp1.srini.co.uk:8000
    RW-50015: Error: - Portal is not responding. The service might not have started on the port yet. Please check the service and use the retry button.
    RW-50015: Error: - Portal is not responding. The service might not have started on the port yet. Please check the service and use the retry button.
    JSP Check
    checking URL = http://oracleapp1.srini.co.uk:8000/OA_HTML/jsp/fnd/fndhelp.jsp?dbc=/d01/oracle/visappl/fnd/11.5.0/secure/VIS_oracleapp1/vis.dbc
    RW-50015: Error: - JSP is not responding. The service might not have started on the port yet. Please check the service and use the retry button.
    PHP Check
    checking URL = http://oracleapp1.srini.co.uk:8000/OA_HTML/US/ICXINDEX.htm
    RW-50015: Error: - Login Page is not responding. The service might not have started on the port yet. Please check the service and use the retry button.
    JSP Check
    checking URL = http://oracleapp1.srini.co.uk:8000/OA_HTML/jsp/fnd/fndhelp.jsp?dbc=/d01/oracle/visappl/fnd/11.5.0/secure/VIS_oracleapp1/vis.dbc
    RW-50015: Error: - JSP is not responding. The service might not have started on the port yet. Please check the service and use the retry button.
    PHP Check
    checking URL = http://oracleapp1.srini.co.uk:8000/OA_HTML/US/ICXINDEX.htm
    RW-50015: Error: - Login Page is not responding. The service might not have started on the port yet. Please check the service and use the retry button.

    Hi JD,
    I am able to fix this issue.....:-) Thanks for your help JD.
    As per the Metalink note 747424.1, i replaced all occurances of LD_ASSUME_KERNEL with XD_ASSUME_KERNEL only in DB-tier, but not in the Apps tier. So this was causing the
    above issue in the instalation of oracle 11i on OEL5
    --Once again i alter and replaced all occurances of LD_ASSUME_KERNEL with XD_ASSUME_KERNEL in both the files....
    (db tier)
    <DB_HOME>/appsutil/bin/adgetlnxver.sh (did it earlier)
    (apps tier)
    <APPL_TOP>/ad/11.5.0/bin/adgetlnxver.sh
    --run  the autoconfig in apps tier with completed successfully result (and also generated the  DBC files)
    --run the adstrtal.sh and retry the rapidwiz once more. ( Oracle Discoverer services VIS_oracleapp1 - addisctl.sh - this one is Failed)
    --This time everything checked OK in the instalation wizard.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Post install checks failed for DBC file - Oracle App11.5.10.2 Linux  5.3

    Hi everybody,
    I tried Installing Oracle E-Business Suite 11.5.10.2 on Red Hat Enterprise Linux Server release 5.3
    The Post install checks failed for DBC file, HTTP, JSP and PHP. Apparently the DBC hadn’t been created. I had verified the log file, while executing adgendbc.sh, it throwing below error.
    Generating /jith/d01/oracle/appl/visappl/fnd/11.5.0/secure/prithvi.bangalore.bedford.local_vis.dbc
    DBC generation failed with exit code 127
    Generating /jith/d01/oracle/appl/visappl/fnd/11.5.0/secure/prithvi_vis.dbc
    DBC generation failed with exit code 127
    Updating Server Security Authentication
    Updating Server Security Authentication failed with exit code 127
    adgendbc.sh exiting with status 127
    ERRORCODE = 127 ERRORCODE_END
    .end std out.
    touch: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
    sqlplus: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    mkdir: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    grep: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    sed: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /jith/d01/oracle/appl/viscomn/util/java/1.4/j2sdk1.4.2_04/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
    cp: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /jith/d01/oracle/appl/viscomn/util/java/1.4/j2sdk1.4.2_04/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
    cp: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /jith/d01/oracle/appl/viscomn/util/java/1.4/j2sdk1.4.2_04/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
    cp: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /jith/d01/oracle/appl/viscomn/util/java/1.4/j2sdk1.4.2_04/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
    /jith/d01/oracle/appl/viscomn/util/java/1.4/j2sdk1.4.2_04/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
    .end err out.
    Thanks in advance.
    sreejith

    Welcome to the forums !
    Pl post EBS related question in the EBS forums at http://forums.oracle.com/forums/category.jspa?categoryID=3
    HTH
    Srini

  • How to extract Attribute Value from a DBC file with LabWindows and NI-XNET library

    Hi all,
    For my application, i would like to feed my LabWindows CVI Test program with data extracted from *.dbc file (created by another team under Vector CANdb++).
    These files contains all CAN frame definition
    and also some extra information added to :
    Message level,
    Signal level,
    Network Level
    These extra information are set by using specific ATTRIBUTE DEFINITIONS - FUNCTIONALITY  under Vector CANdb++
    The opening of the DataBase works under NI-XNET DataBase Editor as in LabWindows using: nxdbOpenDatabase ( ... )
    No attribute seems be displayable under the NI-XNET DataBase Editor (it's not a problem for me)
    Now, how, using the NI-XNET API and CVI, be able to extract these specially created attributes ?
    Thanks in advance.
    PS : In attached picture, a new attribute called Test_NI, connected to a message
    Attachments:
    EX1.jpg ‏36 KB

    Hi Damien, 
    To answer your question on whether the XNET API on LabWindows/CVI allows you to gain access to the custom attributes in a DBC file, this is not a supported feature. The DBC format is proprietary from Vector. Also, custom attributes are different for all customers and manufacturers. Those two put together make it really difficult for NI to access them with an API that will be standard and reliable.
    We do support common customer attributes for cyclic frames. This is from page 4-278 in the XNET Hardware and Software Manual : 
    "If you are using a CANdb (.dbc) database, this property is an optional attribute in the file. If NI-XNET finds an attribute named GenMsgSendType, that attribute is the default value of this property. If the GenMsgSendType attribute begins with cyclic, this property's default value is Cyclic Data; otherwise, it is Event Data. If the CANdb file does not use the GenMsgSendType attribute, this property uses a default value of Event Data, which you can change in your application. "
    Link to the manual : http://digital.ni.com/manuals.nsf/websearch/32FCF9A42CFD324E8625760E00625940
    Could you  explain us the goal of this attribute, and what you need it on your application.
    Thanks,
    Christophe S.
    FSE East of France І Certified LabVIEW Associate Developer І National Instruments France

  • Target Directory & File Name parameters in Receiver File Adapter with ASMA

    Hi Experts..
    I have the following question....
    What am I suppose to inform in the Target Directory & File Name obligatory parameters in Receiver File Adapter if I am using ASMA to fill it? Is it any dummy value?
    Also, if you have any step by step guide/blog to forward on how to use ASMA in file adapter I will be greatful.
    Thanks in advance,
    Daniela

    You can give any dummy value in dir and file name... Just go through these blogs
    /people/michal.krawczyk2/blog/2005/11/10/xi-the-same-filename-from-a-sender-to-a-receiver-file-adapter--sp14
    /people/madanmohan.agrawal/blog/2009/05/20/combining-three-different-aspects-of-pi-asma-af-module-and-variable-substitution-in-one-shot

  • Can I store a DBC file inside a exe?

    I have a progaram that I turned into a executable that works fine except that I have to include a DBC file for the XNET sessions that are used in the program.  The problem is that I don't want anyone to find the external DBC file.
    So the question is if there is a way to put the DBC file into the VI so there is no way to see what it contains?
    I found the example CAN Dynamic Database Creation.VI, which could work for a low channel count.  My DBC file has 14 messages with over 60 signals, not impossible but I would rather not do it by hand.  I only display about 25 signals on the front panel but I record all of them in a data file.
    Any good ideas on how to go about doing this?

    Bryan,
    Dynamic database creation is the best solution to this problem. Even if you were to include the DBC file in your EXE build, it would store the DBC file in a data folder created along with the executable, which would be available to anyone browsing through that file structure. I suppose the file could be converted to binary and included, reconstituted to a DBC by your VI and then be destroyed upon program completion. However, the DBC file would still be accessible at some file path during program execution. By far the safest and most straightforward way to handle this is to dynamically create the database. 
    -Nick-
    Nick C | Staff LabVIEW Platform Product Support Engineer | National Instruments

  • How to configure the jdeveloper 11 with .dbc files?

    hi, all
    i am a new bie here. 4 jdeveloper 10, i can configure the .dbc files at project setting, while 4 jdeveloper 11, it's totally different. i can't find any place to configure it. How to configure the .dbc in jdeveloper 11?
    Regards,
    Chelsea

    You cant use jdev 11g for OAF development..
    You need to download the jdeveloper patch from metalink to develope OAF objects.
    Refer this metalink note to find the correct version of jdeveloper that you need to download https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=416708.1
    --Prasanna                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Problem in accessing CAN daabase (.dbc) file using GetChannelNamesByID.vi

    Hello,
    I am using PCI  CAN/2 series2 card to read data from sensor. In my labview code i m using FrameToChannel conversion API to convert the frame data into actual values using a .dbc file. My software includes data logger and visualization of sensor data. I have to run this software contineously for 30 days and monitor and log the sensor data.
    My problem is the GetChannelNamesByID.vi is not working properly. My data logger works fine(i.e. rading and logging sensor data) but the visualization of actual sensor data using FrameToChannel conversion library stops sometimes. My software can not read the channels from the database file. it happens randomly e.g. after 12 hours.  I have to stop the software and run it again so that it works fine.
    Can anyone give me the reason and solution for this?
    Thanks in advance.
    Solved!
    Go to Solution.

    My 2 cents.  Don't use the Frame to Channel Conversion Library.  It hasn't been updated in 5 years and likely won't be updated again.  I had problems with it where it wasn't converting correctly, and where it had issues with having the same signal names in different frames.  I is supposed to support it with a dot notation but it some times just doesn't work.  
    I contacted NI about it and they agreed there was a problem, especially with the frame to channel conversion.  I provided a frame, the DBC, and showed the signal it converted it to was wrong.  Their suggestion was to use the XNet conversion.  After switching to using the XNet conversion (which doesn't need XNet hardware) I would never want to go back.  There is so much more flexibility in the API and it is activly being supported.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

Maybe you are looking for

  • Macbook Pro Black boxes across screen then crashes

    I have a Macbook Pro that I got 2 months ago. A couple days ago it froze and had black boxes all across the screen, then it crashed. Today when I started it up after I logged in while it was loading the black boxes popped up again, then it crashed. A

  • 10.5.1 impossible to install wrong checksum, 10.5.1 impossible to install wrong checksum

    so I try & try & try but it only works on one of my pc s but the macbook is no no & no wrong checksum wrong this & that? when passing & going to install it will start & stop Saying contact the programmaker... any ideas? This started lately? Is the sa

  • Moved iphoto, now can't edit photo

    I recently switched jobs and moved from one mac to another.  In preparring to leave my old job, I dragged my iphoto library from my pictures folder on to an external harddrive.  When I arrived at my new job, I dragged the iphotos library to the pictu

  • FM SO_NEW_DOCUMENT_ATT_SEND_API1 not working

    Hi Expert, I am working on ECC 6.0 I have requirement to send e-mail with PDF attachement to user.For sending e-mail I am using FM SO_NEW_DOCUMENT_ATT_SEND_API1 in my Z-program .It return Exception DOCUMENT_NOT_SENT. But same code is working in our o

  • Adobe Digital Edition Authorization Problem

    I can't authorize my Adobe Digital Edition for my new computer with my Adobe ID because it says that the ID was used and authorized previously to another computer ( which is my old computer, currently crushed and hard disk was damaged, I have no acce