Attachments functionality

I have made a report that displays some data . This data refer to some files that exist in my file server.I want to put a button in my report that give me the opportunity to make some attachments.
Imagine how it works in Transaction VF03 when putting a invoice and then you can make some attachments for that invoice .
If there is someone to help , with glad to give him and my e-mail ...

Hello,
Here you have two opportunities :
You have mentioned that you are displaying some data from the files.
1. Are these files are stored by the users as an attachment to any SAP document ( example attached while creating the Sales Order ) ? .
If this is the case, then any new file which is added should also linked to the SAP document ( i.e. Sales Order ). For this you need to take the help of Generic Object Services feature.
if so , check the link and subsequent blogs for managing this :
/people/rammanohar.tiwari/blog/2005/10/10/generic-object-services-gos--in-background
2. Or you are just accessing these files as some external documents from file server ?
Then, you just need to create another new file ,but with a new naming convention so that you can trace them as the attachments for one particular entry in your report.
So that if the report is executed again, you can find all those file with this record name as the uinique key.
Regards
Kesari.,

Similar Messages

  • Attachments Function Modules in SAP Netweaver Mobile 7.1

    Google Traslator
    Hi Experts,
    I am currently developing an application on the SAP technology
    Netweaver Mobile 7.1
    I am in the process of setting BACKEND ADAPTER, model
    data fields are used data type STRING and XSTRING. According to the
    documentation, when using such data types, must be implemented
    additional attachment function modules, diferent to Bapi wrappers. They function
    modules are responsible for uploading and downloading of the fields in the
    DOE.
    In SAP Help, forums or on the same system, I can not find this type of function module and I would be very useful that they could send me an example.
    Best Regards,
    JM

    Hi,
    You need to have a separate table to store attachments in the backend.
    In the DOE define the attribute as STRING(tick the text memo) This you have already done .
    In the backend you will need another table where you will be storing the attachments.
    Lets assume you have a notification table : In this define the field for headertext with the data type as CHAR and length 1
    Create another table where you want to store the attachments:
    You can have the fields as NOTIFICATION and HEADERTEXT. This headertext should have a datatype STRING. You can also have a field called attachment type to store whether it is HeaderText or Binary Memo.
    Create a BAPI wrapper for getting the HEADERTEXT with importing parameter as NOTIFICATION and exporting HeaderText and a return parameter:
    Here the source code:
    SELECT SINGLE b~headertext INTO e_headertext
    FROM <notification table> AS a
    INNER JOIN <attachment table> AS b ON
    borderid = aorderid
    WHERE a~orderid = orderid AND
    a~headertext = 'X' and
    b~ATTCHTYP = 'HEDTXT'.
    Now in the DOE : give this function module name in the attachment Function module. SAVE (very important)
    After doing the mapping go to the attachment tab and do the mapping with the attachment function module.
    save and activate the backend adapter.
    execute SDOE_LOAD.
    Go to SE11: there should be a table starting <cds table name>ending with _TM.
    Create an application in the similar way. No extra code required.
    Regards,
    Sunaina Reddy T

  • Overriding Human Task adding Attachments functionality

    Hi,
    I am a newbie in Oracle BPM and I'm facing a problem with overriding default funcionality connected with Attachments. I want to add my own code to insert attachment to my table when users upload Attachment. Could anybody give me any advice how to achieve this? I discovered that, when I generated ADF form from Human Task in popup I have Button Update with Value
    #{addAttachmentBean.file}. I'm wondering can I just write my own method with insert statement to table and then call {#addAttachmentBean.file} but I don't know how to reference from my Bean to addAttachmentBean. I would be very grateful for any help!
    Regards

    Ok, I could achieve my functionality using triiggers: Insert - add row to my table; Delete-delete from my table but my tables are in another schema so I prefer to do this by Java Code.
    I have also to modify upload subfolder, which is based on year/month/day date.
    Edited by: 914128 on 2012-03-05 13:31

  • Give a handmake function to search all files in the directory.

    To scan drive, folder, ets.
    I maked this, but my function is big bleep, a devil will break his legs here.
    Need small workable solution.
    Attachments:
    function.txt ‏7 KB

    Sergey,
    Here is an example file which looks through every file in a directory.http://zone.ni.com/devzone/cda/epd/p/id/2157
    It should save you some time if you are having issues with your code. 
    Regards,
    Kyle Mozdzyn
    Applications Engineering
    National Instruments
    Regards,
    Kyle M.
    Applications Engineering
    National Instruments

  • Elements 12 Organizer crashes every time I try to use the Photo Mail function. Has anyone else come across this bug?

    I highlight the photos I want to share, go to Photo Mail, select the addressees and press "Next". I then get the error message: "Elements Organizer has stopped working" and I have to close the program down.
    This is obviously a bug in the program and needs fixing. Has anyone else encountered it and found a solution. (I might add that the same crash happens if I try to use the "Email attachments" function.)

    Hi,
    Are you running on a Windows system?
    If so, use the windows explorer to navigate to one of the following files according to your system.
    64bit system: "C:\Program Files (x86)\Adobe\Elements 12 Organizer\PhotoshopElementsOrganizer.exe"
    32bit system: "C:\Program Files\Adobe\Elements 12 Organizer\PhotoshopElementsOrganizer.exe"
      Right click on that file and select Run as Administrator then try your email again.
      You should only have to do this once.
      Good luck
    Brian

  • Managed Attachments - creating a customCO for 'Managed Attachments' and opening a new browser/window  as ActionEvent through processFormRequest()

    Hi All,
    I am working on 'Managed Attachments' integration of Oracle E-Business Suite with Oracle WebCenter Content and I am very new to EBS.
    As per the customer requirement, we needed to enable the Managed Attachments on an SIT page (Employee Self Service --> Special Information-> and click on 'Add' for any of the 'Special Information' section) and the values they fill on these pages need to be passed to webcenter content.  As you know these segment data will not be inserted into the database until the user clicks on 'Submit' button from the review page,
    But the customer wants to save it on the 'Special Information' add page itself.
    Managed Attachments is an out of the box feature offered by Oracle WebCenter Content to replace FND Attachments functionality. Instead of storing the attachments in EBS, it will store to WebCenter Content.
    My requirements are as follows
    1) Enable the managed attachments on he special information 'add' page (e.g Company Property, Disabilities etc),- I am able to do this
    2) The data user fills in these fields , when user clicks on 'Managed Attachments' button , these values should be passed to the URL for managed attachments(which is already set on the button through processRequest() method when the page gets loaded) and thus pass to webcenter content
    With these requirements, the challenges i am facing are
    1) Since the user clicks on 'Managed Attachments' before even he/she clicks on 'Apply' button, how do I capture these values? can pageContext.getParameter('id') can get these?
    (i have already tried to do this in processFormRequest() method and i found that it is working for LOV fields but not for text fields)
    2) if i can get the values in processFormRequest(), how can i open a browser/window for the new URL()
    e.g, i wanted to write something like this and the finalURL is what i wanted to open in a new browser or window as the actionEvent
        public void processFormRequest(OAPageContext pageContext,   OAWebBean webBean) {
    super.processFormRequest(pageContext, webBean);
       String param1 = pageContext.getParameter(“Param1”);
    String param2 = pageContext.getParameter(“param2”);
    String redirectURL = “http://rstnssiovm0072.us.oracle.com:8000/OA_HTML/OA.jsp?page=/oracle/apps/ak/ucm/axf/webui/RedirectToAxfPG&bypassPageCounterIncr=Y&retainAM=Y”;
    String paramURL = “&Parameter1=”+ param1+”&Parameter2=”+ param2;
    String finalURL = redirectURL+paramURL;
    Code part to open the url in a new browser/window
    If anybody can help me with these part, it will be a great help
    thanks a lot in advance
    Regards
    Poornima

    Hi Poornima ,
    Has your prob resolved ? Have you made Managed attachment working via standard adapter as per UCM Admin guide ?
    Configuring the Managed Attachments Solution - 11g Release 1 (11.1.1)
    1. You have first store in some VO if you want to pass this metadata to UCM page , other wise it will not work .Take temp table /VO to store first then same can passed to UCM page as input parameters
    2.What needs to be passed , please refer webcenter guide with key examples given
    Once it is configured properly automatically params will be associated with URL which actually will open UCM page with metadata ( params) being passed.
    Thanks,
    Ashish

  • Global Object Services (GOS) Attachments Deleted from Maintenance Task List

    We use the Global Object Services (GOS) Attachments function to attach Word and Excel Documents to Maintenance Task Lists (transactions IA02, IA09). Recently we noted that more than 300+ Attachments had been deleted/removed from the GOS list visible via IA03/IA09. We are at a loss for explaining how this occurred- all Attachments appear to have been deleted at once/instantaneously. We can see the underlying tables (SGOSHIST and others) still contain entries, but we do not understand why the Attachments are no longer visible in the GOS list via Maintenance Task Lists, or how the ability to access these via GOS can be restored. This is not occurring with other PM Object Attachments - only Task Lists. Any help or suggestions appreciated.

    Is it possible that there was some authorisation change in a role associated with task lists? That would be consistent with the immediate loss - but only in the task list area. Another thought - has anyone been doing any programming in the Generic Object Services Business Add-Ins (perhaps for another module?) - They might have inadvertently clobbered your use?
    Do you use the GOS notes functionality? Does that still work?

  • Hide eml file attachments in Convergence

    Hello,
    Is there a way to hide eml file attachments in Convergence? It already displays the contents of the eml inline so there is no need for the attachement
    Also, in Communications Express it currently does this

    eolair wrote:
    Is there a way to hide eml file attachments in Convergence? It already displays the contents of the eml inline so there is no need for the attachementThere is no existing option to produce this behaviour. You can however customise Convergence to get the desired result e.g.
    a) Create <app_server_base>/domains/domain1/docroot/iwc_static/c11n/allDomain/js/widget/MailMessageViewer.js containing:
    dojo.provide("c11n.allDomain.js.widget.MailMessageViewer");
    dojo.require("iwc.widget.MailMessageViewer");
    dojo.declare("iwc.widget.MailMessageViewer", iwc.widget.MailMessageViewer, {
            _renderAttachments: function() {
                    console.debug("c11n: Stop message/rfc822 attachments from showing in the attachment pane");
                    var attachments=this._msg.getAttachments(true);
                    if(attachments.length == 0) {
                            return '';
                    dojo.forEach(attachments, function(a) {
                            if(a._notDisplayed) {
                                    return;
                            // Stop message/rfc822 MIME type attachments from displaying in the attachment pane
                            if (!a._notDownloadable && (a.getType() + "/" + a.getSubtype() != "message/rfc822")) {
                                    var w = new iwc.widget.MailAttachment({
                                            part: a,
                                            truncateFileNames: this.truncateFileNames,
                                            isInPrintMode: this.isInPrintMode
                                    this.attachmentList.appendChild(w.domNode);
                                    this._attachmentWidgets.push(w);
                    }, this);
                    dojo.toggleClass(this.attachmentPane, 'iwcHide', (this._attachmentWidgets.length == 0));
            last: ""
    });b) Add the following line to customize.js to apply the above customisation:
    // Stop message/rfc822 attachments from showing in the attachment pane
    dojo.require("c11n.allDomain.js.widget.MailMessageViewer");c) Clear the browser cache, and log into Convergence.
    You can see the original "_renderAttachments" function which the above code replaces in <app_server_base>/domains/domain1/docroot/iwc_static/js/debug/iwc/widget/MailMessageViewer.js
    Regards,
    Shane.

  • Adding attachments to a Parked cuetomer invoice(FBV2)

    Hi,
    I need to attach documents to a customer parked invoice, in short I need to replicate 'Adding Attachments'  functionality in Transaction FBV2.
    Can any1 please guide me how I am unable to find any solution to this problem.
    Cheers
    Abhishek

    You might find this Blog of help:
    /people/rammanohar.tiwari/blog/2005/10/10/generic-object-services-gos--in-background
    Also, search for GOS and Generic Object Services and look through the CL_GOS* classes.
    Jonathan

  • Remove attachments from FITV_POWL_TRIPS for Expenses in overview screen

    We are trying to remove the attachments from being available in the ABAP Web Dynpro ESS Travel/Expenses screens.
    In the My Trips & Expenses overview of the ABAP Web Dynpro - FITV_POWL_TRIPS - I believe - an ALV is displayed and one of the columns is Attachments - under My Expenses Report tab.  We would like to remove it. 
    As well as the attachment button and functionality that appears when you go into the Expense Report for change.
    Is there an easy way to do this? 
    The ALV seems to be generated dynamically from the POWL query and I have not been able to find any config that will allow us to remove the attachments functionality.
    Any help would be appreciated.
    Cheers
    Murray

    In adminstrative mode you can configure the abap webdynpro by hiding fields and modifying texts, hide columns in a table. goto menu options in SE80->Test->adminstrative mode->execute.
    Right click on the area that you want to change and a popup will come with choices to change standard settings.  Choose it by clicking on it and it will bring up the field that you would like to modify.  This is a global configuration.  You can also do this in the iview under preview mode in content management.
    Tom

  • View attachments in message

    How can I toggle on/off the view attachments function in Mail?. It is currently off (I did something) and now can't seem to return to the default view. Thanks in advance.

    Carolyn thanks for your response. I was actually referring to the ability to view the attachment in the body of the message rather than the QuickLook function - so for example, a photo would actually display in the body of the message without using the cmd y. This is the default state, but during my endless tinkering I did something to prevent attachments from automatically displaying. Which I now just remembered - it is an option in Cocktail! Thanks for the assistance!

  • Can't find DAQmx on All Function palettes

    in the LabView 7 Express manual, it says that NI-DAQmx can be located by clicking on:
    -Functions
    -All Functions
    -NI Measurements
    -DAQmx
    my question is, i don't even see All Functions and as a result cannot locate DAQmx. i've been trying to locate it on the Functions palette. i'm i looking in the wrong place?
    thanks
    -r

    I'm not sure what might be happening. The All Functions palette is the bottome right palette on the Function Palette. If that isn't showing up then I'm not sure what is going on. You might need to reinstall LV. I have attatched a screenshot of where you can find the "All Functions" palette. If it isn't there send a screenshot of your functions palette and I might be able to figure out what is going on.
    Attachments:
    functions.JPG ‏34 KB

  • Adding Attachments feature to custom form in ERP

    We have a custom form in Release 11.0 of the ERP. I want to
    enable the attachments functionality for this form. I have
    found the call
    APP_SPECIAL.ENABLE('ATTACHMENTS',PROPERTY_ON);
    This will enable the attachments button (the paperclip icon) but
    when I invoke it, I cannot save attachments and, instead, get
    errors. I'm sure I'm missing a configuration step, but have
    been unable to find the proper documentation.
    Any help is appreciated.
    Thanks,
    Brett

    The frustrating thing is that I believe I'm getting close to the solution. I can create a perfect PDF form by using MS Word to create the watermark in the background. If I try and import the Word document straight into LiveCycle, it converts the word art to an image (poorly to boot). I can convert the Word document to a PDF and it looks wonderful. If I use that PDF to start with in LiveCycle, all of the text capabilities are turned off for some reason. I can create text FIELDS or check boxes but there can be no text within them. Still, the resulting PDF has a wonderful watermark that isn't selectable in Acrobat. I would just hate to have to create this entire form within Word and then only be able to use LiveCycle to create the check boxes and text fields. The problem with this process is that every time I have to make updates or revisions, I would have to re-import them from Word and create the form completely again.
    Any thoughts?
    BTW, thanks so much for your responses so far! I just haven't been able to sit down with this software since I posted the question to try out the possible solutions until tonight!

  • Linking function generator to AM modulation toolkit

    Dear
     I am doing an AM modulation demodulation telecom project using labview.
    I have in attachment the function generator (as the message signal) and Am-modulate (as AM modulation process) but I am facing problem wiring the function generator as the message signal in the AM-modulate. I would be thankful if someone can help me doing so. Moreover if you have any idea how to perform the demodulation process using MT modulation toolkit I will be thankful.
    Thank you for your help
    Solved!
    Go to Solution.
    Attachments:
    Function-generator.vi ‏40 KB
    AM-modulate.vi ‏30 KB

    Hi o4enPro,
    Thank you for contacting us
    I replied you here: http://forums.ni.com/t5/LabVIEW/MT-modulation-tool​kit-problem-Am-modulation-demodulation/m-p/1571542 for the demodulation issue. Was it helpful?
    Modulation process:
    You have more opportunites to connect the signal output of the generator to the modulator VI.
    - Using global variables: In this case you have create a new project and create a global variable. The generator VI should write the global variable and the modulator VI should read it. You should run both VI at the same time.
    - Embed the generator VI into the modulator VI. I attached an example. You should insert the generator VI (on the modulator block diagram: Functions Palette -> Select a VI). The generator VI's connector pane should be edited, you should make the input and output connections of the VI, so prepare it for using as SubVI.
    Please find the attached VIs for example. The main VI is the AM-modulate_modified.vi, so you should open just that. If you have any questions, write again.
    Regards,
    Peter
    Peter Vago
    AE Hungary
    Attachments:
    AM-modulate_modified.vi ‏36 KB
    Function-generator_modified.vi ‏50 KB

  • NI ELVISmx function generation time

    Hi, 
    I am using this NI ELVISmx function generation.vi to generate voltage. In fact I put this subvi in a loop to scan voltage. However, there is a time gap between two loops about 20ms. I opened the NI ELVISmx function generation.vi and notice that the frequency in subFGenOutput.vi is about 0.2Hz. I do not know what the frequency here means.  I attahced the file. Could you help us to have a look at the file? Thanks. 
    Attachments:
    function generatorh1.vi ‏57 KB

    Hi hrw,
    I would not recommend modifying standard NI ELVISmx functions. Those functions are designed and tested for specific hardware and modifying those functions can lead to incorrect behaviour both on hardware and on software side. Now what do you mean by "scan voltage"? Are you generating a voltage signal using NI ELVISmx function generation.vi and then sending it to one of the analog outputs? What NI hardware are you using? Also 0.2Hz translates into 1/0.2=5 seconds. Also, how are you measuring the time gap (20ms) between the loops? 
    Mikhail
    RF Toolkits, Product Support Engineer
    National Instruments

Maybe you are looking for