Geniric object Services (Services for object) in Va02

Hi All,
I want to add Services for object functionality so that it will help in checking executed workflow for that particular sales document  in transaction Va02,va03.
I am looking for PBO exit to add this functionality where i can add this piece of code .
is_object-objtype = 'BUS2094'
is_object-objkey =  '60000098'          "Sales Document Number
CREATE OBJECT go_m
   EXPORTING
     is_object    = Is_object
     ip_no_commit = 'X'
   EXCEPTIONS
     OTHERS       =
I have tested this code in SE38 and symbol for services for object got added hence I successfully viewed the executed workflow for sales document 60000098'
Please help me to find PBO exit where i can use this code.

I created the method using following code
data : go_myobject TYPE REF TO cl_gos_manager.
data : is_object type borident.
is_object-objtype = 'BUS2094'.
is_object-OBJKEY  = object-key-salesdocument.
CREATE OBJECT go_myobject
   exporting
     is_object = is_object
     IP_NO_COMMIT = 'X'
   exceptions
     others = 1.
and created the task for this method but did not find result in VA02 and VA03.
Edited by: Akshay Kale on Jul 28, 2008 3:33 PM

Similar Messages

  • Services for Object activation required for VA02 in SAP 4.0B version

    Hello,
    This is regarding Sales Order Change (VA02) and If I select the  MENU navigation :  SYSTEM -> Services for Object in ECC 6.0 then it is populating one Pop-up stating that "Sales Order XXXXXXX" Here we have the option for "Create Attachment".
    For this we need to do one prerequist in SAP ECC 6.0 Goto Tcode SU01 under the "Parameter" Tab we need to provide the following Parameter ID i.e
    SD_SWU_ACTIVE and Parameter value is : "X".
    The Same scenario I need in SAP 4.0b version.
    It would be grateful if you can helpout in this issue.
    Than you very much in Advance ...

    Hi,
    Absolutely it is not possible.
    The services for object is only visible, once the original object is created.
    Even if you check for normal F-02 entry also, it wont be visible during entry, but will be visible after posting if we go thru FB02 or FB03.
    Any attachment can be assigned through the services for object, is possible only after creation of the dependent / original data.
    So for AS02 and AS03, the dependent data has to be there in the DB, which has been created with AS01.
    Thanks,
    Srinu

  • Services for object in VA01 and VA41

    Hello Seniors,
    I want to use the "services for object" ( icon that comes on the top left corner ) for transactions VA01 and VA41. I have enabled it for VA02, VA03, VA42 and VA43 by going to the path system-> User profile -> Own data-> parameters tab by passing 'X'  for the parameter ID "SD_SWU_ACTIVE" . What do I do to get it enabled for the transactions VA01(Create Sales Order) and VA41(create contract) also.
    Thanks in advance,
    Chaitanya.C.N

    Done by enabling user-parameter SD_SWU_ACTIVE.

  • VA03 Services for Object

    Hi Friends,
    In a transaction ME21N.
    Goto System->services for Object.
    If i click on this we will get one menu.
    But if do same thing in VA03 i am not getting. Please tell me how can i achieve this.
    I would definitely reward you.
    Regards
    Dinesh

    The object services for Transactions VA02/VA03 were
    deactivated in the SAP Standard System for performance reasons.  But the object services can be reactivated individually by setting user/profile parameter SD_SWU_ACTIVE = X.
    The object services are only available for dialog users, that is, if
    you choose user type 'Dialog' for the corresponding user on the
    'Logon data' screen in Transaction SU01.
    Ramesh

  • Geniric Object Services

    Hi,
        Please let me know how to enable GOS(Geniric object services) for a
        standard transaction.
    Thank you
    Srinvas

    Hi Swathi ,
      Refer to these links for more information on Geniric object Services.I think you can enable GOS for your custom transaction and call any of the services...
    http://help.sap.com/saphelp_erp2005/helpdata/en/be/3fe63659241157e10000009b38f889/frameset.htm
    /people/rammanohar.tiwari/blog/2005/10/10/generic-object-services-gos--in-background
    Let me have your email so that I can send some more info on this.
    Thank you
    Srinivas

  • Service for Object

    Hi all,
    Does anyone know where SAP stores attacchements by "Service for Object " ?
    Example: files attached through MM02, VA02, MK02...
    thanks a lot.

    Not exactly but I suspect it is direct on a file at Unix/Server level.  I suspect you need help of an ABAPer and Basis consultant to answer that.

  • In Attachement List Services for Objects White Screen when I Display a Note

    Hi Expert,
    Need your assistance.
    I am trying to view a note in Vendor Master data but no information provided and I can only see white screen. Below are the steps that I performed:
    1. Go to FK03
    2. Open a Vendor
    3. Click the Services for Objects
    4. Attachement List
    5. Select a Note
    4. Display it
    5. Pop up window appreared and no information occurred. Only White screen
    Is there's a missing configuration, plugin, or data in my SAP system/workstation?
    I tried to login to other PC and it worked.
    Just wondering what is missing on my computer.
    Your response will be helpful.

    Hey,
    I have the exact same problem as you have described. I also used my ipod as a watch but starting from today, whenever I unlock it the screen turns white until a reset is done. Even a factory reset through itunes didn't fix it.
    Have you found any solution?
    Bah, this is annoying.
    //Gubbar

  • Display GOS without click on 'Service for Object' button

    Please try the following step to figure out.
    1) VA03
    2) At header of report (on the left hand side of 'Display S/O SysB SDI xxxxxxxxx:Overview' ) has a button called 'Services for Object' (GOS)
    3) Click on that then it will popup icon menu set.  <--- Want this to be displayed when access VA03 by no need to click the button in 2)
    My requirement is I want this popup to be displayed suddenly after I access VA03 (no need to click on the Services for Object button anymore).
    <b>
    Could you please provide me any solution, function, example, similar case, etc. (based on 4.6c)?</b>
    Thank you all expert in advance.. I'll be here to provide you more information that need.

    I found the solution yet. Let me drop a note to be a memorandum.
    (1) Insert code into the last line of form <u>USEREXIT_READ_DOCUMENT</u> within report <u>MV45AFZZ</u>
    PERFORM UNITEXIT_READ_DOCUMENT.
    <b>*{   INSERT
    *[Display Attachment Service Automatically]
        DATA: lo_myobject  TYPE REF TO cl_gos_manager,
              lo_container TYPE REF TO cl_gui_custom_container,
              ls_object    TYPE borident.  "BOR Identifier
          ls_object-objkey  = vbak-vbeln.
          ls_object-objtype = 'BUS2032'.
          CREATE OBJECT lo_myobject.
          CALL METHOD lo_myobject->start_service_direct
                      EXPORTING ip_service   = 'VIEW_ATTA'
                                is_object    = ls_object
                                io_container = lo_container
                      EXCEPTIONS OTHERS          = 2.
    *[Display Toolbox]
        CALL METHOD lo_myobject->DISPLAY_TOOLBOX
                    EXPORTING  is_object       = ls_object
                               io_container    = lo_container
                    EXCEPTIONS OTHERS          = 2.
    *}   INSERT</b>
    ENDFORM.
    (2) Try open VA03 and insert attachment at Service for Object.
    (3) Reopen VA03, attachment list displayed suddenly.
    <i>Reference Source# SAP Library, search 'Starting Only One Service Directly'.</i>
    <b>NOTE:</b> You can use another relevant object by SE24 -> CL_GOS_MANAGER

  • To hide Services for Object in Purchase Order screen

    Dear Experts,
    Is it possible for me to control Services for object to a group of user only in ECC 6.0 ? or How to hide the icon for unauthorized users ?
    Thanks in advance.
    Moktar

    Hi,
    Did you resolve this issue.
    If so can you please let me kow how to Hide/Unhide services for objects ?
    Thanks.

  • I am unable to use services for objects  while creating a PO

    Hi All,
    I am unable to use services for objects  while creating a PO ie in me21n / Me22n .
    Our client wants to attach some doucument along with the PO, we want to use services for object for this. I use this services for objects in admin level , but unable to use this at user level. 
    System gives the following message
    No service available
    Message no. SGOS_MSG002
    Regards
    Gsg

    Hi,
    Refer the following OSS notes 552127, 598073
    For getting Object for services icon in ME21N and ME51N refer OSS note 913251

  • 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.

  • How to create a Generic Object Services for a standard tcode.

    Hi,
    We have a requirement where we are depreciating the assets (standard transaction ABAA) using a custom BDC program. We need to maintain a history (called audit trail) for the particular asset that has been depreciated using this program. For this audit train we have been asked to use "Generic Object Services" in transaction code ABAA.
    Unfortunately, Generic object services are not available in this transaction code. Can you please suggest me how to create "Generic Object Services" for a particular standard transaction code. Also, we have show the details of custom workflow that follows the approval process in order to depreciate the asset. how to show this workflow details using Generic Services. This is a very critical issue, any help will be very help ful.
    Please let me know should you require more information on this topic.
    Thanks,
    Ashish

    Instead of copyg the std fm to z, do the following,
    1. Go to se37 open FM VIEW_KURGV in display mode.
    2. Click on the spiral icon on the top.
    3. Then in menu go edit->enhancment options -> show implicit enhancement
    4. """""""""""""""""""""" kind of lines will appear in the cde, just rt click on the line at the place u want to insert the code and select
         enhancement implementation create.
    5. Give apropriate name for thi , it will inset a n place to write your code.
    This is an std sap methodology and is supported in upgradde also.

  • Generic Object Services for a standard transaction code

    Hi,
    We have a requirement where we are depreciating the assets (standard transaction ABAA) using a custom BDC program. We need to maintain a history (called audit trail) for the particular asset that has been depreciated using this program. For this audit trail we have been asked to use "Generic Object Services" in transaction code ABAA.
    Unfortunately, Generic object services are not available in this transaction code. Can you please suggest me how to create "Generic Object Services" for a particular standard transaction code. Also, we have show the details of custom workflow that handles the approval process in order to depreciate the asset. How to show this workflow details using Generic Object Services. This is a very critical issue, any help will be very help ful.
    Please let me know should you require more information on this topic.
    Thanks,
    Ashish

    Hello Ashish,
    i dont think activating of GOS will solve ur probs..... GOS wont create a WF item ...... try to get some kind of GOS before u do anything in SAP systems.
    u can do like this ......
    1 create custom screen where u can enter asset details and store in custom tables....and generate one custom doc.number to track.
    2. trigger WF when user submits it for approvals.
    3.Upon final approvals.--->run BDC to do postings......
    4.Give a Option to attach documents to the parking documents. ( that GOS ).
    regards
    Prabhu

  • Attachment list in Services for Object toolbar

    Does anybody know if there is any user exit or BADI that I can use to filter certain file attachments in Attachment list of Services for Object toolbar.
    For example, in transaction XK03 (Vendor display), Services for Object toolbar, you can see the Attachment list and it will display list of pc file attachments, however, we have a requirement to display only those that met certain criteria, is there any BADI or user exit for this?
    Thanks in advance for your help.

    you can use BADI
    GOS_SRV_SELECT
    for this.
    Regards
    Raja

  • Services for object buttons randomly disappearing from FB03

    Hello SAP Experts,
    We display an FI document via tcode FB03 (Display Document) and use the "services for object" buttons to attach documents via the "create attachment" button and also to view attached documents via the "attachment list" button.
    However, quite often when displaying the FI document after a document has been attached, the "services for objects" buttons are not displayed.  Just a blank toolbar appears.
    Later on the when the FI document is displayed again via tcode FB03 (Display Document), the "services for objects" buttons do appear and the attachments can then be displayed.
    As the attachments can be viewed sometimes, I would say that this issue is not related to security.
    Any idea's what maybe causing the "services for objects" buttons randomly disappearing???
    Regards,
    SAP Muppet

    Hello SAP Experts,
    Any ideas or comments here???
    Regards,
    SAP Muppet

Maybe you are looking for

  • Ipod touch will not turn on and is not reading in the usb port

    ipod touch will not turn on or connect to my computer

  • ADF : How to import a java class in jspx page

    Hi All, In jsp we have page directive to import a java class. Do we have anything similar to that in a jspx page?

  • WLS 6.1 SP2 Cluster fails

              Hi All.           we have migrated to WLS 6.1 SP2, now we have a serious problem with the cluster           wihch die after several minutes. Our architecture is several front-ends servers           (concretely servelts, without cluster) mak

  • BSOD on Equium M50-244 - error caused by ati2dvag.dll

    OS Windows XP SP2, display ATI Radeon xpress 200m series. Hi have a Equium M50-244 with a problem. Seems to work fine but suddenly goes to blue screen with message: A problem has been detected has been shut down to prevent damage. The problem seems t

  • Servlet jar file

    I am trying to compile a simple example servlet. It is looking for the javax.servlet.* and javax.servlet.http.* import classes. I discovered that I needed to add c:\j2sdkee1.2.1\lib\j2ee.jar to my classpath for this to compile. c:\j2sdkee1.2.1\lib wo