Payment Advise - Email issue

hi
For payment advise ,  i have done configurtion in BTE to send mail to vendor. When i chkd the mail , there is no attachment found. Is it necessary to apply note 1033893 . If nt necessary what may be problem?
Is there any changes to be done in FM    SAMPLE_PROCESS_00002040? If any expert explain the process of sending mail in detail using BTE, it will be more useful.
Thanks in advance

Hi,
ABAP CODE
Email ITAB structure
DATA: BEGIN OF EMAIL_ITAB OCCURS 10.
        INCLUDE STRUCTURE SOLI.
DATA: END OF EMAIL_ITAB.
DATA: T_EMAIL LIKE SOOS1-RECEXTNAM.  "EMail distribution list
CONSTANTS: C_EMAIL_DISTRIBUTION LIKE SOOS1-RECEXTNAM VALUE
Initialization
REFRESH EMAIL_ITAB.
Populate data
EMAIL_ITAB-LINE = u2018Email body text 1u2019.
APPEND EMAIL_ITAB.
EMAIL_ITAB-LINE = u2018Email body text 2u2019.
APPEND EMAIL_ITAB.
T_EMAIL = C_EMAIL_DISTRIBUTION.
--- EMAIL FUNCTION ---------------------------------------------------
REQUIRMENTS:
1) The user running the program needs a valid email address in their
   address portion of tx SU01 under external comms -> SMTP -> internet
   address.
2) A job called SAP_EMAIL is running with the following parameters:
   Program: RSCONN01  Variant: INT   User: XXX
   This program moves mail from the outbox to the mail server using
   RFC destination: SAP_INTERNET_GATEWAY_SERVER
INTERFACE:
1) APPLICATION: Anything
2) EMAILTITLE:  EMail subject
3) RECEXTNAM:   EMail distribution lists separated by commas
4) TEXTTAB:     Internal table for lines of the email message
EXCEPTIONS:
Send OK = 0 otherwise there was a problem with the send.
    CALL FUNCTION 'Z_SEND_EMAIL_ITAB'
         EXPORTING
              APPLICATION = 'EMAIL'
              EMAILTITLE  = 'Email Subject'
              RECEXTNAM   = T_EMAIL
         TABLES
              TEXTTAB     = EMAIL_ITAB
         EXCEPTIONS
              OTHERS      = 1.
Function Z_SEND_EMAIL_ITAB
""Local interface:
*"       IMPORTING
*"             VALUE(APPLICATION) LIKE  SOOD1-OBJNAM
*"             VALUE(EMAILTITLE) LIKE  SOOD1-OBJDES
*"             VALUE(RECEXTNAM) LIKE  SOOS1-RECEXTNAM
*"       TABLES
*"              TEXTTAB STRUCTURE  SOLI
*- local data declaration
  DATA: OHD    LIKE SOOD1,
        OID    LIKE SOODK,
        TO_ALL LIKE SONV-FLAG,
        OKEY   LIKE SWOTOBJID-OBJKEY.
  DATA: BEGIN OF RECEIVERS OCCURS 0.
          INCLUDE STRUCTURE SOOS1.
  DATA: END OF RECEIVERS.
*- fill odh
  CLEAR OHD.
  OHD-OBJLA    = SY-LANGU.
  OHD-OBJNAM   = APPLICATION.
  OHD-OBJDES   = EMAILTITLE.
  OHD-OBJPRI   = 3.
  OHD-OBJSNS   = 'F'.
  OHD-OWNNAM   = SY-UNAME.
*- send Email
  CONDENSE RECEXTNAM NO-GAPS.
  CHECK RECEXTNAM <> SPACE AND RECEXTNAM CS '@'.
*- for every individual recipient send an Email
(see OSS message 0120050409/0000362105/1999)
  WHILE RECEXTNAM CS ','.
    PERFORM INIT_REC TABLES RECEIVERS.
    READ TABLE RECEIVERS INDEX 1.
    RECEIVERS-RECEXTNAM = RECEXTNAM+0(SY-FDPOS).
    ADD 1 TO SY-FDPOS.
    SHIFT RECEXTNAM LEFT BY SY-FDPOS PLACES.
    MODIFY RECEIVERS INDEX 1.
    PERFORM SO_OBJECT_SEND_REC
     TABLES TEXTTAB RECEIVERS
      USING OHD.
  ENDWHILE.
*- check last recipient in recipient list
  IF RECEXTNAM <> SPACE.
    PERFORM INIT_REC TABLES RECEIVERS.
    READ TABLE RECEIVERS INDEX 1.
    RECEIVERS-RECEXTNAM = RECEXTNAM.
    MODIFY RECEIVERS INDEX 1.
    PERFORM SO_OBJECT_SEND_REC
     TABLES TEXTTAB RECEIVERS
      USING OHD.
  ENDIF.
ENDFUNCTION.
      FORM SO_OBJECT_SEND_REC                                       *
FORM  SO_OBJECT_SEND_REC
TABLES  OBJCONT      STRUCTURE SOLI
        RECEIVERS    STRUCTURE SOOS1
USING   OBJECT_HD    STRUCTURE SOOD1.
  DATA:   OID     LIKE SOODK,
          TO_ALL  LIKE SONV-FLAG,
          OKEY    LIKE SWOTOBJID-OBJKEY.
  CALL FUNCTION 'SO_OBJECT_SEND'
       EXPORTING
            EXTERN_ADDRESS             = 'X'
            OBJECT_HD_CHANGE           = OBJECT_HD
            OBJECT_TYPE                = 'RAW'
            OUTBOX_FLAG                = 'X'
            SENDER                     = SY-UNAME
       IMPORTING
            OBJECT_ID_NEW              = OID
            SENT_TO_ALL                = TO_ALL
            OFFICE_OBJECT_KEY          = OKEY
       TABLES
            OBJCONT                    = OBJCONT
            RECEIVERS                  = RECEIVERS
       EXCEPTIONS
            ACTIVE_USER_NOT_EXIST      = 1
            COMMUNICATION_FAILURE      = 2
            COMPONENT_NOT_AVAILABLE    = 3
            FOLDER_NOT_EXIST           = 4
            FOLDER_NO_AUTHORIZATION    = 5
            FORWARDER_NOT_EXIST        = 6
            NOTE_NOT_EXIST             = 7
            OBJECT_NOT_EXIST           = 8
            OBJECT_NOT_SENT            = 9
            OBJECT_NO_AUTHORIZATION    = 10
            OBJECT_TYPE_NOT_EXIST      = 11
            OPERATION_NO_AUTHORIZATION = 12
            OWNER_NOT_EXIST            = 13
            PARAMETER_ERROR            = 14
            SUBSTITUTE_NOT_ACTIVE      = 15
            SUBSTITUTE_NOT_DEFINED     = 16
            SYSTEM_FAILURE             = 17
            TOO_MUCH_RECEIVERS         = 18
            USER_NOT_EXIST             = 19
            X_ERROR                    = 20
            OTHERS                     = 21.
  IF SY-SUBRC <> 0.
    RAISE OTHERS.
  ENDIF.
ENDFORM.
      FORM INIT_REC                                                 *
FORM INIT_REC TABLES RECEIVERS STRUCTURE SOOS1.
  CLEAR RECEIVERS.
  REFRESH RECEIVERS.
  MOVE SY-DATUM  TO RECEIVERS-RCDAT .
  MOVE SY-UZEIT  TO RECEIVERS-RCTIM.
  MOVE '1'       TO RECEIVERS-SNDPRI.
  MOVE 'X'       TO RECEIVERS-SNDEX.
  MOVE 'U-'      TO RECEIVERS-RECNAM.
  MOVE 'U'       TO RECEIVERS-RECESC.
  MOVE 'INT'     TO RECEIVERS-SNDART.
  MOVE '5'       TO RECEIVERS-SORTCLASS.
  APPEND RECEIVERS.
endform.
pls chk this links. they have some threds they may solve your problem
BTE-process 2040 email payment advice to Vendors
Business Transaction Event
http://help.sap.com/saphelp_nw04/helpdata/en/08/48f340dda3702ae10000000a155106/frameset.htm
thanks
karthik

Similar Messages

  • Payment advise by email

    Hi,
    We have activated sending the payment advise by email through BTE 2040.
    The system is properly sending the email to the intended recepient after we run F110. This is fine.
    Now our client want a copy of this mail to be available in the SAP OUTBOX of the user who runs F110.
    How to configure this.
    Regards
    Raghu Ram

    Dear Raghu
    SOST is a transaction used to monitor emails which are going through internet.
    In your case if you wish to send payment advice through email to vendor after F110 and also a copy to the user who is executing F110 , then u have to make some changes (abap coding) to the standard functin module.
    The standard function module is SAMPLE_PROCESS_00002040. Please take help of abaper to modify the same so that you can send a duplicate email to any other mailbox.
    Thanks
    Sanjeev

  • Payment Advise By Email  or FAX

    Can any one tell me how to send Payment Advise by email or Fax.
      My req is, first i have find out the payment advise pgm or t-code and then how to send that by email.
      Pls give t-code and where i can find the option to send email.
    Thanks in advance.
    Kumar

    Checkout
    http://www.le.ac.uk/mis/docs/sapdocs/ug/UG3-5%20Rem%20Advice.doc
    http://sap.ittoolbox.com/groups/technical-functional/sap-r3-acct/remittances-for-cheques-667467#
    Pl..award the points
    Thanks
    Saquib

  • Email - payment advise

    hi
    For payment advise ,  i have done configurtion in BTE to send mail to vendor. When i chkd the mail , there is no attachment found. Is it necessary to apply note 1033893 . If nt necessary what may be problem?
    Is there any changes to be done in FM    SAMPLE_PROCESS_00002040? If any expert explain the process of sending mail in detail using BTE, it will be more useful.
    Thanks in advance

    hi
    For payment advise ,  i have done configurtion in BTE to send mail to vendor. When i chkd the mail , there is no attachment found. Is it necessary to apply note 1033893 . If nt necessary what may be problem?
    Is there any changes to be done in FM    SAMPLE_PROCESS_00002040? If any expert explain the process of sending mail in detail using BTE, it will be more useful.
    Thanks in advance

  • PMW (Payment Medium Workbench) and needs to send Payment Advises to Vendor

    Hi SAP Gurus,
    We are using PMW (Payment Medium Workbench) and our client needs to send Payment Advises through mail. After running F110 system should trigger mail to vendor for payment advise.
    We have created one DME format and it's working fine.  DME file is getting generated when we assign DME format to our payment method.
    we have also made the change for payment advice sending through email. Copy FM SAMPLE_PROCESS_00002040 to ZSAMPLE_PROCESS_00002040
    Go to transaction FIBF
    Settingsprocess modules of an SAP application
    Add a new entry for 00002040 FI-FI ZSAMPLE_PROCESS_00002040
    Make use of FM  ZSAMPLE_PROCESS_00002040  for adding vendor email address and make the payment medium.
    Now the problem is, we can not do this in one go, if we need to create DME file than we have to assign DME format to our payment method and if we have to send payment advice to our vendor than we need to use Payment Medium Program RFFOGB_T (standard program).  It's radio button and we can not choose both the program and Payment Medium Workbench.
    I need your valuable advice what need to be done in order to get DME file and payment advice send to vendor in one go.
    many thanks for your reply.
    regards,
    SATVIR SINGH

    Hi Stavir,
    Do you recall how were you able to resolve this issue?
    Thanks
    M

  • Payment Advise for Vendors

    Dear SAP Gurus and ABAP Gurus ,
    My client want a payment advise which is complete history of the transactions, i will explain below,
    They have verious payment terms,
    They have various debits to vendors,
    They have Liquidated Damages, Retention and other things also,
    They are also doing clearing the line items in Residual mode,
    When finaly any payment is made to a vendor for any single or  multiple bill
    Payment advise History should mention  the Purchase order Number, Migo Number Bill Number , Bill date, Invoice Amount, TDS Amount , LD Deduction, any other deduction
    in One line,
    How to progress this information/ payment advise,
    thanks in advance,
    regards
    NK

    With smart forms i have dropped the idea as it is not that flexible as script..
    if am not wrong~
    I have resolved it and have done the needful for printing the cheques and Payment Advices... in scripts with any kind of printer.. using Scripts.
    Any one dealing with FI ABAP having any kind of issues with the Payments advices and cheques can always ping me for any doubts...
    payment advices ,
    cheque printing,
    vendor aging,
    customer aging,
    brs upload program,
    Service tax reports,
    TDS reports,
    vendor master upload,
    customer master upload,
    gl balance upload,
    NCR Report,
    and some co Reports..
    these are some of the things where  i have masterd for now..
    any one i need of these can always get in touch...
    cheers and all the best.. to be a brilliant ABAPER...
    Raj ([email protected])

  • PAYMENT ADVISE IN PDF FORMAT AIND E MAIL

    Hi,
    Our client requirement is as follows:
    1. Once  run payment made  in F110,  the  payment  advise note  has to  go to vendor  in PDF format as well as  person responsible to  run f110.
    What are configuration require and where it has to  maintained etc.
    Could you please any body help us to  solve the above issue
    With regards,
    V.k

    Hi,
    The following is the configuration for email generation.
    Hello,
    Go to transaction code FIBF
    Settings ==> Process Modules ==> ... of an SAP Application
    Process: 00002040
    Ctr: Blank
    Appl.: FI-FI
    Function Module: SAMPLE_PROCESS_00002040
    You can copy the function module to "Z" function module and modify it accordingly. Then you can use your customized FM here.
    If you are using the standard FM, then the mail gets triggered to the email address on the Vendor Master "General Data" Tab page. If you want to change this, then your ABAPer needs to change the FM accordingly. There is no option of sending the same payment advice to multiple email addresses. If you need this then accordingly the ABAPer needs to incorporate the logic in FM (like the user email addres will be picked up from the User master data in SU01)
    Hope you are conversant with FBZP settings and executing F110 with proper variants.
    Please let me know if you need further help;
    Regards,
    Ravi

  • ICloud Email Issue: Messages sent to same account

    Issue:
    When sending an email from my (personal-email)@me.com to the same account, with an attachment, email doesn't show up on any devices, even Apple mobile devices.
    Troubleshooting Attempts:
    - Sending emails on iMac machine with attachments from (personal-email)@me.com to (personal-email)@me.com ISSUE PERSISTS
    - Sending emails on MacPro machine with attachments from (personal-email)@me.com to (personal-email)@me.com ISSUE PERSISTS
    - Sending emails on Mabook Pro machine with attachments from (personal-email)@me.com to (personal-email)@me.com ISSUE PERSISTS
    - Sending emails on iPhone 4 device with attachments from (personal-email)@me.com to (personal-email)@me.com NO ISSUE (All Devices Recieve)
    - Sending emails on iPad 2 device with attachments from (personal-email)@me.com to (personal-email)@me.com NO ISSUE (All Devices Recieve)
    - Sending emails on iCloud.com with attachments from (personal-email)@me.com to (personal-email)@me.com ISSUE PERSISTS
    - Re-setup (personal-email)@me.com account on all devices ISSUE PERSISTS
    - Turned Push on/off on all devices ISSUE PERSISTS
    Additional Observations:
    - All devices are able to send emails without attachments to the same email without any issue.
    - When an attachment is added, the message can only be found in the 'Sent Messages' folder on each device (Besides those sent from my mobile platforms)
    - All devices are able to send emails without attachments to the same email without any issue.
    Devices and Versions (In order of Frequency of Use):
    iMac Quad-Core i7 - OS X Lion (Up-to-Date)
    MacPro 12-Core - OS X Lion (Up-to-Date)
    Macbook Pro 15" i7 - OS X Lion (Up-to-Date)
    iPhone 4 - iOS 5.1.1 (Up-to-Date)
    iPad 2 - iOS 5.1.1 (Up-to-Date)
    Possible Issue Defining Variables:
    (Note: All other devices where up-to-date before the following occured
    - I have recently moved my mobile me account to iCloud (On the last day possible to do so)
    - After moving to iCloud, I immidiately updated my Snow Leopard iMac to the most up to date OS X Lion.
    Hopefully this details out all the things you may need to help me out. I can't go into an Apple story due to the amount of different devices I have.
    Be advised, this issue isn't loyalty deterring, as much as it is annoying. This used to work before moving to iCloud, if it can be fixed, that would be awesome.
    Thanks,
    VV

    Issue:
    When sending an email from my (personal-email)@me.com to the same account, with an attachment, email doesn't show up on any devices, even Apple mobile devices.
    Troubleshooting Attempts:
    - Sending emails on iMac machine with attachments from (personal-email)@me.com to (personal-email)@me.com ISSUE PERSISTS
    - Sending emails on MacPro machine with attachments from (personal-email)@me.com to (personal-email)@me.com ISSUE PERSISTS
    - Sending emails on Mabook Pro machine with attachments from (personal-email)@me.com to (personal-email)@me.com ISSUE PERSISTS
    - Sending emails on iPhone 4 device with attachments from (personal-email)@me.com to (personal-email)@me.com NO ISSUE (All Devices Recieve)
    - Sending emails on iPad 2 device with attachments from (personal-email)@me.com to (personal-email)@me.com NO ISSUE (All Devices Recieve)
    - Sending emails on iCloud.com with attachments from (personal-email)@me.com to (personal-email)@me.com ISSUE PERSISTS
    - Re-setup (personal-email)@me.com account on all devices ISSUE PERSISTS
    - Turned Push on/off on all devices ISSUE PERSISTS
    Additional Observations:
    - All devices are able to send emails without attachments to the same email without any issue.
    - When an attachment is added, the message can only be found in the 'Sent Messages' folder on each device (Besides those sent from my mobile platforms)
    - All devices are able to send emails without attachments to the same email without any issue.
    Devices and Versions (In order of Frequency of Use):
    iMac Quad-Core i7 - OS X Lion (Up-to-Date)
    MacPro 12-Core - OS X Lion (Up-to-Date)
    Macbook Pro 15" i7 - OS X Lion (Up-to-Date)
    iPhone 4 - iOS 5.1.1 (Up-to-Date)
    iPad 2 - iOS 5.1.1 (Up-to-Date)
    Possible Issue Defining Variables:
    (Note: All other devices where up-to-date before the following occured
    - I have recently moved my mobile me account to iCloud (On the last day possible to do so)
    - After moving to iCloud, I immidiately updated my Snow Leopard iMac to the most up to date OS X Lion.
    Hopefully this details out all the things you may need to help me out. I can't go into an Apple story due to the amount of different devices I have.
    Be advised, this issue isn't loyalty deterring, as much as it is annoying. This used to work before moving to iCloud, if it can be fixed, that would be awesome.
    Thanks,
    VV

  • What is a AR payment advise?

    What is a AR payment advise? on what occasions we issue a customer payment advise? is it part of FBZP and F110? or is it part of some thing else?
    Thank you in advance.
    Bushan

    The only payment advice i have heard of on AR side is when the customer pays u the amount and payment advice has the details of the invoices paid. if customer is paying u for 23 invoices together they will send the payment advice that they r paying for the said invoice/s. It is sometimes used in case when the payment is received via EDI. If you have the payment advice# then there is no need of the customer/vendor number field for clearing.
    SAP HELP:
    Payment Advice Number
         Key of a payment advice for which the accompanying open items are to be
         processed.
    Use
         Fast selection of items which are listed in a payment advice. Residual
         items and payments on account are created automatically if there are
         differences between the payment advice and the open items.
    Procedure
         Enter the number of the payment advice for which you want to select the
         open items. Other selection specifications are ignored when you enter a
         payment advice number.
         If you specify a payment advice number, it is not necessary to enter the
         account number of the customer or vendor. The account number is
         transferred automatically from the payment advice. If you manage a large
    number of payment advices in the system, specifying the account can
    speed up the process.
    You do not have to specify the payment advice number in full. You can
    use the asterisk "*" to search for a generic entry.

  • Payment Advise error while uploading Lock box

    Hi,
    i am getting the below error in FBL1 transaction code. I am able to upload the lock box in FBL2 transaction with Appllied status. After that when i execute FBL1 transaction i am getting the below error related to Payment Advise. Kindly help me to fix this issue...
    Payment advice 010000000700001 does not exist for account 237059 1000
    Thanks
    Kishore

    Once the incoming payment is applied and the invoice is cleared the system would delete the payment advice immediately and you would get this error from FLB1, this is standard.

  • Biller Direct Customer's Payment Advise

    Hi,
    I am having an issue with Biller Direct (BD). The customer creates the payment advise in BD (starting with 09) and it is available in SAP with FBE3 and in BD showing the invoices to be paid and the amounts. It also shows any credits that the customer is using for the payment. Then when the payment is processed by Lockbox, the payment advise information in BD and SAP is deleted. The Lockbox report shows that the system created a  new payment advise (starting with 01), but I have not found the way to see the new payment advise.
    The issue is when the customer disputes a payment, I have no way to see the original payment advise created by the customer to show the customer that the payment was applied according to the payment advise they created. Is there a way to see the original payment advise, does the system keep a history for the payment advises?
    Thank you in advance for your help

    Hi Manish,
    I tried to search but I guess there is no OSS note/SAP fix for this issue.
    Our client wants to implement it in our project.
    So, I was thinking is it possible to do it? I mean technically from ABAP enhancements? Or is it simply impossible to achieve this and I would be wasting time on it.
    Can you please help a bit?
    Regards,
    Shweta

  • Payment Advise multiple banks RFFOUS_T

    Hi,
    We have a scenario( USA Payroll )  where we have payment( salary ) going to main bank and other bank. SAP standard process( RFFOUS_T) generates two payment advise in this case.
    We only need one payment advise. Please advise.
    Thanks.

    Hi,
    Please review and apply note 1169009: Reversal of note 1145334 - multiple payment advices.
    The note will solve the issue.
    Thanks,
    Daniela.

  • PDF based payment advise

    Hi
    In our scenario, for EDI payments (BACS) system should generate payment advise in PDF format and same should be sent to vendor by mail.  For EDI Payments I have configured payment method 'E' - BACS Transfer and attached Payment Medium Work Bench GB_BACS.  I am able to generate DME file and normal payment advise (not pdf format) also.  But the payment advise I need it in PDF format.
    1. Is there any configuration I have to do to get Payment Advise in PDF format.
    2.  If I need to send these PDF advises generated by F110 to the vendor through mail what configuration should be done.

    Hi Bhramam,
    My client wants to use the Payment method "E" that is GB_BCAS.
    Could you please let me know the procedure to create payment media worbench by using GB_BACS.
    If you have any documentation, please send the same to my mail id: [email protected]
    Thanks in Advance.
    Regards,
    Prasad

  • IMessages and email issues

    I cannot receive iMessages and I cannot access my email. Can I still downgrade to iOS 6.1.4?  I had no issues with that version

    Thanks again.
    There is a listing for Theme in settings which gives the 3 options "Theme controlled, Combined and Separate for sms, mms and email.  I and the store have tried this option which sadly did not work, in fact it removed all remaining messages from my message folder; they are still there, but only accessible from the sms inbox folder which you have to navigate to via view folder option.  The store recommended contacting Blackberry directly as well as the forum sites for advice as they have never seen this happen before.  They also advised that if no fix was possible then to back up my files and restore to original settings and start again.
    I have since removed the battery from the device and then replaced it to see if that helped.  The device appears to have rebooted and sms messages are now showing in my message folder.  However, I still cannot receive my emails.  I have decided to remove my email accounts from the phone and then reinstate them and hope that will rectify any conflicting issues.
    Thank you for your time, it has been very appreciated and helpful.  I will let you know if this resolves the email issues.  I know it is probably not the correct way to fix but if it works then it is worth a shot.
    Denis

  • Payment notification emails not working

    Suddenly this morning I am not receiving payment notification emails.  I received 2 payments... no emails came in. I checked my PayPal account and in the profile, notifications, I can't select the email notification for "receive a payment" – it says "this isn't available". What's going on? thanks 

    Same issue here. I have not been getting ANY e-mails from PayPal after shipping for at least 2 weeks. I called yesterday, and they once again said that this is a widespread issue and they are looking to correct it. It's frustrating finding tracking information manually without the e-mails in my outlook box.  I have bungled 2 or 3 orders because of this issue.

Maybe you are looking for

  • Is there a way to create subfolders in my POP inbox?

    Is there a way to create subfolders in a POP Inbox in Mail? I am using Mail 2.1.1 (752.3).

  • Movie with special features won't play

    My sister sent me a movie that she purchased on her iTunes account and it sent completely to my iTunes.  It is a movie with extended features.  When I opened it in my iTunes it goes to a page that says "play", "chapters", "features", "more".  I am ab

  • How to create publishing custom approval workflow will assign approvers.

    Hi All, I am new in sharepoint development. I have a page library where we add artical page with different department I want to create publishing custom approval workflow will assign approvers based on what department is selected for display.  The de

  • PO Tolerance limit at PO Header level.

    Hi Firends, Over Tolerance upto 15% of PO Quantity at Item Level, at the same time i need to  restrict  5% of PO Quantity at header Level to be given in Service Orders and Material Purchase Orders. In SAP we have option for tolerance for quantity at

  • How to get an output type as default?

    Hi all! We have one output type (NEU) as default for our Purchase order printout.But as per our new requirement we have created one more output type with a few modifications. So , these two output types should be shown as default so that users ' ll