Bank Upload : Statement 00227 already exists; entry ignored

Hi
We have uploaded the bank using FF.5 for two days 13.7.09 and 14.07.09 seperately. The batch SM35 processed for 14.07.09 first and 13.07.09 second. Now when we are trying to upload 15.07.09, the system is displaying the following error. Is there any way to fix this other than manual upload?
I have seen this error in the forum and reply to it, but this seems to be slightly different.
Appreciate your help.
Regards,
Venu

Sometimes due to user error (Do not post option selected) or some technical buffering issues, Bank statement is uploaded but not posted (then it will give you this error as well). Please try to post statement 00227, and if the system has already done the posting then it will not post otherwise it will process and post the uploaded invoice.
If it is not posting then it can be user error that while uploading statement for 14th, statement for 15th got included. Please check this by running FEBA_BANK_STATEMENT REPROCESS (or FEBA in older version) to check and reconcile if all the postings that you expect for 00227 have been posted correctly.
This can be user upload error, because mostly you will do previously day upload but you have the option to upload current day along with previous day for most banks
Thanks
Ron

Similar Messages

  • Key already exists entry was ignored

    Hi
    in our BI planning aplication a also in some reports are very frequent mistake announcement Key already exist, entry was ignored.
    I found this , but I can´t find any general advice for our problem.  In WAD we use one variable in more queries in one template, but it also frequent in some report, where I use only one variable for one characteristic.
    Do you have any general solution for it?
    Best regard
    Petr

    Hi,
    Did you mean that compound characteristic is also restrict or some special feature in Query Designer?
    Thanks
    Petr
    Edited by: Petr Jedlicka on Mar 8, 2010 9:45 AM

  • ERROR ITMS-9000:"Redundant Binary Upload. There already exists a binary upload with build version '1.1' for ipa '1.1'".

    ERROR ITMS-9000:"Redundant Binary Upload. There already exists a binary upload with build version '1.1' for ipa '1.1'".
    I need to change the build number, but not the version number. So I can upload a new build for same version to ITC. What step should I do in FB4.7?

    Hi mobisa,
    Can you try the solution in this post? ios - ERROR ITMS-9000: "Redundant Binary Upload. There already exists a binary upload with build version '1.0' for train…
    Thanks,
    Preran

  • BAPI Needed of uploading document in already existing Dispute Case

    Hi,
      I need BAPI for  uploading document in already existing Dispute Case...
    Thanks,
    Ajit

    I tried to use the following program to upload a document and it is not working, any feedback would be helpful:
    *& Report  ZTEMP_DISPUTE_12
    REPORT  ztemp_dispute_12.
    PARAMETER : l_fname TYPE char255.
    DATA : l_file TYPE string,
          lv_xstring  TYPE xstring,
           l_return TYPE  bapiret2,
           l_filecontent TYPE bapiconten,
           i_case TYPE REF TO if_scmg_case_api,
            l_initial_dir     TYPE string,
            l_window_title    TYPE string,
            l_filename_disp   TYPE string,
            l_filename_string TYPE string,
            l_user_action     TYPE i,
            l_rc              TYPE i,
           l_v_lines TYPE i,
           l_mime TYPE skwf_mime,
           l_filelength TYPE i,
           l_component TYPE  bapidoccomp,
           l_skwf_filnm TYPE skwf_filnm,
           li_file_tab        TYPE filetable,
           lwa_file_tab        TYPE file_table,
           li_bin_content  TYPE STANDARD TABLE OF bapiconten,
           l_v_size TYPE i.
    DATA: BEGIN OF itab OCCURS 0,
           line TYPE sdok_sdatx.
    DATA: END OF itab.
    DATA: BEGIN OF i_component OCCURS 0,
            comp_count  TYPE bapipos,
            comp_id     TYPE bapidocid,
            mimetype    TYPE bapimimetype,
            comp_size   TYPE bapipos,
            binary_flag TYPE bapigsbool,
            comp_num    TYPE bapipos.
    DATA: END OF i_component.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR l_fname.
      l_window_title = 'Upload Document'(001).
    Call the file selection dialog
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
        EXPORTING
          window_title            = l_window_title
          initial_directory       = l_initial_dir
        CHANGING
          file_table              = li_file_tab
          rc                      = l_rc
          user_action             = l_user_action
        EXCEPTIONS
          file_open_dialog_failed = 1
          cntl_error              = 2
          error_no_gui            = 3
          not_supported_by_gui    = 4
          OTHERS                  = 5.
      IF sy-subrc = 0.
        READ TABLE li_file_tab INTO lwa_file_tab INDEX 1.
        IF sy-subrc = 0.
          l_file = lwa_file_tab-filename.
          l_fname = lwa_file_tab-filename.
        ENDIF.
      ENDIF.
    START-OF-SELECTION.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename                      = l_file
      FILETYPE                      = 'ASC'
      HAS_FIELD_SEPARATOR           = ' '
      HEADER_LENGTH                 = 0
      READ_BY_LINE                  = 'X'
      DAT_MODE                      = ' '
      CODEPAGE                      = ' '
      IGNORE_CERR                   = ABAP_TRUE
      REPLACEMENT                   = '#'
      CHECK_BOM                     = ' '
      VIRUS_SCAN_PROFILE            =
      NO_AUTH_CHECK                 = ' '
    IMPORTING
      FILELENGTH                    =
      HEADER                        =
        TABLES
          data_tab                      = itab
    EXCEPTIONS
      FILE_OPEN_ERROR               = 1
      FILE_READ_ERROR               = 2
      NO_BATCH                      = 3
      GUI_REFUSE_FILETRANSFER       = 4
      INVALID_TYPE                  = 5
      NO_AUTHORITY                  = 6
      UNKNOWN_ERROR                 = 7
      BAD_DATA_FORMAT               = 8
      HEADER_NOT_ALLOWED            = 9
      SEPARATOR_NOT_ALLOWED         = 10
      HEADER_TOO_LONG               = 11
      UNKNOWN_DP_ERROR              = 12
      ACCESS_DENIED                 = 13
      DP_OUT_OF_MEMORY              = 14
      DISK_FULL                     = 15
      DP_TIMEOUT                    = 16
      OTHERS                        = 17
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      DESCRIBE TABLE itab  LINES l_v_lines.
      l_v_size = l_v_lines * 255.
      l_filename_string = l_file.
      CALL METHOD cl_gui_frontend_services=>file_get_size
        EXPORTING
          file_name = l_filename_string
        IMPORTING
          file_size = l_v_size
        EXCEPTIONS
          OTHERS    = 1.
    convert binary255 to binary1024 table
      CALL FUNCTION 'SCMS_BINARY_TO_XSTRING'
        EXPORTING
          input_length = l_v_size
        IMPORTING
          buffer       = lv_xstring
        TABLES
          binary_tab   = itab
        EXCEPTIONS
          failed       = 1
          OTHERS       = 2.
      IF sy-subrc <> 0.
           rv_failed = 'X'.
           RETURN.
      ENDIF.
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          buffer     = lv_xstring
        TABLES
          binary_tab = li_bin_content.
      l_skwf_filnm = l_file.
      CALL FUNCTION 'SKWF_MIMETYPE_OF_FILE_GET'
        EXPORTING
          filename                   = l_skwf_filnm
      X_USE_LOCAL_REGISTRY       =
       IMPORTING
         mimetype                   = l_mime.
      l_component-comp_count    = 1.
      l_component-comp_id       = l_fname.
      l_component-mimetype      = l_mime.
      l_component-comp_size     =  l_v_size.
      l_component-binary_flag   = 'X'.
      l_component-comp_num      = 1.
      APPEND l_component TO i_component.
      DATA:
      lo_case_api TYPE REF TO  cl_scmg_case_api,
       lo_case_api_intf       TYPE REF TO if_scmg_case_api.
      CALL METHOD cl_scmg_case_api=>if_scmg_case_api~open_case
        EXPORTING
          im_case_guid    = 'E99B284FC272B720E100000092D79319'
          im_enqueue      = 'X'
        RECEIVING
          re_case         = lo_case_api_intf
        EXCEPTIONS
          failed          = 1
          enqueue_failed  = 2
          invalid_guid    = 3
          cx_srm_gsp_back = 4
          OTHERS          = 5.
      lo_case_api ?= lo_case_api_intf.
    *DATA : l_if_case_api      TYPE REF TO if_scmg_case_api.
           CALL METHOD cl_scmg_case_api=>open_case
             EXPORTING
               im_case_guid    = 'E99B284FC272B720E100000092D79319'
             RECEIVING
               re_case         = l_if_case_api
             EXCEPTIONS
               failed          = 1
               enqueue_failed  = 2
               invalid_guid    = 3
               cx_srm_gsp_back = 4
               no_authority    = 5
               OTHERS          = 6.
      CALL FUNCTION 'UDM_BD_CREATE_ATTACHMENT'
        EXPORTING
          i_guid      = 'E99B284FC272B720E100000092D79319'              "E99B284FC272B720E100000092D79319
          i_case      = lo_case_api
          i_testrun   = space           " '003A3A4FAD54D97CE100000092D79319'
        TABLES
          bin_content = li_bin_content
          components  = i_component
        CHANGING
          es_return   = l_return.
      IF sy-subrc = 0.
        COMMIT WORK.
      ENDIF.
      CALL FUNCTION 'DEQUEUE_ALL'.
      break 50120i1120.

  • BAPI to Accept an already existing service entry sheet

    Hi,
    Please let me know a BAPI to accept an already existing entry sheet.
    i.e set 'X' to the acceptance indicator for an existing entry sheet
    Regards
    Shiva

    Hi,
       Read the documentation in se37 and use apprapiate among all.
    BAPI_ENTRYSHEET_CHECK Check Service Entry Sheet
    BAPI_ENTRYSHEET_CREATE Create Entry Sheet
    BAPI_ENTRYSHEET_DELETE Delete Entry Sheet
    BAPI_ENTRYSHEET_GETDETAIL Display Detailed Data on Entry Sheet
    BAPI_ENTRYSHEET_GETLIST List Entry Sheets
    BAPI_ENTRYSHEET_GETRELINFO Detailed Release Information Relating to Entry Sheet
    BAPI_ENTRYSHEET_RELEASE Release Entry Sheet
    BAPI_ENTRYSHEET_RESET_RELEASE Cancel Release of Entry Sheets
    <b>Reward points</b>
    Regards

  • The key 0000 already exists; the entry was ignored

    Hi All,
    We are getting the following error messages, when we open up a web application for Integrated Planning.
    We have a dropdown box for the Fiscal Year variable in our application.
    'The key 0000 already exists; the entry was ignored'
    'The key 2012 already exists; the entry was ignored'
    The long text on the error does not give any other information than repeating the error message.
    Any ideas?
    Thanks in advance.
    Best Regards,
    - Shashi

    Hi Raghu,
    Thanks for the reply.
    We have a web application designer and we have multiple queries in it and we are using the common variables accross them.
    This is a very common scenario. Isn't it? What did you meant check for duplication?
    Best Regards,
    - Shashi

  • Web Matrix FTP Remote Connection Error - "Connection Error - Failure to get file list from server. An entry with the same key already exists."

    Does anyone have experience with this issue when connecting to a Linux FTP Web Server running a FTP Site?
    "Connection Error - Failure to get file list from server. An entry with the same key already exists."
    I cannot access the root directory of the ftp file server using Web Matrix 3. The site is .php based, and
    is accessible when connecting with FileZilla or Remote Connecting via FTP with Visual Studio.
    All sites have been deleted from Web Matrix, the user Application Data has been cleared and Web Matrix has been reinstalled.
    Issue Persists....
    Thanks in advance,
    Justin

    Turns out that the program leaves metadata in your app data folder that is not removed upon uninstallation of the software.
    This is incorporated to communicate with a file that uploaded into the ftp directory when publishing pages.

  • Acct &: Statement & already exists - FF.5

    Hello,
    I am trying to import an extract using transaction FF.5 to the bank Itau, but this generates the following error "Acct &: Statement & already exists", analyzing realized that this message occurs because the program is trying to contain twice the data in the T028A.
    Does anyone have a clue?
    Thank you,

    The following note will fix the issue if you have posted.
    SAP NOTE: 1025077
    Context Block:
    SELECT * FROM  febko INTO TABLE i_febko                   "HW139804
             WHERE anwnd       = febko-anwnd                   "HW139804
             AND ( absnd       = febko-absnd                   "HW407675
               OR ( absnd       = febko-absnd(45)               "HW407675
                 AND waers      = febko-waers ) )               "HW407675
             AND ktonr       = febko-ktonr                   "HW139804
             AND emkey       = space                         "HW139804
    Delete Block:
    *        ORDER BY aznum DESCENDING.                         "HW139804
             ORDER BY azdat DESCENDING.                         "HW139804
    Insert Block:
    ORDER BY aznum DESCENDING.                         "mod_1025077

  • Problem in Banking External reconcilation -already exist in Table "OMTH

    Hi,
        All,
             I am getting One Problem while Banking External reconcilation for an accont.it is giving error that entry already exist in Table "OMTH".
             it happens many times,Can u tell me reason and what may be solution to not getting again this problem because it is coming many times .
    Thanks In Advance

    Hi
    I found this Note 1062219 - Manual reconciliaton failed - primary key constraint
    The note is for 2005, but I would run the queries related in the note.
    Kind regards.
    Agustí

  • "This entry is already exists in tables(JDT1)(ODBC-2035)" Error.

    Hi experts,
    My Production_DB Database was got into  Suspect mode due to power problem,the users unable to open SAP. so  run the script file so production_db came into normal mode and sap opened.
    But which documents were posted at the time of database going to Suspect mode that documents are not visible and then users repost the documents they are getting "This Entry is already exists in Table(JDT1) (ODBC-2035)" Error.
    so we run the select query for JDT1 table in sql server 2005,we got "Msg 605, Level 21, State 3, Line 1
    Attempt to fetch logical page (1:394560) in database 7 failed. It belongs to allocation unit 72057596881666048 not to 72057596584198144".
    I am using SAP PL 20 and SQL server 2005.
    I am waiting for your response ASAP.
    Thanks & Regards.
    Srinu Boddeti.

    Hi Srinu,
    please refer below link for details..
    http://forums.sdn.sap.com/thread.jspa?threadID=1636430
    Thanks and Regards,
    kaviprashu

  • A/R invoice update error-Entry already exist in ado4

    Hi all,
       Currently I am using version  PL39 when i am trying to update my A/R invoice its giving following error  -This entry already exist in following table ado4[message 131-183].
    As per my knowledge ado4 is history table for A/R invoices.
             Kindly help me.. why this error is coming and how to resolve this error.
    Thanks in advance,
    Regards,
    Jitendra Sali

    Jitendra Sali,
    I would suggest you escalate this to SAP Support as you wait for an answer from this Forum.
    Suda

  • Error message Entry already exists in UDO

    I am working with SAP B1 Release 2005B. The software was working fine for more than 11 months. Now suddenly from last 2 days no entry is getting saved into an UDO.  the error message displayed is
    ' This Entry already exists in the table '(@CREQ) (odbc-2035)
    I found the same problem addressed in the forum many times but no solution
    Kindly help . The data entry into the system is not taking place
    Bye

    Hi,
    for me this sounds like the Numbering File got damaged.
    Administration -> Utilities -> Restore -> Restore Numbering File
    lg David

  • Fixing entry already exists . Error in creation of fixed pegging

    Hi,
    we are calling CTP from GATP after product availability check. Using fixed pegging relationship through standarad abap class
    error message is coming as
    Error occurred during creation of fixed pegging relationships
    Fixing entry already exists
    Message no. /SAPAPO/OM_ERROR2328
    diagnosis
       An application program called an LCA routine. This led to an error.
    Procedure for system administrator
    Contact SAP Service. Specify the application
    message occurred.
    You must also enter:
    o   The message number
    o   Return code 17313 (om_pb_fixentry_exists)
    o   Error code COM Core

    Dear Santosh,
    the common cause for the error LC Return code 17313:                                                   
    The heuristic tries to determine locking arguments, but other processes are locking these.                                                      
    Therefore the proposal,                                            
    1. Don't run the MRP in a parallel mode.                                
    2. Check the note 513827 for more information.               
    Regards,
    Tibor

  • This entry already exist when adding an alert

    Hi,
    I still have this error every time I send an alert to a group of recipient.
    It seems that for some reason,  some users receiving messages that aren't loging in for some times I have this error poping up when sending alerts :
    "This entry already exists in the following table (ODBC - 2035)"
    What do I have to know about sending alerts ?
    Here's the code used to send alert.
    SAPbobsCOM.CompanyService oCmpSrv = null;
    MessagesService oMessageService = null;
    SAPbobsCOM.Message oMessage = null;
    MessageDataColumns pMessageDataColumns = null;
    MessageDataColumn pMessageDataColumn = null;
    MessageDataLines oLines = null;
    MessageDataLine oLine = null;
    RecipientCollection oRecipientCollection = null;
    try
        oCmpSrv = oCompany.GetCompanyService();
        oMessageService = ((SAPbobsCOM.MessagesService)(oCmpSrv.GetBusinessService(ServiceTypes.MessagesService)));
        oMessage = ((SAPbobsCOM.Message)(oMessageService.GetDataInterface(MessagesServiceDataInterfaces.msdiMessage)));
        oMessage.Subject = Subject;
        oMessage.Text = Body;
        oRecipientCollection = oMessage.RecipientCollection;
        foreach (string RecipientName in Recipients)
            oRecipientCollection.Add();
            oRecipientCollection.Item(oRecipientCollection.Count - 1).SendInternal = BoYesNoEnum.tYES;
            oRecipientCollection.Item(oRecipientCollection.Count - 1).UserCode = GetUserCode(RecipientName, oCompany);
        // Don't add a document link if we pass -1 as parameter.
        if (ObjectType != -1)
            // get columns data
            pMessageDataColumns = oMessage.MessageDataColumns;
            // get column
            pMessageDataColumn = pMessageDataColumns.Add();
            // set column name
            pMessageDataColumn.ColumnName = ColumnName;
            // set link to a real object in the application
            pMessageDataColumn.Link = (ObjectType != -1 ? BoYesNoEnum.tYES : BoYesNoEnum.tNO);
            // get lines
            oLines = pMessageDataColumn.MessageDataLines;
            // add new line
            oLine = oLines.Add();
            // set the line value
            oLine.Value = ObjectKey;
            // set the link to BusinessPartner (the object type for Bp is 2)
            oLine.Object = ObjectType.ToString();
            // set the Bp code
            oLine.ObjectKey = ObjectKey;
        // send the message
        oMessageService.SendMessage(oMessage);
        return "";
    catch (Exception ex)
        return ex.Message;
    if I send message only to the current user there's no problem.  but since the recipient list have 3 users, the 2 other users are rarely opening SAP
    It can be the way I'm filling the recipients but I'm not sure.

    Hi,
    It's in C# but enjoy this :
    /// <summary>
                    /// Send an alert to a recipient
                    /// </summary>
                    /// <param name="RecipientName">The name of the recipient</param>
                    /// <param name="Subject">The subject of the message</param>
                    /// <param name="Body">The message</param>
                    /// <param name="ColumnName">The name of the column shown on for the document sent</param>
                    /// <param name="ObjectType">The object type : for instence (int)BoObjectTypes.oOrders</param>
                    /// <param name="ObjectKey">The DocEntry of the document to be linked to this alert</param>
                    private static string _SendAlert(string Subject, string Body, string ColumnName, int ObjectType, string ObjectKey, SAPbobsCOM.Company oCompany, System.Collections.Generic.List<string> Recipients)
                        SAPbobsCOM.CompanyService oCmpSrv = null;
                        MessagesService oMessageService = null;
                        SAPbobsCOM.Message oMessage = null;
                        MessageDataColumns pMessageDataColumns = null;
                        MessageDataColumn pMessageDataColumn = null;
                        MessageDataLines oLines = null;
                        MessageDataLine oLine = null;
                        RecipientCollection oRecipientCollection = null;
                        Recipient oRecipient = null;
                        try
                            oCmpSrv = oCompany.GetCompanyService();
                            oMessageService = ((SAPbobsCOM.MessagesService)(oCmpSrv.GetBusinessService(ServiceTypes.MessagesService)));
                            oMessage = ((SAPbobsCOM.Message)(oMessageService.GetDataInterface(MessagesServiceDataInterfaces.msdiMessage)));
                            oMessage.Subject = Subject;
                            oMessage.Text = Body;
                            oRecipientCollection = oMessage.RecipientCollection;
                            foreach (string UserCode in Recipients)
                                oRecipient = oRecipientCollection.Add();
                                oRecipient.SendInternal = BoYesNoEnum.tYES;
                                oRecipient.UserCode = UserCode;
                            // Don't add a document link if we pass -1 as parameter.
                            if (ObjectType != -1)
                                // get columns data
                                pMessageDataColumns = oMessage.MessageDataColumns;
                                // get column
                                pMessageDataColumn = pMessageDataColumns.Add();
                                // set column name
                                pMessageDataColumn.ColumnName = ColumnName;
                                // set link to a real object in the application
                                pMessageDataColumn.Link = (ObjectType != -1 ? BoYesNoEnum.tYES : BoYesNoEnum.tNO);
                                // get lines
                                oLines = pMessageDataColumn.MessageDataLines;
                                // add new line
                                oLine = oLines.Add();
                                // set the line value
                                oLine.Value = ObjectKey;
                                // set the link to BusinessPartner (the object type for Bp is 2)
                                oLine.Object = ObjectType.ToString();
                                // set the Bp code
                                oLine.ObjectKey = ObjectKey;
                            // send the message
                            oMessageService.SendMessage(oMessage);
                            return "";
                        catch (Exception ex)
                            return ex.Message;
    And make sure tou send only ONE recipient in the collection like {Recepient ONE} because sending more then one wasn't working for me and I never knew why !
    WHY WHEN EDITING THIS MESSAGE EVERYTHING IS FINE BUT WHEN LOOKING AT IT ALL THE SPACES ARE GONE ?
    Edited by: Marc Roussel on Aug 26, 2009 12:19 PM

  • SharePoint Library - If I save file from Excel File Save As - then I always get "File already exists. Do you want to replace it?" - Upload works fine though.

    Hi there,
    In my SP 2010 document library - When I try to save an Excel file from File > Save As menu to the document library it always prompts me "File already exists. Do you want to replace it?" even though the file does not exist in that document library.
    To the same document library - if I upload a file then it accepts it all fine.
    Any clues why I cannot save files using File > Save As menu?
    Thanks.

    Hi,
    As I understand, the notification pops up when you save an excel file to SharePoint library, while when directly upload file to library, there is no wrong.
    Please confirm if the issue occurs to other machines.
    Please open Microsoft Office Upload Center on the issue machine, then click settings, clear cache via checking Delete files from the Office Document Cache when they are closed.
    http://office.microsoft.com/en-in/excel-help/office-document-cache-settings-HA010388664.aspx
    If the issue occurs to client, I’d recommend you also ask the question in Excel forum:
    http://social.technet.microsoft.com/Forums/office/en-US/home?forum=excel
    Regards,
    Rebecca Tu
    TechNet Community Support

Maybe you are looking for

  • GS60 2PE Ghost Pro - Windows install

    Hi, I've recently bought a GS60 2PE Ghost pro which come with a SDD and a HDD with Windows 8.1 installed. I would like to do 2 things and would like to know the best way to do it : - Moving windows onto HDD - having Ubuntu 14.10 on SSD (this will be

  • Where is the serial number for WinDVD Creator when upgrading?

    I downloaded the lates drivers for my TV@anywhere-Master TV Card from http://www.msi.com.tw/program/support/driver/dvr/spt_dvr_list.php?part=10 including 8609_PVS.zip which turns out to be WinDVR. I have the original disk but the serial numbers on it

  • Could not open key HKLM\softwar\classes\pcast.

    Every time I try to install iTunes I get the error in the title. I have tried to access the key in my registry editor and I get told I do not have permission to access the key, I am the only user on my laptop and hence the administrator. I have tried

  • Installed mozilla yesterday but STill IE pop-up message appears that IE needs to be closed, close it comes back again again

    installed Mozilla yesterday but STill IE pop-up message appears that IE needs to be closed, close it comes back again again how can i get IE to disappear and stay gone?

  • Dynamic drawing on frames

    Hi, I would like to draw dynamically on displayed frames of a video. The program stops the video and lets the user draw. A previous "Draw on video" topic used an Effect to do this. Because the video is stopped, this won't work. Best would be using th