Amount comes multiple times against document number

Hi,
I have a query in my report that where the A/c Document numbers have the multiple line items, it goes in loop..means it print the value multiple times like: -
5500004344...............4500
5500004345...............5000
5500004345...............5100
5500004345...............5200
5500004346...............5100
It is taking the 5500004345 value 5100, in the 5500004346 document number.(saw in debugging time)..
But when it have the single document number, it is showing the correct value...
please check my code:----
REPORT  zak_mat_pur_rudrapur_new NO STANDARD PAGE HEADING LINE-SIZE 125  .
TABLES : mseg, ekpo, mkpf, rseg, bkpf, bseg, lfa1.
TYPE-POOLS : slis.
DATA : BEGIN OF itab OCCURS 0,
       belnr LIKE bkpf-belnr,
       gjahr LIKE bkpf-gjahr,
       budat LIKE bkpf-budat,
       awkey LIKE bkpf-awkey,
       belnr1(10) TYPE c,                             " LIKE rseg-belnr,
       gjahr1 LIKE rseg-gjahr,
       ebeln LIKE rseg-ebeln,
       ebelp LIKE rseg-ebelp,
       wrbtr LIKE rseg-wrbtr,
       menge LIKE rseg-menge,
       bstme LIKE rseg-bstme,
       lfbnr LIKE rseg-lfbnr,
       ebeln1 LIKE ekpo-ebeln,
       ebelp1 LIKE ekpo-ebelp,
       txz01 LIKE ekpo-txz01,
       mblnr LIKE mseg-mblnr,
       lifnr LIKE mseg-lifnr,
       lfbnr1 LIKE mseg-lfbnr,
       rate TYPE p DECIMALS 2,
       name1(40) TYPE c , " like lfa1-lifnr,
       dmbtr LIKE bseg-dmbtr,
       dmbtr1 LIKE bseg-dmbtr,
       sum TYPE p DECIMALS 2,
       sum1 TYPE p DECIMALS 2,
       rate1 TYPE p DECIMALS 2,
       lfpos LIKE rseg-lfpos,
       END OF itab.
DATA : BEGIN OF itab2 OCCURS 0,
       belnr LIKE bkpf-belnr,
       gjahr LIKE bkpf-gjahr,
       budat LIKE bkpf-budat,
       awkey LIKE bkpf-awkey,
       belnr1(10) TYPE c,                             " LIKE rseg-belnr,
       gjahr1 LIKE rseg-gjahr,
       ebeln LIKE rseg-ebeln,
       ebelp LIKE rseg-ebelp,
       wrbtr LIKE rseg-wrbtr,
       menge LIKE rseg-menge,
       bstme LIKE rseg-bstme,
       lfbnr LIKE rseg-lfbnr,
       ebeln1 LIKE ekpo-ebeln,
       ebelp1 LIKE ekpo-ebelp,
       txz01 LIKE ekpo-txz01,
       mblnr LIKE mseg-mblnr,
       lifnr LIKE mseg-lifnr,
       lfbnr1 LIKE mseg-lfbnr,
       rate TYPE p DECIMALS 2,
       name1(40) TYPE c , " like lfa1-lifnr,
       dmbtr LIKE bseg-dmbtr,
       dmbtr1 LIKE bseg-dmbtr,
       sum TYPE p DECIMALS 2,
       sum1 TYPE p DECIMALS 2,
       rate1 TYPE p DECIMALS 2,
       lfpos LIKE rseg-lfpos,
       END OF itab2.
DATA : w_container TYPE scrfname VALUE 'CL_GRID',
       w_cprog TYPE lvc_s_layo,
       g_repid LIKE sy-repid,
       w_save TYPE c,
       w_exit TYPE c,
       cl_grid TYPE REF TO cl_gui_alv_grid,
       cl_custom_container TYPE REF TO cl_gui_custom_container,
       it_fld_catalog TYPE slis_t_fieldcat_alv,
       wa_fld_catalog TYPE slis_t_fieldcat_alv WITH HEADER LINE ,
       layout TYPE slis_layout_alv,
       col_pos  LIKE sy-cucol ,
       alvfc TYPE slis_t_fieldcat_alv.
SELECTION-SCREEN : BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
SELECT-OPTIONS   : belnr FOR bkpf-belnr.
*SELECT-OPTIONS   : gjahr FOR bkpf-gjahr OBLIGATORY.
PARAMETERS       : gjahr LIKE bkpf-gjahr OBLIGATORY.
*SELECT-OPTIONS   : budat FOR bkpf-budat.
SELECTION-SCREEN : END OF BLOCK b1.
PERFORM fill_catalog1 USING:
'LIFNR'    'ITAB2'    'Vendor',
'NAME1'    'ITAB2'    'Name1',
'BELNR'    'ITAB2'    'MIRO Doc. No.' ,
'BUDAT'    'ITAB2'    'Posting Date',
'GJAHR'    'ITAB2'    'Year',
'BELNR1'   'ITAB2'    'A/c Doc. No.',
'LFBNR'    'ITAB2'    'Ref. Document(103)',
'MBLNR'    'ITAB2'    'Material Doc.(105)',
'EBELN'    'ITAB2'    'PO Number',
'EBELP'    'ITAB2'    'Line Item',
'TXZ01'    'ITAB2'    'Material Text',
'MENGE'    'ITAB2'    'Quantity',
'BSTME'    'ITAB2'    'Unit',
*'RATE'     'ITAB2'    'Rate',
'RATE1'    'ITAB2'    'RATE1',
'WRBTR'    'ITAB2'    'Amount',
'DMBTR'    'ITAB2'    'Variance A',
'DMBTR1'   'ITAB2'    'Variance B',
'SUM'      'ITAB2'    'Total Amt.',
'SUM1'      'ITAB2'    'Total Amt.1'.
SELECT belnr gjahr budat awkey INTO CORRESPONDING FIELDS OF TABLE itab FROM bkpf WHERE belnr IN belnr AND gjahr = gjahr.
IF sy-subrc <> 0.
  MESSAGE 'DATA NOT FOUND.' TYPE 'I'(001).
ENDIF.
SORT itab BY belnr.
LOOP AT itab.
  SPLIT itab-awkey AT space INTO: itab-belnr1 itab-gjahr1.
  SELECT belnr gjahr ebeln ebelp wrbtr menge bstme lfbnr lfpos FROM rseg INTO (itab2-belnr1, itab2-gjahr1, itab2-ebeln,
                    itab2-ebelp, itab2-wrbtr, itab2-menge, itab2-bstme, itab2-lfbnr, itab2-lfpos) WHERE belnr = itab-belnr1 AND gjahr = itab-gjahr .
    itab2-belnr = itab-belnr.
    itab2-gjahr = itab-gjahr.
    itab2-budat = itab-budat.
    itab2-awkey = itab-awkey.
    SELECT SINGLE ebeln ebelp txz01 FROM ekpo INTO (itab2-ebeln1, itab2-ebelp1, itab2-txz01) WHERE ebeln = itab2-ebeln AND ebelp = itab2-ebelp.
    SELECT SINGLE mblnr lifnr FROM mseg INTO (itab2-mblnr, itab2-lifnr) WHERE lfbnr = itab2-lfbnr AND bwart EQ '105'.
    SELECT SINGLE name1 FROM lfa1 INTO itab2-name1 WHERE lifnr = itab2-lifnr .
    SELECT SINGLE dmbtr FROM bseg INTO itab2-dmbtr WHERE belnr = itab2-belnr AND gjahr = itab2-gjahr AND buzid = 'S' AND ebelp = itab2-ebelp.
    itab2-rate = itab2-wrbtr / itab2-menge.
    itab2-sum = itab2-wrbtr + itab2-dmbtr + itab2-dmbtr1.
    itab2-rate1 = itab2-sum / itab2-menge.
*itab2-sum1 = itab2-wrbtr + itab2-dmbtr1.
    APPEND itab2.
  ENDSELECT.
ENDLOOP.
DATA : cnt TYPE i value 1.
LOOP AT itab2.
cnt = cnt + 1.
  SELECT dmbtr FROM bseg INTO itab2-dmbtr1 WHERE belnr = itab2-belnr AND gjahr = itab2-gjahr AND buzid = 'T' AND mwart = 'V'.
    MODIFY itab2 INDEX cnt TRANSPORTING dmbtr1.
    cnt = cnt + 1.
  ENDSELECT.
ENDLOOP.
layout-zebra = 'X' .
layout-colwidth_optimize(1) = 'X'.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
  EXPORTING
    i_callback_program = 'ZAK_MAT_PUR_RUDRAPUR_NEW'
    is_layout          = layout
    it_fieldcat        = it_fld_catalog
    i_default          = 'X'
    i_save             = 'A'
  TABLES
    t_outtab           = itab2
  EXCEPTIONS
    program_error      = 1
    OTHERS             = 2.
IF sy-subrc <> 0.
  MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
          WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
*&      Form  FILL_CATALOG1
      text
     -->P_FIELDNAME  text
     -->P_REF_TABLE  text
     -->P_SCRTEXT    text
FORM fill_catalog1  USING   p_fieldname TYPE any
                            p_ref_table TYPE any
                            p_scrtext   TYPE any.
  CLEAR : wa_fld_catalog.
  wa_fld_catalog-fieldname  = p_fieldname.
  wa_fld_catalog-tabname    = p_ref_table.
  wa_fld_catalog-seltext_s  = p_scrtext.
  wa_fld_catalog-seltext_m  = p_scrtext.
  wa_fld_catalog-seltext_l  = p_scrtext.
wa_fld_catalog-do_sum     = 'X'.
  wa_fld_catalog-outputlen = 15.
  wa_fld_catalog-no_zero   = 'X'.
  APPEND wa_fld_catalog TO it_fld_catalog.
ENDFORM.                    " fill_catalog1
please help me....

Thanks for reply....
But same problem is still here...
I copied ur code:----
LOOP AT itab.
  CLEAR itab2.                                              "INSERT STATEMENT
SPLIT ITAB-AWKEY AT SPACE INTO: ITAB-BELNR1 ITAB-GJAHR1. "DELETE STATEMENT
  itab-belnr1 = itab-awkey+0(10).                           "INSERT STATEMENT
  itab-gjahr1 = itab-awkey+10(4).                           "INSERT STATEMENT
  SELECT belnr gjahr ebeln ebelp wrbtr menge bstme lfbnr lfpos
    FROM rseg INTO (itab2-belnr1, itab2-gjahr1, itab2-ebeln, itab2-ebelp, itab2-wrbtr, itab2-menge, itab2-bstme, itab2-lfbnr, itab2-lfpos)
   WHERE belnr = itab-belnr1
     AND gjahr = itab-gjahr .
    itab2-belnr = itab-belnr.
    itab2-gjahr = itab-gjahr.
    itab2-budat = itab-budat.
    itab2-awkey = itab-awkey.
    SELECT SINGLE ebeln ebelp txz01 FROM ekpo INTO (itab2-ebeln1, itab2-ebelp1, itab2-txz01)WHERE ebeln = itab2-ebeln AND ebelp = itab2-ebelp.
    SELECT SINGLE mblnr lifnr FROM mseg INTO (itab2-mblnr, itab2-lifnr)WHERE lfbnr = itab2-lfbnr AND bwart EQ '105'.
    SELECT SINGLE name1 FROM lfa1 INTO itab2-name1 WHERE lifnr = itab2-lifnr .
    SELECT SINGLE dmbtr FROM bseg INTO itab2-dmbtr WHERE belnr = itab2-belnr AND gjahr = itab2-gjahr AND buzid = 'S' AND ebeln = itab2-ebeln AND ebelp = itab2-ebelp.
    itab2-rate = itab2-wrbtr / itab2-menge.
    itab2-sum = itab2-wrbtr + itab2-dmbtr + itab2-dmbtr1.
    itab2-rate1 = itab2-sum / itab2-menge.
*itab2-sum1 = itab2-wrbtr + itab2-dmbtr1.
    APPEND itab2.
    CLEAR itab2. "INSERT STATMENT.
  ENDSELECT.
ENDLOOP.
Not working....plz suggest...

Similar Messages

  • Billing request appearing multiple times in document flow

    Hi,
    After upgrading from 4.6c to ECC6, for contracts the billing request(same document number, same items)  is appearing multiple times in the document flow. Please help me in resolving this issue.
    Thanks,
    Ramesh

    Note 1049482 is valid for the following releases:
    Release Package name
    500 SAPKH50018
    600 SAPKH60011
    602 SAPKH60201
    You can check your support pack level from transaction SPAM or by clicking on:
    System -> Status. From here there is a button called "component information" in the SAP System data section. This will show you the different support pack levels. If your support pack is less than SAPKH60011 (for example SAPKH60008) then the note is applicable. "
    thanks
    G. Lakshmipathi

  • Print should come only once per document number

    Hi All,
    I have done a script for the WC Document,
    But now the client requires it to print it only once for a particular document number,
    How can we do. Is there any such coding to restrict the print only once per document.
    If anyone knows the solution please post it

    hi
    check the entry in nast table if you find more than 1 enrty that is repeated print .....
    select objky
             kschl
             erdat
             eruhr
             vstat from nast into table gt_date
             where objky eq gv_del_num. ---> document number
      if sy-subrc eq 0.
        sort gt_date by objky erdat descending .
        describe table gt_date lines lv_n.
        if lv_n gt 1.
          gv_repeat = lc_x.
        endif.

  • Bank account number against Document number

    Hi Experts,
    I have a scenario where i have Document no. of clearing doc. i.e. AUGBL and based on that i need to know bank account number i.e. BANKN.
    Can anybody suggest the sap tables from where i can get it ?
    Thanks,
    Akash

    >
    Akash Sawant wrote:
    > Hi Aditya,
    >
    > Probably it is vendor doc. no.
    >
    > Thanks,
    > Akash
    "Probably"?
    You should verify before continuing.
    Rob

  • Text comming many times

    Hi,
    I have Header text in function SD_SALESDOCUMENT_CREATE and it is comming many times based on number of line items. How can I make this come only once.
    Thanks,
    Neelu.
          DESCRIBE TABLE gt2_zprice LINES lv_lines.
          IF lv_lines = 1.
            LOOP AT gt4_zprice INTO gs_zprice1.
              AT NEW kunnr.
                MOVE 'Y' TO lv_flg.
              ENDAT.
              IF lv_flg EQ 'Y'.
                PERFORM headerdata.
                CLEAR lv_flg.
              ENDIF.
              PERFORM itemdata.
              APPEND gs_zprice1 TO gt3_zprice.
            ENDLOOP.
            PERFORM call_function.
            PERFORM update_pricetable.
            PERFORM errorcheckandcommit.
            PERFORM displaydata.
            CLEAR chbox.
            CLEAR lv_lines.
          ELSE.
            REFRESH gt2_zprice.
            CLEAR chbox.
            EXIT.
          ENDIF.
      ENDCASE.
    *&      Form  headerdata
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM headerdata.
    * header data
    * Sales document type
      header-doc_type = gs_zprice1-auart.
      headerx-doc_type = 'X'.
    * Sales organization
      header-sales_org = gs_zprice1-vkorg.
      headerx-sales_org = 'X'.
    * Distribution channel
      header-distr_chan  = gs_zprice1-vtweg.
      headerx-distr_chan = 'X'.
    * Division
      header-division = gs_zprice1-spart.
      headerx-division = 'X'.
      header-purch_no_c = gs_zprice1-bstkd.
      headerx-purch_no_c = 'X'.
      header-ord_reason = gs_zprice1-augru.
      headerx-ord_reason = 'X'.
    *  header-ref_doc = gs_zprice1-xblnr.
    *  headerx-ref_doc = 'X'.
      headerx-updateflag = 'I'.
    ENDFORM.                    " headerdata
    *&      Form  itemdata
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM itemdata.
    * Partner data
    * Sold to
      partner-partn_role = 'AG'.
      partner-partn_numb = gs_zprice1-kunnr.
      APPEND partner.
    * ITEM DATA
      itemx-updateflag = 'I'.
    * Line item number.
      item-itm_number = lv_itemno.
      itemx-itm_number = 'X'.
    * Material
      item-material = gs_zprice1-matnr.
      itemx-material = 'X'.
    * Plant
      item-plant    = gs_zprice1-werks.
      itemx-plant   = 'X'.
    * Quantity
      item-target_qty = gs_zprice1-eohqty.
      itemx-target_qty = 'X'.
      APPEND item.
      APPEND itemx.
    *Fill schedule lines
      lt_schedules_in-itm_number = lv_itemno.
      lt_schedules_in-sched_line = '0001'.
      lt_schedules_in-req_qty    = gs_zprice1-eohqty.
      APPEND lt_schedules_in.
    *Fill schedule line flags
      lt_schedules_inx-itm_number  = lv_itemno.
      lt_schedules_inx-sched_line  = '0001'.
      lt_schedules_inx-updateflag  = 'I'.
      lt_schedules_inx-req_qty     = 'X'.
      APPEND lt_schedules_inx.
    *Conditions
      lv_pprice = gs_zprice1-sprice - gs_zprice1-eprice.
      conditions1-itm_number  = lv_itemno.
      conditions1-cond_type   = 'ZCPP'.
      conditions1-cond_value  = lv_pprice.
      conditions1-currency    = 'USD'.
      conditions1-cond_unit   = 'EA'.
      conditions1-cond_p_unt = 1.
      APPEND conditions1.
    *Texts
        order_text-itm_number  = '000000'.
        order_text-text_id = '0001'.
        order_text-langu = sy-langu.
        order_text-text_line = gs_zprice1-xblnr.
        APPEND order_text.
      lv_itemno = lv_itemno + 10.
    ENDFORM.                    " itemdata

    Hi Neelu,
    Can you paste your whole code.
    and why you are checking this
    IF lv_lines = 1.
    Regards,
    Atish

  • Create multiple deliveries against the same customer return order

    I want to create multiple deliveries against the same Customer return order. But once the RF transaction is run it closes all the lines.  We need to be able to receive multiple times against the same RA number and create different deliveries. Any ideas?
    Will reward points to any helpful answers

    are the deliveries being created by RF monitor ?
    Or only picking is happening by RF?

  • Multiple notification against single inspection lot (03 inspection type)

    Dear friends
    While recording the defects multiple times against single inspection lot (03type) , all the defects are added in single notification, but my client requirement is they want different notification.  if any body knows please tell me.
    Note : in inspection type there is a option of multiple notification against single inspection lot, but this is
    not working (i think it will work only serial number,equipment and  functional location get changed)
    Please do the needful
    Regards

    Hi Karthikeyan
    As you mentioned it is not possible to create notification  other than based on the object types.
    A work out can be make an action box in the notification for creating another notification with the help of ABAP ( call transaction QM01) and while doing this the entire datas of the inspection lot gets copied into the notification. you may have to use a user exit also.
    Defect can be recorded in the item level by the user.
    Sounds difficult but certainly possible
    Regards
    gajesh

  • MX Electronic accounting - Set multiple UUID for single MIRO Document number

    Greetings everyone
    In my company already implemented the neccesary changes required by the new laws in MX Electronic Accounting inside the MIRO transaction (note 2093189), as well as the related notes requested for electronic accounting. Everything's working fine so far since right now we save the UUID field from CFDI XML file into an Invoice Document number. But now in my company request to save multiple CFDI invoices into a single Invoice document number. My approach seems to be simple because we only need to generate a new window to save the multiple UUID numbers and link the Invoice Document Number (BELNR), company code and fiscal period/year and UUID document into a Z custom table. But I have some questions that I'm not sure how will affect:
    How does affect the montly policies report that we need to send to the government (SAT).
    How do we need to handle the policies XML file in this type of scenarios
    Any of you have the same scenario?
    how do you handle this kind of scenarios?
    So far I read the following notes but I can't find a clue so far for this kind of scenario (Am I missing something?)
    (MX) Contabilidad Electrónica - RME 2014 Anexo 24
    Notes:
    http://service.sap.com/sap/support/notes/2041490
    http://service.sap.com/sap/support/notes/2093189
    http://service.sap.com/sap/support/notes/2042663
    Thanks in advance and best regards
    Lorenzo Martín Olmos

    Hi Shekhar
    Thanks a lot for you comments and I apologize for the late reply. As you point this is the most common scenario. In my case when the creditor is the Mexican Social Security Institute (IMSS), and after the payment, either IMSS and INFONAVIT (the governments institute for workers housing) generates different CFDI invoices.
    How do you currently handle this scenario?
    Thanks for your comments. Warm regards
    Lorenzo Martín Olmos

  • When I try to download an app it comes up with no connection URL and it says I've typed in my password wrong multiple times when I haven't changed the password

    So I have tried to download several apps and it asks for my password. I type in my password and then it comes up failure to find service connection URL. After clicking retry multiple times it comes up and say my password is incorrect. When I logged in here my password is correct. How do I fix this

    Hi, Taterbug17. 
    I would recommend signing out of the iTunes Store on your iOS device and sign back in.  Here are the steps on how to process these steps. 
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/ht1311
    Cheers,
    Jason H. 

  • Insert pages from a single document multiple times

    I'm trying to create a simple program that I can use to display PDF files that I can use to play at the piano. I perform often, and need to create "play lists" from which I can pull all, or part of, a PDF file containing music and display it.
    I have it all working, except for one problem. I may need to "repeat" a section of a piece. I'm building up the play list by calling AcroPDDoc.InsertPages for each item in the play list. If a PDF file appears multiple times in the play list, when I call InsertPages, the call fails.
    In this code snippet, pdDoc is the main doc to which I'm adding pages. playList is a generic List of my own PlayList objects, and I need to iterate through all the items in the playList except the first one, which is already loaded.
    This code works great unless the fileName I specify has already been opened. The call to AcroPDDoc.Open succeeds just fine, but the call to pdDoc.InsertPages fails if the file has already had pages from it inserted. All other documents work fine. The documentation, of course, doesn't mention this.
            int insertPage = pdDoc.GetNumPages() - 1;
            for (int i = 1; i < playList.Count; i++)
              var newDoc = new AcroPDDoc();
              var item = playList(i);
              int startPage = 0;
              int endPage = 0;
              if (newDoc.Open(item.fileName))
                startPage = Math.Max(0, item.startPage);
                endPage = Math.Max(0, item.endPage);
                var totalPages = newDoc.GetNumPages;
                if (item.endPage < 0 || item.endPage > totalPages)
                  endPage = totalPages - 1;
                int numPages = (endPage - startPage) + 1;
                if (pdDoc.InsertPages(insertPage, newDoc, startPage, numPages, 0))
                  insertPage += numPages;
    So, the questions:
    1.) Is it possible to load pages from a single document multiple times?
    2.) Is there a better way to do this? (That is, loop through a list of file names, starting and ending page numbers, and add the documents to an existing document.)
    Any help appreciated! Thanks -- Ken

    Hi Ken,
    >The documentation, of course, doesn't mention this.
    The documentation does not state explicitly that you can't insert pages again from a PDDoc you open again and never close.
    But it mentions that you get references only from an already opened PDDoc.
    "...Opens the specified document. If the document is already open, it returns a reference to the already opened PDDoc. You must call PDDocClose() once for every successful open..."
    It doesn't state that you can't insert pages from a referenced PDDoc but it seems so.
    I would close the PDDoc within your for-loop after inserting pages and release newDoc.
    Regards
    Norbert

  • I purchased photoshop elements and i am having all the problems in the world installing it.... first the link in the emails were errors and secondly i have downloaded and installed multiple times and it says my serial number from the email i received is i

    I purchased photoshop elements and i am having all the problems in the world installing it.... first the link in the emails were errors and secondly i have downloaded and installed multiple times and it says my serial number from the email i received is incorrect.... please help

    Ok, since this forum is for Photoshop Standard and Photoshop Extended, we don't know much about Photoshop Elements. There is a Photoshop Elements forum and I'll link it for you since they best know how to field your questions.
    Photoshop Elements
    Good luck on it! 
    Gene

  • Easy dms multiple document number search

    Dear experts,
    We have installed easy dms 6.0 successfully. We have a problem in
    usage. In selection screen we need to search "document number" field
    with multiple search criteria, however the system permits only 1
    entrance.
    Thanks for your help.

    Dear Ahmet,
    based on your description I have to inform you that the mentioned behavior means to be the current standard of EasyDMS. If you want to search for documents in EasyDMS you can only enter one document type and here multiple values are not possible. So I can only recommend you to use other fields like 'description' for searching document info records of different document types.
    As EasyDMS is programm in C++ no  individual screens could be customizing here. This behavior is also the same in EasyDMS 7.0.
    Best regards,
    Christoph

  • How come every time i'm on the phone and another call enters I answer it but it doesnt tell me anywhere who is who on each line so i can go back and forth?? it only says multiple calls and i cant hang up the other line

    how come every time i'm on the phone and another call enters I answer it but it doesnt tell me anywhere who is who on each line so i can go back and forth?? it only says multiple calls and i cant hang up the other line.

    My carrier is Sprint. But I actually have checked with others and theirs work fine.

  • Signing a document multiple times without saving it?

    Hello all,
    Can someone please tell me how do we sign a document multiple times without having to save the document after each signature?
    For instance, I am a realtor and have to sign the contract about 3-4 times. However, when I sign it, Acrobat 8 prompts me to sign after each signature.
    When I was using Acrobat 7, I could sign as much as I want and then save it. This is much more efficient and practical.
    Can anyone advise me?
    Thanks in advance.
    Geo

    Hi Geo,
    It may be more cumbersome in version 8 (and 9), but it's safer. In version 7 and earlier when you signed, Acrobat did everything in memory. You weren't prompted to save the file to disk until you wanted to close the file. The problem is computer memory is where the bad guys get into to make changes. The majority of computer vulnerabilities occur when the hacker escapes the allotted memory space (aka buffer overflows) and reads and writes to memory address that they shouldn't be in. Think of memory being divided up like a row of houses along a block. The bad guy gets out of his house and into yours, and that's where bad things happen.
    Beginning with version 8, signature operation all take place on disk, not in memory. It's slower, and as you pointed out it's more cumbersome, but it's safer. The file is committed to disk (the hard drive) before the signature is created and the signed bytes cannot be manipulated in the middle of the signing procedure.
    Interestingly (at least to me), when we had this discussion four or five years ago when the change was made, the example used was of mortgage contact being signed where any of the terms could be changed in memory prior to the signature being completed. It was just a bunch of geeky engineers sitting around a table discussing possible vulnerabilities with the current signing operation (i.e. signing in memory). To see the theoretical example in actual use is kind of exciting (granted I don't get out much ).
    Steve

  • Inconsistency in document flow, same DMR appearing multiple times

    experts,
    While running  transaction VA43 for document flow same  resource related dmr appearing multiple times.
    Please help why this same dmr is getting displayed multiple times.
    Edited by: ronny1984 on Jun 30, 2009 2:40 PM

    Note 1049482 is valid for the following releases:
    Release Package name
    500 SAPKH50018
    600 SAPKH60011
    602 SAPKH60201
    You can check your support pack level from transaction SPAM or by clicking on:
    System -> Status. From here there is a button called "component information" in the SAP System data section. This will show you the different support pack levels. If your support pack is less than SAPKH60011 (for example SAPKH60008) then the note is applicable. "
    thanks
    G. Lakshmipathi

Maybe you are looking for

  • All the applications, apart from acrobat, start as a trial all the time

    I have this problem from almost a year now. Every time I launch an app it starts as a trial and asks me to license the software. The process happens no matter how many other Adobe applications are open. I know this is a known Issue but I really would

  • Ad hoc query missing amounts

    Hi: I'm having problems in order to obtain amounts from a custom infotype, this custom infotype (9001) is attached to the positions. When I try to obtain information about amounts that I have store in the custom infotype with the ad hoc query, I have

  • Starting a flow through a web service

    Dear, In GP it was possible to start a flow by calling a webservice and entering the input parameters required. Is this possible for a BPM process in CE 7.11? If so, how? Kind regards, Frederik-Jan.

  • Cannot find relation - Known Issue?

    Oracle Forms Builder is giving me the following error: FRM-41104: Cannot find Relation: Invalid ID I've not defined any calls to 'FIND_RELATION' - it seems it might be an internal error. Is this a known issue? Thanks, Oliver White

  • After render multiclip playback in Viewer full screen

    I double clicked and loaded a multiclip into the Viewer from the Browser. Then I did an overwrite edit of the multiclip into the timeline. There are just two cameras, using four-up display in the Viewer. Then I did the cuts the way I liked them. Then