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!

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 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]>

  • 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

  • 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.

  • How can I modify a comment on a photo uploaded to Facebook from iPhoto?

    How can I modify a comment on a photo uploaded to Facebook from iPhoto?

    log into FB and make the change?
    LN

  • 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.

  • Import Comments from PDF to new PDF

    Acrobat Pro 8 - Comments (lines & Text boxes) added to a previous PDF Import rotated 90 degrees. These PDF's are design drawings with comments. The new file is merely an updated version of the design. Need COMMENTS to Import aligned properly.

    I am sooo lost - info shown above might as well be Greek to me! I have tried to follow all the steps to get my info from old computer to new one. Where can I get more detail re the "profile folder". I created one as it stated, but I'm not able to find it again to do the pasting of old info into (ie where it states "open the new Firefos profile folder"). Been at this for hours! Please help...(note, I backed-up old info to flashdrive per one set of instructions). Also, so much backed-up, how do I know what I really need?
    Thanks

  • Importing comments from Word 2004 isn't working?

    In my hope not to have to upgrade to Office 2008 (and I say that even as a Microsoft shareholder), I am trying to move a 200-page manuscript (which will be soon be a 450-page manuscript) to Pages. It's a novel, no images, only basic formatting and footers and right now, comments. My only issue (besides not having chapter numbering in Pages, hello Apple?) is that my numerous comments in the Word 2004 document are NOT importing over to Pages. I don't understand this, as I have imported smaller Word 2004 documents into Pages with comments intact. Any suggestions as to what I might try would be deeply appreciated; I will have to finish this novel in Word 2004 if I can't get this to work. And I would prefer not to.

    jvabbott,
    Welcome to Apple discussions.
    I know this sounds obvious, but have you turned on the Comments feature for that document? I get book manuscripts all the time with comments, and have no problems with them.
    -Dennis

  • The time stamp on an imported comment: how can you set it?

    When you import a comment, by default does it show the time the comment was originally made or the time it was imported to the current document? And can you show both or toggle between the two?
    Thanks!!

    Hey Gin-from-SC!
    Here is an article that can show you how to set a time and date alert for your reminders when you create them:
    iCloud: Create, edit, and delete reminders
    http://support.apple.com/kb/PH12088
    Take care, and thanks for visiting the Apple Support Communities.
    Cheers,
    Braden

  • Can not modify/import RFC/IDoc

    After I import design object to IR, I can't import IDoc from SAP system.
    there I can not change system, client, information.
    Why?

    hi
    Just double click on the software component and check whether the radio button Import of RFCS and IDOCs interfaces from SAP systems Permitted. Then you give R3 applicaiton server name and the system number as 00 and give your userid and password.
    You can also get your R3 applicaiton server name from the SAP logon pad. Open SAP Logon pad select the R3 system which you want to connect and click on Change Item. There your application server name is given. So cross check once again whether this one and the one you are giving are the same. Then proceed further. It should work.
    Note: reward points if solution found helpfull
    Regards
    Chandrakanth.k

  • Unable to use, edit (modify) imported 3D Composition (compositions) as they are flat in main Comp.

    Hi everyone.
    need your help please.
    as I have been working in totally different After Effects Compositions thinking it would be better (cleaner work area) not that it is time to put the pieces together I have found that my 3D extruded shape layers are flat and not offering 3D.
    This has happened with 3D Text as well. I have tried parenting the imported 3D compositions but that did not accomplish anything.
    I hope I have given enough information to help you understand the issue.
    as an example I produced a 3D text layer of the letter "D" ......extruded it and made it the main support for a Widescreen monitor. added all the belles and whistles , rotated and it looks great.
    However it will not open as 3D nor any extrusion editing features.
    any help would be really appreciate.
    best regards,
    Bob Joynt

    You have either turned off ray traced rendering or nested your extruded comp in a standard comp and made the layer 3D. Please go through the help files on extruding and bending layers. The only thing wrong is your workflow.

Maybe you are looking for