Migrating cProject and cFolder into a single server instance

Hi,
Has anyone had the experience to migrate cProjects and cFolderon seperated server instances into a single server instance? How data migration can be performed assuming cProjects server will be upgraded to 4.5 and the cFolders content will be ported over? is this something do-able? Or it is easier to upgrade cFolder first and migrate the cProjects data over?
Since documents link in cFolder/cProjects could be captured in transaction table, how to resolve it?
Would like to hear from anyone with such experiences... thank you.
Yeu Sheng

Hi,
Is your new server Unix based? Are you planning to have 2 separate instances with separate DBs or are you planning to do a MCOD? Can you more details on what you mean by "2 in 1"?
-RK

Similar Messages

  • Problem in reading no. of files and writing into a single file

    Hi,
    Iam with Problem in reading no. of files and writing into a single file....
    Iam reading no. of files stored in local directory.......
    Iam able to read and print the data in files successfully....but while writing..only first file is being written...and the next files are not written in my output file...
    plz tell me my mistake....I hope Iam doing some mistake while writing into file...PLz help.....
    Basically my code structure is like this....
    import java.io.*;
    import java.util.regex.*;
    import java.util.*;
    import java.text.*;
    import org.apache.poi.poifs.filesystem.POIFSFileSystem;
    import org.apache.poi.hssf.usermodel.HSSFWorkbook;
    import org.apache.poi.hssf.usermodel.HSSFSheet;
    import org.apache.poi.hssf.usermodel.HSSFRow;
    import org.apache.poi.hssf.usermodel.HSSFCell;
    class Writing {
    public static void main(String args[]) throws Exception {
              FileOutputStream fileOut = new FileOutputStream("ServerResult.xls"); //my output file
              int counter = 1;
              File dir = new File("C:/Perform/ServerLogs");
              String[] children = dir.list();
              if( children == null)
                   System.out.println("The Directory mentioned does not exist");
              else {
                   for (int fileNo = 0; fileNo < children.length; fileNo++ ) {        //Files iteration starts
                        String filename = children[fileNo];
              File logFile = new File(filename);
    FileReader logFileReader = new FileReader(logFile);
    BufferedReader logReader = new BufferedReader(logFileReader);
    StringBuffer sBuf = new StringBuffer(5000);
              HSSFWorkbook wb = new HSSFWorkbook();          
              HSSFSheet sheet = wb.createSheet();
              HSSFRow rowTitle;
              HSSFRow rowReq;
              HSSFRow rowRes;
    String aLine = null;
    boolean skip = false;
    boolean readed = false;
    boolean initReq = false;
              boolean flag = false;
    long requestTime = 0;
    long responseTime = 0;
    long recdTime = 0;
    long sentTime = 0;
              long hasTime = 0;
              long presentTime = 0;
              int hasCalls = 0;
    Pattern startMessage = Pattern.compile("^<MESSAGE.*ID=\".*_"+args[0]+"\".*", Pattern.DOTALL);
    Pattern requestMessage = Pattern.compile("^<MESSAGE.*TS=\"(.*)\" CATEGORY=\"RequestMsg.\".*ID=\".*_"+args[0]+"\".*<ActName>(.*)</ActName>.*", Pattern.DOTALL);
    Pattern requestMessage1 = Pattern.compile("^<MESSAGE.*TS=\"(.*)\" CATEGORY=\"RequestMsg.\".*ID=\".*_"+args[0]+"\".*<Svc id=\"(.*)\">.*", Pattern.DOTALL);
    Pattern responseMessage = Pattern.compile("^<MESSAGE.*TS=\"(.*)\" CATEGORY=\"ResponseMsg\".*ID=\".*_"+args[0]+"\".*", Pattern.DOTALL);
    Pattern initMessage = Pattern.compile("^<MESSAGE.*TS=\"(.*)\" CATEGORY=\"HostConnInit\".*ID=\".*_"+args[0]+"\".*", Pattern.DOTALL);
    Pattern initResMessage = Pattern.compile("^<MESSAGE.*TS=\"(.*)\" CATEGORY=\"ResponseMsg\".*ID=\"null\".*", Pattern.DOTALL);
    Pattern initResIDMessage = Pattern.compile("^<MESSAGE.*TS=\"(.*)\" CATEGORY=\"ResponseMsg\".*ID=\"null\".*<IATA>"+args[0]+"</IATA>.*", Pattern.DOTALL);
              Pattern sentMessage = Pattern.compile("^<MESSAGE.*TS=\"(.*)\" CATEGORY=\"DCMsgSentInfo\".*ID=\".*_"+args[0]+"\".*", Pattern.DOTALL);
              Pattern rcvdMessage = Pattern.compile("^<MESSAGE.*TS=\"(.*)\" CATEGORY=\"DCMsgRcvdInfo\".*ID=\".*_"+args[0]+"\".*", Pattern.DOTALL);
    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS");
    DecimalFormat dcf = new DecimalFormat("########.##");
    String actName = "";
              if (fileNo ==0)
              rowTitle = sheet.createRow((short)0);
              rowTitle.createCell((short)0).setCellType(HSSFCell.CELL_TYPE_STRING);
              rowTitle.createCell((short)0).setCellValue("Req/Res");
              rowTitle.createCell((short)1).setCellType(HSSFCell.CELL_TYPE_STRING);
              rowTitle.createCell((short)1).setCellValue("Action");
              rowTitle.createCell((short)2).setCellType(HSSFCell.CELL_TYPE_STRING);
              rowTitle.createCell((short)2).setCellValue("Server Time(in ms)");
              rowTitle.createCell((short)3).setCellType(HSSFCell.CELL_TYPE_STRING);
              rowTitle.createCell((short)3).setCellValue("Request Vs Response Time in Server(in ms)");
              rowTitle.createCell((short)4).setCellType(HSSFCell.CELL_TYPE_STRING);
              rowTitle.createCell((short)4).setCellValue("Time Taken By HAS/HOST(in ms)");
              rowTitle.createCell((short)5).setCellType(HSSFCell.CELL_TYPE_STRING);
              rowTitle.createCell((short)5).setCellValue("No. of HAS calls");
              rowTitle.createCell((short)6).setCellType(HSSFCell.CELL_TYPE_STRING);
              rowTitle.createCell((short)6).setCellValue("Data Size");
              //wb.write(fileOut);
    while((aLine=logReader.readLine()) != null) {
    if(aLine.startsWith("<MESSAGE TYPE=\"EVENT\"")) {
    Matcher m = startMessage.matcher(aLine);
    if(m.find()) {
    sBuf.setLength(0);
    sBuf.append(aLine);
    skip = false;
    initReq = false;
    m = initMessage.matcher(aLine);
    if(m.find()) {
    initReq = true;
    } else {
    if(initReq) {
    m = initResMessage.matcher(aLine);
    if(m.find()) {
    sBuf.setLength(0);
    sBuf.append(aLine);
    skip = false;
    } else if(aLine.startsWith("</MESSAGE>")) {
    if(!skip) {
    sBuf.append(aLine);
    readed = true;
    } else if(!skip){
    sBuf.append(aLine);
    if(!skip && readed) {
    String tempStr = sBuf.toString();
    if(tempStr.length() > 0) {
    boolean reqMatched = false;
    Matcher m = null;
    if(initReq) {
    m = initMessage.matcher(tempStr);
    actName = "Intialization";
    } else {
    m = requestMessage.matcher(tempStr);
    String time = "";
    if(m.find()) {
    reqMatched = true;
    for (int i=1; i<=m.groupCount(); i++) {
    String groupStr = m.group(i);
    if(i == 1) {
    time = groupStr;
    } else if(i == 2) {
    actName = groupStr;
    } else if(!initReq){
    m = requestMessage1.matcher(tempStr);
    if(m.find()) {
    reqMatched = true;
    for (int i=1; i<=m.groupCount(); i++) {
    String groupStr = m.group(i);
    if(i == 1) {
    time = groupStr;
    } else if(i == 2) {
    actName = groupStr;
    if(time.length() > 0 ) {
    try{
    requestTime = sdf.parse(time).getTime();
    }catch(Exception ex){}
    System.out.println("Request,"+actName+","+time+",,,,"+dcf.format(((double)time.length()/1024.0))+"K");
                                  //bw.write("Request,"+actName+","+time+",,,,"+dcf.format(((double)time.length()/1024.0))+"K");
                                  String reqDataSize = dcf.format(((double)time.length()/1024.0))+"K" ;
                                  rowReq = sheet.createRow((short)counter);
                                       rowReq.createCell((short)0).setCellType(HSSFCell.CELL_TYPE_STRING);
                                       rowReq.createCell((short)0).setCellValue("Request");
                                       rowReq.createCell((short)1).setCellType(HSSFCell.CELL_TYPE_STRING);
                                       rowReq.createCell((short)1).setCellValue(actName);
                                       rowReq.createCell((short)2).setCellType(HSSFCell.CELL_TYPE_STRING);
                                       rowReq.createCell((short)2).setCellValue(time);
                                       rowReq.createCell((short)3).setCellType(HSSFCell.CELL_TYPE_STRING);
                                       rowReq.createCell((short)3).setCellValue("");
                                       rowReq.createCell((short)4).setCellType(HSSFCell.CELL_TYPE_STRING);
                                       rowReq.createCell((short)4).setCellValue("");
                                       rowReq.createCell((short)5).setCellType(HSSFCell.CELL_TYPE_STRING);
                                       rowReq.createCell((short)5).setCellValue("");
                                       rowReq.createCell((short)6).setCellType(HSSFCell.CELL_TYPE_STRING);
                                       rowReq.createCell((short)6).setCellValue(reqDataSize);
                                       counter = counter +1;
                                       System.out.println("counter is "+counter);
                             Matcher l = sentMessage.matcher(tempStr);
                             Matcher k = rcvdMessage.matcher(tempStr);
                   if(l.find()) {
                                            for (int i=1; i<=l.groupCount(); i++) {
         String groupStr2 = l.group(i);
    try{
    sentTime = sdf.parse(groupStr2).getTime();
    }catch(Exception ex){}
                        if(k.find())
                                                 for(int j=1;j<=k.groupCount(); j++) {
                                                 String groupStr1 = k.group(j);
                                                 try{
    recdTime = sdf.parse(groupStr1).getTime();
    }catch(Exception ex){}
                                                 presentTime = (recdTime - sentTime);
                                                 hasTime = hasTime + presentTime;
                                                 hasCalls = hasCalls +1;
    if(!reqMatched) {
    if(initReq) {
    m=initResIDMessage.matcher(tempStr);
    } else {
    m=responseMessage.matcher(tempStr);
    if(m.find()) {
    for (int i=1; i<=m.groupCount(); i++) {
    String groupStr = m.group(i);
    try{
    responseTime = sdf.parse(groupStr).getTime();
    }catch(Exception ex){}
                                                 String resDataSize = dcf.format(((double)tempStr.length()/1024.0))+"K" ;
                                                 rowRes = sheet.createRow((short)(counter));
                                                 rowRes.createCell((short)0).setCellType(HSSFCell.CELL_TYPE_STRING);
                                                 rowRes.createCell((short)0).setCellValue("Response");
                                                 rowRes.createCell((short)1).setCellType(HSSFCell.CELL_TYPE_STRING);
                                                 rowRes.createCell((short)1).setCellValue(actName);
                                                 rowRes.createCell((short)2).setCellType(HSSFCell.CELL_TYPE_STRING);
                                                 rowRes.createCell((short)2).setCellValue(groupStr);
                                                 rowRes.createCell((short)3).setCellType(HSSFCell.CELL_TYPE_NUMERIC);
                                                 rowRes.createCell((short)3).setCellValue((responseTime - requestTime));
                                                 rowRes.createCell((short)4).setCellType(HSSFCell.CELL_TYPE_NUMERIC);
                                                 rowRes.createCell((short)4).setCellValue(hasTime);
                                                 rowRes.createCell((short)5).setCellType(HSSFCell.CELL_TYPE_NUMERIC);
                                                 rowRes.createCell((short)5).setCellValue(hasCalls);
                                                 rowRes.createCell((short)6).setCellType(HSSFCell.CELL_TYPE_STRING);
                                                 rowRes.createCell((short)6).setCellValue(resDataSize);
                                                 hasTime = 0;
                                                 hasCalls = 0;
                                                 counter = counter + 1 ;
    sBuf.setLength(0);
    readed = false;
              wb.write(fileOut);
              } // End of for (int fileNo = 0; fileNo < children.length; fileNo++ )
    }     //End of else
              fileOut.close();
    } //End of public static void main
    } // End of Class

    First of all, use [code]-tags to make your code readable, please.
    I didn't do a complete inspection of your code (because it's too much and unreadable as it is) and I don't know POI, but creating a new HSSFWorkbook for each input file sounds fishy to me ... try re-using the workbook and just creating a new sheet in each iteration.

  • SQL*Loader - How to combine Flat File 3 columns and put into one single column

    Receive a flat file delimited by comma. Want to combine Flat File last 3 columns and put into one single column(Table).
    e.g.
    Flat File
    100,239,30,20,30
    While inserting into table want to combine last 3 columns and insert into invoice number column.
    302030

    It is not possible to combine the last 3 columns as those columns are seperated by commas and in the SQL Loader control file you must ve specified COMMA as an delimiter. So u better have all the columns in the table plus add one more column which holds the concatenation of the 3 columns.
    Vijay

  • How to combine Submit and Commit into a single operation?

    JDev 11.1.1.6
    Is there a simple way to combine Submit and Commit or Create and Commit or Delete and Commit into a single operation without creating a custom Operation class?
    Thanks,
    PeeVee

    Have a button and in the action listener event..you should drag and drop both create & commit onto your page so that it will have the required bindings in the pagedef.
    OperationBinding createOperationBinding = ADFUtils.getOperationBindingForMethod("Create");
    createOperationBinding.execute();
    OperationBinding commitOperationBinding = ADFUtils.getOperationBindingForMethod("Commit");
    commitOperationBinding.execute();

  • Oracle EPM and BI EE on single server

    Hi,
    Can be possible install and configure Oracle EPM and BI EE on single test server?
    Thanks

    Yes it is possible though I would recommend installing them both into separate middleware homes.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Has anyone migrated existing file libraries into Final Cut Server?

    My company currently uses Virage to archive thousands of video clips. Currently we only archive proxies and keep a corresponding tape on the shelf -- it's a big library. We want to move away from tape and keep all the clips on a centralized server but we need to be able to move all the existing files over to FCS via an automated process. The clips we keep in Virage has 5 or 6 fields that we would need to migrate over and the thumbnails are mpg2. Has anyone had any experience migrating huge chunks of data over to Final Cut Server? We ditched our Avids and Unity and purchased FCP. Final Cut Server makes sense. (By the way...for what we paid for Virage, I could have purchased Final Cut Server and a Porsche to drive it to the office.)

    My company is implementing FCSrv as a video database. Moral of the story: I did everything from scratch. I took the time to log and digitize all the tapes, creating a file folder structure that corresponds to the tape label. I can say from my experience, you need to organize and have all of your original media ready on the drives that you want the files to live on and THEN upload to FCSrv. I left those drives as Edit In Place devices, created FCSrv assets, and then turned the drives off. The drives only come back on when I want to copy over any of the source files. Also, FCSrv wants to create everything from scratch - its own proxies, thumbnails, and poster frames. Currently I believe the only metadata you could map / migrate over would be fields associated with FCP Log and Transfer media. Another workflow hint I have is to find media that has the same (or most similar) metadata and upload those at the same time (choosing create individual assets). Also, there is a great workflow on the forum for bulk metadata changes that helped me out a lot : http://discussions.apple.com/thread.jspa?messageID=7522555
    Every time I call Apple anymore they try to sell me on purchasing the custom workflow services from an engineer so you could look into that for specific help with your current metadata fields. Otherwise, I'd suggest hiring some interns
    Good luck!

  • Migrate WWI and Expert Rules to new server

    Hello,
    Does anyone have any "best practice" document or information related to migrating WWI and Expert rules from an existing server to a new server?  The "cookbook" provided in SAP Note for WWI installation does not mention anything regarding "re-install" or "migration.
    Thanks in advance.

    Hello Thomas,
    I do not have a document available for you, but I would do it like this:
    Make sure you have the same Word Version installed on both PCs
    Make sure the word settings are the same (Trusted Locations / Macro Security etc.)
    Make sure you have the same printers/printer drivers and default printer definied on both PCs
    Copy WWI and Expert Folder from one PC to the other to the same location
    Make sure you have the same PATH Variables defined on both PCs
    Makre sure DCOM settings are the same of MS Word and Adobe
    If you send PDFs make sure Adobe Reader and the tool you use to create PDFs is installed on both PCs the exact same way
    SetUp the Windows Services for EH&S Management Server, WWI and Expert on the new server exactly the way they have been on the old server.
    If your new PC has a different OS or newer Office Version I would do a complete new installation via the EH&S Management Server / CGSADM. Make sure to copy your Rules files and Graphics from the old PC to the new PC.
    Hope this helps
    Mark

  • Compiling JavaFX and Java into a single JAR

    Perhaps I am missing something, but is there a simple way to compile both Java and JavaFX sources into a single JAR? The issue is cross references between Java and JavaFX. Using javac or javafxc separately, cross references are handled by the compiler. But as far as I can tell, there is no compiler that compiles both Java and JavaFX sources, so that nifty solution is not available. The only solution I know of (which is not simple) is to break the sources into separate collections that can be compiled separately and in the right order before building the combined JAR that I really want.

    I've noticed my application has a JAD and a JAR, the JAD being much smaller. When I run the JAD a mobile emulator pops up, but it's not the same one I see when I debug. Also, pressing 'launch' does nothing.
    I don't know if this is related to this original post, but how does one merge the JAD and JAR?
    It seems like the emulator that comes up is related to the Mobile Toolkit. If I wanted someone to review my mobile application, what would they need to actually run this thing?

  • Need to mix 24 and 30fps into a single timeline.

    Hi there,
    I have 2 files which are AVCHD 1920x1080 but one is 23.976 while the other is 29.97.  I know PPro can mix both into a single timeline but I was curious what I should set the sequence settings as.  How should it be exported? Does one convert better than the other?
    I am happy to pre-convert the framerate as well before editing, but again, I'm not sure if one is better to convert than the other.
    Thanks!
    -Stephen

    Use a 29.97 sequence.  The 24p capture is likely wrapped in a 30i stream anyway.

  • Can a single server instance (Ip Port combo) be part of two different clusters?

    Hello,
              Is it possible for a single Weblogic 7.0 server instance to be a part of two different clusters?
              Thanks,
              Rajan
              

    Invoke a SLSB in a different cluster which will call invalidate() ?
              "Rajan" <[email protected]> wrote in message
              news:3d88a5b6$[email protected]..
              >
              > We have a requirement to synchronize in-memory data between the machines
              in different
              > clusters.
              >
              > Invalidate() propagates only within a cluster. I was wondering if there is
              a standard
              > way to update in-memory data on a different cluster if the underlying data
              stored
              > in a database, has changed.
              >
              > Thanks for help.
              >
              > Rajan
              >
              > "Cameron Purdy" <[email protected]> wrote:
              > >Rajan,
              > >
              > >> Is it possible for a single Weblogic 7.0 server instance to be a part
              > >> of two different clusters?
              > >
              > >No. Is there something specific that you are trying to accomplish?
              > >
              > >Peace,
              > >
              > >Cameron Purdy
              > >Tangosol, Inc.
              > >http://www.tangosol.com/coherence.jsp
              > >Tangosol Coherence: Clustered Replicated Cache for Weblogic
              > >
              > >
              > >"Rajan" <[email protected]> wrote in message
              > >news:[email protected]..
              > >>
              > >
              > >
              >
              Dimitri
              

  • How: poll POP3 from ISP and feed into OSX mail server (Dovecot)

    Hi all,
    My desire: use IMAP for all my iOS and OSX devices to forget about the synchronization nightmare when using POP.
    My ISP only provides POP3, and I can fetch emails from his POP3 server so they end up in my mail client on any OSX workstation.
    But I want to use IMAP via the Dovecot email server on OSX server mountain lion.
    How do I implement that missing link?
    Can this be done by a cron script, mimicking a MTA?
    Somehow the OSX mailserver cannot be convinced to fetch the emails from the POP3 server at the Internet Server Provider (ISP).
    All the OSX or iOS device connects to my OSX Mountain Lion server running the mailserver (i.e. Dovecot).
    In my private network sending emails and fetching them using IMAP already works fine.
    I am lost on this one. Any help would be appreciated.
    Thanks already.
    best regards,
    Bolko

    One solution is to use a server based software (i.e. that runs on OS X server) which polls a remote POP3 server and delivers mail to an SMTP server — the Postfix SMTP server on your OS X server (NOT Dovecot, Postfix is the SMTP server which then hands off mail to Dovecot the IMAP on your OS X server)
    This software would have to be installed 'by hand' meaning you have to download the source and compile it as is standard with Linux type utilities.
    Here is link to the utility 'fetchmail'.
    http://fetchmail.berlios.de/index.html
    You may want to confirm with the package maintainers that this would work on OS X. If you are not comfortable working at the level of installing Linux packages then I would advise not to proceed.
    UPDATE: I found this page on the Apple developers website:
    http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/ man1/fetchmail.1.html
    it refers to the fetchmail program above so it looks like it runs OK on OS X, but you still have to manually set it up.
    Another option is this software
    http://www.sspi-software.com/mailfwd_macx.html
    I don't have any experience with it personally and I don't know if it can run as a service (that is with no-one logged into the machine).

  • Migrating Users and Groups from Windows 2000 server to Windows 2013 Standard.

    OK...let me see if I can get this question out the way I need to....
    I inherited a Windows 2000 Server that's on it's last legs.  We have a new server, a Windows 2013 Standard machine that we just recently purchased.  I need to migrate the users and groups over to the new server, but there are two things that are
    making it difficult:
     The 2000 machine is NOT a Domain Controller
    The 2000 machine is NOT running Active Directory
    This is a file server that hangs onto another network of which I have no control of.  It has its' own IP address and there is NO WAY we can run Active Directory or make it a domain controller.
    I have close to 300 users, groups, and printers to bring over to the new server.  Rather than kill myself doing manual input, is there any other way to do this? 

    Hi,
    When you import the CSV file to new server, you need to create a new user account then import the CSV.
    http://blogs.technet.com/b/heyscriptingguy/archive/2014/10/01/use-powershell-to-create-local-users.aspx
    If you have any issue, i suggest you could ask in PowerShell forums:
    https://social.technet.microsoft.com/Forums/en-US/home?forum=winserverpowershell
    Regards.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Can I Create Chapters Separately in iBooks Author and Merge Into a Single iBook?

    In a print page layout package like InDesign, chapters of a book can be created separately and then merged into one book file. Is it possible to do that to create an iBook in iBooks Author?
    Thank you.

    Yes, it is possible and very easy to do.
    If you want your chapters/sections/pages to have the same layout and colour scheme... make your template and and save as template - or use teh same free template for each chapter.
    Create a Master version - and  it is to this you will eventually copy  and paste youe separate chapters.
    Just select and copy the chapter and open the master.. then paste in the left "Book" column.
    If you are using  different  chapter layouts - It also takes its template and that also appears in the  hidden Layout tree.
    I use this method on every book, simply because it does not slow down the machine. A  multi chapter book with videos and  photo images makes a big  file - which is slow to process every time you preview or check things.

  • Integration of Delivery header and item into a single ods

    Hi Nagesh,
    The reason why i have started a new thread is to award you some more points as i cannot assing you any more points in the prvious thread.
    I ahve a question though.......
    you want me to add hdr data to sales document number right.... bue my concern is how can i add transaction data (i.e., $ amount) as an attribute of document number and what if the value changes for some reason and how wud you want me to add it sales document number?????? is it like look up at hdr datasource to fill in the attributes os sales document number???
    Thanks

    Hi BWer,
    I think you can reopen your previous thread and reassign points if you wish...
    Anyway, you are realizing now that mixing HDR and ITM level of information could become quite tricky...
    In any case to which amount are you referring to in your HDR datasource?? I don't see any amount there... Of course any key figure looked up in the header data and posted to item level will have to be carefully analyzed... The best would be to elaborate a routine posting it to ONE single item and/or to spread HDR value in all ITM records based on a rule...
    another option (the wiser) is to keep the two datasets in different ODS...
    hope this helps...
    Olivier.

  • Is it or has it ever been possible to select multiple PDF's and print into a single print stream using Reader

    We have Multiple users who claim they have been able to select multiple PDF's and select print. It then would send to a single stream and end up as one document. These are reader users.
    We have tested under reader 10.1.4 and 11.0.06 and haven't been able to make it work. Has this ever been possible?

    Thanks everyone. That's what I needed to know.

Maybe you are looking for

  • Variables in an action to use in script

    I want to duplicate an image, then change the duplicated image name to the original image name with some extra text at the end to make it slightly different. Example. Original..    Image123 Duplicate...  Image123BW. Or Image123BG. etc. So as not to h

  • Cannot get the latest version of Adobe Muse to update and install

    When I open Adobe Muse it asks me if I'd like to update it, I say yes to the install. It then transfers me to the Adobe Application Manager where it says that there are not updates and that I have the latest version already? I know that this is not t

  • V3 updates - problem

    Hi friends, I have a problem here. I am using LO cockpit to load Plant maintenance data (17). My V3 update jobs are running. I have an entry in LBWQ (MCEX17) with 287 entries. These are not getting processed. New records are also not getting addrd to

  • How to creat the Varient for 1099MISC With Holding Tax

    How to create the Variant for 1099MISC With Holding Tax ?

  • Is there a malware removal tool for ipad?

    HHi, I may have a malware in my ipad, is there a successful antivirus/malware removal tool that can be recommended? thanks