Duplicated comments in editor field

Hello experts,
We are facing a strange case regarding the comments writen in the travel expense editor.
After the trips created (trhough the portal) and already set to be reimbursed to the employee it was detected by the control team many repeated comments appearing  and also shown also in the simulations receipts.
Like for example:
"Workshop in Barcelona" repeated in many lines in some cases i counted more than 30 repeated times
Do you have any idea about what can cause this strange behaviour?
Thank you very much,

Hi KR,
Can you check the note 1229860 if its implemented? If it will not help, please kindly let me know whether you get the error in backend only or both in backend and in portal system.
Regards,
Raynard

Similar Messages

  • Numeric Error Not raise in case of editor field

    I have a strange problem. I have two fields, first one is Numeric field, and second one text editor. If i enter character in numeric field and press tab or enter curssor automaticaly go to text editor field, whitout raising any error, Even i used numeric validation. Please tell me if there is any solution for blocking it.

    This is totally GUI-dependent. Are you using Forms?
    Tom Best

  • Comments at the field. Is possible?

    Hi guys.
    Is possible I put the comments at the fields of my form?
    Example:
    When somebody pass mouse on the button, I want that show a comments box about the field. Another example: Field name - Comments/Note: Fill your name completed.
    NOTE: I can to do this at the Acrobat Software, but how is a form, the software says that it is not possible.

    Hi,
    There's an example in this discussion that might also be a possibility?
    http://forums.adobe.com/message/2516823

  • Missing comments and notes fields for view columns

    Hello,
    I am missing the comments and notes fields for view columns in the relational model of DM. For the table columns these fields are present, so it would be nice to make this available for views too. The Designer import should be adapted too to import those fields.
    Joop

    Hi Joop,
    My question is about the import of Designer for those fields. This is still not solved, even not in rel 4.0
    In fact even DM 3.3 imports comments, notes and comments in RDBMS from Designer repository.  Though comments and notes are not accessible through UI they are there and you can include them in custom report.
    Comments and notes are accessible through UI in DM 4.0
    Philip

  • Selection screen comment as input field

    Hi Experts,
    I have a comment in my program using following statement,
    SELECTION-SCREEN COMMENT 27(60) dispath.
    by default this statement is in output mode ...can we change that as input...
    Not to forget i dont want to use PARAMETERS.
    Thanks
    Sid

    Hi Sid,
    Only options possible in selection screen comment are:
    SELECTION-SCREEN COMMENT [/][pos](len)
                             {text|{[text] FOR FIELD sel}}
                             [VISIBLE LENGTH vlen]
                             [MODIF ID modid]
                             [ldb_additions].
    i  think its not possible.
    Regards,
    Talwinder

  • How do copy the file path of songs to their comments or description field?

    I'd like to be able to organize my library by file path.
    I read somewhere that Teridon had a script to do this but I could not find it on his scripts page.
    Please help

    Okay I did it!
    Here's the JScript for anyone who wants to organize by file path:
    var ITTrackKindFile = 1;
    var iTunesApp = WScript.CreateObject("iTunes.Application");
    var mainLibrary = iTunesApp.LibraryPlaylist;
    var tracks = mainLibrary.Tracks;
    var numTracks = tracks.Count;
    var i;
    while (numTracks != 0)
    var currTrack = tracks.Item(numTracks);
    // is this a file track?
    if (currTrack.Kind == ITTrackKindFile)
    currTrack.Comment = currTrack.Location;
    numTracks--;
    WScript.Echo("Location to comments done!");
    Beware it replaces anything you currently have in the comments field
    Message was edited by: Toelessfoot

  • Spotlight Comment to IPTC Field

    Hi there,
    maybe someone can help me.
    i should say that i have absolutely no idea about apple script.
    I want to create an automator plugin that takes the spotlight comments of a chosen photo and copies these to an iptc field.
    I think the script here: http://discussions.apple.com/message.jspa?messageID=7203132#7203132 would be the right starting point but then there must be some command that uses GraphicConverter or something similar to write to iptc.
    Looking forward to your answers, thx in advance
    ben

    'I want to create an automator plugin that takes the spotlight comments of a chosen photo and copies these to an iptc field. ' - which 'IPTC' field?
    As per 'GraphicConverter's AppleScripts' Library's 'GraphicConverter.asdictionary' file - there are:
    IPTC caption, IPTC captionwriter, IPTC headline, IPTC specialinstructions, IPTC byline, IPTC bylinetitlee, IPTC credit, IPTC source, IPTC objectname, IPTC datecreated, IPTC city, IPTC state, IPTC country, IPTC reference, IPTC category, IPTC copyright, IPTC urgency, IPTC subcategory, and IPTC keywords
    Sample AppleScript code:
    -- Code starts here --
    on run
    open (choose file with multiple selections allowed)
    end run
    on open (dItems)
    repeat with i in dItems
    tell application "Finder" to set fComment to comment of i
    try
    tell application "GraphicConverter"
    open i
    tell window 1
    set IPTC caption to fComment
    close saving yes
    end tell
    end tell
    end
    end repeat
    end open
    -- Code ends here --
    Save the above code as an application (AppleScript applet). The applet can be double clicked on, or files to be processed - dragged onto it.
    Or replace the contents of 'Automator's 'Automator' Library's 'Run AppleScript' Action with ...
    -- Code starts here --
    on run {input, parameters}
    tell application "GraphicConverter" to activate
    delay 1.0
    repeat with i in input
    tell application "Finder" to set fComment to comment of i
    try
    tell application "GraphicConverter"
    open i
    tell window 1
    set IPTC caption to fComment
    close saving yes
    end tell
    end tell
    end
    end repeat
    return input
    end run
    -- Code ends here --
    Save the above code as an 'Automator' 'Finder' Plug-in.
    If any other IPTC parameter is to contain the file's comment entry, then replace 'IPTC caption' in ...
    set IPTC caption to fComment
    ... with the desired IPTC parameter.
    The code segments provided above - offers minimal error capturing. One is to assume that only files capable of being opened and (an IPTC parameter) modified by 'GraphicConverter' - are dragged onto the applet, or selected via the 'Automator' 'Finder' Plug-in's contextual menu.

  • How to maintain comments (or Text fields) in BPS planning layout.

    Hello
    I found following document on SDN written by Tarun Malik:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/60938938-de6f-2910-2080-fc80d38ebfec?quicklink=index&overridelayout=true
    Are there bugs in the coding:
    Functionmodule Z_BPS_WRITE_LAYOUT_READ_ODS:
    *it_ll_data = it_ll. "it_ll has not been defined upfront?!
    APPEND range TO et_dimension. " et_dimension has not been defined upfront?!
    Maybe Tarun Malik can answer?
    Regards
    Arjan

    Hi,
    Yeh i  know they need to click on that to see the comments ;
    Just checking if your are ok with the approach as it will avoid your coding part as well as  performance of the layout.
    going by Tarun's approach,
    how have you declared your import and export  parameters of  your function module ?
    I think you are missing that part which is giving you the error ..
    Pratyush

  • Where is the external code editor field?

    See screenshot.

    Hello piaqt,
    you could have a look here for more informations:
    Use an external editor in >
    http://help.adobe.com/en_US/dreamweaver/cs/using/WSc78c5058ca073340dcda9110b1f693f21-7be0a .html
    or have a look here:
    http://www.webdesignsb.com/Resources/Documentation/Dreamweaver/Preferences/Adobe_Dreamweav er_CS5_Preferences.pdf
    http://webdesign.about.com/od/dreamweaver/ig/Dreamweaver-Options/File-Types-and-Editors.ht m
    Hans-Günter

  • Font in editor field (box)

    Well, why not set monospace font for editor box (like in wiki)?
    Last edited by eruditorum (2013-02-04 03:41:03)

    Is this about the forums?

  • Can you export the date and user to Excel that appears into a Comments field in a tracking list?

    Hi everyone,
    Can you export the date and user to Excel that appears into a Comments field in a tracking list?
    When i export a tracking list with a Comment field in the Content type, the screen where you enter the data for an item, the Comments field just export the text of the comment into the Excel file.
    In the Comments field appears also, besides the comment text,  the user and date from who and when the comment is added.
    Is there a way to export also the user and the date?
    Thanks
    Wim

    create another comment field that doesn't use 'appending', and through SP Designer change workflow keep
    updating that field with the new comments  (prepend the field with date/username/new comment). Hide the field on all forms, but put it in the view you need to export to Excel.
    Please refer few more links: Hope they will help
    http://www.nothingbutsharepoint.com/2009/04/16/versioning-append-changes-to-existing-text-view-entries-aspx/
    http://sympmarc.com/2011/02/07/showing-all-versions-of-append-changes-to-existing-text-in-a-data-view-web-part-dvwp/comment-page-3/
    https://mossipqueen.wordpress.com/2013/03/06/display-all-appending-field-entries-in-a-single-list-view/
    http://community.office365.com/en-us/f/154/t/278560.aspx
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Submit by Email - Email address duplicated plus extra text in "To" field

    I have a form created using LiveCycle Designer 8 (specifically 8.0.1291.1.339988). Form works perfectly. Data created is fine. Print works fine. When I "Submit by Email", the email address I entered in is duplicated in the "To" field. I gave it to a user to test and they got the following in their "To" field:
    [email protected] attached file contains data that was entered into a form. It is not the form itself.
    The recipient of this data file should save it locally with a unique name. Adobe Acrobat Professional 7 or later can process this data by importing it back into the blank form or creating a spreadsheet from several data files. See Help in Adobe Acrobat Professional 7 for more details.
    [email protected]
    I have looked everywhere for a solution. Can someone point me in a direction. Thanks in advance.

    Solution: I contacted Technical Support for Adobe. They have indicated that it is a Lotus Notes 6.5.5 issue. Users of Lotus Notes (but not all users) will experience this issue.
    I tested it with Outlook Express and no issues. Have not yet tested with Outlook.

  • Importing XP Comments Field into Lightroom 3.3

    I have a large number of jpg's I have tagged, commented, and added subject and title too.  All tagging has been done in windows with most done in vista and windows 7.  I recently got Lightroom and am importing the existing files.  The tags come through as keywords fine, but the other data does not appear to import.  I checked and see the comments are stored in the XP Comments field in the exif structure.  I saw some old posts about problems importing certain data and where it is mapped within Lightroom.  Is there any easy way to bring this data across? Am I missing something?  this seems like a pretty basic function.
    Thanks

    The problem is twofold: where in the metadata these "comments" are stored, and how Lightroom might display this information.
    There are no really good defined places for general comments in the current metadata definitions used by image vendors.  The ones that do exist are abused in a great number of ways.  However, you could see which of these is displayed in Lr (I think one of the IPTC fields might be) and process the image files to copy the comments to this field. I'd use a tool like EXIFTool to do this, make sure you save metadata to the file (or sidecar) and then read it back in again once you have finished tweaking it outside of Lightroom.

  • How can we use Prompt text from Field comment in database

    After migrate database from 4 to 9, I'm getting the problem. The problem is Prompt text in Form don't appear. So, how can we get the Prompt text by using the comment of the field in database which it related with that database text. Thank you.

    Hello,
    The table name is indicated in the query data source name property of the block
    Get_Block_Property( 'bloc_name', QUERY_DATA_SOURCE_NAME ) ;
    The column name is indicated in the column name item property
    Get_Item_Property( 'blk.item_name', COLUMN_NAME ) ;
    Comment is stored in the user_col_comments view
    Here is the code that retrieves coments for all based items of the current block:
    Declare
      LC$Table    Varchar2(30);
      LC$Column   Varchar2(30);
      LC$Item     Varchar2(61);
      LC$Comment  USER_COL_COMMENTS.COMMENTS%Type ;
    Begin
      LC$Table := Get_Block_Property( :system.current_block, QUERY_DATA_SOURCE_NAME ) ;
      -- For each item of the block --
      LC$Item := Get_Block_Property( :system.current_block, FIRST_ITEM ) ;
      Loop
        LC$Column := Get_Item_Property( LC$Item, COLUMN_NAME ) ;
        If LC$Column is not null Then
             Begin
            Select
             COMMENTS
            Into
             LC$Comment
            From
             USER_COL_COMMENTS
            Where
             TABLE_NAME = LC$Table
            And
             COLUMN_NAME = LC$Column
            -- set the prompt --
            Set_Item_Property( LC$Item, PROMPT_TEXT, LC$Comment ) ;
             Exception
                  When no_data_found Then
                     Null;
             End;
        End if ;
        LC$Item := Get_Item_Property( LC$Item,  NEXTITEM ) ;
        Exit When LC$Item is null ;
      End loop;
    End;Francois

  • DUPLICATING  A FIELD

    I AM CREATING A NEW DATABASE ON WICH I NEED 8 FIELDS WITH THA SAME ITEMS FOR CONTROL FOR ALL 8 , THE ITEMS FOR CONTROL ARE 45 , HOW CAN I DUPLICATE THE FIELD OR COPY THE ITEMS FOR CONTROL FOR THE REMAINING 7 FIELDS?

    Hi and welcome to Apple Discussions and the AppleWorks forum.
    Our hearing is pretty good in here, so there's no need to SHOUT. Apologies if the problem is that your CAPS LOCK key is broken, and that's the reason for your post being all in capital letters.
    AppleWorks Help makes no mention of duplicating any type of field in a database, and I've never come across a means of doing so. I suspect you'll have to enter all 45 control items for each field.
    Regards,
    Barry

Maybe you are looking for

  • Not able to read/write Clobdomain when using weblogic server.

    Hi, We have a view and one of its attribute is ClobDomain. Earliar we were using OC4J and had no problems in reading/writing this attribute using the entity object. Now we have migrated to Weblogic and the same clobdoamin is written empty. Also two r

  • NEW GL and PROFIT CENTER REPORT

    Hi, In New GL ( ECC6) the profit center is also available in GL itself. Under this situatrion Profit center data is flowing to Controlling. Previousl we take Profit center report from 8 series Library and use it for report painter. Now what is the li

  • Illustrator cc 2014 will not open, instead adobe application manager opens

    I downloaded creative cloud and downloaded the trial for illustrator cc 2014, but when i go to open the app, the icon bounces a couple of times and then disappears and the adobe application manager comes up, but doesn't open? so how do i open the ***

  • Fingerprint-Reader in Firefox 30

    Hallo Community, Nach dem Sicherheitsupdate auf Firefox 30 funktioniert der Fingerprint reader im Firefox nicht mehr. Bis dahin konnte ich mich mit dem Senor immer bei Webseiten wie z,B, beim GMX EMailkonto oder auch Shop-Seiten oder Chatsystem schön

  • Forms & payments

    I want to create a small web based business. Is there a way to create a form on iweb so people can fill out information? What about payment? is there a way that someone can download a form? or upload a form? is there a way that I can put a word docum