Use of Ajax to update a particular div in my code....using columnchart

Hi All,
I am having two columncharts, say columnChart1 and columnChart2.
I want to display the columnChart2 in the place of columnChart1 when I select one particluar checkbox.
I tried to implement and i reached here, "I am able to modify the existing graph with text and numeric but if i tried to put the new graph, i am getting the attached screen"...
Here is my part of code where i am trying to update the graph,
var oCB=new sap.ui.commons.CheckBox("compare",
  text:"Compare with Previous Year",
  checked : false,
  change : function() {
  if(oCB.getChecked()){
  alert('YES');
  //postRequest(oBarChart1);
  loadXMLDoc();
  else{
  alert('NO')
function loadXMLDoc()
  var arun=10;
  alert("arundj");
var xmlhttp;
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.onreadystatechange=function()
  alert("justoutside");
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
   alert("inside");
    document.getElementById("oColumnChart").innerHTML=oColumnChart1;
xmlhttp.open("GET","",true);
xmlhttp.send();
there is no issue with the charts both are fine if I try to draw them separately. How to do this?
Regards,
Arun

Hi Arun,
If you would like to just change the content of the chart than I would recommend below solution.
This way you don't have to worry about AJAX calls and UI takes care of them.
var oModel = new sap.ui.model.json.JSONModel({
data : [ {
country : 'France',
product : 'quadcopter',
sales : 34
country : 'USA',
product : 'quadcopter',
sales : 40
country : 'China',
product : 'tricopter',
sales : 65
country : 'France',
product : 'tricopter',
sales : 10
country : 'China',
product : 'quadcopter',
sales : 50
country : 'Germany',
product : 'tricopter',
sales : 15
country : 'USA',
product : 'tricopter',
sales : 22
country : 'USA',
product : 'heli',
sales : 96
country : 'China',
product : 'airplane',
sales : 86
country : 'France',
product : 'airplane',
sales : 76
country : 'Germany',
product : 'airplane',
sales : 58
country : 'USA',
product : 'airplane',
sales : 96
country : 'China',
product : 'heli',
sales : 26
country : 'France',
product : 'heli',
sales : 71
country : 'Germany',
product : 'heli',
sales : 76
data_new : [ {
quantity : '10',
product : 'quadcopter',
sales : 34
quantity : '16',
product : 'quadcopter',
sales : 40
quantity : '20',
product : 'tricopter',
sales : 65
quantity : '86',
product : 'tricopter',
sales : 10
quantity : '91',
product : 'quadcopter',
sales : 50
quantity : '45',
product : 'tricopter',
sales : 15
quantity : '70',
product : 'tricopter',
sales : 22
quantity : '37',
product : 'heli',
sales : 96
quantity : '55',
product : 'airplane',
sales : 86
quantity : '29',
product : 'airplane',
sales : 76
quantity : '68',
product : 'airplane',
sales : 58
quantity : '79',
product : 'airplane',
sales : 96
quantity : '81',
product : 'heli',
sales : 26
quantity : '69',
product : 'heli',
sales : 71
quantity : '87',
product : 'heli',
sales : 76
sap.ui.getCore().setModel(oModel);
var dataset = new sap.viz.ui5.data.FlattenedDataset({
dimensions : [ {
axis : 1,
name : 'Country',
value : "{country}"
axis : 2,
name : 'Product',
value : "{product}"
measures : [ {
name : 'Sales',
value : '{sales}'
data : {
path : "/data"
var dataset_new = new sap.viz.ui5.data.FlattenedDataset({
dimensions : [ {
axis : 1,
name : 'product',
value : "{product}"
axis : 2,
name : 'quantity',
value : "{quantity}"
measures : [ {
name : 'Sales',
value : '{sales}'
data : {
path : "/data_new"
var oChart = new sap.viz.ui5.StackedColumn("chart", {
width : "100%",
height : "200px",
title : {
visible : true,
text : 'Test Stacked Column Chart'
var oCB = new sap.ui.commons.CheckBox("compare", {
text : "Compare with Previous Year",
checked : false,
change : function() {
if (oCB.getChecked()) {
oChart.destroyDataset(dataset);
oChart.setDataset(dataset_new);
oChart.rerender();
} else {
oChart.destroyDataset(dataset_new);
oChart.setDataset(dataset);
oChart.rerender();

Similar Messages

  • Update the particular RECORD which is already exist in the table

    EXPERTS,
    AM USING JDEV VER11.1.1.4.0 n am using adf business components.
    SEE this my snapshot.
    http://www.4shared.com/photo/fullsize/hpoeMX1o/1_online.html
    THIS MY TABLE
    DESC glm_control;
    FIELD Name Null DATA Type
    GLMCTRL_BU                     NOT NULL VARCHAR2(5)
    GLMCTRL_ACCT_LENGTH NOT NULL NUMBER(3)
    GLMCTRL_ALLOW_UPD_RJ NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_UPD_DJ NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_UPD_AJ NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_CAN_RJ NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_CAN_DJ NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_CAN_AJ NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_INS_RJ_PC NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_INS_GJ_PC NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_INS_DJ_PC NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_POST_GJ_PO NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_PYE_RJ_UP NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_PYE_AJ_UP NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_PYE_DJ_UP NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_PYE_GJ_UP NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_FIN_AJ_POST NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_FIN_RJ_POST NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_FIN_DJ_POST NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_FPC_GJ_CHK NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_FPC_AJ_CHK NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_FPC_RJ_CHK NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_FPC_DJ_CHK NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_ZERO_DJ_POST NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_CHNG_BUD_OPT NOT NULL VARCHAR2(1)
    GLMCTRL_ALLOW_NS_FIN_YEAR NOT NULL VARCHAR2(1)
    GLMCTRL_CRE_BY NOT NULL VARCHAR2(15)
    GLMCTRL_CRE_DATE NOT NULL DATE
    GLMCTRL_UPD_BY VARCHAR2(15)
    GLMCTRL_UPD_DATE DATE
    GLMCTRL_AMC_REC NOT NULL VARCHAR2(1)
    GLMCTRL_DATE_JRNL NOT NULL VARCHAR2(1)
    GLMCTRL_CLR_JRNL NOT NULL VARCHAR2(1)
    GLMCTRL_EX_QTY NOT NULL VARCHAR2(1)
    GLMCTRL_EXP_PERIOD NOT NULL NUMBER(7)
    GLMCTRL_EXP_DAYS NOT NULL NUMBER(7)
    GLMCTRL_LC_FIN_IMP NOT NULL VARCHAR2(1)
    GLMCTRL_AUTO_OFFSET_DEL NOT NULL VARCHAR2(1)
    GLMCTRL_GRN_INV_RND_OFF NOT NULL NUMBER(3)
    GLMCTRL_INV_PYMT_RND_OFF NOT NULL NUMBER(3)
    GLMCTRL_INV_RCT_RND_OFF NOT NULL NUMBER(3)
    GLMCTRL_LVL1_DESC VARCHAR2(30)
    GLMCTRL_LVL2_DESC VARCHAR2(30)
    GLMCTRL_LVL3_DESC VARCHAR2(30)
    GLMCTRL_LVL4_DESC VARCHAR2(30)
    GLMCTRL_CFS_AMT_FMT VARCHAR2(1)
    GLMCTRL_SERV_TAX_CR_OPT VARCHAR2(1)
    GLMCTRL_REJ_WAR_OPT VARCHAR2(1)
    GLMCTRL_CASH_AMT NUMBER(15,3)
    GLMCTRL_INV_RND NUMBER(5)
    GLMCTRL_SHR_COST_TYPE VARCHAR2(2)
    GLMCTRL_TAX_AMT_FLAG VARCHAR2(1)
    GLMCTRL_OPDATE DATE
    GLMCTRL_OP_YEAR NUMBER(6)
    GLMCTRL_RG_CTRL VARCHAR2(1)
    THIS TABLE CONTAINS MOREOVER 25 RECORDS.
    I WANT TO DO THE FOLLOWING USECASE:
    1. I WANT TO SHOW THE PARTICULAR RECORD RELEATED TO THAT PARTICULAR FIELDS IN MY PANEL BOX AND
    2. AND ALSO UPDATE THE PARTICULAR 4 FIELDS WHICH IS SHOWN IN MY PANEL BOX
    IF YOU NOT UNDERSTAND I WILL GIVE THE EXAMPLE WATCH IT.
    glm_control - THIS MY TABLE - THIS MY RECORDS
    IT CONTAIN 1..TO ..25 RECORDS.
    GLMCTRL_BU || GLMCTRL_LVL1_DESC || GLMCTRL_LVL2_DESC || GLMCTRL_LVL3_DESC || GLMCTRL_LVL4_DESC
    1. MEL || EXPL1 || EXPL2 || EXPL3 || EXPL4
    15. UIL || XPL1 || XPL2 || XPL3 || XPL4
    25. DIL || PL1 || PL2 || PL3 || PL4
    1*. I WANT TO SHOW FOUR OF THE FIELDS (GLMCTRL_LVL1_DESC GLMCTRL_LVL2_DESC GLMCTRL_LVL3_DESC GLMCTRL_LVL4_DESC) OF THE (*'UIL'* - NOTHING BUT IT IS DATA WHICH IS IN GLMCTRL_BU FIELD).
    I WANT TO UPDATE THOSE FIELDS(GLMCTRL_LVL1_DESC GLMCTRL_LVL2_DESC GLMCTRL_LVL3_DESC GLMCTRL_LVL4_DESC) OF A PARTICULAR RECORDS
    BASED ON THIS CONDITION. GLMCTRL_BU = 'UIL'
    THIS UPDATION DONE WITH THE HELP OF BUTTON.
    I FACING THE FOLLOWING PROBLEM:
    BUT HERE FIRST RECORD OF THE TABLE IS  SHOWN. SEE THE SNAPSHOT.
    ONLY U SEE THIS SNAPSHOTS.
    http://www.4shared.com/photo/fullsize/hpoeMX1o/1_online.html
    ATLAST I NEED TO SHOWN PARTICULAR RECORD(NOT ALL RECORD) IN PANEL BOX. THAT PARTICULAR RECORD BASED ON THE CONDITION.
    AND ALSO UPDATE THE REOCRD WITH THE HELP OF BUTTON.
    CAN ANY ONE HELP ME.
    i think so it can be done with viewrowimpl class we can done it.
    but i dono how to proceed?
    note: am newbie.
    please help me.

    Hi,
    just use a ViewCriteria on the View Object query. Then drag and drop the ExecuteWithParams operation as a paremeter form to the page and ensure pressing the search button partially refreshes the table
    Frank

  • Updating the particular row and column in a JTable

    Hi,
    I have a JTable which is having fixed number of columns. When i am trying to update a particular cell in the table
    during programm execution i am not able to do it.
    I am getting the row number and column number correctly. But when i am going to set the data it is not setting at the same row. It is setting some other row according to the m_index (according to the sorting).
    i am doing :
    JTableModel model = (JTableModel) m_TablePan.getTableModel();
    model.setValueAt(savedData, row, column);

    See the convertXxxIndexToView and convertXxxIndexToModel methods.
    db
    Edited by: Darryl.Burke -- wrong methods suggested
    Edit2: Evidently lipumama doesn't follow up on many questions posted.
    One for the blacklist.

  • Updation of order value in T code FD33

    Hi,
    I am facing a problem of incorrect updation of order value in T code FD33 (Customer credit management-Display). When I analyzed the individual data, I could find that the value of particular Sales document type (ZCAL) is not getting updated in FD33-->Order value(Status View), whereas it is getting updated correctly in VKM4 transaction. Could anyone help me out in resolving this.
    Please let me know if i am not clear enough.
    Thanks in advance
    Suresh

    Hello Suresh,
    there are several customizing settings. The sales order item updates the FD33 only, if the item category (used in the order) is set as the credit relevant (transaction VOV7), the item is relavantfor the billing and the system is able to determine the credit price for the item (transaction V/08). The item should have have the confirmed quantities (on the schedule line level - vbep-bmeng) - so the whole sales order should be credit approved. You can also check the  note 18613. Thank you.
    Best regards,
    Lela

  • Someone who can help me to do.  Adobe Bridge CS6 Update 5.0.2 The update is not applicable. Error Code: U44M2P28

    Someone who can help me to do.  Adobe Bridge CS6 Update 5.0.2 The update is not applicable. Error Code: U44M2P28

    be sure to use the correct update (32 or 64 bit).
    http://www.adobe.com/downloads/updates/

  • Help with CS5 Updates Failed, Updates could not be applied, Error Code U43M1D207

    CS5 Updates Failed, Updates could not be applied, Error Code U43M1D207
    Can anyone help with this error code?
    Products installed and activated on new laptop
    Unable to update using Adobe Application Manager
    Thank you

    I followed up on the Photoshop Error code and found some suggestions by Jeff Tranberry and Pete Green here.
    Michael

  • DFW CC Release – 8/2013 Update is not applicable. Error Code: U44M1P28

    Dreamweaver CC Release – August 2013
    Update is not applicable. Error Code: U44M1P28
    Everytime I log in, it says an update is available..
    Anyone have any ideas?
    It downloads fine but then on install it gives this error.  I also have DW CS6 on my system.
    Also says  "Install"  on DW CC in the  App manager, not   "Installed"  which I think it used to say for the suite...
    Mac  10.8.4

    Dreamweaver CC Release – August 2013
    Update is not applicable. Error Code: U44M1P28
    Everytime I log in, it says an update is available..
    Anyone have any ideas?
    It downloads fine but then on install it gives this error.  I also have DW CS6 on my system.
    Also says  "Install"  on DW CC in the  App manager, not   "Installed"  which I think it used to say for the suite...
    Mac  10.8.4

  • [svn:fx-trunk] 5464: ASDoc updates for FxApplication and Application ( no code changes)

    Revision: 5464
    Author: [email protected]
    Date: 2009-03-20 11:52:50 -0700 (Fri, 20 Mar 2009)
    Log Message:
    ASDoc updates for FxApplication and Application (no code changes)
    * notes the pageTitle property is for use with the SDK HTML templates
    * update the default values for backgroundGradientColors
    QE Notes: None
    Doc Notes: Please review
    Bugs: SDK-16535, SDK-16693
    Reviewer:
    tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16535
    http://bugs.adobe.com/jira/browse/SDK-16693
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxApplication.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Application.as

  • Help with updates - The software change returned error code 0x87D00215(-2016411115).

    I have rolled out bunch of updates across few hundred workstation systems.
    Few of the desktops have failed to install SOME of the updates and just can't get my head around as to why?
    Looking at one of the workstations, I can see 5 updates are pending download at 0%.
    Some of these fail after a while and with in Software Centre, I can see 'Help with updates - The software change returned error code 0x87D00215(-2016411115).'. Not exactly sure what this means, but I have tried clearing the cache and
    rebooting the workstations few times.
    (I have also tried to use Windows Update and install one of these manually, which worked.)

    Investigating this further, I have found the following in CAS.log:
    ICcmContentTransferManager::ModifyJobPriority failed with error 0x87d00215 ContentAccess 01/06/2013 17:19:24 3316 (0x0CF4)
    No need to change timeout settings ContentAccess 01/06/2013 17:19:24 3316 (0x0CF4)
    Successfully created download request {ED6E9E5C-E806-43CA-9F93-49AC72D1DEAD} for content 53bf87a2-bedf-4def-b0ec-9637613c3429.1 ContentAccess 01/06/2013 17:19:24 3316 (0x0CF4)
    Requesting locations synchronously for content 99ddb078-b780-4605-8fac-9607fe56450d.1 with priority Foreground ContentAccess 01/06/2013 17:19:24 3316 (0x0CF4)
    The number of discovered DPs(including Branch DP and Multicast) is 1 ContentAccess 01/06/2013 17:19:24 3316 (0x0CF4)
    Calling back with the following distribution points ContentAccess 01/06/2013 17:19:24 3316 (0x0CF4)
    Distribution Point='http://DPSERVER.com/SMS_DP_SMSPKG$/99ddb078-b780-4605-8fac-9607fe56450d', Locality='LOCAL' ContentAccess 01/06/2013 17:19:24 3316 (0x0CF4)
    Requesting content 99ddb078-b780-4605-8fac-9607fe56450d.1, size(KB) 0, under context System with priority Foreground ContentAccess 01/06/2013 17:19:24 3316 (0x0CF4)
    ICcmContentTransferManager::ModifyJobPriority failed with error 0x87d00215 ContentAccess 01/06/2013 17:19:24 3316 (0x0CF4)
    No need to change timeout settings ContentAccess 01/06/2013 17:19:24 3316 (0x0CF4)
    Successfully created download request {67B7E59B-A386-4EA8-BF39-2EB64B108A6C} for content 99ddb078-b780-4605-8fac-9607fe56450d.1 ContentAccess 01/06/2013 17:19:24 3316 (0x0CF4)
    Requesting locations synchronously for content 61d33de7-9582-41e3-82fc-3e0f970b60f3.1 with priority Foreground ContentAccess 01/06/2013 17:19:24 3316 (0x0CF4)
    The number of discovered DPs(including Branch DP and Multicast) is 1 ContentAccess 01/06/2013 17:19:24 3316 (0x0CF4)
    Calling back with the following distribution points ContentAccess 01/06/2013 17:19:24 3316 (0x0CF4)
    Distribution Point='http://DPSERVER.com/SMS_DP_SMSPKG$/61d33de7-9582-41e3-82fc-3e0f970b60f3', Locality='LOCAL' ContentAccess 01/06/2013 17:19:24 3316 (0x0CF4)
    Requesting content 61d33de7-9582-41e3-82fc-3e0f970b60f3.1, size(KB) 0, under context System with priority Foreground ContentAccess 01/06/2013 17:19:24 3316 (0x0CF4)
    ICcmContentTransferManager::ModifyJobPriority failed with error 0x87d00215 ContentAccess 01/06/2013 17:19:24 3316 (0x0CF4)
    No need to change timeout settings ContentAccess 01/06/2013 17:19:24 3316 (0x0CF4)
    Successfully created download request {12E48136-B545-4C42-9745-9FF97CE38D52} for content 61d33de7-9582-41e3-82fc-3e0f970b60f3.1 ContentAccess 01/06/2013 17:19:24 3316 (0x0CF4)

  • Bridge CC Adobe Bridge CC 6.0.1 Update Update is not applicable. Error Code: U44M2P28

    (MAC) I downloaded Bridge CC and accidently deleted it unproperly. I just trashed it in the trash can and emptied it. I can't restore/ re-download it becuase it still says on Creative Cloud that Bridge is up to date, but when I looked online to properly delete it it Bridge CC is not in my Utilities/Adobe Installers? What do I do? I tried to redownload it online but it still won't work. It gave me this. PLEASE HELP!
    Adobe Bridge CC 6.0.1 Update
    Update is not applicable. Error Code: U44M2P28

    Nikiminn the U44M2P28 indicates and installer error.  I would recommend reviewing your installation log files for the specific errors for the Bridge 6.0.1 update.  You can find information on how to locate and interpret your installation log files at Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html.  You are welcome to post any specific errors you discover to this discussion.

  • I could not update Camera raw 6.7 Error code U44M1P7

    I cannot update Camera raw 6.7 error code U44MiP7

    Moving this discussion to the Camera RAW forum.
    You may want to review the installation logs related to this update.  You can locate the log file specific to this update by following the directions listed in Troubleshoot with install logs | CS5, CS5.5, CS6 - http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html.  The relevant log file will have the name of this update applied to it.

  • Update locations link to a company code

    Hello all, I am working in SRM 7.0 and in MM system was an update of plants linked to company codes. Now, I have to replicate it to SRM.
    How can I do it? How can I update it?
    I try with report BBP_LOCATIONS_GET_ALL but it doesn´t work
    Thanks in advance
    Rosa Rodríguez

    I deleted the entrie that is obsolete in the table BBP_LOCMAP. Then I run report BBP_LOCATIONS_GET_SELECTED and select the plant that I have to update.

  • Need to update the business place and section code for the advances

    Hi,
    I need to update the business place and section code for already posted advance payment requests (f-47), advance payments (f-48) and clearing documents (F-54).
    I can able to update the business place and section code for only invoices those are coming from MM route in J1INPP.
    guide me
    sateesh

    Hi ,
    Please follow the below point as per note no 640231
    2.  Path : Transaction SM31 . Enter the table name as TRWPR and press
                                                                      Page 2
        maintain .
        a) Delete all entries linked to component ZIND if they are present.
        b) Check that, entries as specified below exist for Component IND.
           Business
           Tran.    Time     No    Component        Function Module
           DOCUMENT CLOSE    043   IND              J_1I6_UPDATE_BA
           DOCUMENT CLOSE    044   IND              J_1IEWT_UPDATE_SECCO
           DOCUMENT PREREV   810   IND              J_1I6_CIN_DOC_PREREV
           DOCUMENT CLOSE    810   IND              J_1I2_COPY_TO_LOCAL
           RABELEG  ERGAENZE 810   IND              J_1IEWT_COPY_BUPLA_FBZ
           BELEG    POST     810   IND              J_1ITDS_TABLE_UPDATE
           DOCUMENT CHECK    810   IND              J_1I6_VALIDATE_GR
           DOCUMENT POST     811   IND              J_1IEWT_UPDATE_PROVISION
           BELEG    POST     811   IND              J_1IEWT_UPDATE_PROVISION
           BELEG    CLOSE    820   IND              J_1I2_COPY_TO_LOCAL
           DOCUMENT CHECK    820   IND
           J_1I6_VERIFY_GR_EIC_QUANTITY
           DOCUMENT CLOSE    820   IND              J_1I6_COPY_TO_LOCAL
           DOCUMENT CLOSE    821   IND              J_1IEWT_COPY_TO_LOCAL
           DOCUMENT POST     821   IND              J_1ITDS_TABLE_UPDATE
           BELEG    CLOSE    821   IND              J_1IEWT_COPY_TO_LOCAL.
        For the first two entries which are marked with sequence number 43
        and 44 for the Business Transaction 'DOCUMENT' and Time 'CLOSE' ,
        ensure that the sequence number is below the number for function
        module FI_DOCUMENT_CLOSE. This is to ensure that these two functions
        are processed in time for other checks in Financial Accounting.
    MIRO documents also will update the Business place section code.
    Reg
    Madhu M

  • DPS Desktop Tools CS6 2.05.1 Update Update is not applicable. Error Code: U44M2P28

    I want to update CS Indesign CS6 to get the Folio Overlay plugin, but the updates could not be applied. The error log shows:
    DPS Desktop Tools CS6 2.05.1 Update
    Update is not applicable. Error Code: U44M2P28
    Could anyone help me?

    Actually, I want to get the Folio Overlay, I just get the Folio Builder in InDesign CS6 (Mac) only.
    And I can't make an updates under the window column, can you find out what's the problem? Many thanks.

  • My Photoshop, Illustrator and In design failed to update.  I got this :Error Code: U44M1P7.  Suggestions to fix?

    My Photoshop, Illustrator and In design failed to update.  I got this :Error Code: U44M1P7

    U44.. update error http://forums.adobe.com/thread/1289956 may help
    -more U44.. discussion http://forums.adobe.com/thread/1275963
    -http://helpx.adobe.com/creative-suite/kb/error-u44m1p7-installing-updates-ccm.html
    -http://helpx.adobe.com/creative-suite/kb/error-u44m1i210-installing-updates-ccm.html

Maybe you are looking for

  • Work Items to PR Agents (Only one of two agents received)

    Dear all, I am facing a problem like this: In my PR Workflow, the task TS00007986 is assigned agents by position. There is one position applied for a particular release strategy and there are two agents under this position. Now, there is one PR creat

  • Driver for HP scanjet 5400 c windows 7 64 bit

    This is an old issue, and according to various posts there should be a workaround for this one. I have not seen one which is fully explained and conclusive with a win 64 system. I have downloaded everything II can find on the HP site. The scanner sho

  • Repeated Errors in SQL Server log file

    I have hundreds of these errors saying 'Login failed for user 'Reporting' The user is not associated with a trusted SQL Server connection [CLIENT: ip address] The ip address is that of the server that sql server is installed on. Looking in my log fil

  • IMac iTunes account to PC

    I had my itunes account on an imac, and now I need to have it in a laptop PC.  Is there a way of moving my data to the PC during SYNC or any other way without loosing everything?

  • DVCPro HD export is very s-l-o-w-!-!-!

    I am exporting a straight QT 40-minute DVCPro HD 1920x1080 sequence and it is only 53% percent done after 6 hours and it says it will take 5 more. What is going on??? I have never had such a slow export on this machine. Thanks.