How to disable the Services for Object in IW32?

Hi Experts,
May i know how to deactivate the create and delete attachment option if the status of the order in IW32 is already TECO? Please help

I have found my own answer.  If your user type is setup as 'Service', you will not be have the "Services for Object" icon on IQS23.   If you need the icon to perform the that service, you must change the user type to Dialog from Logon Data.

Similar Messages

  • 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

  • How can I find services for object for PM Notification

    Hi all
    How can I find services for object(attached files ) for PM Notification  ?
    I can see then,for examle ,using transaction Iw22 :System---->Services for object
      My requirement are : 1. open attached file of selected notification for display ( if exists one)
                                     2. If user wants to attach file as service of object
                                           what function exists for it ?
    Please your help

    Hi SD,
    I have checked in SUIM and SU24 also. But I didn't find.  Could you please tell me any other way to finding out the authorization objects.
    Thanks,
    bsv.

  • Does Anyone Knows How To Disable The "Check For Updates" Option in Adobe Edge Code and Reflow?

    Does Anyone Knows How To Disable The "Check For Updates" Option in Adobe Edge Code and Reflow?
    Thanks in Advance

    I don't think there is a way for Edge Code. I'm not sure about Reflow.
    Why don't you just upgrade? That will stop the notifications.
    Randy

  • Where does the Services for Object (GOS) store data?

    I have a requirement that I need to upload a Blocking Reason document for any blocked vendor.
    The normal process we follow for blocking is XK02->Extras-> Blocked Data or XK05.
    We want to check before the Vendor is saved with blocked data whether he/she (who is blocking the vendor) has uploaded the Blocking Reason Document .
    I found out that we have an option in Vendor screen for uploading a document under 'Services for Object' in XK02 as shown in the below (in the red box).
    After uploading the attachment it will show the uploaded document in the Attachment List as shown below.
    I don't know where this entry is stored. I checked in the table SOOD (SAPoffice: Object definition), but there is no entry in there.
    I would like to know on how to check whether the file has been uploaded at the time of saving the vendor.
    If anyone knows the table in which this data is stored, kindly point it out.
    Thank You,
    Sreejith Babu.

    Hi Sreehith,
    Please refer the following document: http://wiki.scn.sap.com/wiki/x/yIEEBQ
    These attachments can be downloaded using FM BDS_GOS_CONNECTIONS_GET
    Refer the following document: Printing or Downloading Service For Object Attachments to local desktop
    Regards,
    Vijay

  • How to control button "services for object" which appears in cv01/02/03

    Hi Gurus,
    In tx cv01/02/03, I get a button at the top of the window called "services for object", which gives me options as ....
      Create------(attachment/note/external document/Store business documents)
      Attachment List
      Private note
      Send (Send object with note/Object outbox)
      Relationships
      Workflow
      My objects
      Help for object services
    With the help of this button I can even attach documents in CV03 tx. through create attchment.
    Can we control appearance of this button according to the transactions?? e.g. in CV01 and CV02 it should appear, but in CV03 it should not allow to create further attachments.....
    Thanks in adavnce!
    Regards,
    Akshay

    Thanks a ton Benakaraj !!
    I am working on it...... will let you know the outcome....
    I am just not clear abiout where to insert the sodes given in the pdf   ???  pLease let me know.
    Thanks a lot,
    Akshay
    Edited by: Akshay Kurhe on Jun 5, 2009 11:17 AM

  • SRQM_NOTES - how to disable the tooltip for the textfield

    Hello,
    in SRQM_NOTES the textarea represents this contextnote attribute:
    //BTTEXT/STRUCT.CONC_LINES
    How can we disable the tooltip for this textarea.
    It is not usable that there is a tooltip window in the way while a user tries to read the text behind the tooltip.
    Thank you.
    Kind regards
    Manfred

    Hi
    At the moment GET_P looks like this:
    METHOD get_p_conc_lines.
      CASE iv_property.
        WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.
          rv_value = cl_bsp_dlc_view_descriptor=>field_type_textarea.
        WHEN if_bsp_wd_model_setter_getter=>fp_textarea_rows.
          rv_value = 20.
        WHEN if_bsp_wd_model_setter_getter=>fp_tooltip.
          rv_value = space.
      ENDCASE.
    ENDMETHOD.
    Thank you
    Kind regards
    Manfred

  • How to disable the  Options for a decision workitem at runtime

    I want to  disable the  Options (in this  case, Approve  and Reject ) for a decision workitem  at runtime (depending on a condition).

    Hi Dhavalshree,
    As vijay have mentioned, I will not be possible to Disable option of a decision step at runtime.
    You can get this functionality by following the steps mentioned below
    1)     Have one more step (CONDITION STEP) before this decision step in workflow definition
    2)     In the condition step, with the step name say (approve or reject)
    3)     In the condtion tab, define a flag say &YFLAG&
    4)     Write the expression to this flag as &YFLAG& = Y
    5)     Define two outcomes for this condition step i.e. True and False
    6)     Under u2018Trueu2019 give the outcome name as APPROVE
    7)     Under u2018Falseu2019 give the outcome name as REJECT
    8)     Based on the path have two different decision steps in each path of condtion step
    9)     In the Approve Pathu2019s decision step define only one option i.e. Approve
    10)     In the Reject Pathu2019s decision step define only one option i.e. Reject.
    Hope this will help you.
    Regards,
    Deepa Kulkarni

  • HT4061 How to disable the ESN for selling the iPad.

    I tried to sell my ipad2 to Gazelle. They refused to accept it because they said the ESN was still active. I told them to return it to me. I called ATT(my carrier) and they deleted the account. However Gazelle says the ESN is still there. I asked them to return it. When I get it back, how do I disable the ESN?

    No, I didn't.. I thought either they'd know that or they'd complain that they need the micro sim to test it. But thanks. I'll ask them.

  • How to disable the passcode for iPhone and iPad

    I am home using the phone and iPad.  I only wish to use the passcode security when I travel.  Can I disable the passcode? 

    Settings>General>Passcode...enter your Passcode, then: Turn Passcode Off.

  • Automating the services for object for a work order

    Hi All,
    Can anyone post an ABAP code using which we can automate the process of creating a note for a Work order at the time of saving the work order. I need to create a note with the work order at the time of saving it. This note needs to be attached automatically. Can anyone help me with the code to do this?

    Uhm... If you want us to do your job, how much are you willing to pay?
    How is the note "attached"? If it's an attachment using GOS then the code has already been posted on SDN - look it up. You'll need to add it to the work order creation (I'm guessing there should be some kind of BAPI or FM).

  • How to disable the link for Credit -check at item level

    Hi Experts,
    I have an issue tht we want to make a block to the link available for
    credit-release at item level. In the view of the item, when we select the item
    in edit view we have a button saying MORE and in tht we have CHEC CREDIT RELEASE.
    We want to disable this.
    I found tht if we made some changes in do_prepare method, we can solve this issue.,but i was
    check fi anyother way we can do it.
    Awaiting for the replies.
    Thanks,
    SA

    Hey Saurabh,
    If you dont want the functionality occurred due to that button, just simply comment the event handler code for that particular button. That will definitely help.
    Let me know if that work.
    Regards,
    Shobhit

  • How to Disable the ability for a sys admin to log into Oracle?

    Hello -
    I want to put security in place so the SA will not be able to log in at all to Oracle. How can I do that? The SA can su over to any user. Would I have to use a password file, and only have specific users in the database has sysdba authority?
    Many Thanks in advance!

    Hi,
    Basically, there is no way to do that.
    However, there is a kind of "workaround" to do that. Take a look at metalink note 50507.1in the section called: Disabling Operating System Authentication
    It is not a "nice" solution, but should work.
    Liron Amitzi
    Senior DBA consultant
    [www.dbsnaps.com]
    [www.orbiumsoftware.com]

  • How to disable the prompt for password when receiving a call on Lync mobile on iPhone

    We are doing a pilot on Lync 2013.  We have mobile phones: i Phones.
    When we are receiving a call, we are prompted to enter password to take the call, which in certain cases, might be a real irritant.  Is there a way to bypass, or simply removing this prompt?

    I am not aware of any password to receive calls (and certainly there's no option I am aware of within Lync mobility policy settings)
    Is this a phone password (i.e. such as the PIN code) or do you enter your AD password? 
    If it's the phone password then you can turn it off through Settings > Passcode, unless it set by company policy (i.e through ActiveSync policies in which case this is set through Exchange). Bear in mind that if it is your phone password then you'll have
    no security on your phone.
    If this helped you please click "Vote As Helpful" if it answered your question please click "Mark As Answer"
    Georg Thomas | Lync MVP
    Blog www.lynced.com.au | Twitter
    @georgathomas
    Lync Edge Port Check (Beta)

  • My workflow is not listed in the GOS (Services for object)

    Hello Experts,
    I developed a workflow and linked the BO ZBUS2081. This is sub type of standard BO BUS2081. I am using the custom event INVOICEBLOCKED to trigger the workflow. The workflow is triggered propely when the invoce is created (with block) thru MIRO and I can see the workflow in SWEL or SWI6 or SWI14.
    But, the workflow is not listed in the services for objects button of the invoice display using MIR4.
    If I use the standard event 'BLOCKEDQUANT' as starting event, the workflow is triggered and I can view it in services for object.
    In the table SWW_WI2OBJ has all entries about the workflow triggered using standard event or custom event.
    How can I make the services for object in invoice list my workflow that was triggered using custom evet?
    Appreciate your help.
    Regards
    Siva S

    Hi Siva
    Thanks for marking this thread answered.....We are glad that your issue was solved :-) ....... But I do agree with Rick Bakker, the first correct answer was by Paul Bakker and I had just elaborated on that.
    Please mark the first correct answer as the "green" one.
    Regards,
    Modak

Maybe you are looking for

  • How do I vertically align paragraphs in a page?

    I am new to Pages, and I've run across a problem that is really aggravating because it should not be rocket science... but it seems to be, at least for me. I need to center the text on the page so there is equal white space above and below it. In Wor

  • Speed dropped to 1mb from 6mb

    Hi my internet speed has dropped and i was hoping you guys know how to fix it im using a hh3 and have been with bt for 3-4 years and my test results Solved! Go to Solution.

  • Loading UI components from config file

    Hi, I wanted to know your opinion about a project that i'm working on. The inicial idea of the project is to have a config file (file.ini) with a syntax similar to this one: [Component1] type = sevenseg width = 200 height = 50 numberOfDigits = 5 fore

  • ACR 6.3rc

    I just installed ACR6.3rc to read some NEF files taken by Nikon D7000.  Everythings appear ok except that the Bridge App can only preview first 18 pictures in a folder.  Is this my system's problem, or a bug in the new ACR?  My system is Win7 (64bits

  • Sales taxes

    hi What are taxes we are using in sales? regards krishna