Mail attachment (.csv) to File (.csv)

Hi mates,
I have a requirement where I have to pick the attachment(.csv format) of an incoming mail and store this file ( in .csv format)onto a file server using  a reciever file adapter.
Please suggest how can i go about it ?

Jai,
After changing the transfer mode from text to Binary.
The XI system is creating a file but the data inside that file is junk. For e.g :
  "  "$"#,##0.00_);[Red]("$"#,##0.00)  7 * 2  ("$"* #,##0);_("$"* (#,##0);_("$"* "-"_);_(@_)  . ) )  (* #,##0);_(* (#,##0);_(* "-"_);_(@_)  ? , :  ("$"* #,##0.00);_("$"* (#,##0.00);_("$"* "-"??_);_(@_)  6 + 1  (* #,##0.00);_(* (#,##0.00);_(* "-"??_);_(@_)à       õÿ            À à       õÿ   ô        À à       õÿ   ô        À à       õÿ   ô        À à       õÿ   ô        À à       õÿ   ô        À à       õÿ   ô        À à       õÿ   ô        À à       õÿ   ô        À à       õÿ   ô        À à       õÿ   ô        À à       õÿ   ô        À à
This looks like when you open a CSV file in a notepad.
Please help how can i format this data so that it lokks like normal comma seperated form.

Similar Messages

  • Java Mapping: payload as mail attachment and dynamic file name .

    Hi,
    I have written this piece of java code.
    The code includes XPATH for fetching dynamic filename and the copysource( in, out ) to copy the content of payload as mail attchment.
    The code seems to work fine, when either of the functionality is implemented.
    but when both are implemented together ie parsing for xpath then again parsing to copy payload, then it doesnt executes the latter path i.e the payload is not fetched in the attachment.
    public class MailPackage implements StreamTransformation {
      public void setParameter(Map map) {
      public void execute(InputStream in, OutputStream out)
              throws StreamTransformationException {
      String mailSubject = "test mail";
      String mailSender = "aaaaaaaa";
      String mailReceiver = "[email protected]";
      String attachmentName = null;
      DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    DocumentBuilder builder = null;
      factory.setNamespaceAware(false);
    factory.setValidating(false);
         try {
              builder = factory.newDocumentBuilder();
         Document doc = null;
          doc = builder.parse(in);
              String XPATH ="/*/Invoice/InvoiceHeader/InvoiceNumber/text()";
              Node fieldValueNode = org.apache.xpath.XPathAPI.selectSingleNode(doc,XPATH);
              System.out.print(fieldValueNode);
              attachmentName = fieldValueNode.getNodeValue() +".xml";
      String boundary = "--";
      String mailContent = "This is a sample file";
      String CRLF = "\r\n";
        //     create XML structure of mail package
        String output ="<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
               + "<ns:Mail xmlns:ns=\"http://sap.com/xi/XI/Mail/30\">"
               + "<Subject>" + mailSubject     + "</Subject>"
               + "<From>" + mailSender     + "</From>"
               + "<To>" + mailReceiver     + "</To>"
               + "<Content_Type>multipart/mixed; boundary=\"" + boundary + "\"</Content_Type>"
               + "<Content>";
        out.write(output.getBytes());
        // create the declaration of the MIME parts
        //First part
        output = "--" + boundary + CRLF
               + "Content-Type: text/plain; charset=UTF-8" + CRLF
               + "Content-Disposition: inline" + CRLF + CRLF
               + mailContent + CRLF
        //Second part
        + "--" + boundary + CRLF
        + "Content-Type: application/xml; name=" + attachmentName + CRLF
        + "Content-Disposition: attachment; filename=" + attachmentName + CRLF + CRLF;
        out.write(output.getBytes());
        //Source is taken as attachment
        copySource(in, out);
        out.write("</Content></ns:Mail>".getBytes());
      } catch (Exception ie) {
        throw new StreamTransformationException(ie.getMessage());
    protected static void copySource(InputStream in, OutputStream out)throws IOException {
        byte[] bbuf = new byte[in.available()];
        int bblen = in.read(bbuf);
       if (!(bblen < 0)) {
          String sbuf = new String(bbuf);
           //replace all control characters with escape sequences
         sbuf = sbuf.replaceAll("&", "&amp;");
         sbuf = sbuf.replaceAll("\"", "&quot;");
         sbuf = sbuf.replaceAll("'", "&apos;");
        sbuf = sbuf.replaceAll("<", "&lt;");
        sbuf = sbuf.replaceAll(">", "&gt;");
        out.write(sbuf.getBytes());
    Povide your suggestions.

    Hi,
    This is the sample o/p that I get by opening the mail attachment using notepad.
    <?xml version="1.0" encoding="UTF-8"?>
    <InvoiceTransmission><InvoiceTransmissionHeader><InvoiceCreationDate>2008-12-03T00:00:00</InvoiceCreationDate><Version>2.0.2</Version></InvoiceTransmissionHeader><Invoice><InvoiceHeader><CustomerEntityID>LH</CustomerEntityID><IssuingEntityID>009140559</IssuingEntityID><InvoiceNumber>913353669</InvoiceNumber><InvoiceIssueDate>2008-12-03</InvoiceIssueDate><InvoiceType InvoiceTransactionType="OR">INV</InvoiceType><InvoiceDeliveryLocation>aaa</InvoiceDeliveryLocation><TaxInvoiceNumber>Not Applicable</TaxInvoiceNumber><InvoiceCurrencyCode>USD</InvoiceCurrencyCode><InvoiceTotalAmount>517174.63</InvoiceTotalAmount><InvoiceIDDetails InvoiceIDType="BT"><InvoiceIDVATRegistrationNumber>0000000000</InvoiceIDVATRegistrationNumber><InvoiceIDName1>aaaaaaaaaaaaaaa</InvoiceIDName1><InvoiceIDName2>bbbbbbHKG</InvoiceIDName2><InvoiceIDCity>ccccccccc ccccc</InvoiceIDCity><InvoiceIDCountryCode>HK</InvoiceIDCountryCode></InvoiceIDDetails><InvoiceIDDetails InvoiceIDType="II"><InvoiceIDVATRegistrationNumber>0000000000</InvoiceIDVATRegistrationNumber><InvoiceIDName1>eeeeeeee</InvoiceIDName1><InvoiceIDName2>PAY BY WIRE TRANSFER</InvoiceIDName2><InvoiceIDCity>fffffffffffffff, NA</InvoiceIDCity><InvoiceIDCustomField ID="1"><InvoiceIDCustomFieldDescription>Company Registration Number</InvoiceIDCustomFieldDescription><InvoiceIDCustomFieldValue>0000000000</InvoiceIDCustomFieldValue></InvoiceIDCustomField></InvoiceIDDetails></InvoiceHeader><SubInvoiceHeader><InvoiceLine><ItemNumber>001</ItemNumber><ItemQuantity><ItemQuantityType>IN</ItemQuantityType><ItemQuantityFlag>GR</ItemQuantityFlag><ItemQuantityQty>28134.000</ItemQuantityQty><ItemQuantityUOM>USG</ItemQuantityUOM></ItemQuantity><ItemQuantity><ItemQuantityType>DL</ItemQuantityType><ItemQuantityFlag>GR</ItemQuantityFlag><ItemQuantityQty>106498.775</ItemQuantityQty><ItemQuantityUOM>LT</ItemQuantityUOM></ItemQuantity><ItemDeliveryReferenceValue ItemDeliveryReferenceType="DTN">590365</ItemDeliveryReferenceValue><ItemDeliveryReferenceValue ItemDeliveryReferenceType="!
    ARN">DAL
    CH</ItemDeliveryReferenceValue><ItemDeliveryReferenceValue ItemDeliveryReferenceType="FNO">mmmmmmmmm</ItemDeliveryReferenceValue><ItemDeliveryLocation>pppp</ItemDeliveryLocation><ItemReferenceLocalDate
    If you notice the problem is, the undesired "exclamation mark" that gets added in some fields before the actual value.
    In the above case.. look at "ItemDeliveryReferenceType="! ARN">DAL"
    the exclamation mark before value "ARN is unwanted, which leads to improper XML formation.
    Cant figure out why is this coming.
    Regards,
    Faria Mithani

  • How can I create a mail attachment without a file suffix?

    Hi,
    I'm trying to create anl attachment without a suffix.
    Here is my code:
                   TextPayload attAnlFile = msg.createTextPayload();
                   attAnlFile.setName("File");
                   attAnlFile.setContentType("");
                   attAnlFile.setText("Test");
                   msg.addAttachment(attAnlFile);
                   inputModuleData.setPrincipalData(msg);
    I get a file named "File.bin", but i need a file, which is only named "File".
    Can anyone help me?
    Thanks a lot
    BR
    Ralf

    Hi Ralf,
    Ref: Receiver Mail Adapter
    The attachements are given a .bin extension by default. To change this , the procedure is available in the Mail Adapter FAQ : 856599
    Q: Can I choose the name of an attachment in the mail?
    A: Yes. Most mail clients use some heuristics based on some MIME headers to derive the name of an attachment. The MIME headers involved in most heuristics are Content-Type, Content-Description, and Content-Disposition. When you create an XI message, the XI payload name is automatically set in the Content-Description. If you want to change or set all of these headers, you can use the MessageTransformBean module (Note 793922) in the adapter framework.
    Related questions: How can I set the file name of a mail attachment?
    Q: How can I set the file name of a mail attachment?
    There are several MIME headers that play a role in how the client retrieves the file name of an attachment. Unfortunately, this behavior differs among various mail clients. The reason for this inconsistent behavior comes from the fact that this mechanism has been extended incrementally. The old way is to use the name parameter in the Content-Type header as specified in RFC1341. For example, you can set the content type of an XML attachment as:
    Content-Type: application/xml; name="abc.xml"
    RFC1521 discourages the use of this name parameter in anticipation of the new header Content-Disposition, which is defined in RFC1806.
    With this Content-Disposition header, you can set the file name as:
    Content-Disposition: attachment; filename="abc.xml"
    Some clients may show the Content-Description value as the file name. The Content-Description header is typically used to associate some descriptive information to an attachment (RFC1341) as in
    Content-Description: my xml file
    To avoid potential interpretation problems, it is recommended to combine the use of these headers.
    Also, the same note contains all info you wnat on the options of the mail adapter. Take a look at it.
    Regards,
    Jai Shankar

  • Sending mail attachment as XML file

    Hi Experts,
    I have a XML in an ITAB.
    I want to send this data as a mail attachment, any body help, if any one have sample code please send me.
    Thanks,
    Regards
    Venkat

    hi
    chk the sample code
    REPORT ZMAIL_XLS NO STANDARD PAGE HEADING.
    Data for mailing purpose
    DATA: OBJPACK LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER
    LINE.
    DATA: OBJHEAD LIKE SOLISTI1 OCCURS 1 WITH HEADER
    LINE.
    DATA: OBJBIN  LIKE SOLISTI1 OCCURS 10 WITH HEADER
    LINE.
    DATA: OBJTXT  LIKE SOLISTI1 OCCURS 10 WITH HEADER
    LINE.
    DATA: RECLIST LIKE SOMLRECI1 OCCURS 5 WITH HEADER
    LINE.
    DATA: DOC_CHNG  LIKE SODOCCHGI1.
    DATA: TAB_LINES LIKE SY-TABIX.
    Data required for preparing XLS type attachment
    DATA: V_TABS     TYPE X VALUE '09',
          V_NEW_LINE TYPE X VALUE '0D'.
    START-OF-SELECTION.
    Prepare data to send
      PERFORM PREPARE_DATA.
    Send mail with XLS attachment
      PERFORM SEND_MAIL.
    *&      Form  send_mail
    form send_mail.
    Creation of the document to be sent
      DOC_CHNG-OBJ_NAME = 'TEST'.
      DOC_CHNG-OBJ_DESCR = 'TEST MAIL WITH XLS
    ATTACHMENT'. "mail subject
      OBJTXT = 'Test mail with XLS attachment'.
      APPEND OBJTXT.
      CLEAR OBJTXT.
      APPEND OBJTXT.
      APPEND OBJTXT.
      OBJTXT = 'Please double click the attachment to
    verify'.
      APPEND OBJTXT.
      DESCRIBE TABLE OBJTXT LINES TAB_LINES.
      READ TABLE OBJTXT INDEX TAB_LINES.
      DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 +
    STRLEN( OBJTXT ).
    Creation of the entry for the compressed document
      CLEAR OBJPACK-TRANSF_BIN.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM   = 0.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM   = TAB_LINES.
      OBJPACK-DOC_TYPE   = 'RAW'.
      APPEND OBJPACK.
      DESCRIBE TABLE OBJBIN LINES TAB_LINES.
      OBJHEAD = 'Sample XLS attachement'. "
      APPEND OBJHEAD.
    Creation of the entry for the compressed attachment
      OBJPACK-TRANSF_BIN = 'X'.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM   = 1.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM   = TAB_LINES.
      OBJPACK-DOC_TYPE   = 'XLS'.
      OBJPACK-OBJ_NAME   = 'TEST'.
      OBJPACK-OBJ_DESCR  = 'Test.XLS'.
      OBJPACK-DOC_SIZE   = TAB_LINES * 255.
      APPEND OBJPACK.
    Completing the recipient list
    For sending mail to Internet Address
    RECLIST-RECEIVER = '[email protected]'.
    RECLIST-REC_TYPE = 'U'.
    For sending mail to SAP user ID
    RECLIST-RECEIVER = 'fing087'.
    RECLIST-REC_TYPE = 'B'.
      APPEND RECLIST.
    Sending the document
           CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
                EXPORTING
                     DOCUMENT_DATA = DOC_CHNG
                     PUT_IN_OUTBOX = 'X'
                TABLES
                     PACKING_LIST  = OBJPACK
                     OBJECT_HEADER = OBJHEAD
                     CONTENTS_BIN  = OBJBIN
                     CONTENTS_TXT  = OBJTXT
                     RECEIVERS     = RECLIST
                EXCEPTIONS
                     TOO_MANY_RECEIVERS         = 1
                     DOCUMENT_NOT_SENT          = 2
                     OPERATION_NO_AUTHORIZATION = 4
                     OTHERS                     = 99.
          CASE SY-SUBRC.
            WHEN 0.
              WRITE  :/ 'MAIL SENT....'.
            WHEN 1.
              WRITE  :/ 'TOO MANY RECEIVERS'.
            WHEN 2.
              WRITE  :/ 'DOCUMENT NOT SENT'.
            WHEN 4.
              WRITE  :/ 'NO SEND AUTHORIZATION'.
            WHEN OTHERS.
              WRITE  :/ 'ERROR OCCURED WHILE SENDING
    MAIL'.
          ENDCASE.
    endform.                    " send_mail
    *&      Form  PREPARE_DATA
    FORM PREPARE_DATA.
      CONCATENATE 'NAME'
                  'ADDRESS'
                  'PHONE'
              INTO OBJBIN-LINE
              SEPARATED BY V_TABS.
      APPEND OBJBIN.
      CLEAR  OBJBIN.
      CONCATENATE  'Hajira'
                   'MIG-2022'
                   '23025487'
                   INTO OBJBIN-LINE SEPARATED BY V_TABS.
      CONCATENATE V_NEW_LINE  OBJBIN-LINE INTO
    OBJBIN-LINE .
      APPEND OBJBIN.
      CLEAR  OBJBIN.
      CONCATENATE  'Faiz'
                   'MIG-2022'
                   '23025487'
                   INTO OBJBIN-LINE SEPARATED BY V_TABS.
      CONCATENATE V_NEW_LINE  OBJBIN-LINE INTO
    OBJBIN-LINE .
      APPEND OBJBIN.
      CLEAR  OBJBIN.
    ENDFORM.                    " PREPARE_DATA
    **reward if helpful
    regards,
    madhumitha

  • Got E-mail Attachment (.xls Excel file), then import data to Database

    Dear All,
    I have a project need to do above mention function.
    how to do that automatically ?
    Database is Oracle 10g running on RH AS 4.0 Linux.
    Best regards
    boris

    Dear All,
    Tks for yr reply first,
    My meanings is process it automatically & no need thru client to do that.
    i think the solution as below : -
    1) partner send e-mail to mailbox with attahcment.
    2) software can get a mail then extract attachment & allocation to somewhere folder in db server
    3) execute command for import data from file to database.
    did u know any solution or third party software can do that ?
    best regards
    boris

  • I was configured my mail id in ipad whether i have  open the mail the mail attachment like XLS files does not open and i have already download the payable Application Excell After that also it doesnot opening.either i have open then i cant save

    i am tryng to open the Attached xls file in the mail but i cant save that file in to a specified location also thats my problem please sugest a solution for that

    Having the same problem. Click mail, it bounces, a quick flash, then nothing. Also as a side note, Entourage as of this morning will no longer send mail to either of my work accounts, that is why I was trying mail. Also tried several other mail programs and the same result, can receive mails, but not send.
    Have reset the router, cable modem, checked that I have the latest MS and Apple software loaded and it is all good. Very strange.
    Ron

  • Mail attachment in jpg file requires photo paper on eprint

    Hello,
    I am using an HP Photosmart 7510,printer. I have just configured eprint and I tried by sending by eprint a mail with a jpg attachment. The printer requires me to put photo paper into the printer. The problem is that if the attachment is in jpg format, it is not a format but just a scan of a page...
    Does somedoby know how to solve this?
    Regards

    Hello,
    Try adding the picture into the email content (Insert > Picture) and not as an attachment.
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Cant open any attachment or downloaded file with any office 365 for small bussines

    I cant open any e-mail attachment or downloaded file of any kind with any application in office 365 for small bussines. Since I need it for bussiness need help NOW. Thank you.

    Hi,
    Did you get any error message when you tried opening or downloading the attachment?
    Are you viewing attachments in Outlook Web App or Outlook desktop client? If you were using OWA when this issue happened, please have a look at this KB article and see if it applies:
    https://support.microsoft.com/kb/2852113
    Since this forum focus more on Office desktop client side questions, if it's an OWA issue in Office 365, I'd recommended you post a question in the Office 365 Community forum:
    http://community.office365.com/en-us/f/default.aspx
    The reason why we recommend posting appropriately is you will get the most
    qualifiedpool
    of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    If I've misunderstood something, please feel free to let me know.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Address Book NOT accepting csv.txt file as import from EARTHLINK web mail

    Greetings. Unsuccessful thus far in importing e-addresses from Earthlink Web Mail to MAC Address Book. Found preferences and saved Earthlink addresses as csv.txt file but AB rejected as not true csv. Apple suggested conversion to V cards but could not find that option in Earthlink-ville. Perused Allan's post on synching with Total Access but fear accidentally installing stuff on my MACbook Pro from that application that is unneccessary or will screw up my new MAC world. Although in the long run, having Web mail back up my MAC makes sense. (Work and husband remain PC/ XP.)
    Any solutions you can offer will be much appreciated.
    Macbook Pro   Mac OS X (10.4.9)  

    Thanks again. Okay, I pasted a portion of the csv file . I might be mistaken here, but I don't think these are V card format and perhaps converting them to V cards is what I'd have to do. But I would need pretty explicit directions.
    Regards,
    Andrea
    "First Name","Last Name","Middle Name","Name","Nickname","E-mail Address","E-mail 2 Address","E-mail 3 Address","Home Street","Home City","Home Postal Code","Home State","Home Country/Region","Home Phone","Home Fax","Mobile Phone","Personal Web Page","Business Street","Business City","Business Postal Code","Business State","Business Country/Region","Business Web Page","Business Phone","Business Fax","Pager","Company","Job Title","Department","Office Location","Notes"
    "[email protected]","","","[email protected]","","[email protected]","","","","" ,"","","","","","","","","","","","","","","","","","","","",""
    "Thomas","Brown","","Thomas Brown","","[email protected]","","","","","","","","","","","","","","",""," ","","","","","","","","",""
    "Bob","Nash","","Bob Nash","","[email protected]","","","","","","","","","","","","","","","", "","","","","","","","","",""

  • Download file send directly to mail attachement

    Hi All,
    We are working on Forms11g, Reports11g and Oracle11g DB in AIX Env. Our Client Systems are in Windows7.
    My Req. is : Once the user download a report in CSV File , that will go to mail attachment directly..
    please guide us anybody share the solutions..
    gg

    hi
    Old thread................
    check the following.
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1833296200346975609

  • New line file .csv

    Hello,
    I need help.
    I want to send mail with an attachement; is a document .csv. The program is going to use in background.
    The problem is that I know the field separator ( but I don't how can i do to jump a line.
    My code is like that:
          text = CL_DOCUMENT_BCS=>string_to_soli( IP_STRING = lv_line ).
          attachment = cl_document_bcs=>create_from_text(
                                        i_text    = text
                                        I_DOCUMENTTYPE    = 'CSV'
                                        i_length  = '11'
                                        i_subject = 'attachment...' ).
         add (existing) attachment to main document
          CALL METHOD DOCUMENT->ADD_DOCUMENT_AS_ATTACHMENT
            EXPORTING
              IM_DOCUMENT     = attachment

    Hello again,
    I forgot this previous code of lv_line.
    lv_line = 'werks;bukrs\n1000;1000'
    I want to show in the file:
    WERKS  BUKRS
    1000       1000
    Thanks in advance

  • How to read .cvs(excel file) in mail attachment

    Hi,
    I'm using java mail to read the attachment in mail. The attachment are excel file which is in .csv format.
    I'm able to save the attachment to my hard drive which is in .dat format. i tried to use MimeUtility.decodeText() to decode it back to .csv format but it doesn't work.
    Anyone have any suggestion on how to decode it back to the previous format?
    thanks

    POI

  • Unable to open CSV format files

    Hi , Iam using Blackberry Z3 handset . But unable to opening the files in CSV format files .
    Please help me

    Hi and Welcome to the Community!
    Refer:
    Article ID: KB35546 BlackBerry 10 OS - Supported Attachement types
    It would appear that CSV is not a supported attachment format.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to populate budget files file_budget.csv and file_acct_budget.csv

    Hi, we have implemened Financial Analytics 7.9.5 on EBS system. We have successfully loaded all the Data except Budget information. Recently I came to know that there is no Budget ETL in ORAR12..and need to use Universal Adapator for populating the budget information.
    According to this guideline I'm supposed to populate file_budget.csv and file_acct_budget.csv files manually and start the extract. Now I'm having trouble filling these files. These files exoect many IDs to be filled in like ORG_ID etc..and documentation says these IDs shoule be same as one in Warehouse..I don't understand how to fill this. Has anybody done this already..if so please guide us how to fill these files and appreciate if you can post a sample record for each of these files.
    Thanks.

    You need to go to the corresponding dimensions and see how the integration_id is populated for this dimension. For this, you will have to open the corresponding SDE mapping in Informatica and trace back the integration_id. The document says which table's integration_id to look for, for each of the ids in the fact. For eg:
    GL_ACCOUNT_ID
    GL Account identifier. Populate with integration_id from w_gl_account_d.
    PRODUCT_ID
    Product identifier. Populate with integration_id from w_product_d.
    COMPANY_ORG_ID
    Company Org identifier. Populate with integration_id from w_int_org_d where company_flg = Y.
    For example, if w_gl_account_d's integration_id is formed from gl_code_combinations.code_combination_id in EBS, you need to populate the code_combination_id (from EBS) of your budget record, for each row in the budget fact csv file.

  • How can I create an csv/excel file using pl/sql and then sending that file

    How can I create an csv/excel file using pl/sql and then sending that file to a clients site using pl/sql?
    I know how to create the csv/excel file but I can't figure out how I would get it to the clients site.

    968776 wrote:
    How can I create an csv/excel file using pl/sql and then sending that file to a clients site using pl/sql?
    I know how to create the csv/excel file but I can't figure out how I would get it to the clients site.You are trying to do it at a wrong place..
    Whay do you want database (pl/sql) code to do these things?
    Anyhow, you may be interested in :
    {message:id=9360007}
    {message:id=9984244}

Maybe you are looking for

  • Oracle weblogic 12c problem

    Hello, After you install the 32bit version of Oracle WebLogic 12c , jdevstudio11115install (Windows 7 32 bit platform) . These actions come after the installation of the domain ADF 's and then completed the installation. I receive the following error

  • Connect old flat panel

    i have one of apple's original flat panels.  have not used it in over a decade.  i suspect it still works.  i need a panel to use with a first gen mac pro and i wonder if i can utilize this.  it has a 15 pin connector.  is there anything that will ma

  • HTML5 pack illustrator CS6?

    Is the HTML5 pack compatible with illustrator CS6? How can we export CSS from illustrator CS6?

  • Port creation?

    iam sending a data from 4.6c to 4.7,is it required to create two ports ? orone port is reqiured ?plzzzzzzzz tell me ?

  • How do I fix my Ipod it wont turn on and it wont even charge

    I put it down for a couple minutes when i came back to charge it it wont charge it will just stay black screen and when i try to turn it on it dosent show the symbol of the charger then the battery and i tryed the think where you push down the sleep