Attaching a document along with payment advice during F110

Hi All,
when i run F110 all payments with payment mode 'T'(telegraphic) are mailed to the respective vendors and all payments with mode 'K'(Credit) are displayed in the spool(SP01).
Now the requirement is that the contract of the vendor(contract document is attached in the vendor master-FK02) should also me mailed along with the payment advice.
I created a Z-program(copied from RFFOEDI1) which downloads this contract document from vendor master onto the desktop and then uploads this and sends it to the customer.
However when i do this the mail request for the contract document is being generated(as can be seen in the send requests list (t-code SOSG) and the mail also gets triggered when i process it in SCOT), but no mail request is being generated for the payment advice  .
Also no spool for payment advices with payment mode 'K' is generated in SP01.
Any help is appreciated and will be rewared generously.
Thanks in advance.
Najam
I am attaching the part of code i have inserted -
REPORT RFFOEDI1.
INCLUDE ZDWNLD_ATTA. 
   F110ID-LAUFD   = ZW_LAUFD.
   F110ID-LAUFI   = ZW_LAUFI.
   F110ID-OBJKT   = KON_PARAM.
PERFORM  F_MAIL_CONTRACT.
  INSERT T012D-EDIPN INTO HEADER.
AT SELECTION-SCREEN ON PAR_WFOR.
  IF PAR_WFOR NE SPACE.
    SET CURSOR FIELD 'PAR_WFOR'.
    CALL FUNCTION 'FORM_CHECK'
      EXPORTING
        I_PZFOR = PAR_WFOR.
  ENDIF.
FORM F_MAIL_CONTRACT .
   F110ID-LAUFD   = ZW_LAUFD.
   F110ID-LAUFI   = ZW_LAUFI.
   F110ID-OBJKT   = KON_PARAM.
  IMPORT SLKTAB FROM DATABASE RFDT(FB) ID F110ID.
  READ TABLE SLKTAB INDEX 1.
  IF SY-SUBRC = 0.
    W_LIFNR = SLKTAB-VONKT.
  ENDIF.
CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
  EXPORTING
    INPUT         = W_LIFNR
IMPORTING
   OUTPUT        = W_LIFNR .
*Get vendor Email Address
SELECT SINGLE * FROM LFA1 WHERE LIFNR = W_LIFNR.
IF SY-SUBRC = 0.
  SELECT SINGLE * FROM ADR6 WHERE ADDRNUMBER = LFA1-ADRNR.
ENDIF.
W_RECIPIENT = ADR6-SMTP_ADDR.
PERFORM DOWNLOAD_ATT USING W_LIFNR.
PERFORM UPLOAD_ATT_SEND_MAIL USING W_RECIPIENT LTP_FILENAME .
ENDFORM.                    " F_MAIL_CONTRACT
FORM DOWNLOAD_ATT  USING    P_W_LIFNR.
SO_INSTI = P_W_LIFNR.
SELECT * FROM SRGBTBREL INTO TABLE TA_SRGBTBREL
  WHERE INSTID_A =  SO_INSTI
    AND TYPEID_A = SO_TYPID
    AND CATID_A  = SO_CATID.
IF SY-SUBRC EQ 0.
   SORT TA_SRGBTBREL BY INSTID_A TYPEID_A CATID_A.
   DELETE ADJACENT DUPLICATES FROM TA_SRGBTBREL
     COMPARING INSTID_A TYPEID_A CATID_A.
   LOOP AT TA_SRGBTBREL INTO WA_SRGBTBREL.
     PERFORM PROCESS_ATTACHMENTS
     USING  WA_SRGBTBREL-INSTID_A
            WA_SRGBTBREL-TYPEID_A
            WA_SRGBTBREL-CATID_A.
   ENDLOOP.
ENDIF.
ENDFORM.                    " download_att
FORM UPLOAD_ATT_SEND_MAIL  USING    P_W_RECIPIENT
                                    P_LTP_FILENAME.
RECEIVER = P_W_RECIPIENT.
PERFORM ML_CUSTOMIZE USING 'Tst' 'Contract'.
PERFORM ML_ADDRECP USING RECEIVER 'U'.
PERFORM UPL.
PERFORM DOCONV TABLES I_ITAB OBJBIN.
PERFORM ML_PREPARE USING 'X' EXTENSION NAME.
PERFORM ML_DOSEND.
FORM ML_CUSTOMIZE  USING    OBJNAME
                            OBJDESC.
CLEAR DOCDATA.
REFRESH OBJPACK.
CLEAR OBJPACK.
REFRESH OBJHEAD.
REFRESH OBJTXT.
CLEAR OBJTXT.
REFRESH OBJBIN.
CLEAR OBJBIN.
REFRESH OBJHEX.
CLEAR OBJHEX.
REFRESH RECLIST.
CLEAR RECLIST.
REFRESH LISTOBJECT.
CLEAR LISTOBJECT.
CLEAR TAB_LINES.
CLEAR DOC_SIZE.
CLEAR ATT_TYPE.
DOCDATA-OBJ_NAME = OBJNAME.
DOCDATA-OBJ_DESCR = OBJDESC.
ENDFORM.                    " ml_customize
FORM ML_ADDRECP  USING   PRECEIVER PREC_TYPE.
CLEAR RECLIST.
RECLIST-RECEIVER = PRECEIVER.
RECLIST-REC_TYPE = PREC_TYPE.
APPEND RECLIST.
ENDFORM.                    " ml_addrecp
FORM UPL .
FILE_NAME = LTP_FILENAME.
CALL FUNCTION 'GUI_UPLOAD'
EXPORTING
  FILENAME = FILE_NAME
  FILETYPE = 'BIN'
TABLES
  DATA_TAB = I_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.
PATH = FILE_NAME.
CALL FUNCTION 'PC_SPLIT_COMPLETE_FILENAME'
EXPORTING
COMPLETE_FILENAME = PATH
IMPORTING
EXTENSION = EXTENSION
NAME = NAME
EXCEPTIONS
INVALID_DRIVE = 1
INVALID_EXTENSION = 2
INVALID_NAME = 3
INVALID_PATH = 4
OTHERS = 5.
ENDFORM.                    " upl
FORM DOCONV TABLES MYPDF STRUCTURE TLINE
                   OUTBIN STRUCTURE SOLISTI1.
DATA : POS TYPE I.
DATA : LEN TYPE I.
LOOP AT MYPDF.
POS = 255 - LEN.
IF POS > 134. "length of pdf_table
POS = 134.
ENDIF.
OUTBIN+LEN = MYPDF(POS).
LEN = LEN + POS.
IF LEN = 255. "length of out (contents_bin)
APPEND OUTBIN.
CLEAR: OUTBIN, LEN.
IF POS < 134.
OUTBIN = MYPDF+POS.
LEN = 134 - POS.
ENDIF.
ENDIF.
ENDLOOP.
IF LEN > 0.
APPEND OUTBIN.
ENDIF.
ENDFORM.                    " doconv
*&      Form  ml_prepare
      text
FORM ML_PREPARE USING BYPASSMEMORY WHATATT_TYPE WHATNAME.
IF BYPASSMEMORY = ''.
CALL FUNCTION 'LIST_FROM_MEMORY'
TABLES
LISTOBJECT = LISTOBJECT
EXCEPTIONS
OTHERS = 1.
IF SY-SUBRC EQ 0.
MESSAGE ID '61' TYPE 'E' NUMBER '731'
WITH 'LIST_FROM_MEMORY'.
ENDIF.
CALL FUNCTION 'TABLE_COMPRESS'
TABLES
IN = LISTOBJECT
OUT = OBJBIN
EXCEPTIONS
OTHERS = 1
IF SY-SUBRC EQ 0.
MESSAGE ID '61' TYPE 'E' NUMBER '731'
WITH 'TABLE_COMPRESS'.
ENDIF.
ENDIF.
*Packing Info For Text Data
DESCRIBE TABLE OBJTXT LINES TAB_LINES.
READ TABLE OBJTXT INDEX TAB_LINES.
DOCDATA-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
CLEAR OBJPACK-TRANSF_BIN.
OBJPACK-HEAD_START = 1.
OBJPACK-HEAD_NUM = 0.
OBJPACK-BODY_START = 1.
OBJPACK-BODY_NUM = TAB_LINES.
OBJPACK-DOC_TYPE = 'TXT'.
APPEND OBJPACK.
*Packing Info Attachment
ATT_TYPE = WHATATT_TYPE..
DESCRIBE TABLE OBJBIN LINES TAB_LINES.
READ TABLE OBJBIN INDEX TAB_LINES.
OBJPACK-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJBIN ).
OBJPACK-TRANSF_BIN = 'X'.
OBJPACK-HEAD_START = 1.
OBJPACK-HEAD_NUM = 0.
OBJPACK-BODY_START = 1.
OBJPACK-BODY_NUM = TAB_LINES.
OBJPACK-DOC_TYPE = ATT_TYPE.
OBJPACK-OBJ_NAME = 'ATTACHMENT'.
OBJPACK-OBJ_DESCR = WHATNAME.
APPEND OBJPACK.
ENDFORM.                    " ml_prepare
*&      Form  ml_dosend
      text
-->  p1        text
<--  p2        text
FORM ML_DOSEND .
CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
EXPORTING
  DOCUMENT_DATA = DOCDATA
  PUT_IN_OUTBOX = 'X'
  COMMIT_WORK = 'X' "used from rel. 6.10
TABLES
  PACKING_LIST = OBJPACK
  OBJECT_HEADER = OBJHEAD
  CONTENTS_BIN = OBJBIN
  CONTENTS_TXT = OBJTXT
  RECEIVERS = 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 EQ 0.
*MESSAGE ID 'SO' TYPE 'S' NUMBER '023'
*WITH DOCDATA-OBJ_NAME.
*ENDIF.
ENDFORM.                    " ml_dosend

Hi,
As far as I remember there are no direct ways in SAP do to that.
One suggestion. Create a custom program to send emails and save it with a variant in DME (the last Tab in F110). This is the same place where you maintain the details for sending out the EDI information.
Once you are done with F110, you can carry out the print functionality to execute the program to send out emails with the payment advice.
hope this helps.
Regards

Similar Messages

  • Move documents along with its version through workflow

    hi
    suggest which of the 2 ways is possible through Designer workflow,
    1)can i move a document along with its version to another library where same settings are enabled.
    2)can i move a document from a library and add as a new version to another item present in another library.
    Thanks 

    Hi Krishna,
    When you move a document to another library by a SharePoint Designer Workflow, the version history is
    not maintained. This behavior is by design, because the version history of a document is relative
    to its original document library. The moved document is considered as a new document in
    the destination library.
    The only solution is to move the documents via Windows Explorer or through Manage Content & Structure.
    Open the two document libraries in Windows Explorer and move your files from source to destination or move your files through Manage Content & Structure.
    The Manage Content & Structure feature is only available in Enterprise edition.
    NOTE: The version will be maintained if you MOVE the files. If the files are COPIED
    it will not maintain the version.
    Please remember to click 'Mark as Answer' if the reply answers your query or 'Upvote' if it helps you.

  • Payment advices in F110 to be sent by email (PDF format) - step by step

    Hi SDN,
    We have a requirement to automatically send payment advices in F110 via email. The requirement is to send the file in PDF format. I've done a lot of browsing through in the forums, as well as check SAP notes, but none has really detailed a step by step process on how to go about it.
    I've also checked SAP NOTE 836169, but it is also not that detailed.
    Assuming that SCOT has been already set up by BASIS, I've done the following steps to test if the auto-email works, and here are the steps I did.
    1. Vendor Master Data -Define u2018Std communication methodu2019 as SMTP (Internet mail) and maintain an email address in the vendor master data.
    3. T-Code BERP u2013 Code to find the relevant BTE. Use the Selection Attribute to browse for your business area. In my case, it is AP-Payment Transactions hence FI-AP-AP-PT.
    00002040 is the relevant process. This is a Function called SAMPLE_PROCESS_00002040. In this case, the FM only checks for an email address in the Vendor Master. If more logic is required a Z-version would need to be created.
    4. Use t-code FIBF to create the enhancement.
    a) Create a product.
    A product groups together customer enhancements to BTEu2019s developed in the customer's namespace. All customer enhancements assigned to a certain customer product can be released with the Activate Customer Product indicator. The OPEN_FI function module for a certain customer enhancement cannot find the corresponding customer function modules, until this has been done.
    Create the product name (for example ZMAIL) and make it active.
    FIBF->Settings->Products->u2026of a Customer
    b) Assign the BTE to the FM:
    Settings->Process Modules->u2026of a customer
    Assign the 00002040 process to the FM and Product.
    5. Run the autopayment program F110.
    After I run the following steps, no email is being generated by the system. Is there anything that I still need to do? Or could anybody please kindly provide a step-by-step process? I'm a functional person, so I won't be able to do ABAP programming for this. Thanks and regards to all

    Hello,
    Check SCOT and SOST transactions.
    At a previous client using 4.6C we did a program and allocated it in F110.  The program reviewed the payment tables and sent the payment advice (basic list) to the employee vendors. 
    Also check http://wiki.sdn.sap.com/wiki/display/sandbox/SendMailwithPDFAttachment
    Regards
    Waza

  • How to generate payment advice in F110 and send it to Vendors Via Email

    Dear SAP Experts
    Could anybody tell me how to generate payment advice in F110 and send it to Vendors Via Email?
    It would be much appreciated if someone can provide the configuration procedure, thanks so much in advance.
    Cheers & Best Regards
    Ray

    Hi Sama,
    Thanks for your post, here I just share some of my idea.
    The following step is to configure the payment advice.
    In OBVU (payment methods in cpy code) I entered my payment advice form
    In OBVU (payment methods in cpy code)  set  "Always pyt advice"
    In OBVCU (payment method by country)  leave the payment medium program (RFFOD__T)
    For the email sending program, should develp some customized program to realize that, Thanks.
    Cheers & Best Regards
    Ray

  • Automatic Clearing with Payment Advice via EDI

    I am trying to automate the cash application process via the receipt of the customer inbound 820 (using message type REMADV, type PEXR2002).  I can successfully post payment, clear open items, and set up deductions relating to a specific invoice, but I haven't been able to post deductions unrelated to an invoice.  Our customers often take deductions not related to a specific invoice at the same time as remitting payment for invoices.  Has anyone managed to post 'independent' deductions when posting a payment advice via EDI?
    I also have one small problem selecting the customer open item for clearing.  Our billing document number does not equal the financial accounting document number.  We store our billing document number in the Assignment field, and this is the number the customer will reference when remitting payment.  I have not been able to find a way to use the customer's reference number (e.g. Assignment field) to select the open item.  Has anyone had any success using the Selection Rule assigned to the payer to select open items by something other than the accounting document number?  Or is this functionality only available for manual processing of payment advices.
    Any advice would be greatly appreciated!
    Thank-you,
    Shauna

    Hi Kirti,
    We are in the process of implementing incoming payments through EDI 820. However we are getting the below error when we generate the IDOC.
    Formatting error in the field BKPF-WAERS ; see next message
        Message no. 00298
    Diagnosis
        During batch input or when executing CALL TRANSACTION... USING a screen
        field was filled with an invalid input format.
    System Response
        Processing was terminated.
    Procedure
        The screen field has the technical name BKPF-WAERS . The cause of the
        error is described in the following message.
        Correct  the appropriate BDC data."
    We tried to debug and but we got below
    In the 1st screen, the currency/ rate field comes up as blank. The value u2018USDu2019 was entered manually by me.
    The Amount comes as blank as well u2013 hence the transaction shows an warning message that the line will be ignored because of the 0 amount
    Lastly the following screen shows up and stops with the error message.
    "Different Currencies in payment advice and document header /USD.
    Any help is highly appreciated.
    Thanks in advance
    Krishna

  • Send E-mail with payment advice to several address

    Hi Experts
    In our company in USA we set a payment through ACH, for it we need to send a payment advice to the vendor after we run process in F110, that process is run properly but the problem is we need to send some mails to more than one receiver, and the option to input it is in vendor master data, but at the moment to send e-mail the system only send mail to first address, some one have idea can I do for send to several address???
    Thanks

    HI,
    I am assuming that you are using BTE 2040 or 2050 to achieve this. Instead of using the sample FM provided by SAP for this BTE, copy it to a Y/Z FM and then you can modify it accordingly.
    My suggestion would be to create a custom table for the email addresses and pick the additional email addresses from there in conjugation with the Vendor master.
    Regards

  • Unable to do F-30 (Post with Clearing) with Payment Advices. Error "F5A144"

    Hi,
    While I am trying to do F-30 using Payment Advices, it is giving an error message "F5A144 - The residual items amount execeed the original invoice amount and a cash discount amount is active n the item".
    NOTE: For the invoices that it is trying to clear, has Cash Discount applicable and the RESIDUAL AMOUNT IS NOT > INVOICE AMOUNT.  We are able to post in Development & Quality but not in PRODUCTION.
    Thanks in advance for all your help

    Hi,
    Please check the below OSS notes:-
    [https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1320584]
    Regards,
    Gaurav

  • Bank reference  in payment advice after F110 program

    Dear Expert,
    We have created z program to get the payment details in bank format after running F110 in RTGS/NEFT format. Excel file will be sent to bank. Bank will update in their system.
    Bank will confirm the payment made through online to client with bank reference.
    I want to update bank reference in payment advice which will send by email to vendor.
    How to update bank reference after confirmation received by bank in payment advice ? and email after bank confirmation ( not after running F110)
    is there any work around to do so ?
    points will be rewarded.
    Thanks
    Sampat

    Hello Venkat,
    There are 2 methods ,where Banker directly send payment advice along with Bank ref after making the payment or you can do the bank reco everday end & update bank ref in any of the field in reconcialation document and map accordingly in payment advice
    Regards
    Mani

  • Issue regarding subject length in mail for payment advice through F110

    Hello,
    We need to send the vendor payment advice by mail to a vendor. To attain the functionality we have used the BTE 2040 and BTE 2050 (to change the mail subject). This is working fine. mail is being sent to the vendor as a PDF attachment with the new subject.
    The issue is that, the length of the subject is greater than 50 characters, but the TDTITLE field where the new subject is set is 50 characters, how to increase that ? Is there a way through code or any note available.
    Also we need to send email to vendors as we as a fixed id, but that fixed is should be set in the CC of the mail.
    Any help in this issue will be appreciated.
    Thanks and Regards,
    Sachin

    Thanks for the response.
    i believe the requirement can not be fulfilled.
    Regards
    Sachin

  • Payment Advice transaction F110.

    Hi All,
    I have copied and modified the form F110_IN_AVIS. From transaction F-43 I am creating a document and from transaction F110 running payment advice.The form is working fine in development but in quality it is not picking data from REGUH table.The company code is CMY and payment method is D and T .When again tested in development same problem is there,data is not getting picked up.There is no changes in configuration side. The payment advice is send as mail to the clerks email id in the vendor correspondance accounting.Now the mail is also not getting generated,but the data is getting entered in REGUH. The print program is RFFOEDI1.
    Please guide why the data is not getting picked up and how to resolve it.
    Thanks,
    Niketa

    Hi
    Once form is attached to Program and it worked once in Devlopment and not working in Quality means nothing wrong from the form point of view
    There should be some misunderstanding between F-43 and F110 transactions from functional point of view, so that the data is not getting transfered from F-43 to F110.
    So take the help of the functional consultant in this regard and solve it.
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Seperate payment advice for F110 run

    Hello,
    I am using TX f110 for automatic payment processing. The config is done based on PMW with SAPLFPAYM_US program and not the classical RFFO* programs. I need to generate an email to vendor after the payment run, for this i used BTE 2040 in RFFOAVIS_PAYM, which is in the print/datamedium tab in F110. When i do the payment run I am getting a following message and no payment advice is generated.
    Program RFFOAVIS_FPAYM: No records selected F0 073.
    Please suggest what am I missing and how to overcome this problem.

    Hi Atif,
    How to control flagging of reguh-xavis? PMW documentation shows that RFFOAVIS_FPAYM can be used to print payment advices, but for some reason its not happening in F110, I am sure I am missing something but not able to figure out. I will check in FBPM for the same. Will RFFOAVIS_FPAYM be called even if I generate payment medium in FBPM?

  • Payment Advice customizing - F110

    Hello Together,
    We are developing a custom payment advice sapscript form for use with the standard (RFFO*) payment programs - through transaction F110. We have assigned the new form in FBZP (payment methods per company code - form for the payment medium), and are using the same variant for the payment program. However, when executing a payment run and printing the paymetn advice slip, a standard form is being printed (we suspect F110_DE_AVIS, although in the log there is no way of seeing which form is being used)
    Could you tell me if there are any additional customizing points where I should assign the new form for it to be printed?
    Thanks gurus,
    Stephen

    Hi Stephen,
    Please Check if you have done correctly the settings in this IMG path :
    SPRO > Financial Accounting (New) > Accounts Receivable and Accounts Payable > Business Transactions > Outgoing Payments > Automatic Outgoing Payments > Payment Media > Make Settings for Classic Payment Medium Programs
    Regards.

  • Printing payment advice in F110

    Hi all,
    I configured F110 in such a way that NO payment medium is created, so what it does now is that it selects my vendor line items and automatically clears them. For all cleared vendors I want to generate a payment advice. Again, without the need for a payment medium to be created.
    What I have already done:
    - In OBVU (payment methods in cpy code)  I set "Always pyt advice"
    - In OBVCU (payment method by country) I left the payment medium program (RFFO*) EMPTY
    - In OBVU (payming cpy codes) I entered my payment advice form
    When I run F110 it works fine including the clearing, but NO payment advices are generated. When I execute RFFOAVIS it say "no record selected".
    My questions:
    1) It is generally possible to use F110 WITHOUT generating a payment medium/using an RFFOxxxx program and print an advice ONLY?
    2) The description of RFFOAVIS is that it prints advices for accounts with a 0 BALANCE, is this the correct program at all for printing "nomal" payment advices?
    3) Anyone an idea why else no advices are generated?
    Thanks!
    Rene

    Hi,
    Yes, it is possible to send payment advices notes with payment media program with out payment media.
    In payment method for country you have to assign payment media program. Payment advice form should be assigned for your paying company code in FBZP.
    In report variant for your payment media program under print control Select u2018print payment advice notesu2019 only.
    Thanks!
    Raju

  • Payment advices through F110

    Hi All,
    Reg: Payment advices, I have the below doubt.
    In FBZP, we have Paying company code-->Forms.
    Here we can assign a SAP script.This as the help text shows, is meant for Payment advice.
    In F110, in Printout/data medium in lists, we have the option to enter a program.
    If this is linked to a form, that can also generate payment advices.
    So just wanted to know, which is the correct way and which is the procedure that should be used to generate
    payment advices.

    Hi Rudra,
    You need to mention the Form name for Payment Advice in FBZP as well as the program name.
    It is standard coding in the program to go and check the Form name in FBZP> Paying Company Codes>Forms>Form for the payment Advice. So there is a purpose for both..
    Please note, the Program is not printing the payment advice.. it is in the form and program reads the form name from the node and outputs the Payment advice..
    Hope it clarifies..
    Regards,
    SAPFICO

  • Sending some document along with transport

    Hi one and all.
    I got one requirement , the requirement is that how can we <b>attach a file</b> or some <b>document</b> along <b>with the transport</b>.
    Plz any one respond to this.Those who replied will b rewarded.
    Thanks in Advance.
    Regards
    Sudheer

    Hello Sidheer,
    You can maintain documentation for particular change request and then you can transport to the target system (but not as an attachment). Please contact your Basis guy for more details.
    Regards
    Arif Mansuri

Maybe you are looking for

  • Purchase Order Reporting date

    All, My understanding is that for PO's the Document date is used for reporting (like for Invoices). While this works fine for Invoices, the Document date for PO's does not provide in my opinion the true depiction of spend (should be on the basis of D

  • Upgrade WebDB 2.2 to Portal Fails with Invalid Sys password

    I am upgrading from WebDB 2.2.0.0.5 all the way to the latest 3.0.9xx. My database is 8172. I am at the point where you run the 306 upgrade script. It makes it through renaming all the webdb objects to UPG_<OLD_NAME> but then fails with an invalid sy

  • Unhappy with Yosemite's "new" Pages? Or the "new" photos?

    ME TOO! I cannot tell you how much Yosemite's version of Pages *****. Here's why: It has been redesigned to work more like the mobile version. Bad idea right out of the box. Think about it. No matter how handy it may be on occasion to do a simple car

  • How to escape bluecove preverify error on mobile with javaFX?

    Hi all, I'm finding a problem with an application that runs for a standard execution but not on mobile emulator. I am having the following error at execution. Error preverifying class com.intel.bluetooth.btgoep.Connection java/lang/NoClassDefFoundErr

  • Remmina protocol plugin VNC is not installed

    After today's remmina update from 1.0.0-12 to 1.1.1-2 I find that remmina outputs "Remmina protocol plugin VNC is not installed" when it starts and when I click on any of my VNC hosts. I've been using remmina for ages without issue. I can't find any