Using Entry&Approval with MAXDB database

Hi all,
I'm trying to use the Entry&Approval module of SSM, but I'm getting into some problems that maybe someone can help me. I'm using SSM7.5 SP6 with MAXDB as my system database.
I already create my PAS database, I create the metric sets, I put some data there, but when I try to load the data into PAS database I get this error in the trace file:
LSS>
LSS> ... WFMDE_SETUP.PRO FOR MAXDB
LSS>
LSS> output REVIEW_LOAD;SAMPLE over
LSS> echo LOADSTARTED
LOADSTARTED
LSS> output off
LSS>
LSS> checkpoint update
LSS> checkpoint freeze
LSS>
LSS> set control WFMDELINK SSM_CB_EA
LSS>
LSS> access lslink
LSLink> connect SSM_CB_EA
LSLink>
LSLink> ... clear the scorecard status table
LSLink> begin
> DELETE FROM CPMS_SCORE_STATUS
> WHERE CPMS_CONTEXT_ID IN (SELECT ID FROM CPMS_CONTEXT
> WHERE CONTEXT_NAME IN (SELECT CONTEXT FROM CPMS_PASUSER
> WHERE UPPER(USEDB) = UPPER('SAMPLE')))
> end
[SAP AG][SQLOD32 DLL][SAP DB] Base table not found;-4004 POS(13) Unknown table name:CPMS_SCORE_STATUS
SQLSTATE: S0002
SQL System code: -4004
LSLink>
LSLink> ... create the LOADALL proc that will run wfmde_load.pro once for each content set
LSLink> begin
> SELECT DISTINCT CPMS_EA_MASTER_ID
> FROM CPMS_EA_DETAIL
> WHERE ID IN
> (
> SELECT DISTINCT CPMS_EA_DETAIL_ID
> FROM CPMS_EA_DATA, CPMS_EA_CUBES
> WHERE CPMS_EA_DATA.CPMS_EA_CUBES_ID = CPMS_EA_CUBES.ID
> AND UPPER(CUBE_NAME) = 'SAMPLE'
> )
> end
[SAP AG][SQLOD32 DLL][SAP DB] Base table not found;-4004 POS(108) Unknown table name:CPMS_EA_DATA
SQLSTATE: S0002
SQL System code: -4004
LSLink>
+LSLink> lss create code = "job 'wfmde_load.pro' '" + CPMS_EA_MASTER_ID + "'"+
LSLink> output proc LOADALL;PIPADMINDEFAULT
LSLink> peek create nohead nonumb
No Fields currently Selected
ACC004:
No Record Has Been Accessed From the Database.
ACC004:
No Record Has Been Accessed From the Database.
CHE FRE
CHE UPD
In PAS I create the linkid ssm_cb_ea pointing to DB3 MAXDB database. I also try for the MAXDB1 database, but the same result
[http://img713.imageshack.us/img713/8611/72008201.jpg]
Looks like some tables are missing !?!?!? Did I do any mistake?
Thanks in advance for all the help
Pedro

Hi Bob,
thanks for your answer.
I believe that in the LSSERVER.ini all the information is correct, because PAS is working fine, except the selects to the MAXDB database. Here it is the LSSERVER.INI
[Windows]
DEFAULTMEMORY=1200000
DBHOME=C:\Program Files (x86)\SAP BusinessObjects\Strategy Management\ApplicationServer\HOME
PAGEDB=C:\Program Files (x86)\SAP BusinessObjects\Strategy Management\ApplicationServer\HOME\PAGEDB
MASTERDB=C:\Program Files (x86)\SAP BusinessObjects\Strategy Management\ApplicationServer\DATA\MASTERDB
LOCKFILE=C:\Program Files (x86)\SAP BusinessObjects\Strategy Management\ApplicationServer\DATA\LSSLOCK
JUICE=C:\Program Files (x86)\SAP BusinessObjects\Strategy Management\ApplicationServer\DATA\JUICE.ENG
TBDB=C:\Program Files (x86)\SAP BusinessObjects\Strategy Management\ApplicationServer\DATA\TBDB.ENG
APLIB=C:\Program Files (x86)\SAP BusinessObjects\Strategy Management\ApplicationServer\DATA\APLIB
LIBDB=C:\Program Files (x86)\SAP BusinessObjects\Strategy Management\ApplicationServer\DATA\APLIB
CGLIB=C:\Program Files (x86)\SAP BusinessObjects\Strategy Management\ApplicationServer\DATA\CGLIB
SMREPORT=C:\Program Files (x86)\SAP BusinessObjects\Strategy Management\ApplicationServer\DATA\SMREPORT
INITIAL=C:\Program Files (x86)\SAP BusinessObjects\Strategy Management\ApplicationServer\DATA\INITIAL
DBPATH=C:\Program Files (x86)\SAP BusinessObjects\Strategy Management\InternetPub\Procs;C:\Program Files (x86)\SAP BusinessObjects\Strategy Management\ApplicationServer\HOME;C:\Program Files (x86)\SAP BusinessObjects\Strategy Management\ApplicationServer\DATA
VERSION=940
EDITFULLSCREEN=0
EDITWINXPOS=0
EDITWINYPOS=0
EDITWINWIDTH=0
EDITWINHEIGHT=0
[Server]
SERVERPATH=C:\Program Files (x86)\SAP BusinessObjects\Strategy Management\ApplicationServer
[localhost]
tcp_protocol=winsock
username=pipadmin
password=?
PROTOCOL=TCP
SERVICE=PILOT
CURSOR=LSSCMPTR
And when I said changing between DB's I was meaning the two MAXDB databases that exist on my system. I assume that the E&A stuff is stored in the DB3 (in my case) MAXDB database, no? I just test against the MAXDB1 database to be sure that I was not pointing to the wrong database. And because both are MAXDB databases, the proc's are the same.
Pedro

Similar Messages

  • Database selection with invalid cursor with MaxDB database

    Hi Experts,
    I encountered the this error:
    "Database selection with invalid cursor
    The database interface was called by a cursor (in a FETCH or CLOSE
    cursor operation) that is not flagged as opened. This can occur if a
    COMMIT or ROLLBACK was executed within a SELECT loop (which closes all
    opened cursors), followed by another attempt to access the cursor (for
    example, the next time the loop is executed)."
    We are using bw support package 19 early this month. Previously is working fine but this problem occured from the last 2 days.
    We are using MaxDB database.
    Really appreciate any speedy responds.

    Hi,
    We finally resolved the issue.
    The solution:
    We check the RFC connection test in SM59. There are connection error.
    There is an error that related J2EE_ADMIN user.
    SO we reset the J2EE_ADMIN id in SU01.
    The problem goes away.
    Many thanks

  • Using core data with a database

    Here is where I am at. I have a trivia app in development that will have over 1000 questions, so a database is inevitable. We recently created a test sqlite database and read in some entries and it worked.
    We were looking into exploiting the features of Core Data in our app, but this would involve creating a set of managed objects, a context, and the essentials for a Core Data scheme to function, and then use these models to fetch data from a database.
    The database is not created yet. We are starting fresh and simply wish to see if we can use core data to work with a database that could be created once the model is in place. Is it possible to create a 1000 or more entry database whose entries could relate to a Core Data entity or set of entities, and then use Core Data to fetch the data from these entries as we please?

    We will not be reusing any code. I apologize for the confusion. This is the start of the app regarding database management, and we have not yet created the database that will hold the questions for this app.
    Alright, so you two are both suggesting to set up a model and allow the creation of the sqlite store, which if my research is correct, involves a .sqlite file with a "Z_" following each attribute, and then adding entries here. This sounds fair enough. I had not known if this was going against the mainstream use of core data or not.
    Thanks you two. I'm going to leave the question open for a little while longer to see if any other opinions come up.

  • Can I use Oracle APEX with MySQL Database

    Hi All,
    We are looking to create a performance dashboard using Oracle APEX for our client, but the application database is MySQL. Is it possible to create reports in APEX using data from MySQL database? If yes, are there any specific steps to be followed or any additional setups needed?
    Any inputs would be really helpful.
    Appreciate all the help
    Thanks,
    Sameer

    Hi Sameer,
    it's not possible to use apex on mysql, as stated above me by several persons.
    If you havent got any oracle database in your organization, apex would be an expensive choise unless you use the free Oracle XE (express edition), which has APEX embedded.
    There are some limitations to XE but with a bit of smart thinking it wouldnt be much of a problem.
    [check the XE information here|http://download.oracle.com/docs/cd/B25329_01/doc/install.102/b25143/toc.htm#BABIECJA]
    In short:
    - XE will use 1 CPU even if you have two or more in your system
    - There is a 4 GB data limit
    - RAM memory usage is limited to 1 GB
    - 1 installation per computer
    You can use XE as a reporting database. This will relieve your mysql database from heavy reporting processes, too.
    The XE can be used as a mini data warehouse. So you have to transfer and transform the relevant data from mysql to your XE instance.
    After that you can start building report screens etc in the embedded Apex .
    hope this helps you
    Robin

  • How to use HR application with Remote Database ?

    Hi,
    I tested the HR application but it working on local database.
    How can I create same application which will communicate with Remote Database.
    Any guideline ?
    Regards,
    Ajay Sharma

    Hi,
    Thanks for the reply.
    My scenario is that there is one web service and this web service has one method name "getQueryOutput".
    Input parameter to this method is Select query
    select ename form empthe return type of this method is Document. Currently I hard coded the select statement as I want to display all employee name as application starts.
    But I am getting following error
    Unable to read DataControl Usages, on loadDataControl for id: Genericwebfollowing is the code of method where I am calling Webservice data control
        public void Execute() {
            Trace.log(Utility.ApplicationLogger, Level.INFO, EmployeeList.class, "Execute",
                      "##############Inside Execute");
            List pnames = new ArrayList();
            List params = new ArrayList();
            List ptypes = new ArrayList();
            pnames.add("query");
            ptypes.add(String.class);
            params.add("select ename from emp");
            try {
                Trace.log(Utility.ApplicationLogger, Level.INFO, EmployeeList.class, "Execute",
                          ">>>>>> Before invokeDataControlMethod");
                // This calls the DC method and gives us the Return
                GenericType result =
                    (GenericType)AdfmfJavaUtilities.invokeDataControlMethod("Genericweb", null, "getQueryOutput",
                                                                            pnames, params, ptypes);
                GenericType cfgt = (GenericType)result.getAttribute("Results");
                int count = cfgt.getAttributeCount();
                for (int i = 0; i < count; i++) {
                    GenericType fgt = (GenericType)cfgt.getAttribute(i);
                    Employee e = (Employee)GenericTypeBeanSerializationHelper.fromGenericType(Employee.class, fgt);
                    GenericType tempgt = (GenericType)fgt.getAttribute("ENAME");
                    e.setEname((String)tempgt.getAttribute(0));
                    s_employees.add(e);
            } catch (AdfInvocationException e) {
                Trace.log(Utility.ApplicationLogger, Level.SEVERE, EmployeeList.class, "Execute",
                          ">>>>>> AdfInvocationException=" + e.getMessage());
                //AdfException ex = new AdfException("Error Invoking Web Service.  Please try later", AdfException.WARNING);
                AdfException ex = new AdfException(e.getMessage(), AdfException.WARNING);
                throw ex;
            } catch (Exception e2) {
                Trace.log(Utility.ApplicationLogger, Level.SEVERE, EmployeeList.class, "Execute",
                          ">>>>>> Exception=" + e2.getMessage());
                //AdfException ex = new AdfException("Error Invoking Web Service.  Please try later", AdfException.WARNING);
                AdfException ex = new AdfException(e2.getMessage(), AdfException.WARNING);
                throw ex;
        }Regards,
    Ajay sharma

  • How use oracle forms with oracle database  in a local computer network(client -server homogenious network)

    Hello experts,             
                         I am new in Oracle forms.I am using oracle forms 11g with weblogic server 10.3.5 and oracle database 11g at windows 7 platform.
    I want to call my oracle forms(main  login form) from different computers(windows7) connected in a local network.My oracle database is installed in a server computer.I am not talking about oracle forms hosting in internet.I want to deploy oracle forms in a local computer network connected via LAN cable or wi-fi.
    thank You.
    regards
    aaditya

    In most cases you can copy the same entry found in the tnsnames.ora file used by the database.  In the database home, the file can be found in \network\admin.  Open the file and you should find something like this:
    yourAlias =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.0.100)(PORT = 1521))
        (CONNECT_DATA =
          (SERVICE_NAME = orcl)
    So in the above, you would need to set the alias (this can be anything you like), the IP address or hostname of the machine where the database is running, the port number used by the db listener, and the service name used by the db.  Most of this will already be set for you if you are copying from the database tnsnames.ora.  So you should be able to just copy and paste.  More information about the tnsnames.ora file can be found in the db documentation:
    http://docs.oracle.com/cd/B28359_01/network.111/b28317/tnsnames.htm

  • Networking/connection failure using generic connectivity with paradox databases

    I tried to establish a connection from our Oracle 8i-Server
    (Rel. 8.16 ) to a remote paradox-database via a database-link
    and a data-direct 4.0 paradox-odbc-driver. For testing purposes
    I set up a agent initialization file for a agent called hsodbc
    according to the distributed-database documentation and I also
    used the same parameters as in the documentation. If I try to
    test the Net8-Connection an ORA-03113-Error occurs.
    The entries in the agent-initialization file and in the
    tnsnames/listener.ora are ...
    ...Agent-Initialization File Inithsodbc.ora
    #Agent-Initialization File Inithsodbc.ora
    # This is a sample agent init file that contains the HS
    parameters that are
    # needed for an ODBC Agent.
    # HS init parameters
    HS_FDS_CONNECT_INFO = hsodbc
    HS_FDS_TRACE_LEVEL = ON
    HS_FDS_TRACE_FILE_NAME = HS.Log
    # Environment variables required for the non-Oracle system
    #set <envvar>=<value>
    #DataDirect 4.0 ParadoxFile (*.db);
    ...listener.ora
    # LISTENER.ORA Network Configuration File: C:\Oracle\Ora_Serv_816
    \network\admin\listener.ora
    # Generated by Oracle configuration tools.
    LISTENER =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = pdv0570)(PORT = 1521))
    CONNECT_TIMEOUT_LISTENER = 0
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = hsodbc)
    (ORACLE_HOME = C:\Oracle\Ora_Serv_816)
    (PROGRAM = hsodbc)
    (SID_DESC =
    (GLOBAL_DBNAME = MEDAS.PDV0570.MED.UNI_DUESSELDORF.DE)
    (ORACLE_HOME = C:\Oracle\Ora_Serv_816)
    (SID_NAME = MEDAS)
    # This is a sample listener.ora that contains the NET8
    parameters that are
    # needed to connect to an ODBC Agent - but makes an ORA-03113-
    Error if i check the
    # Net8-Connection
    and in the tnsnames.ora...
    # TNSNAMES.ORA Network Configuration File: C:\Oracle\Ora_Serv_816
    \network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    # This is a sample tnsnames.ora that contains the NET8
    parameters that are
    # needed to connect to an default generic connectivty ODBC Agent
    HSODBC =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = pdv0570)(PORT = 1521))
    (CONNECT_DATA =
    (SID = hsodbc.pdv0570.med.uni_duesseldorf.de)
    (HS = OK)
    #...new service created after setup of new database MEDAS with
    setting db_domain
    #...ATTENTION - use full service name with domain qualifier for
    sqlplus-login
    MEDAS.PDV0570.MED.UNI_DUESSELDORF.DE =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = pdv0570)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = MEDAS.PDV0570.MED.UNI_DUESSELDORF.DE)
    Do you have any suggestions how to fix the problem - and meny
    thanks in advance.
    Andreas

    Please contact Oracle support for this issue.
    Ensure that you are using an ODBC driver that meets the
    requirements listed in the documentation.
    Also double check that the ODBC driver is configured correctly.

  • What charcterset to use for Thai - with 10 database?

    Hi All,
    We have an application with below specification
    Oracle database - 10.2.0
    Forms and reports - 10g
    In the front end application using (forms) we are not able to view Thai charactes. The NLS_LANG for form server is AL32UTF8. With this setting we can see Chinese and Japanese characters properly but not Thai.
    The reports generated using oracle reports show the Thai characters and NLS_LANG for report server is = UTF8. SoI tried changing the form's nls_lang = UTF8 but no improvement after this change.
    Could you please tell me what do I need to change to view Thai characters?
    Thanks in advance
    Priya

    Hi,
    Do I need to post this query in different category?
    Regards,
    Priya

  • Use same report with same database structure to different database server.

    Hi,
    I have standard crystal reports which needs to be copied to another database server.
    The origin database has exactly same database structure with the data base in other server.
    My only question is how to change the connection of the crystal report file from old database server to new one without affecting the linked tables in the report. Would it be possible?
    Note: origin database and new database has same structure, tables and columns but differ in data on it. and both has different server. (MS SQL)
    Thanks,

    Hi Mark,
    Open the report in the CR Designer > select Database option on the top > select Set Datasource location.
    The pane on the top shows the current connection. Go ahead and create a new connection to the target database from the pane at the bottom. Once created, highlight one table from the top, highlight the corresponding table from the bottom pane and click Update. Do this for each table.
    -Abhilash

  • Replication / synchronization with MaxDB using Windows

    Hi,
    is there somewhere a tutorial how to use replication / synchronization with MaxDB using Windows?
    I found information about the Synchronization Manager but it seems that it's no more available for Download.
    The Database Studio description points out that it will be useable for MaxDB 7.7 and upper versions,
    but I can't also find V7.7 anywhere for download...
    So do I need and where can I get it?
    Thanks,
    Andre

    Hi Wolgang,
    thanks for your support - this is the output:
    C:\Program Files\sapdb\indep_prog\bin>Exception in thread "main" java.lang.Unsat
    isfiedLinkError: no swt-win32-2128 in java.library.path
            at java.lang.ClassLoader.loadLibrary(Unknown Source)
            at java.lang.Runtime.loadLibrary0(Unknown Source)
            at java.lang.System.loadLibrary(Unknown Source)
            at org.eclipse.swt.internal.Library.loadLibrary(Library.java:104)
            at org.eclipse.swt.internal.win32.OS.<clinit>(OS.java:42)
            at java.lang.Class.forName0(Native Method)
            at java.lang.Class.forName(Unknown Source)
            at org.eclipse.swt.internal.Library.getPlatform(Library.java:49)
            at org.eclipse.swt.internal.Library.loadLibrary(Library.java:83)
            at org.eclipse.swt.internal.Callback.<clinit>(Callback.java:31)
            at org.eclipse.swt.SWT.getPlatform(SWT.java:2227)
            at org.eclipse.swt.SWT.<clinit>(SWT.java:2368)
            at org.eclipse.jface.action.ActionContributionItem.<clinit>(ActionContri
    butionItem.java:60)
            at org.eclipse.jface.action.ContributionManager.insertAfter(Contribution
    Manager.java:268)
            at com.sap.sdb.syncMan.gui.SyncManGUI.drawMSG_LRU(SyncManGUI.java:1422)
            at com.sap.sdb.syncMan.gui.SyncManGUI.createMenuManager(SyncManGUI.java:
    428)
            at org.eclipse.jface.window.ApplicationWindow.addMenuBar(ApplicationWind
    ow.java:223)
            at com.sap.sdb.syncMan.gui.SyncManGUI.<init>(SyncManGUI.java:230)
            at com.sap.sdb.syncMan.gui.SyncManGUI.main(SyncManGUI.java:821)
    Thanks,
    Andre

  • Using older client 10201 with 11g database

    Hello,
    Are there any issues with using sqlplus client 10201 with 11g database with regard to performance? I would think using the 11g client with 11g database would be preferred but what would be the disadvantage in using sqlplus 10201 with 11g database?
    Also, what would be disadvantage if using sqlplus 11g with an older database 10201/10202? Thank you.

    I guess the most visible and the prominent issue of using an old version client with the more latest version db would be that the older version client won't be able to display/use some of the newest features. This sounds more like a usability issue than performance issue which you mentioned but that's what which came on top of the mind. Performance should not be affected as the client doesn' do much except to pull the data so if there would be any issues actualy , they would be with the server rather than the client.
    Just my 2 cents.
    HTH
    Aman....

  • Use IBM easy tier on DS8700 storage system with oracle database

    Hi,
    We search best practices to integrate IBM SSD and easy tier technologies on Oracle 10gR2/11gR1/11gr2 database.
    is that someone already done this type of integration with mixed Oracle and IBM technologies ?
    Thanks
    Arnaud

    user8949908 wrote:
    Easy Tier is feature on the DS8700 and the DS8800 that offers enhanced capabilities through automated hot spot management and data relocation, auto-rebalancing, manual volume rebalancing and volume migration, rank depopulation, merging of extent pools, and thin provisioning support.
    Easy Tier determines the appropriate tier of storage based on data access requirements and then automatically and nondisruptively moves data, at the subvolume or sub-LUN level, to the appropriate tier (like SSD) on the DS8000.
    so I search feedback on this technology used in conjunction with Oracle database.
    It's a question oriented for IBMer ...
    Regards
    ArnaudAs I said, this all happens several layers away from anything the Oracle database would know (or care) about. Just like my HP-SAN. It does a lot of the kinds of things you describe above and actually, not only does oracle not know or care, neither does the OS. All of that work is being done by a sub-system that is totally abstracted from the OS and even more abstracted from the Oracle rdbms. When oracle ( or any app) needs data, it sends a request to the OS to "give me X- number of bytes, beginning at offset Y in file Z". He doesn't even know what kind of device file Z is. And with dedicates storage systems like a SAN (and it sounds like Easy Tier) even the OS doesn't really know or care. It simply passes the request along to the interface to the storage system.

  • Entry & Approval - error creating second metric set

    Hi,
    I'm using Entry & Approval and when I create one Metric Set, I have no problem. But when I try to create a second one, it appear the following error popup:
    undefined.
    undefined.
    undefined.
    http://forums.sdn.sap.com/post!default.jspa?forumID=414#
    undefined 'ContentMasterList[...].Name' is null or is not an object
    undefined http://uipabs50:50000/strategy/metricsmanager/metricsetmgr_table.htm
    undefined #380
    As anyone can help me?
    Thanks a lot.
    Luis Almeida

    Dear Luis,
    A small clarification required. When you were creating the first metric set for that same dimensional model , did you select all the variables ? In the Entry and Approval defaults, did you select the required variables for which data should be loaded via E&A ?
    Vijay

  • Use private function with interface

    I'm working with ActionScript 2 and wanted to use an
    interface for one of my classes. However, the functions that it
    would define should be private in the classes that implement the
    interface. The problem is that I can't define private functions in
    the interface, and if I leave off any scope in the interface
    ("function findAndSetInformation():Void;") and make it private in
    the implementing class ("private function
    findAndSetInformation():Void {...") I get the error: "The
    implementation of the interface method doesn't match its
    definition.

    WHATS UP ?? WHERE IS TEH MODERATOR ?!!!!
    NO REPLY TELL NOW !!!!
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Yh:
    hi,
    how can i used REPLACE function with LOB database item????!!!1<HR></BLOCKQUOTE>
    null

  • I cannot get iCloud keychain to Approve with Security Code.

    I wiped my iPhone 5s thinking that I could get access to my keychain back by using the "Approve with Security Code" button.  When I put in my security code, it sends me a verification code via SMS to my phone.  Afterwards, it goes back to the Keychain settings page and gives me the option to Approve with Security Code.  Does not give an error message as if I messed up the Security Code or the Verification Code.  The same thing happens when I try to Approve my Mac via SMS.  I have tried to get this working on iOS 7.0.3, 7.0.4, and 7.1, as well as OSX 10.9.  Any ideas on how I can get this feature working again?

    I've used these boards a lot, so I wanted to respond to how I overcame the problem. You're given an option of setting it up from the phone, or your computer. In my case, I have a macbook pro. From my computer, I allowed the iPhone to receive icloud. It's under settings, iCloud, and the question will pop up. I'm not a tecky guy, so that's the best I can do. If that doesn't work, I'd try signing out of iCloud on your laptop or desktop, then signing back in. Futz around with the password on your iPhone until it comes up on your computer, then allow the iPhone to receive iCloud from your computer. Hope this helps! 

Maybe you are looking for

  • Final Cut 6.06 & pdf files

    Hi, I'm working on a project in fcp 6.06. I've received a powerpoint presentaion (pdf format) to accompany the video. I convert this in Photo Shop to 720x576, import to fcp & it looks ok.. Some of the files within that .pdf look the same but are diff

  • How to update a table when exception?

    The form contains only 1 block, a control block, which will trigger a oracle report when user save it. It will insert a record into a table. If report generate successfully, it will update the status to completed and vice versa. How can I do so? Beca

  • Graphics completely screwed up after 10.6.2 update

    Hi All, I was using Numbers 08 earlier this evening and the graphics all looked fine. After allowing Software Update to install the 10.6.2 update tonight, and restart, I opened up Numbers to find that the graphics boxes, including pie charts, etc, ar

  • I am receiving an error message in Internet Explorer - Adobe Muse

    Hi I am receiving annoying error messages in Internet Explorer. How can I fix this? The website is currently live. View here: http://josephapartments.com to see error messages, view it in Internet Explorer. If needed, I can send you my muse file. - J

  • Header text on top of the result set

    hi , i am working with a query and the users requirement is to see a header value on top of the result.for example i am working with a sales multi provider which gives sales for this year and sales for curent year1,2,+3.soi have 4 key figures (for 4