File attachments on orders

I would like to build an xml file from an order and attach it to that order in the CRM.
Just putting a few feelers out to see if it is worth pursuing. Does anyone know if this is possible?

You could put the XML as text into the order in a field, I'm quite sure you can't attach a file.

Similar Messages

  • Possible to print PO file attachments on the PO report? (R12)

    Hi All,
    Metalink Note:436308.1 (Do Text File Attached To Purchase Order Print on Purchase Order Report?) promises that functionality for printing PO file attachments on the PO report would be available in R12.
    Does anyone know if this functionality has been implemented, and if so, where is it documented? I have been looking but not finding. Grateful for your help, as always.
    Best Regards, Matilda Smeds

    Nagmohan, Matilda:
    The attachment documents with category "To Supplier" are being emailed .... but I cannot see the PO+Contract terms in the attachments on I-Supplier. I can see the PO+Contract terms in the View PDf functionality.
    When there are no attachment documents, I see the PO+Contract terms in the attachments as well as the View PDF. Why is this ?
    Is there anything else that needs to be setup here ?
    Yesh

  • How to remove file attachments using the SDK

    I am looking for ways to programmatically remove file attachments from work items.  If I recall correctly, the system only keeps the file for as long as the relationship exists, so that, in theory, the file is deleted from the database a soon as the
    relationship is removed.
    I found this
    Using the SDK to Create and Edit Objects and Relationships Using Type Projections
    Is this the only way or are the other, simpler ways for deleting relationships and/or file attachments?
    Is this something I could do with the Orchestrator Remove Relationship activity?
    A little background on this question: I have multiple different teams with varying data retention requirements for Service Requests.  My longest requirement is 3 years (audit) while most teams only require 90 days.  I was looking to add in some
    jobs for some more aggressive file attachment grooming to keep the database smaller.
    Thanks.

    The relationship is defined as a membership/containment relationship. So, yes, if you delete the relationship, the file attachment (and the associated blob) are deleted as well.
    Based on the background you described, I'm assuming you identify a bunch of work orders whose files you want to delete if they're older than X. So, for instance "Work Items with Y team; delete file attachments older than 90 days", "Work Items
    with Q team; delete file attachments older than 3 years". Is that right?
    If so, you don't necessarily need to delete relationships specifically...you can simply delete the file attachment objects which will delete the relationship, the file attachment object, and the associated blob (the file itself in the database).
    Using the SDK, you will not need type projections for this. You'll only need the work item object(s) (an incident or service request or whatever), the GetRelatedObjects<>() method, and an IncrementalDiscoveryData object.
    So, after you get all of the appropriate work items, you can use the following snippet to delete their file attachments if the attachments meet your age requirements
    //Connect to the management group
    String strMySCSMServer = "<my mgmt server>";
    emg = new EnterpriseManagementGroup(strMySCSMServer);
    IncrementalDiscoveryData idd = new IncrementalDiscoveryData();
    ManagementPackRelationship relWorkItemHasFileAttachment = emg.EntityTypes.GetRelationshipClass(new Guid("AA8C26DC-3A12-5F88-D9C7-753E5A8A55B4")); //System.WorkItemHasFileAttachment
    //Get the work item's related file attachments using it's Id
    Guid myWorkItemGuid = new Guid("<some work item guid>");
    IList<EnterpriseManagementObject> lstFileAttachments = emg.EntityObjects.GetRelatedObjects<EnterpriseManagementObject>(myWorkItemGuid, relWorkItemHasFileAttachment, TraversalDepth.OneLevel, ObjectQueryOptions.Default);
    //Loop through each file attachment
    foreach (EnterpriseManagementObject emoFile in lstFileAttachments)
    //Determine its age
    DateTime AddedDate = (DateTime)emoFile[null, "AddedDate"].Value;
    TimeSpan FileAttachmentAge = AddedDate.Subtract(DateTime.Now);
    //Prep the file attachment for deletion if it's old enough, in this example, older than 90 days
    if (FileAttachmentAge.Days > 90)
    idd.Remove(emoFile);
    //Submit the deletions to the database.
    idd.Commit(emg);

  • Can RD output be stored as media file attachments?

    Can anyone tell me if RD output can be stored as media file attachments so that, when running R42565 with BI Publisher, an invoice can be linked to the corresponding sales order in JDE?
    Edited by: 909590 on Jan 23, 2012 9:48 AM

    Hi Jan,
    That's what I thought... I guess we would just have to customize the UBE to generate a URL based on run-time variables or create a business function which can create a URL based on parameters and pointing to the archived invoice file. And then update the Sales Order attachment Media Object record in F00165 with the URL.
    Regards,
    Julieta

  • Problem with attaching file to Sales Order

    Hello,
    In my company we have the possibility to attach files to sales orders, e.g. pdf files with the printing details.
    These files are added by the GUI user, this works fine.
    Now we have an extra order creation stream in which a pdf file has to be added to the SO without user interaction.
    I found a helpful link ( /people/rammanohar.tiwari/blog/2005/10/10/generic-object-services-gos--in-background )
    This program creates URL links with no problem, but the file generation is not implemented yet.
    I tried to add the file functions to his sample report but still have one problem. The file is uploaded, but not reported as a PDF file in sap. If I select the created attachment SAP allows only the saving of the attachment. After saving the created file is a good PDF file, it opens with PDF-viewers.
    Why does SAP not know this is a PDF file and report it as such (and open the pdf viewer when selected).
    Thanks, Frank.
    source-code:
    REPORT  zzfb_brc                                .
    * Report  Z_RMTIWARI_ATTACH_DOC_TO_BO
    * Written By : Ram Manohar Tiwari
    * Function   : We need to maintain links between Business Object and
    *              the attachment.Attachment document is basiclally a
    *              business object of type 'MESSAGE'.In order to maintain
    *              links, first the attachment will be crated as Business
    *              Object of type 'MESSAGE' using Message.Create method.
    *              Need to check if we can also use FM
    *              'SO_DOC_INSERT_WITH_ORIG_API1' or SO_OBJECT_INSERT rather
    *              than using Message.Create method.
    * I took this program and removed all the parts for adding URL's and
    * notes.
    * Include for BO macros
    INCLUDE : <cntn01>.
    * Load class.
    CLASS cl_binary_relation DEFINITION LOAD.
    CLASS cl_obl_object      DEFINITION LOAD.
    PARAMETERS:
    *  Object_a
       p_botype LIKE obl_s_pbor-typeid DEFAULT 'BUS2032',    "SO
       p_bo_id  LIKE obl_s_pbor-instid DEFAULT '0000757830', "example number
    *  Object_b
       p_docty  LIKE obl_s_pbor-typeid DEFAULT 'MESSAGE' NO-DISPLAY,
       p_msgtyp LIKE sofm-doctp        DEFAULT 'EXT'     NO-DISPLAY,
    *  Relationship
       p_reltyp  LIKE mdoblrel-reltype DEFAULT 'ATTA'.
    TYPES: BEGIN OF ty_message_key,
            foltp     TYPE so_fol_tp,
            folyr     TYPE so_fol_yr,
            folno     TYPE so_fol_no,
            doctp     TYPE so_doc_tp,
            docyr     TYPE so_doc_yr,
            docno     TYPE so_doc_no,
            fortp     TYPE so_for_tp,
            foryr     TYPE so_for_yr,
            forno     TYPE so_for_no,
           END OF ty_message_key.
    DATA : lv_message_key TYPE ty_message_key.
    DATA : lo_message TYPE swc_object.
    DATA : lt_doc_content TYPE STANDARD TABLE OF soli-line,
           ls_doc_content TYPE soli-line.
    * Create an initial instance of BO 'MESSAGE' - to call the
    * instance-independent method 'Create'.
    swc_create_object lo_message 'MESSAGE' lv_message_key.
    * Upload the pdf file, for now from the frontend, in the future from
    * the server.
    DATA:
    *  dsn(40) TYPE C VALUE '/usr/sap/trans/convert/1.pdf', "server location
    l_lines TYPE i. "filelenght
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename   = 'c:t1.pdf'
        filetype   = 'BIN'
      IMPORTING
        filelength = l_lines
      TABLES
        data_tab   = lt_doc_content.
    * no exceptions, the file is there in this example
    break brouwersf.
    ** the coding for the server input, for later
    *OPEN DATASET dsn FOR INPUT IN BINARY MODE.
    *IF sy-subrc <> 0.
    *  EXIT.
    *ENDIF.
    *READ DATASET dsn INTO ls_doc_content.
    *WHILE sy-subrc EQ 0.
    *  APPEND ls_doc_content TO lt_doc_content.
    *  READ DATASET dsn INTO ls_doc_content.
    *ENDWHILE.
    *CLEAR ls_doc_content.
    *CLOSE DATASET dsn.
    * define container to pass the parameter values to the method call
    * in next step.
    swc_container lt_message_container.
    * Populate container with parameters for method
    swc_set_element lt_message_container 'DOCUMENTTITLE' 'Title'.
    swc_set_element lt_message_container 'DOCUMENTLANGU' 'E'.
    swc_set_element lt_message_container 'NO_DIALOG'     'X'.
    swc_set_element lt_message_container 'DOCUMENTNAME' p_docty.
    swc_set_element lt_message_container 'DOCUMENTTYPE' p_msgtyp.
    swc_set_element lt_message_container 'DocumentSize'    l_lines.
    swc_set_element lt_message_container 'DocumentContent' lt_doc_content.
    swc_call_method lo_message 'CREATE' lt_message_container.
    * Refresh to get the reference of create 'MESSAGE' object for attachment
    swc_refresh_object lo_message.
    * Get Key of new object
    swc_get_object_key lo_message lv_message_key.
    * Now we have attachment as a business object instance. We can now
    * attach it to our main business object instance.
    * Create main BO object_a
    DATA: lo_is_object_a TYPE sibflporb.
    lo_is_object_a-instid = p_bo_id.
    lo_is_object_a-typeid = p_botype.
    lo_is_object_a-catid  = 'BO'.
    * Create attachment BO object_b
    DATA: lo_is_object_b TYPE sibflporb.
    lo_is_object_b-instid = lv_message_key.
    lo_is_object_b-typeid = p_docty.
    lo_is_object_b-catid  = 'BO'.
    *TRY.
    CALL METHOD cl_binary_relation=>create_link
      EXPORTING
        is_object_a = lo_is_object_a
        is_object_b = lo_is_object_b
        ip_reltype  = p_reltyp.
    * Check if everything OK...who cares!!
    COMMIT WORK.

    Hi,
    Welcome to the SDN Forums!!!
    You need to supply the PC file extension in the container element 'DOCUMENTTYPE'.
    swc_set_element lt_message_container 'DOCUMENTTYPE' p_msgtyp.
    In your case change the above statement as below:
    swc_set_element lt_message_container 'DOCUMENTTYPE' 'pdf'.
    <b>OR</b> change the default value of p_msgtyp to 'PDF'.
    Cheers,
    Ramki Maley.
    Please reward points if the answer is helpful.
    For info on awarding points click on this link: https://www.sdn.sap.com/sdn/index.sdn?page=crp_help.htm
    Message was edited by: Ramki Maley

  • Adobe forms with file attachments

    Hello,
    I want to use file attachments in my offline adobe forms. I have found some articles about how to do that but it was all related to webdynpro which i'm not using for this scenario.
    Does anyone know how to do that in plain ABAP?
    Many thanks in advance for your help!
    Best Regards,
    Tijana

    I'll answer on my own question
    I found the answer in the test program FP_PDF_TEST_16.

  • How can I disable the automatic hiding of known file attachments, and why are always about 10 internet pages where I have to download something if i use firefo

    How can I disable the automatic hiding of known file attachments, and why are always about 10 internet pages where I have to download something when I use mozila firefox?
    Windows Computer

    1) If you are talking about the file names on the computer, there is a
    setting to turn off known file types. Open your file browser. Then
    just under the location bar, press '''Tools,''' then '''Folder Options.'''
    A new window will open. Select '''View.''' Look for
    '''Hide Extensions For Known File Types.'''
    2) Never NEVER '''NEVER''' download anything unless you know what
    it is. If a web site claims it needs to download something, what is it?
    It could be something like the flash player, '''or a virus ! !'''
    Ask questions, or go somewhere else.

  • Viewing Excel & PDF file attachments in Mac Mail 3.6

    I setup my IMAP Gmail account on my Macbook's Mail 3.6. In the advanced tab of my Gmail account preferences in Mail 3.6 under "Keep copies of messages for offline viewing:" I have selected "All messages and their attachments"
    Whenever I click on an Excel attachment, I get the error message "'filename' cannot be accessed. The file may be read-only, or you may be trying to access a read-only location. Or, the server the document is stored on may not be responding."
    Whenever I click on a PDF attachment, I get the error message "There was an error opening this document. The file is damaged and could not be repaired."
    I then tried saving the attachments from Mail 3.6 to my hard drive, but received the same error messages when I tried to open them.
    However, when I access my Gmail account using my browser and download the same attachments to my hard drive, they open up without any problems.
    I have deleted the folder containing the emails containing the attachments from Mail 3.6 and re-synced it with Gmail. While it successfully completes the download of all of the messages and their attachments, the same problem occurs. Oddly enough, this problem does not occur with Word Document attachments or JPEG file attachments.
    This is my first Mac and while I am extremely proficient with Windows, I am clueless with Mac OS X. I have read posts about AppleDouble and Compression, but can't seem to find those options to play around with, even though I do not think that either is the issue. Any help is highly appreciated.

    Sijmons,
    well, I didn' got confused but only wanted to help you with your Altzheimer
    Geeborg,
    I used to .Mac webmail with Firefox on Windows and opened a message with an attachment (mpg). I clicked on the small triangle behind the word "Attachments" and then I clicked on the name of the attachment. This opened a window stating that the attachment would be downloaded. After some time I was asked to open the file with application xyz (I don't remember the name) or to save it on disk. Choosing to open the file finally launched Windows Media Player which played the mpg.
    Can you try these steps on one of your attachments?

  • File Attachments are blank - PDF IO Exception

    Hi Everyone,
    I have a Web Dynpro Java Application form that when submitted generates an Adobe Interactive form along with any attachments and starts a guided procedure. Today I'm experiencing a random error (see below), if I preview the Adobe form before the workflow starts then the attachments seems fine (correct size) but once submitted the first approver will get a null pointer exception and the file attachments appear blank. I've used the same data over and over again but it only happens randomly. I can't replicate it in my DEV or  TEST to be able to debug nor can I find the cause.  Anyone know what this error is?
    Processing exception during a "GetAttachments" operation.
    Request start time: Tue Jul 27 10:54:35 CDT 2010
    com.adobe.ProcessingException: com.adobe.ProcessingException: PDF IO exception occurred while retrieving attachments  from PDF: C:\usr\sap\EPP\tmp\adobewa_EPP_14530150\DM7282322298662574320.dir\DM6780062554593568486.tmpjava.io.EOFException: Unexpected end of ZLIB input stream
    Exception Stack Trace:
    com.adobe.ProcessingException: com.adobe.ProcessingException: PDF IO exception occurred while retrieving attachments  from PDF: C:\usr\sap\EPP\tmp\adobewa_EPP_14530150\DM7282322298662574320.dir\DM6780062554593568486.tmpjava.io.EOFException: Unexpected end of ZLIB input stream
         at com.adobe.ads.request.ADSRequest.processOperations(Unknown Source)
         at com.adobe.ads.request.ADSRequest.process(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source)
         at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0_0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0_0.java:120)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:331)
         at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79)
         at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92)
         at SoapServlet.doPost(SoapServlet.java:51)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    Caused by: com.adobe.ProcessingException: PDF IO exception occurred while retrieving attachments  from PDF: C:\usr\sap\EPP\tmp\adobewa_EPP_14530150\DM7282322298662574320.dir\DM6780062554593568486.tmpjava.io.EOFException: Unexpected end of ZLIB input stream
         at com.adobe.ads.operation.GetAttachments.processAllAttachments(Unknown Source)
         at com.adobe.ads.operation.GetAttachments.execute(Unknown Source)
         at com.adobe.ads.operation.ADSOperation.doWork(Unknown Source)
         ... 30 more
    Thanks,
    Wael

    Hi namtrag,
    Please refer the doc: https://forums.adobe.com/docs/DOC-4621
    Regards,
    Rave

  • In Lion 10.7.5 is there a way to view files in alphabetical order in column view?

    In Lion 10.7.5 when viewing files/folders in column view, if I select arrange by name it does not sort the names alphabetically.  Is this a bug or is there a way to view files in alphabetical order in column view?

    I've been using Column View for years and have it set to None:
    It has always shown in alphabetical order automatically.

  • How to edit file attachments in Mavricks Mail?

    Does anyone know how to edit file attachments in Mavricks Mail?
    Eudora, Foxmail and many other email programs allow you to simply click file attachment, open it, edit it, and FORWARD it to others.
    This is extremely difficult with Mail because it forces every single incoming file attachment to be READ-ONLY which means you are forced to re-save a copy in a folder then after editing it you need to spend time to fish it out of the folder, reattach it and then forward to others. It is a huge time wasting headache not to mention polluting your system with extra copies of files.
    Thanks

    I believe you are missing something. I'm not on my Mac right now but there should be a setting where to save attachments and also muiltiples at one time.

  • Viewing File Attachments in a Portfolio

    Hi,
    Asus Transformer TF101 running 4.0.3
    Workstation: Adobe Acrobat Pro 9
    Tablet: Adobe Reader X (v10.2.0 J)
    So I made a portfolio on my workstation with two pdf files.
    In one of the portfolio files I added a file attachment by Opening File>Comment>Attach File.
    Saved file and saved portfolio.
    Open in Reader X on my workstation - no problems - selecting paperclip opens attached file.
    However, when I save to my tablet and open portfolio and file I see the paperclip icon but attachment doesn't open on click.
    Any idea why? Do I need make portfolio in Adobe Acrobat Pro X rather than 9 to make this work.
    Recent announcement for Reader X says this should work - in fact has been out since 10.1.1: "Enhancements to Portfolios list and File Attachments on iOS: You can now view non-PDF children in PDF portfolios, and PDF File attachments on the iOS Reader. These capabilities already exist on Android since Reader 10.1.1"
    Any help is appreciated - Thanks,
    Muns

    Anyone with info on this ? I have just ran into this problem myself, hard to believe there isn't a way to fix this .

  • I can't open PDF File Attachments

    Hello,
    I use the environments Windows 7, MS Office 2010 and Adobe Reader 11.0.09.
    In the perferences on the categories Trust Manager I had actived the function: PDF File Attachments: Allow opening of non-PDF file attachments with external application
    Now I'm trying in a PDF document to open a Word or Excel file and get the error message: Acrobat can not open the file attachment Because your PDF file attachment setting do not allow this file type to be opened.
    And I can just open Word and Excel files.
    If I open the PDF file with Adobe Acrobat 11.0.09 then I can do that.
    Someone has a idea.
    Regards
    Erdem

    Hi Aadesh,
    I had actived the Trust Manager -> 'Allow opening of non-PDF file attachments with external application'  on Acrobat and Reader 11.0.09.
    I can open the non-PDF files with Acrobat but not with Reader.
    Regards
    Erdem

  • Why are my received file attachments (Office files such as .doc, .docx, .xlsx but also pdf files) corrupted - so that I cannot open them?

    For the last month, 90% of the file attachments that I receive by email will not open on my MacBook Pro (2009, running Mac OS 10.7.5). I get assorted messages, but generally saying that the file is corrupt, or the filename contains unacceptable characters. The problem has been generally with Word files (.doc and .docx)], Excel files (.xls and .xlsx) and pdf files.
    The bit that I don't understand is that I can open the same email attachments (without any problem) when downloaded on my iMac. And I have recently found that colleagues who received the same emails can open them, and can transfer the files to me (usually by USB stick) … and then I can open them. But I still cannot open the same files received as email attachments on my MacBook Pro.
    Which makes me think that the files (email attachments) are somehow being corrupted as they are downloaded?
    I installed the Mac OS X Update Combined 10.7.5 in July, so perhaps this was when the problem started? And, although it may be unrelated, around the same time as this problem started, I transferred some files from a colleague's computer on a USB stick and found that the USB stick had picked up a virus/malware, which meant that the stick was dead, and I had to reformat the stick. I scanned my computer (using ClamXav, with the latest updates) and quarantined a file found on the USB stick and on my computer.
    Any thoughts on why this might happen, and what I can do to sort it out (as it is making work very difficult - I travel a lot, and rely on being able to open and read files sent from countries all over the world, often by people using old versions of Office software)? I have never had problems in the past, and can't understand why my other computer, and my colleagues, can all open these files, but my laptop will not! Many thanks for any help!    

    I opened one of the PDF files in notepad and these are the first couple lines:
    瀖ᕁމጿ␠씴豈䧉筩롈ꓳ劏ꎯ僪뚢頟뻏즏谀㿃夑퀉꟠鲲쮂⫉笿褡밤籞冁탁ӓ轸뿐笼ⵆ횰䄌ඁ淥ة寨闤⬅鳦팥링빨嬄敎უ婏㣴ً鮓ࣿꢚ㑀녲莒඼ိȆ䕇纍쉉籶뺝갞伐쮠᥏﯒넉釖ȓ겴☧ ἣ秵駻�䣞띰㖔流羀籔朼敨ꢉ糶당⬤俉膇䄐惡�ಹꛖ鍡恡ⱶᶜ�堷﹑ﱌ僿걄뎔æ䋷귪⛢⫐䅪䉙὿烶ꖆ႟ᗔ瘞狻틫儩六잶覱낵듘盋崾�ᦜ㺆௹뻹燴ឋ騙쬄ꏿ뽒煹�钼뇲腎稦ꃲ㈃沒ꔈ뺐뛽첑䘶畱䍣紻 ⁜哠鳾

  • Loading transaction data from flat file to SNP order series objects

    Hi,
    I am an BW developer and i need to provide data to my SNP team.
    Can you please let me know more about <b>loading transaction data (sales order, purchase order, etc.,) from external systems into order based SNP objects/structure</b>. there is a 3rd party tool called webconnect that gets data from external systems and can give data in flat file or in database tables what ever required format we want.
    I know we can use BAPI's, but dont know how. can you please send any <b>sample ABAP program code that calls BAPI to read flat file and write to SNP order series objects</b>.
    Please let me know ASAP, how to get data from flat file into SNP order based objects, with options and I will be very grateful.
    thanks in advance
    Rahul

    Hi,
    Please go through the following links:
    https://forums.sdn.sap.com/click.jspa?searchID=6094493&messageID=4180456
    https://forums.sdn.sap.com/click.jspa?searchID=6094493&messageID=4040057
    https://forums.sdn.sap.com/click.jspa?searchID=6094493&messageID=3832922
    https://forums.sdn.sap.com/click.jspa?searchID=6094493&messageID=4067999
    Hope this helps...
    Regards,
    Habeeb
    Assign points if helpful..:)

Maybe you are looking for

  • Highlighting results using oracle text

    Hi I've hooked up to Oracle text using odp.net and can query that fine. Now I would like to use the highlighting feature of OT but I'm having problems finding suitable examples of how to do it. I've read through a number of Oracle Text documents, the

  • Sent attachment (pages08) appears as zip file in windows

    someone got an idea to solve the problem that any windows user how got my pages08 doc has to unzip the file and them its unreadabl so any idea

  • Why doesn't my email download unless I open app?

    Why doesn't my email download unless I open app?

  • Plugin sandbox errors after yosemite install

    After Yosemite install I see MANY errors in my system.log like this: Oct 20 11:04:35 Yumi.local pkd[366]: ignoring mis-configured plug-in at /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/PlugIns/AirDrop .appex: plug-ins must be sand

  • CiscoWorks Netconfig - "Not Attempted"

    Hi All, I've been tasked with amending the config on all of our Cisco kit around the organisation with additional lines to suit a new TACACS Server. I've tried around 140 so far and at least 30 have failed with the statement "not attempted". Checking