How to make Generic Object Services visible in screen

with serviceorders and notifications we sometimes use GOS for attaching documents. only disadvantage is that it's not directly visible if attachments are present or not. you have to click on the gos button to check their presence .
is there any method or solution to make it clear if an attachment is present in the record ?
I already tried to create a user status for this only nasty side effect was that it took a while before the record was present in th efunction BDS_ALL_CONNECTIONS_GET
kind regards
arthur

Hi,
i had the same problem (but only for notifications). We included a customer subscreen (function group xqqm, customer project CMOD with enhancement QQMA0001). When you insert a gos attachment, an info-text will be displayed when you change or display the notification again.
PAI in customer subscreen ist the following code, the customer subscreen has a simple read-only field in which the field g_txt70_gos  is displayed with text "Ther a are attachments".
Prüfen, ob wir im Ändern/Anzeigen sind
  CHECK NOT viqmel-qmnum IS INITIAL.
Wurde schon einmal erfolglos gelesen?
  CHECK g_flag_links_obtained  = c_false.
  g_flag_links_obtained = c_true.
Wurde Vorgänger schon einmal erfolgreich gelesen?
  IF g_txt70_gos IS INITIAL.
    IF tq80 IS INITIAL.
      SELECT SINGLE * FROM tq80
                             WHERE qmart = ls_viqmel-qmart.
    ENDIF.
    CASE tq80-qmtyp.
      WHEN ypm_01.
        g_object_gos-objtype = c_bus2038.
      WHEN yqm_02.
        g_object_gos-objtype = c_bus2078.
      WHEN ysm_03.
        g_object_gos-objtype = c_bus2080.
      WHEN ynm_05.
        g_object_gos-objtype = c_bus7051.
    ENDCASE.
    g_object_gos-objkey = viqmel-qmnum.
    SELECT * UP TO 1 ROWS
         FROM srgbtbrel
         WHERE
           instid_a = g_object_gos-objkey AND
           typeid_a = g_object_gos-objtype AND
           catid_a = 'BO' AND
           ( reltype = c_reltype_atta OR
           reltype = c_reltype_url ).
    ENDSELECT.
    IF sy-subrc = 0.
      g_txt70_gos = 'Es gibt Anlagen zu dieser Meldung'(z03).
    ENDIF.
  ENDIF.

Similar Messages

  • How to use Generic Object Services(GOS) for each table control record.

    Dear Expert,
                       I am using generic object services for document attachment but i am facing a problem while attaching document to a table control row. my requirement is to attach separate document for each and every row of table control but  i am unable to attach document row wise of the table control.for each row GOS should display corresponding attached document not all the attached document.
    Thanks in Advanced
    Bhuwan Tiwari
    Edited by: BHUWAN TIWARI on Feb 8, 2011 4:16 PM
    Edited by: BHUWAN TIWARI on Feb 8, 2011 4:16 PM

    You haven't explained what object and object key you're using, nor have you provided any indication of how you implemented the GOS attachment functionality.  You need to provide more information to resolve an issue like this.

  • How to activate generic object services in VA03 (e.g.)

    Hello all
    In ECC 6.0 the generic group services can be found in several transactions. But in VA02, VA03 transaction e.g. it is missing. Does anybody know how we could activate it there?
    Thanks in advance to all
    Renaud

    Hello everybody
    Unfortunately I still couldn't find helpful answers. Isn't there a way to activate those generic object services in VA02, VA03 e.g. like it is available out of the box in MM02, MM03, FB02, FB03, etc.?
    We would like to link a sales order (business object type BUS2032) with an URL pointing to a PDF-Document.
    Thanks in advance for any help on this one.
    Renaud

  • In  IT0359 how to make one feild as  visible in Screen Modification

    Hi Experts,
    I have one feild in IT0359 which is not visible.I checked in T558M and feild is checked as Standard settings.Still the feild is not visible in infotype. Appreciate your input in this regard.

    Hi,
    As per the Standard setting, the field will be available in te input screen as per the code. Check the code for the module pool MP035900, screen 2000 for the field, I guess it might be hidden by default in the code.
    In case required to over write this hidden propoery of the screen, use the screen exit or make the field as RF (Required Field).
    Thanks & Regards, Swapnil Mishra

  • 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

  • How to attach document using Generic Object Service

    Hi all,
    How can i create attachment to the parked invoice using Generic Object services? i want function modules which are used to do it.
    Actually I want to do this from the business object method. I am having word document as one of the workitem step. once i get this document I need to attach this document to the parked invoice so that users can see that document by view object list.
    Its urgent.
    thanks.

    Hello,
    Check your configuration of document type assignement to required business document - object type, Archivelink table, content repository in OAC3 transaction.
    Goto respective business document > Click on GOS > Create > Store business document - Here you can see defined document type with desctiption. Double click on this the assign your document to this business document. Save it.
    This will help in attaching the document to your required business document.
    To verify you can check the archivelink table or by transaction OAAD.
    Hope this will help you.
    -Thanks,
    Ajay

  • Generic object services - Object services toolbox not visible in ECC 6

    We recently upgraded from SAP 4.6 C to ECC 6 and are encountering problems in the generic object services in Plant maintenance.
    We use this feature extensively in SAP 4.6 C to attach URL links, documents etc.
    In ECC6 , In Transaction IL02, IE02, IW32 when i click on the services for object, i don't find the object services toolbox through which you can attach the documents, links etc. It surprisingly disappears. Instead of that we get a toolbar to "AddFileNetImage", ViewFileNetImage, DeleteFileNetImage.
    Can this feature be added back to the screen? How is this done? kindly help.

    Thanks Deepak,
    But I thought the described methdology in the PDF pointed by the URL is for how to do it for any custom business object type, will it be useful for the SAP standard business object as well like BUS2093. When I try to edit an already created SAP object, it starts asking for an access key.
    With Regards
    Neha

  • 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

  • How to trigger a workflow using generic object services?

    Hi Experts,
    Let me know on how to trigger a workflow using generic object services.
    My requirement is to trigger the FI document reversal document using Object services.
    Any info or docs relevant to this, please share with me..
    Thanks,
    Dinesh.

    Dinesh,
    First of you need to check if the transaction has a BO (in released status) published to use the GOS.
    These are the pre-requisites for GOS
    http://help.sap.com/saphelp_46c/helpdata/en/94/aa532cddd511d289860000e8216438/content.htm
    Once done.. check that you have valid workflow linkages active for this BO.
    Now when you click on the 'start workflow' the system will show all relevant workflows for the BO to choose from and to start.

  • 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

  • Generic Object Services ; create attachment function grey out in Tcode KA03

    Hi all,
    I would like to know how can I enable create attachment function in GOS toolbar in Tcode KA03.
    Currently it was grey out.
    However, was tried to use the same function in KS03 and it works.Please help. Thanks!

    I just found the solution...
    SAP note : 961572
    Symptom</u>
    In the transactions for displaying cost elements (KA03) and changing cost elements (KA02), the 'Services for Object' function does not work correctly, as most Generic Object Services are unavailable.
    Other terms
    KA03, KA02, SWO1, K_OBJECT_SERVICES_INITIALIZE, BUS1059, BUS1030
    Reason and Prerequisites
    The problem is caused by a program error.
    Solution
    Implement the attached program corrections
    Then go to Transaction SW01 (Business Object Builder), enter BUS1059 as the object type, click Change, and make the following changes:
    Navigate to Methods -> RevenueType.Display, press F2 to select it, and go to the 'ABAP' tab page: Select the 'Transaction' radio button, enter the name as KA03, and click 'Save'
    Navigate to Attributes -> Attribute properties, select the 'Mandatory' checkbox, and click 'Save'
    Then change the release status by navigating as follows:
    Edit -> Change Release Status -> Object Type -> To implemented
    Edit -> Change Release Status -> Object Type -> To released
    Then double-click BUS1059 (or select using F2) in SWO1 to reach the 'General' tab page, which should appear as follows:
    ObjectType      BUS1059         Revenue element
    Object Name      RevenueType
    Program          RBUS1059
    Objtype status   generated       Saved      released

  • Starting Workflow from Generic Object Services in IQS1 Transaction

    Hi All,
    My requirement is users will create the notification through IQS1 and they will attach the Adobe document through Generic Object service. In the notification Task, they will assign the repsonsible person for that form. Once they released the notification, i need to send a mail to the responsible person. I got the BO (BUS7051) . I created the custom WF and acitivated the BO & WF link. When i selected the Workflow Overview in the Generic Object Serivce, it is saying 'There are no workflows that have already worked with this object'. But when i checked the is worklow log in SWIA, my workflow got triggered.
    I would like to know why it was not showing when i selected the same in Generic Object Serivce. How to trigger Workflow throuhg Generic Object Service.
    Any info relevant to this, please share with me..
    regards,
    sasi

    Hi,
    For generic object services to find the workflow, the object must be attached to the workitem/workflow or used in the container.
    If the object is correctly used in the workflow, it will be visible via GOS.
    How did you use the object in the workflow?
    Jeroen.

  • Missing Function within VC01N Generic Object Services (simple note)

    We want to use the generic object services (GOS) within transaction VC01N. But we are missing the function to enter only a simple note. Behind the GOS Icon within VC01N menu step: Create -> Create note  is not available.
    This is different to other transactions with GOS functionality like VA02. There the menu step: Create -> Create note   is available.
    And idea why it is designed in this way and how we can make the simple note function available in CV01N.
    Many Thanks in advance for your help,.
    Klaus
    Edited by: Klaus Reitz on Sep 10, 2008 7:56 PM

    We want to use the generic object services (GOS) within transaction VC01N. But we are missing the function to enter only a simple note. Behind the GOS Icon within VC01N menu step: Create -> Create note  is not available.
    This is different to other transactions with GOS functionality like VA02. There the menu step: Create -> Create note   is available.
    And idea why it is designed in this way and how we can make the simple note function available in CV01N.
    Many Thanks in advance for your help,.
    Klaus
    Edited by: Klaus Reitz on Sep 10, 2008 7:56 PM

  • Add BUS2009 to generic object services

    Hi Experts,
    We have header level release strategy to PR approval. We are using BUS2105 delegated to ZBUS2105.
    There is another custom workflow has been defined, using BUS2009 delegated to ZBUS2009.
    in ME53n, Generic object services I can only see ZBUS2105 Workflows.
    Is there any method I can add show both the workflows there.
    Your help is much appreciated.
    Thanks,
    Gaurav

    Ya Arghdip, please elaborate how to instantiate the object inside the workflow design using GenericInstantiate Method of SYSTEM Business Object.
    in my case I am getting required entries in table but even thn I am not able to see workflow overview from Generic Object Services.
    Please help.
    Regards
    Nitin

Maybe you are looking for

  • How to do a Generic Connectivity (ODBC) ?

    Hello, Generic Connectivity provide Oracle Database to connect another database via ODBC. In my case, it is Oracle 8.1.6 which connects to Sybase Enterprise 11 on Win NT. The Module "Generic Connection" is installed. I view it by the Oracle Universal

  • Best iPod conversion programs?  from AVI, etc. to MPEG-4

    Some of the programs I've downloaded for trial do not work with Vista Home Premium. And if they do work it will only convery a 5MB file or so. My question is what is the best program for converting video files for play with an iPod touch while the OS

  • 2lis_02_item

    All,     My customer runs  trasaction s_alr_87012620 in R3 and looks at how much they have spent. I have source data 2lis_02_itm which I report on in BW. The figures are not even closed. My question is what is a relationship/s if any between the R3 t

  • How to access cached content?

    Today my Safari browser crashed. When I had it "reopen all windows from last session," the windows from a database I had been searching wouldn't go to the articles I'd had open because the addresses only seem to work if you're navigating there from t

  • Dude query with index

    Hi all, My problem is the next: I have two tables, one with 2500000 rows (A) and the other (B) with 1000 rows aprox. I have to join these two tables between two fields B.pk=A.fk. These two fields are indexed. And if I extract the explain plan it does