GOS - Displaying Attachments service

Hi everyone,
Using GOS dispalying attachment service, i get attachment list with standard buttons (Create, display, export...). My question is - is it possible to exclude some of those functions(buttons), for example make it impossible to delete attachments?
I'm using SWU_OBJECT_PUBLISH and
SWU_OBJECT_DISPATCH_SERVICE function modules.
Thanks a lot!
MaryM

Can you be a little more specific? This BAdI works great if the value is in the SGOSATTR table, but I can't find how to remove the delete button from the View Attachments subscreen.
Thanks.

Similar Messages

  • Services for Objects will not display attachments

    Hi Gurus, we are currently set up to display attached documents using IXOS Live Viewer, but only a select number of users have this viewer due to licensing, etc.
    The problem is, we have requirements for other users to display attachments in FI documents who do not have IXOS Live Viewer and therefore they are not able to display the attachments because of this.  Since we will not pay for more live viewer licences, there must be a way to tell SAP to use the standard windows viewers installed on the machine, if the first choice (Live viewer) isn't installed?  I have looked through the customizing for this answer, and I think I've found where it's configured to use live viewer, but I dont' know how to config it to use something else, if live viewer isn't available.  Your help would be much appreciated.
    Marty

    Hi Marty
    It is my understanding that the IXOS licensing is based on users retrieving of documents not necessarily the viewer so the licensing implications of having non-IXOS viewers accessing documents using the generic archivelink viewer is still likely to result in licensing implications if an audit is conducted at any stage.
    The transaction for specifying the viewer is the OAA3 and OAG4.
    Regards,
    Athol

  • Display attachments through WebDynpro Abap

    Hi all,
    I am currently working on the Generic Object Services and I manage to create attachment and retrieve them. however I can't find how to display attachments into a WebDynpro interface.
    The context:
    I have two applications which communicate with RFC:
        - The first application is the business application. It contains some RFC functions to handle data, business objects and attachments. This application is under SAP R/3 4.6.C environment and attachments are stored via GOS linked to standard transactions (VA03 / CV03 / IW53).
        - The other application is a WDA interface for the final users which calls, via RFC, the functions implemented in the first application. This application is under SAP R/3 ECC6.0 environment.
    The goal:
    I would like to implement the possibility to display some documents (PDF, DOC, XLS) stored with GOS in the first application (SAP R/3 4.6.C) via the web application (SAP R/3 ECC6.0). To do this, I will use RFC functions but I don't know the functions/methods I have to call to perform this process.
    Does someone know the information that I need? Please do not hesitate to ask me should you need further information.
    Many thanks.

    Hi.,
    For Displaying PDF use interactive form UI and bind data source to context attribute. Now set  the  downloaded data from RFC to the context attribute. It will display the PDF.,
    let the experts reply for ur query..
    Thanks & Regards
    Kiran

  • Apple Mail in 10.6.8 not displaying attachments

    I am unable to get consistent results on displaying attachments from Apple Mail on 10.6.8 with Exchange Server 2007 SP3 RU4. Attachments sent from an Outlook 2007 client on the same exchange server are not displayed in Apple Mail. The message shows no sign of an attachment. The problem with this issue, is it is not consistant. If I forward the e-mail message from my iPhone to myself, I get the attachment in Mail. It shows up in my iPhone correctly. I am connected to Exchange in Mail via the standard EWS (Exchange Web Services). The original message doesn't show any attachment in Mail. But after 20 or so minutes, the attachement show in the message body, but not in the header up top. Just driving me crazy. Is there anyone that can point me in a direction on who to contact on this issue to find out how it can be fixed?
    Thanks,
    Nate

    I'm having the same problem and it is driving me crazy. My main email account at work is on an Exchange 2007 server. When I send emails with attachments (using Mail 4.5), I get people replying telling me that I haven't included the attachments. However, I know I have as the attachments appear in the Sent Items and I have also tested it by sending blind copies to a Gmail account and they turn up there even when the recipient is telling me that they cannot see the attachment. Even worse, people send me emails with attachments and the attachments either just do not appear at all or they appear intermittently. Whatever the problem, this really isn't good enough - how can I work with such unreliability. If anyone has any suggestions or ideas for how to fix or work around this I'd be very grateful!

  • How to display Attachments on OAF page for different entities

    Hi,
    I have a requirement where I have to create an attachment page to display the attachments dynamically at run time depending upon the values passed such as Entity Name, Primary Key values, Category Id values.
    I have a query to give me the attachments related data from the tables like fnd_documents_vl, fnd_attached_documents, fnd_document_entities, fnd_document_categories_tl.
    Now, as I read on the forum, I can make use of Oracle's seeded functionality on attachments and display attachments but in my requirement I don't have one specific entity. I have below query which gives data directly with respect to all entities from fnd tables. The name of entity and primary keys will come at run time. So, how can I make use of below query and display attachments in such a case?
    I am very new to OAf and any help will be really appreciated.
    Thanks in Advance,
    Shalini
    SELECT DISTINCT ad.attached_document_id
    ,ad.document_id AS document_id
    ,ad.last_update_date
    ,ad.last_updated_by
    ,u.user_name last_updated_by_name
    ,ad.entity_name
    ,ad.pk1_value
    ,ad.pk2_value
    ,ad.pk3_value
    ,ad.pk4_value
    ,ad.pk5_value
    ,decode(d.dm_node,
    NULL,
    (SELECT short_name
    FROM fnd_dm_nodes
    WHERE node_id = 0),
    0,
    (SELECT short_name
    FROM fnd_dm_nodes
    WHERE node_id = 0),
    node.short_name) location
    ,d.document_id document_id1
    ,d.datatype_id
    ,d.datatype_name
    ,d.description
    ,decode(d.file_name,
    NULL,
    (SELECT message_text
    FROM fnd_new_messages
    WHERE message_name = 'FND_UNDEFINED'
    AND application_id = 0
    AND language_code = userenv('LANG')),
    d.file_name) file_name
    ,d.media_id
    ,d.dm_type
    ,d.dm_node
    ,d.dm_folder_path
    ,e.data_object_code
    ,e.document_entity_id
    ,'ALLOW_ATTACH_UPDATE' allow_attach_update
    ,'ALLOW_ATTACH_DELETE' allow_attach_delete
    ,ad.category_id category_id
    ,cl.user_name attachment_category_name
    ,ad.status
    ,ad.creation_date
    ,(SELECT u1.user_name
    FROM fnd_user u1
    WHERE u1.user_id = ad.created_by) attached_by_name
    ,decode(d.datatype_id,
    5,
    nvl(d.title,
    d.description) || '(' ||
    substr(d.url,
    1,
    least(length(d.url),
    15)) || '...)',
    decode(d.datatype_id,
    6,
    nvl(d.title,
    d.file_name),
    decode(d.title,
    NULL,
    (SELECT message_text
    FROM fnd_new_messages
    WHERE message_name = 'FND_UNDEFINED'
    AND application_id = 0
    AND language_code =
    userenv('LANG')),
    d.title))) file_name_sort
    ,d.usage_type
    ,d.security_id
    ,d.security_type
    ,d.publish_flag
    ,cl.category_id category_id_query
    ,ad.seq_num
    ,d.url
    ,d.title
    FROM fnd_documents_vl d
    ,fnd_attached_documents ad
    ,fnd_document_entities e
    ,fnd_user u
    ,fnd_document_categories_tl cl
    ,fnd_dm_nodes node
    WHERE ad.document_id = d.document_id
    AND ad.entity_name = e.data_object_code(+)
    AND ad.last_updated_by = u.user_id(+)
    AND cl.LANGUAGE = userenv('LANG')
    AND cl.category_id = nvl(ad.category_id,
    d.category_id)
    AND d.dm_node = node.node_id(+)

    Hi Peddy,
    Thanks a lot for your guidance. I tried implementing the code in PR but I am stuck at one error. I am not able to programmatically add a new Entity ID and its attributes at run time. To make it more clear: In Jdev I created an Entity and its mappings at design time. Now, I am able to use getEntitymappings() and setEntityMappings() to modify the attributes of exiting Enity but I am not able to add/append new Entity ID to the existing one. It throws - java.lang.ArrayIndexOutOfBoundsException: 1 error.
    Please any one review the below code snippet and let me know whether I am missing something to make it work.
    Below is the Code that I have written so far:
    ====================================================
    OAAttachmentTableBean attBean = (OAAttachmentTableBean)webBean.findChildRecursive("attachTable");
    Dictionary[] entityMaps = attBean.getEntityMappings();
    entityMaps[0].remove("entityId");
    entityMaps[0].put("entityId","OE_ORDER_HEADERS");
    entityMaps[0].remove("insertAllowed");
    entityMaps[0].remove("updateAllowed");
    entityMaps[0].remove("deleteAllowed");
    entityMaps[0].put("insertAllowed", false);
    entityMaps[0].put("updateAllowed", false);
    entityMaps[0].put("deleteAllowed", false);
    // Adding Second Entity
    // Getting ArrayIndexOutOfBoundsException at below line. As i saw that getEntityMappings() returns only array of size :1 and that is teh reason I am getting error, so How can I increase the size dynamically to add new Entity or is there any other way?
    entityMaps[1].put("entityId", "XX_LINK_ENTITY"); // entity id
    entityMaps[1].put("showAll", false); // show all property
    entityMaps[1].put("insertAllowed", false);
    entityMaps[1].put("deleteAllowed", false);
    entityMaps[1].put("updateAllowed", false);
    // Adding Primary Key to Second Entity
    String[] pkAttrNames = new String[1];
    pkAttrNames[0] = "Pk1Value"; // pk view attribute name
    entityMaps[1].put("pkColumns", pkAttrNames);
    // Setting Category Values for first Entity
    Integer CatValue = 1000486;
    Integer[] categories = new Integer[2]; // categories
    categories[0] = new Integer(1);
    categories[1] = CatValue;
    // Setting Category Values for Second Entity
    Integer[] categories2 = new Integer[1]; // categories
    categories2[0] = new Integer(1); //MISC
    attBean.setEntityMappings(entityMaps);
    attBean.setDynamicCategoriesMap("OE_ORDER_HEADERS",categories);
    attBean.setDynamicCategoriesMap("XX_LINK_ENTITY",categories2);
    Thanks & Best Regards,
    Shalini

  • How to activate GOS (Generic Object Services) in Transaction SU01?

    Dear All,
    We want (for documentation reason) activate GOS (Generic Object Services) within Transaction SU01 (User Maintenance).
    I looked already around for Setup Guidelines, but did not find anything.
    Has anybody already acitivated GOS within SU01 and would explain this?
    Regards,
    Markus

    Hi Vamshi,
    SD_SWU_ACTIVE is the parameter, but it is not for SU01, it is VA02 and VA03 only.
    Thanks,
    Naga

  • How to call GOS(Generic Object service) attachment ( BMP file ) into SAP

    How to call GOS(Generic Object service) attachment ( BMP file ) into SAP script
    Example: MM02 Service object there attaching the bmp file the same file i need to call script based on the material number
    Please provide the procedure and  coding.
    Thanks in advance
    Raju

    Hi,
    The following link may be useful to u.
    help.sap.com/printdocu/.../BCSRVOBS.pdf

  • Displaying Web Service Results in a Report

    have a web service registered with APEX (GET_DAY_OF_THE_WEEK).
    It tests fine from the Web Service References Panel.
    I am trying to follow the steps in the Oracle Database Application Express
    User's Guide [Release 2.2 Part Number B28550-01] under the Displaying Web
    Service Results in a Report topic.
    When I get to step 6 = "For Result Tree to Report On, select the portion of the
    resulting XML document that contains the information you want to include in the
    report." ... THERE IS NO PLACE TO -->"...select the portion of the resulting
    XML document that contains the information you want to include in the report".
    Is this a bug? Is there a workaround?
    Steve

    Hi,
    I'm having a similar problem - I have a work_date column and I want to use a date picker to select tasks performed between 2 dates.
    For example, on Page 3 I have a username,client_name and task fields. I have 2 date pickers, one for start date and one for end date, and a submit button.
    I want to be able to select '01-AUG-10' from the start_date, then '31-AUG-10' from the end_date, then redirect to a page (Page 41) when I click the button to run this:
    select username,client_name,task,work_date
    from replicon where
    username = :P3_USERNAME and
    work_date between to_date(:P3_START_DATE,'DD-MON-RR') and
    to_date(:P3_END_DATE,'DD-MON-RR')
    order by work_date
    but I'm getting this error:
    ORA-01858: a non-numeric character was found where a numeric was expected
    The date format is "DD-MON-RR', and the work_date column is a "DATE" data type.
    The button items are "P3_USERNAME","P3_START_DATE" and "P3_END_DATE" with the same values (&P3_USERNAME etc), and the button redirects to page 41.
    I can't see how I can pass the username, start_date and end_date from Page 3 to Page 41. Am I using the correct ITEMS, or is it the query?
    Help appreciated.

  • My iPhone 3GS is displaying 'No Service'

    My phone is fully update and on the 3 network. My phone has been displaying no service for the past 24 hours, occasionally searching. I have tried resetting the network settings with no avail.
    If I manually search for networks I can find the 3 network and can select it but it still displays 'no service'. I have tested it by making calls to check its not connected but not displaying correctly.

    So if you are experiencing a no service. there are a few things you can try.
    Power cycle- power off and back on - test.
    Hard reset -hold home and power button until apple logo appears- release - wait until phone restarts -check
    Reseat the sim card - test.
    Reset network settings-  Settings>general>reset >reset network settings - wait for reboot -test.
    Reset all settings>settings>General>reset>reset all settings.
    Restore the phone following- http://support.apple.com/kb/HT1414

  • IPhone constantly displaying "no service" although good serivice is available

    iPhone is displaying "No Service" constantly although in an area of good service so I am unable to call or text.
    How do I get the phone to recognise service again so the phone can be used?

    Hi, thank you.  This still has made no improvement so will be contacting my service provider tomorrow.
    Thanks.

  • HT4061 hi i have purchased iphone4 from vodafone australia 2 years back.it is unlocked, when i went to india .it was not working with any carrier in india.it was displaying no service.is it a problem of iphone or any other anybody please could let me know

    hi i have purchased iphone4 from vodafone australia 2 years back.it is unlocked, when i went to india .it was not working with any carrier in india.it was displaying no service.is it a problem of iphone or any other anybody please could let me know?

    Hi ashish,
    Did you contact TPG about activating International Roaming before you left for India:
    http://www.tpg.com.au/support/international_roaming.php
    Cheers,
    GB

  • [SOLVED] systemd display-manager.service problem

    Hi!
    After the upgrade of systemd, i noticed today this error in dmesg:
    systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory. See system logs and 'systemctl status display-manager.service' for details.
    systemctl status display-manager.service
    display-manager.service
    Loaded: error (Reason: No such file or directory)
    Active: inactive (dead)
    The strange thing is why systemd tries to load a service that doesn't exist! And what is this unit for? I'm using slim to load my xfce desktop, and everything works well...
    Any idea?
    Thanks!
    EDIT: Uhm, may be the alias in slim.service, set to display-manager.service, is the problem? Or may be this is not a problem, but it is its normal behaviour , and i misunderstood something! Is it?
    Last edited by nierro (2012-07-15 17:13:42)

    nierro wrote:
    Hi!
    After the upgrade of systemd, i noticed today this error in dmesg:
    systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory. See system logs and 'systemctl status display-manager.service' for details.
    systemctl status display-manager.service
    display-manager.service
    Loaded: error (Reason: No such file or directory)
    Active: inactive (dead)
    The strange thing is why systemd tries to load a service that doesn't exist! And what is this unit for? I'm using slim to load my xfce desktop, and everything works well...
    Any idea?
    Thanks!
    EDIT: Uhm, may be the alias in slim.service, set to display-manager.service, is the problem? Or may be this is not a problem, but it is its normal behaviour , and i misunderstood something! Is it?
    There has been a change regarding display managers. up until now they were WantedBy graphical.target, which was kind of stupid because this allowed you to enable multiple display managers.
    Instead graphical.target now Wants display-manager.service and all display managers are supposed to install the appropriate Alias. Afaik all display manager service files have been updated ragarding this and a "systemctl reenable slim.service" should fix it.

  • Display pm service order on application area CIC0

    Hi Experts,
    We have a requirement that the pm orders created for a business partner can be displayed on CIC0 on the navigation area. (Actually only display Costumer Service Orders) . What can we do?
    Thanks in Advance
    Nicolas

    Hi Abdul,
      For this case, It will required some coding. You need to create an subtype for object ISUSMORDER. For exmaple ZISUSMORDE. And add new attribute 'person responsible' to the subtype, create a code to get person responsible into that attribute, and delegate the object to the subtype. then it will show up on transaction ENVD for you to select.
    Chaiphon

  • Since i have upgraded my i phone5 to 7.0.3 it has problem with 3g it display the service message every time, it reduce the battery life also.

    since i have upgraded my i phone5 to 7.0.3 it has problem with 3g it display the service message every time, it reduce the battery life also.

    Try using Settings > General > Reset > Reset All Settings.

  • My iphone3g display no service network aftar update.sometime get then not

    My iphone3g display no service network aftar update.sometime get then not

    Hello oeaton,
    Thanks for using Apple Support Communities.
    To troubleshoot this "No Service" issue on your iPhone, please follow the troubleshooting steps in the article below.
    iPhone: Troubleshooting No Service
    Take care,
    Alex H.

Maybe you are looking for

  • How to call a method in one JSP from another JSP?

    say that I have 2 JSPs. JSP one has a button. JSP two has some method that, say, find the square root of the number passed from JPS one. How to - when click - the button on page one call the method on page two? Please note that I can not use object b

  • TimeStamp in Stored Procedure for JDBC adapter

    Hi, I have a Date Timestamp field (DD/MM/YYYY HH:MM:SS) in my stored procedure (target system), how do I pass an empty value when there is no date coming from the source system. I am able to send the date field in the format when I get the date times

  • Many Quicktime-Videos in one Session

    Hi, how can I import several QT-videos in one logicsession. Or can I only integrate one video per session? Thanks! Adrian

  • Can read floppy but not format

    So get this... For whatever reason I suddenly cannot format a floppy disk. I can read some old disks that I have but anytime I try to write to one, it says that the operations cannot be performed. The exact message when formatting (DOS mode) is: "Inv

  • Error from sample JAAS client: Message stream modified (41)

    I am trying to follow the tutorial for JAAS Authentication located here: http://java.sun.com/j2se/1.4.2/docs/guide/security/jgss/tutorials/AcnOnly.html I am trying to run the sample client JaasAcn.java but am getting a strange error when I try to log