Import comments to an other sheet

is it possible to import comments to an other sheet. Not in the same sheet where ist was exported (acrobat 8)

No. Comments are defined on certain page number. You can move them (even
using a script) later on, but not when importing them.
On Thu, Dec 11, 2014 at 8:12 AM, santaclaus001 <[email protected]>

Similar Messages

  • Problem with importing comments

    Hi All
    When trying to import comments relating to a document I have, the following error message occurs:
    "The comments could not be imported because the document's permissions do not allow comment import operations"
    Should the creator of the doc change something in it's settings?
    Thanks in advance for the help

    JewPac wrote:
    Should the creator of the doc change something in it's settings?
    In a word... yes.

  • Import Comments data and Dimension Members from csv file via Data Manager

    Dear Experts,
    I have two questions regarding the data manager.
    Q1.Is it possible to import "Comments" from the csv file via Data Manager?
    We'd like to import the amount with "Comments".
    My image of csv file is like below;
    ACCOUNT,CATEGORY,TIME,ENTITY,INPUTCURRENCY,AMOUNT,COMMENTS
    1100000,ACTUAL,2010/06,LC,30000,This is comment
    Q2.Is it possible to import the dimension "members" from the csv file via Data Manager?
    We have a user-defined dimension named "Project"
    and would like to import the members, instead of maintaining them in BPC administration manually.
    I found an online help information which says "Import Master Data from a Data File Example",
    but I could not find any relevant sample package for this.
    (I tried to import the members by using "Import" package, but it failed...)
    reference:http://help.sap.com/saphelp_bpc75/helpdata/en/86/8b1bfc12c94fb0b585cca70d6f1b61/content.htm
    Thanks in advance for your help.
    Fumi

    Hi Fumi,
    In this case, I would suggest you to create a customized SSIS package which will fill-in the "Comment<APP>" table, according to the csv file you have. I do not know any standard package that allows you to import comment the way you would like...
    Best Regards,
    Patrick

  • Unable to import cell data from another sheet in Numbers

    Hi. I have a column of cells that I need to import the values of (copy) from one SHEET to another (not a table within same sheet etc).
    Recently moved to Numbers from buggy GoogleDocs/Drive. Within that i could =importrange and reference the cells in the other sheets tables.
    Failing this, is it possible to allow my customers to view one table within my worksheet, i.e. only have one table viewable and the others not etc?
    Thanks in advance. Si

    Hi Si,
    There are many ways of doing this in Numbers. If you will be sorting your column the function INDEX() could work for you. If you will not be sorting try this:
    Click where you want your first cell to move to. Type "="
    Navigate to your other sheet and click in the first cell you want to move.
    Hit return.
    your value should show in your new sheet.
    Fill your newly made formula down the rest of the column.
    Welcome to Numbers!
    quinn

  • ORA-907 ERROR WHEN IMPORT (COMMENT 처리)

    제품 : ORACLE SERVER
    작성날짜 : 1997-10-15
    ORA-907 ERROR WHEN IMPORT (COMMENT 처리)
    ========================================
    ORA-907: missing right parenthesis error
    이 error 는 export 한 table 을 create 시 comment 를 사용한 경우 발생하는 ORACLE error 이다.
    이는 version 8.0.4 에서 fix 되었다.
    이를 해결하기 위해서는 미리 table create script 를 돌려 temp_table 을
    create 하십시오.
    이 때 comment 를 모두 뺀 상태로 create 한다. 또는 /* */ 는 괜찮다.
    이후 INSERT INTO temp_table select * from original_table ;
    을 실행합니다.
    즉 original_table 을 temp_table 로 copy 한 후
    drop table original_table;
    rename temp_table to original_table ;
    을 한 후 table을 다시 export해서 다른 machine으로 import한다.
    또 이 -- 를 없애는 방법으로 아래의 C program을 이용할 수 있다.
    /* file name : cnvt_dmp.c
    * This program is to covert double dash remark expression
    * C language stype remark expression.
    #include <stdio.h>
    #define MAXWORDS 4
    char s_reserve[4][100]={ "NOT NULL", "CONSTRAINTS",")",","};
    int dash2remark();
    void main(argc,argv)
    int argc;
    char *argv[];
    FILE f_in, f_out;
    int i,j,lreserve;
    int chr1,chr2;
    char str1[100],str2[100],str3[100];
    if( argc != 3 ) {
    printf(" usage : cnvt_dmp infile.dmp outfile.dmp \n");
    exit(0);
    if( (f_in = fopen(argv[1],"r")) == NULL ) {
    printf("could't open the source file.: %s\n",argv[1]);
    exit(0);
    if( (f_out = fopen(argv[2],"w")) == NULL ) {
    printf("대상화일을 생성할 수가 없습니다.\n");
    exit(0);
    j = i = 0;
    while( (chr1 = fgetc(f_in)) != EOF && !ferror(f_in)) {
    if( chr1 == 'D' ) {
    str1[0]='D';
    fputc(chr1, f_out) ;
    for(i=1;i<7;i++) {
    chr1 = fgetc(f_in);
    str1[i] = chr1;
    fputc(chr1, f_out) ;
    str1[7] = 0;
    strcpy( str2,"DEFAULT");
    if ( strcmp( "DEFAULT",str1) == 0 ) {
    lreserve = 0;
              i =0;
    while( (chr2 = fgetc(f_in))!= ','){
    if ( chr2 == ')') break;
    str2[i] = chr2;
    if ( chr2 == '-' )
    lreserve = 1;
              i++;
    str2[i] = chr2;
    str2[i+1] = 0;
    printf(" lreserv => %d, str2=>%s\n",lreserve,str2);
    if (lreserve) {
    dash2remark(f_in,f_out,str2);
    else {
    for( i=0;i<strlen(str2);i++) fputc(str2,f_out);
    else {
    fputc(chr1, f_out );
    fclose(f_out);
    fclose(f_in);
    return;
    int dash2remark( f_in,f_out,str)
    FILE f_in,f_out;
    char *str;
    int i,j,start_pos=-1,end_pos=-1;
    for( i=0; i < strlen(str); i++ ) {
    if ( str[i] == '-') {
    start_pos = i;
    for( j =0 ; j < MAXWORDS; j++){
    if (strncmp(s_reserve[j],str+i,strlen(s_reserve[j]))== 0){
    end_pos = i;
    if ( start_pos > 0 ) {
    for(i=0;i< (start_pos-1); i++)
    fputc( str[i],f_out);
    fputc('/',f_out); fputc('*',f_out);
    for(i =i+2;i<(end_pos-1);i++)
    fputc(str[i],f_out);
    fputc('*',f_out); fputc('/',f_out);fputc(' ',f_out);
    for(i;i<strlen(str);i++)
    fputc(str[i],f_out);
    else {
    for(i=0;i<strlen(str);i++)
    fputc(str[i],f_out);
    return(1);
    이상입니다.

    Hi, i think that the problem is around the rollback segments.The solution is bring other rollback segments ONLINE state, if not exist others rollbackup,then you need create the other rollback segments and bring online state.
    If you need more information, you will must see the next DOC-ID on Metalink site,
    Note:121971.1
    Luck.
    Have a good day.
    Regards.

  • Import data from different Excel sheets to different tables

    I have an Excel file which has different sheets(S1,S2,S3) .The columns in the sheet are different. I want to import the data from different sheets to different tables(T1,T2,T3).
    S1 ---> T1
    S2 ---> T2
    S3 ---> T3
    I want only one Excel data source in my SSIS package.

    You need to have different DFT flows for that as the metadata is different. You need to map each sheets to corresponding destination tables and then it would work fine
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • How do you import Comment data

    Hi folks
    Is there a way to import bulk amount of comment data to it's corresponding table (tech name : /1CPMB/* )
    If so, could you please provide me any kind of technical tips or related document.
    Thanks in advance.
    -Tae

    No, I wasn't talking about copying comments from one version to another within application.
    I have mentioned importing comment data to it's corresponding text table starting with a tech. name /1CPMB/...
    Just like importing transaction data with using 'import transaction data' package which uploads the data from the
    CSV file.
    We have a situation where we need to import actual transaction data and comments at the same time
    in order to let our end users to explore the trans. and comment data in a single
    BPC  custome made template.
    Thanks.
    Tae

  • Important comments about N9

    Recently I bought N9 (64 GB) and I have the following important comments which are disappointed me a lot:
    N9 not allows sending mms to email address?
    Can't edit an email that in inbox when I want to forward it?
    Can’t copy/cut email or any word/sentence in any email?
    You can only paste the word/sentence once?
    If I like a picture in website I can’t send it directly to any one unless I save it in my gallery?
    Can’t copy text from website and forward?
    Can’t print?
    The above features are all known and available in old nokia devices and other smart phones.
    I am really disappointed and I don’t like N9 because it is not practical and doesn’t meet my needs!!

    2. Can't edit an email that in inbox when I want to forward it?
    3. Can’t copy/cut email or any word/sentence in any email?
    If you move an email from your Inbox to your Drafts you should be able to cut, copy, edit and paste from there before re-sending.  I know it's not a perfect solution, but at least the functionality is there.

  • How can I import comments from shared reviewer who doesn't have acrobat pro?

    How can I import comments from shared reviewer who doesn't have acrobat pro? I sent out a shared review, but not all of the reviewers have acrobat pro, they do have acrobat reader 9 and have made comments on the document, but they do not appear when I open the shared review from the workspace. Can I import his comments so that they are apart of the shared review?

    I figured it out, so I will share just in case anyone else has this issue...
    The reviewer emailed me his comments on the document. I opened it and made a comment. When I went to publish my comment a dialogue box opended asking if I wanted to publish his comments to the shared review for him. Says yes and the reviewers comments are now published and a part of the shared review.

  • Captivate won't import comments and gives no message as to why

    I have projects built that have not been changed since sent out for comment. After getting the comments back, clicking on the import comments icon, and selecting the comment file the computer thinks for a minute and then does nothing. I have not had this problem before. The comments have always imported with no trouble. Today, no comments will import into any project. Whats up?

    Place your phone in DFU mode (search google for instructions) and restore as new.
    If this doesn't work, you'll need to bring your phone into Apple.

  • Modifying imported comments

    I'm looking to either:
    a) modify an imported comment but keep the initial commentor's ID associated with the change or
    b) reject the comment entirely and then edit the same text that initially had the comment.
    Is this possible?

    Thanks LoriAUC.
    One other question, if I can;
    I did what you suggested. When I tried to delete only the part of the sentence that should ahve been deleted, nothing happens.
    However, if I highlight the part of the setence that should be deleted, right click and select Cross Out Text (Comment), the text will be deleted. Would you know if this method is my only option in this situation? Is there not a way to simply hit "delete" on the keyboard, as I would normally?
    thanks again!

  • Export to memory"  (bukrs) in one user exit and import to memory in other.

    I have to "export to memory"  (bukrs) in one user exit and import to memory in other.
    Does anyone has an example

    in one user exit:
    EXPORT field TO MEMORY ID 'Z_BUKRS'.
    in another user exit:
    IMPORT field FROM MEMORY ID 'Z_BUKRS'.
    what is the problem?

  • How export a report in Excel where show Page Header in one sheet and the Body in other sheet?

    Hi,
    I need help!, because I need export a report in Excel where the Page Header shows in one sheet and the Body in other sheet. I have SQL 2008 R2, is it possible?
    Thanks a lot for your answers.
    Sukey Nakasima
    Sukey Nakasima

    Hi Sukey,
    If I understand correctly, you hope the Page Header shows in one sheet, the body and hidden page headers in another sheet when exports a report to Excel. To achieve this goal, we can put page header content into a rectangle, then set the visibility of rectangle
    using expressions. For more details, please refer to the following steps:
    1. Add a rectangle to the page header, then drag the page header content into it.
    2. Click the rectangle, in the Properties window, click Visibility, in the Hidden text box, click Expression, type the following expression:
    =IIf(Globals!RenderFormat.Name="EXCEL" and Globals!PageNumber <>1,true,false)
    3. In the Report Body, right click the Table Header row of the first tablix and select Tablix Properties, check Add a page break before check box.
    4. Click the tablix, in the Properties window, click PageBreak, in the Disabled text box, click Expression, type the following expression:
    =IIf(Globals!RenderFormat.Name="EXCEL",TRUE,FALSE)
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu

  • Batch import of zipped and other types of files

    Hi,
    Has anyone out there try to do a batch import of zipped or other types of files yet?

    Kelly,
    Batch import is now possible with release 3.0.8. See the new content area APIs in the PDK.
    Regards,
    Jerry
    null

  • I want run Macro using other sheet when open the workbook in server,how do?

    HI ,
       I save the workbook in BI server using one query.And I Insert a lot of sheet in the workbook.I want to change other sheet base "table"'s varient. I wirte some Visual Basic script (VBS) In the event of workbook's open . but it doesn't run . I think the reason is that the analyzer change the varient after opened the workbook .how can I do? thank you

    UP..

Maybe you are looking for

  • What can I do if all HTML links refresh site instead of redirecting properly (FF only, HTML 1.0 Strict valid, no plugins) just after using autocompleted url?

    I was testing a XHTML 1.0 Strict valid website on my localhost. It had URL "http://localhost/visaita/tictactoe/Web/index.php?item_id=8&game_password=73|55fc84c0c432ad625a901caaa13108aa&chat_code=74|50b3b60c8be203.98819772#.ULO2EnC23XQ". If I click in

  • F-04 DOCUMENT SPLITTING

    Dear Experts, When i want to clear the items of Dr. and Cr. of GR/IR clearing account i am getting the following error in F-04 please advise Error message: Document splitting cannot perform clearing because it was not possible to find complete splitt

  • PKCS#11 Emulation on JavaCards

    For those who don't know: PKCS #11 is the Cryptographic Token Interface Standard, an interface which is (amongs other means) used by crypthographic smart cards. PKCS #11 contains standard crypto functions like encrypt/decrypt, signatures and MAC chec

  • Safari 6 update buggy

    Since this thing came out: - the two-finger scroll function on my MBP doesn't work on some sites I use - some sites don't load completely without hitting "Command-R" - a site that I built with Wix is broken, but it's fine in 5.1.7

  • Deleting Windows Logical Drives and Reallocating for Reuse as Raw Devices

    Can I delete 2 obsolete OCR/Voting Disk Windows 2003 SP 1 logical drives on a raw disk? They are at the beginning of a disk volume that contains other raw ASM and active OCR/Voting disk logical drives. I want to recreate these 2 logical drives for te