Add new function to Services for Object in transaction XD03

Hi expert,
Do you know how to add a new function to the Services for Object appeared at the beginning of the title bar on transaction XD03? I would like to add it to the Create list. Please help, thanks!
Chuong

Hi,
Check this Post, May help you
XD01 ENHANCEMENT
Regards,
Satish

Similar Messages

  • Services for object in transaction EHSAMBTAET (Health Center Services)

    Hi all.
    In transaction PA30 there is a functionality called "services for object". I would like to have this functionality in the transaction EHSAMBTAET (Health Center Services) as well. At the moment when you choose it in the menu it just says: "No services available". Can anybody give me a hint on how to do this?
    Many thanks
    Liselotte

    As far as I know, that "Services for object" is the Global Object Services (GOS), and requires a Business Object (BOR).
    The Health Center Service doesnt currently provide such a BOR object.
    see for more info: http://help.sap.com/saphelp_erp2005/helpdata/en/be/3fe63659241157e10000009b38f889/frameset.htm
    Message was edited by: Frank Besler

  • Services for object for a custom document

    Hi everyone,
    We have a custom transaction to create a custom document called enquiry. Upon saving, the document number will be generated and stored in a table. I would like to add the functionality of Services for Object in the transaction to be able to attach documents to the enquiry. I would like to ask if it is possible to create a business object for this custom document to be able to utilize the Services for Object functionality.
    Thanks!
    Eric

    you can choose to create BO for this or simply have a another identifier for this object and youc an use class OT to upload documents to BDS.
    all you need is call of this FM whicih will automatically put the icon for GOS
    SWU_OBJECT_PUBLISH
    alternatively you can use class cl_gos_manager
    Raja

  • Services for Object in creation mode

    Hi colleagues,
    I am facing one problem and I would appreciate your help and ideas. I want to enable user to use a functionality of "Services for object" in creation mode (in my case transaction IW31). In change or display mode this functionality is enabled, so creating new BOR object and such things are not necessary.
    I understand that services for object are disabled by default in creation mode, because it is not meaningful to assign some documents to object which does not yet exist. But in theoretical way, it should be possible to implement some "tricky" solution. Probably some temporary object could be created at the start of IW31 and attachments could be assigned to this object. And in some user exit executed during processing of save statement (after all checks and such things), attachments could be re-assigned to a real (persistent) object. For unsaved orders it would be necessary to delete temporary object and also attached documents.
    Have someone implemented something similar? Or any helpful ideas?
    Thank you all in advance.
    Regards,
    Adrian

    Hi,
    We have implemented exactly the same in a Ztransaction. Not sure to what extent this will help you. Check below code
      CREATE OBJECT w_gosman
      EXPORTING
    *     io_container     = io_container
    *     is_bc_object     = is_bc_object
        is_object        =  wa_object            "BOR object
    *    it_service_selection =
    *     io_callback      = io_callback
    *     ip_start_direct  = space
        ip_no_instance   = l_inst             "Pass SPACE in your case
        ip_no_commit     = l_commit        "Pass SPACE in your case
        ip_mode          = c_e
      EXCEPTIONS
        object_invalid   = 1
        callback_invalid = 2
        OTHERS           = 3
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    "Here just we are creating a reference by publishing the object.
    "During the transaction commit call below method.
      wa_object-objkey = "Pass your object ID.
    wa_object-objtyp = "Pass your business object
        CALL METHOD w_gosman->set_id_of_published_object
        EXPORTING
    *      is_bc_object   = is_object
          is_object      = wa_object
        EXCEPTIONS
          no_publication = 1
          OTHERS         = 2
        COMMIT WORK.
    Thanks,
    Vinod.

  • Adding URL to Services for Object for Invoice

    Hi Friends,
    I need to add a URL to 'Services for Object' drop down on the menu bar (so that it will appear in 'Attachment List' after clicking on which it will navigate to the link).
    I am not sure but will SWU_OBJECT_PUBLISH be useful? How to use this for URL insert?
    Can anyone please tell me how it can be achieved?
    Thanks in advance for your help,
    Sagar

    hi
    check out the function modules BDS_BUSINESSDOCUMENT* in transaction OAOR.
    hope this helps
    regards
    Aakash Banga

  • How to add the "Services for Object" icon/functionality.

    Dear all.
    I have seen in some SAP standard transactions a button named "Services for Object" in the title bar of the screen. An example is in transaction MM03. The button is to the left of the title "Display Material xxxx".
    Does anyone know how I could incorporate such functionality in my own program.
    Thanks
    Lande.

    Hi,
    You need to use GOS for this.
    1. Create a Generic object thru transaction SW01.
    then call the following method in the PBO
    module call_gos_attachment output.
      if sy-tcode eq c_yatt2 .
          i_borident-objtype = 'YASTATTA'.
          i_borident-objkey = yatt-number.
          create object gos_manager
            exporting
               is_object            = i_borident
               it_service_selection = i_services
               ip_no_commit         = ' '
            exceptions
               object_invalid       = 1.
      endif.
      if sy-tcode eq c_yatt3.
          i_borident-objtype = 'YASTATTA'.
          i_borident-objkey = yatt-number.
          create object gos_manager
            exporting
               is_object            = i_borident
               it_service_selection = i_services
               ip_mode              = 'D'
            exceptions
               object_invalid       = 1.
      endif.
    endmodule.                               " Call_gos_attachment Output

  • Add attachment to services for object

    Hi All,
    What is the meaning of Add Attachment to services for object, is it the only providing the services like
    Private note,
    send object with note,
    Display relation ship,
    work flow,
    My objects etc.
    can any one suggest me on this.
    Thanks&regds,
    Srinivas.

    Hi Srinivas,
    I have seen you asking a lot of questions all about the same scenario in my understanding. It seems you like to send a picture or an attachment from/to the mobile device, is this correct? I get this impression because your questions are mostly around the MAM30_080 syncbo.
    Could you specify the exact problem you have a little more in detail?
    Sending notes,..... either you enhance a SyncBO. This is not to difficult and you do not have to do the complete basic ABAP development for your own. You still have to do some coding on the R3 side, but the SBUILDER stuff in the middleware is not necessary.
    On the other hand, you can easily develop your own SyncBO. This is perhaps the best solution in your case.
    Relation ships in SyncBOs are done with the cascading. See in SBUILDER for MAM30_001 - it has a relationship to MAM30_010 fo example. This is a process you do at design time. Here the MDK helps with some instructions about it. If you have an oject with a short text, just fill in the short t.ext, the long text is a splittedt structure inside the BO. If you want to see that, it is really simple:
    Create a notification on the device. Enter a long text with more then 500chars. Then save.
    You need to check the data structure on the device then. When yu open MAM from the MI home screen, the URL usually ends with /start. Change this to /start,jsp - in MAM30 this name has changed to /start_.....jsp,have a look into the project, you will find it - and you select the syncBO MAM30_010 on thqt screen. Then you see the complete data structure on your device. Search for your new created entry. Then you see that the long text is saved as a child structure and it has an index so ther backend can put it back to one long text in the correct order.
    The same way you have to go if you want to send some data that is longer then 250 Byte.
    Hope this helps to switch on some lights.
    Regards,
    Oliver

  • Edit/add text to the file attached in Services for Object

    Hello,
    We have a business requirement where user wants system auto populate some text in the file that is attached to the invoice in services for object. If anyone had done similar enhancement then please share the ideas to enable this functionality.
    Thanks,

    Hello Fractel,
    Are you get rid of this issue?
    We have just implemented some of SAP packs/patches and few users face this issue.
    When I tried the same, I did not face this issue.
    Please suggest.
    Regards,
    JPS

  • Service For Objects functionality (SDV transaction)

    Hello experts,
    Some users are getting an authorization error while trying to display an image from t-code FBL1N (services for objects). After identifying the reason of this issue with NSU53, the simple fix is to provide access to the user to transaction SDV. Actually, we are proposing to the security team to provide the access in a Generic role, so all user can get the access.
    Their concern is that if for any reason, any of the users runs the t-code directly (SDV), and not through the Services for Objects funtionality, they might be able to access other documents that they should not be allowed. To be honest, I haven't seen this as an issue before in my 13 years working with SAP.
    The question for you guys is: what is the best approach to grant access to users from different modules to Services for Objects functionality without violating security policies?
    Thanks,
    Alfredo

    own

  • Advantage of DMS over "Services for object" functionality

    Hi Experts,
    I have got very basic doubt about advantages of DMS Over existing standard functionality of SAP.
    We can attach documents or files to SAP Objects using "services for object" push button ( Next to title bar).
    So please answer for my below queries
    1. What is the disadvantage of using Services for Object??
    2. If I use services for object, then file is stored in SAP Data base or in my local drive??
    Thanks and Regards,
    Kiran T

    Hello ,
    DMS Vs GOS
    DMS- Document Management System
    The Document Management System (DMS) in SAP R/3 offers the following distinct advantages over the current procedures and systems.
    u2022     It avoids data redundancy, maintains consistency of data and minimizes the workload involved in entering and updating data.
    u2022     In order to use large databases to the full, it is required to exchange data quickly and securely.  Data can be accessed directly using electronic search tools, or find documents using known parameters. 
    u2022     Document distribution functionality  (SAP-Workflow functionality is required)
    The SAP R/3 Document Management System meets all these demanding requirements.  In addition to managing documents, it also coordinates document processing.  It is possible to automate the entire life cycle of a document: from document creation to document storage, its access and its update.  Each document can be accessed immediately from any computer on the netwerk.
    GOS-
    All these DMS advantages are not available with GOS.
    The Detailed PPT of comparison is sent to your id.
    Regards
    fapreeth

  • How to add "services for object " in ECC 6.0

    Hi Saurabh,
    Thanks for your reply. I have checked the path given by you...System-> Service for object, but it is showing no service available as told by you. Cud you please tell me how to add this service because this is working fine in 4.6C but I dont know how to add these services in ECC 6.0. If any code for this which is written in 4.6C which I can refer... please tell me where to see the code for adding services (in 4.6C) b'coz its very urgent.

    Hi Saurabh,
                Thanks for your reply. I have checked the path given by you...System-> Service for object, but it is showing no service available as told by you. Cud you please tell me how to add this service because this is working fine in 4.6C but I dont know how to add these services in ECC 6.0. If any code for this which is written in 4.6C which I can refer... please tell me where to see the code for adding services (in 4.6C)  b'coz its very urgent.

  • How to add services for object in ECC6.0

    Hi everybody,
                        Can anybody tell me how to add "Services for Object" icon in ECC 6.0 because this icon is there in 4.6C but not coming in ECC 6.0.
    Thanks in Advance

    Hi Saurabh,
                Thanks for your reply. I have checked the path given by you...System-> Service for object, but it is showing no service available as told by you. Cud you please tell me how to add this service because this is working fine in 4.6C but I dont know how to add these services in ECC 6.0. If any code for this which is written in 4.6C which I can refer... please tell me where to see the code for adding services (in 4.6C)  b'coz its very urgent.

  • Service For Objects Function/Button in BP - missing when performing BDC?

    Hi all,
        I'm currently working on a conversion program that creates Business Partners in the transaction BP by using CALL TRANSACTION. The first thing I did was to record the transaction in SHDB. My problem is, the Services for Object button is missing while Im recording in SHDB. It's also disabled in the menu path
    System->Services for Object.  I'm assuming then that it won't be there as well when performing the actual BDC. When using transaction BP online, it does appear though. Is there a way to make this functionality appear while performing BDC?

    Dear Vincent,
    Use FM 'SO_DOCUMENT_READ_API1' to retrieve the document.
    Reward points if it is helpful.
    Regards,
    Naveen.

  • Want to replicate services for object functionality in my z- program

    Hi
    I can see the "Services for object functionality" in IW32 transaction. I want to replicate the same functionality for my custom program.
    Please let me know if I can get any pointers for this.
    Regards
    Swetabh

    Hi,
    check out the program of the iw32 tcode.
    then in debugging mode find the code where exactly the requirement is going on with the code of the program.
    then copy that code in your custom program and do the needful changes.
    Regards,
    Venkat n

  • Replicate "Services for object" functionality in Z Program

    Hello All,
    I want to replicate "Services for object" functionality as in ME23N in my Z Program. How do I achieve it.
    Thanking you all in anticipation.
    Regards,
    Anju

    Read this wiki [How to Attach Documents to Any Custom Program Using Generic Object Services|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/0e6b0d95-0a01-0010-4696-ca0a48de5fb3]
    Regards,
    Raymond

Maybe you are looking for

  • Delivery Qty for Material is less than P.O. while doing STO from Plant

    Dear All, Please help me in this issue. While doing STO from one Plant to another Plant, The picked Delivery qty in VL10D is less than P.O. qty for one perticular Material. What could be the issue and solution from it. Regards AJIT K SINGH Edited by:

  • Playback issues from files compressed using the Divx Encoder

    Hey there, As the title implies, Im trying to edit Hypercam screen capture footage that was compressed with the Divx encoder it comes with. The footage then gets exported to an .avi format, and in windows it plays fine, HOWEVER, when I import the foo

  • Best way to outer join a table that is doing a sub query

    RDBMS : 11.1.0.7.0 Hello, What is the best way to outer join a table that is doing a sub query? This is a common scenario in EBS for the date tracked tables. SELECT papf.full_name, fu.description   FROM fnd_user fu       ,per_all_people_f papf WHERE

  • Doubt with Implicit Enhacement in SAP ABAP

    Dear. I have the following doubt with the Implicit Enhacement in SAP ABAP created by me in several applications standard- If I Create an Implicit Enhacement in SAP ABAP for a function module or program standard , when the team basis is doing an upgra

  • Where to find 3D Photo montage templates?

    Where can I find free (if possible) templates (besides the Exchange/marketplace)? I need to put 4 montages together over 100 images and client wants 3D and special effects. I am looking for something like turning pages of a photo album or simulating