Mass change of PO line for unlimited tolerance

Hi,
I am trying to change change field in MASSEKPO- UEBTK (unlimited tolerance) in a mass. Earlier tick was there, now I want to remove.
I selected all POs & execute. System automatically selecting all POs at line items for the field unlimited tolerance, but I want to deselect or not to mark anything in that column. Can we do like this.
I may be missing some thing.
Regards
Sai Krishna

Hi Sai,
While mass uploading of field unlimited tolerance in PO on the last screen you need to uncheck the unlimited tolerance tab first and then press Carry out Mass Change button.
Hope it will work.
Thanks
Anand

Similar Messages

  • Mass change of Vendor Line Items Payment Terms

    Hi all
    We are trying to make a mass change of payment terms for vendor line items.  We have implemented the change required as per SAP note 640908. However when we try to do this not all payment terms are changed.
    The log gives us the following error - 'Field BSEG-ZTERM. does not exist in the screen SAPMF05L 1302'.
    Please how can we solve this error.
    Many thanks
    PRG

    Hi,
    According to note 640908:
    " Notes on error handling:
        If the mass change does not occur as required even though you
        changed and activated all program parts, note that the error log
        for the mass change (Environment -> Mass change -> Error log of
        line item list) may contain useful information for error
        handling."
    " Note: SAP cannot guarantee that the modified mass change will work
      correctly even if you carry out all of the steps as described in the
      manual tasks."
    It is not planned to enter the payment terms by using of
    the field payment term ZTERM but by using of the fields ZBD1T/ZBD1P and
    ZBD2T/ZBD2P and ZBD3T.
    With Best Regards,
    Gladys Xing

  • Mass change of Payment Method for Vendor

    Is there any way to do mass change of Payment Method for Vendor (trx. XK02) without ABAP? Need to change 1500 vendors.

    HI
    You can use transaction code MASS and object LFA1 to mass change the payment method.
    Once entering you can select table LFB1 and do mass change based on some filter parameters.
    Anand

  • Is it possible to mass change desktop wall paper for all users using WGM?

    is it possible to mass change desktop wall paper for all users using WGM?

    yes, it's easy - change a machine to the desktop you want (the image must be on all the machines, with the same name, of course), find ~/library/preferences/com.apple.desktop.plist Copy that to your server (or just put it on a flash drive) In workgroup manager select preferences - details - "add". Navigate to that plist. (Optional - hit "edit" and cut and past from "often" to "always", then the user cannot change the desktop at all, if you leave it in "often" it will reset next log-on.)

  • Validation not working during Mass Change of Vendor Line Items

    Hi All,
    I created validation for Reference Key 1 field of Vendor line items, in this validation i used customized user exit.
    Whenever i select multiple line items in FBL1N for mass change & try to put a unauthenticated value system gives error as per Validation only for 1 st item but it not work for subsequent items & put the unauthenticated value in subsequent line items.
    I am not able to understand why Validation is working only for 1st line item during mass change & not for subsequent line items.
    Please provide your suggestions in resolving this issue.
    Thanks
    sandeep

    Hello Sandeep,
    I understand your issue. First check if the changes as per the SAP Note 640908 (https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=640908) is available in your system.
    Actually, Mass changes call FB02 in background and at this stage Validation gets activated and hence, the control doesn't go back for the next item changes. You can test this by deactivating the Validation and then the mass changes will me fine.
    I hope this explains the behaviour.
    Thanks and regards,
    Suresh Jayanthi.

  • Change Email subject line for PDF output through smartforms

    Dear all,
    Currently i am working in Client ECC6.and we are useing The Smartform for Sending PDF document to the Customer.
    Since recently email was setup so these invoices can be mailed directly to the customers, but we face the problem that when invoices are sent via email, the subject is like this.
    From: Ramesh Babu mailto:ramesh_babu@abc
    Sent: Wednesday, August 27, 2008 10:40 AM
    To: Babu, Ramesh
    Subject: New Invoice (mail/prnt).
    Now the customer Requirement is that ,they dont want to disclose the Email address of the sender.
    so they want to change the Form line and one hard codeed line always send to the customer like Ex below.
    From: "Help Me Please'' .
    This will aplicable for all sender ,if he send it by foreground or background as well.
    so could you please sugest me how can i do that coding,or is there a user-exit to overrule the Standard SAP behaviour.
    My Print program name: ZLB_BIL_INVOICE .
    Regards,
    Moni

    Hi,
    refer this,
    you can change the subject line.
    FORM docu_send_email USING pv_otfdata  TYPE tsfotf
                               pv_emailid  TYPE any
                               pv_formname TYPE any.
      DATA: lv_filesize    TYPE i,
            lv_buffer      TYPE string,
            lv_attachment  TYPE i,
            lv_testo       TYPE i.
      DATA: li_pdfdata  TYPE STANDARD TABLE OF tline,
            li_mess_att TYPE STANDARD TABLE OF solisti1,
            li_mtab_pdf TYPE STANDARD TABLE OF tline,
            li_objpack  TYPE STANDARD TABLE OF sopcklsti1,
            li_objtxt   TYPE STANDARD TABLE OF solisti1,
            li_objbin   TYPE STANDARD TABLE OF solisti1,
            li_reclist  TYPE STANDARD TABLE OF somlreci1,
            li_objhead  TYPE soli_tab.
      DATA: lwa_pdfdata  TYPE tline,
            lwa_objpack  TYPE sopcklsti1,
            lwa_mess_att TYPE solisti1,
            lwa_objtxt   TYPE solisti1,
            lwa_objbin   TYPE solisti1,
            lwa_reclist  TYPE somlreci1,
            lwa_doc_chng TYPE  sodocchgi1.
      CONSTANTS: lc_u           TYPE char1  VALUE 'U',
                 lc_0           TYPE char1  VALUE '0',
                 lc_1           TYPE char1  VALUE '1',
                 lc_pdf         TYPE char3  VALUE 'PDF',
                 lc_raw         TYPE char3  VALUE 'RAW',
                 lc_ordform     TYPE char15 VALUE 'ZORDCONFIRM_01',
                 lc_attachment  TYPE char10 VALUE 'ATTACHMENT'.
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          format                = lc_pdf
          max_linewidth         = 132
        IMPORTING
          bin_filesize          = lv_filesize
        TABLES
          otf                   = pv_otfdata
          lines                 = li_pdfdata
        EXCEPTIONS
          err_max_linewidth     = 1
          err_format            = 2
          err_conv_not_possible = 3
          err_bad_otf           = 4
          OTHERS                = 5.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      LOOP AT li_pdfdata INTO lwa_pdfdata.
        TRANSLATE lwa_pdfdata USING ' ~'.
        CONCATENATE lv_buffer lwa_pdfdata INTO lv_buffer.
        CLEAR lwa_pdfdata.
      ENDLOOP.
      TRANSLATE lv_buffer USING '~ '.
      DO.
        lwa_mess_att = lv_buffer.
        APPEND lwa_mess_att TO li_mess_att.
        CLEAR lwa_mess_att.
        SHIFT lv_buffer LEFT BY 255 PLACES.
        IF lv_buffer IS INITIAL.
          EXIT.
        ENDIF.
      ENDDO.
    Object with PDF.
      REFRESH li_objbin.
      li_objbin[] = li_mess_att[].
      DESCRIBE TABLE li_objbin LINES lv_attachment.
    Object with main text of the mail.
      lwa_objtxt = space.
      APPEND lwa_objtxt TO li_objtxt.
      CLEAR lwa_objtxt.
      DESCRIBE TABLE li_objtxt LINES lv_testo.
    Create the document which is to be sent
      lwa_doc_chng-obj_name  = text-008.
      lwa_doc_chng-obj_descr = text-008.
      lwa_doc_chng-sensitivty = lc_0.
      lwa_doc_chng-obj_prio = lc_1.
      lwa_doc_chng-doc_size = lv_testo * 225.
    Pack to main body.
      CLEAR lwa_objpack-transf_bin.
    header
      lwa_objpack-head_start = 1.
    The document needs no header (head_num = 0)
      lwa_objpack-head_num   = 0.
    body
      lwa_objpack-body_start = 1.
      lwa_objpack-body_num   = lv_testo.
      lwa_objpack-doc_type   = lc_raw.
      APPEND lwa_objpack TO li_objpack.
      CLEAR lwa_objpack.
    Create the attachment.
    Fill the fields of the packing_list for the attachment:
      lwa_objpack-transf_bin = gc_x .
    header
      lwa_objpack-head_start = 1.
      lwa_objpack-head_num   = 1.
    body
      lwa_objpack-body_start = 1.
      lwa_objpack-body_num   = lv_attachment.
      lwa_objpack-doc_type   = lc_pdf.
      lwa_objpack-obj_name   = lc_attachment.
      lwa_objpack-obj_descr  = text-008.
      lwa_objpack-doc_size =  lv_attachment * 255.
      APPEND lwa_objpack TO li_objpack.
      CLEAR lwa_objpack.
      lwa_reclist-receiver   = pv_emailid.
      lwa_reclist-rec_type   = lc_u.
      lwa_reclist-notif_del  = gc_x.
      lwa_reclist-notif_ndel = gc_x.
      APPEND lwa_reclist TO li_reclist.
      IF li_reclist IS NOT INITIAL.
        CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          EXPORTING
            document_data              = lwa_doc_chng
            put_in_outbox              = gc_x
          TABLES
            packing_list               = li_objpack
            object_header              = li_objhead
            contents_bin               = li_objbin
            contents_txt               = li_objtxt
            receivers                  = li_reclist
          EXCEPTIONS
            too_many_receivers         = 1
            document_not_sent          = 2
            document_type_not_exist    = 3
            operation_no_authorization = 4
            parameter_error            = 5
            x_error                    = 6
            enqueue_error              = 7
            OTHERS                     = 8.
        IF sy-subrc <> 0.
             MESSAGE ID sy-msgid TYPE 'I' NUMBER sy-msgno
                     WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      ENDIF.
    ENDFORM.                    " DOCU_SEND_EMAIL

  • MASS CHANGE IN SCHEDULE LINE DATE

    Hi All,
    Will u advise whether it is possible to change schedule line date in MASS
    Example. We are having make to order scenario. Sales order is prepared with 25 different line items with shipment date 10 th Feb. Out of these 25 items 10 items are ready by 20 th Jan. If we want to ship these goods on 20 th Jan. we have to change schedule line date item wise.
    Is there any way that we can make this change in a mass without changing delivery date of the sales order.
    Thanks
    Ravi

    V_V2 calls a program that can be 'customized' since it consist of 2 phases:
    1) selection phase
    2) rescheduling phase
    You can copy program SDV03V02 into a custom one and add your own selection criteria without altering the second part of it.
    I alreay made it and it works fine even when upgrading.
    regards
    Roberto Mazzali
    pls. reward if helpful

  • Mass change of Pgrp for open PO's

    Hi all,
    SRM 5.0 SP12,ECS
    We need to mass change the purchasing group for all open PO's in our system...Is that possible in SRM?
    Is there any std report which can do that??
    Thanks.

    Thanks Alex.
    Let me frame my question in another way...if there is no std report to change the purchasing group in all open PO's to a particular Purchasing group...then do I need to change the Purchasing group for each and every PO manually thoruigh CHANGE Mode in PROCESS PO transction?
    Experts,
    Any idea if SRM 7.0 has other ways of doing this??
    Thanks.

  • Mass change requisitioner in PR line items

    Hi, is it possible to do a mass change in PR line items? (specifically the Requisitioner column) One PR has like 50 line items.  How do we change the Requisitioner column easier and faster? thanks!

    Hi,
    Use T.Code MEMASSRQ
    Maruthi Reddy

  • Mass Change Function for Standard Templates

    Hi All,
    I am trying to use Mass Change Function to change one field value in my Standard project Definitions as well as Standard WBS Elements but its not doing.Is it that Mass change Function is only aplicable for Operative projects and not for Standard Templates?
    Expecting your response on this.
    Thanks and Regards,
      Harsh Shekhar.

    your observations are correct - mass change functions are only for oprative pojects and not for standard templates
    you can try LSMW

  • Mass change

    Hi,
    I need to perform a mass change of billing dates for billing documents. Is there any tcode for the same.
    Regards
    Ramesh

    Hi
    I have a requirement wherein i need to change the billing date for the billing documents which are not yet posted to accounting. I can get this from VFX3. How can i change the billing dates for several billing documents at one time. Is there any std SAP functionality to do this.
    A simple way which i could think of is to develop a BDC to do this.
    Kindly reply
    Thanks
    Ramesh Iyer

  • PO Mass Change

    Dear All,
    I need some inputs from you all regarding PO Mass change.
    In some for PO for my client the excise duty rates and CVD rates(in case of import PO has changed).
    Now i want to delete these PO and create new ones after coying them from previous one.
    So if i create new PO after copying it from previous one the old conditions are flowing in PO conditions and well as tax conditions.
    Can somebody help me.My need is to copy from previous PO but conditions should flow from condition record.
    Thanks
    Tushar.

    Hi,
    Thanks.Can u please provide me some details of the BAPI that u r using.
    We will try to develop same kind of BAPI for our client.
    thnx for the help.
    Regards,
    Tushar

  • MASS changes to billing documents

    Dear Gurus,
    I want to do mass changes to billing doc for any unimportant field so that ouput gets triggered once again. How can i do mass changes to billing documents (10,000 in number)
    I know mass outour issue through VF31 but that hasnt helped me.
    Thanks in advance,
    Regards.
    Rajesh

    I want to do mass changes to billing
       doc for any unimportant field
    Can you please be more specific as to what exactly you want to change ??  For information, during billing, in normal circumstances, we cannot make any changes excepting for quantity and that too based on your configuration settings.
    thanks
    G. Lakshmipathi

  • Mass changes to contracts

    Dear Experts,
    I am trying to use the transaction 'carry out mass changes to contracts', but after I am choosing the contract end press 'next', the system doesn't displays any parameters.
    Does anyone know what the problem is? Do I need to configure the system to display the parameters?
    Thanks and Regards,
    Yaron Malka, HP

    I want to do mass changes to billing
       doc for any unimportant field
    Can you please be more specific as to what exactly you want to change ??  For information, during billing, in normal circumstances, we cannot make any changes excepting for quantity and that too based on your configuration settings.
    thanks
    G. Lakshmipathi

  • Mass change in WBS element

    Hi friends,
    I want to use Mass change in WBS element for the Partner field in the Partner tab page. But when I am into the mass change screen, there is no option for this Partner field. What can be done for this? Please suggest.
    regards
    Pratap

    Hi,
    The Partner tab in project is visible only after assigning the Partner Schemas to the project profile in PartnDet.Proc field.
    I think Mass change can be done only to the fields that are already maintained by default.
    Thanks,
    Muzamil

Maybe you are looking for

  • Why and when can I use the "NotBoundException" in my RMI?

    why and when can I use the "NotBoundException" in my RMI?

  • Error In When Save Query

    Hello Experts, First we create a query in the query generater then goto save this then show me error. To generate this documents first defined the numeric series in the administration modules why showing this error ? Using SAP 2007 PL 0 with Licence

  • Object and class problem

    I have a homework assignment that i cant seem to figure out. I have to create a class that has an id, date when made, balance, interest rate (annually converted to monthly), be able to make a withdraw and show the new balance as well as make a deposi

  • Forcing a number to display without decimals or rounding

    I am performing a mathimatical calculation, and I want to use the result in another calculation. For exampl, my result may be 10.678. I want to use the number 10 in my next calculation, not 11 or 10.678. Is there a mask or function that will allow me

  • FORM 3.0

    I am still using Form 3.0 (about 200 forms), and planning to upgrade Oracle 8i. Can form 3.0 run on Oracle 8i ? null