Mm02 tcode attacment list remove procedure

Dear Experts,
MM02 Tcode security issue
In MM02, mention the material number and choose the Basic view & click on "Attachment list" as shown below
Once you click on attachment, you can see the attachment list in pop-up where you can select & view the documents.
NOTE: But we need to remove the attachment list view authorization could you please give solution for blocking the attachment list & create attachment
we are trace the tcode  through ST01 But we are finding those objects S_BDS_DS , S_ALV_LAYO,  S_GUI  Three objects only for this i checked and blocked the object it will not work
please help me to sort out issue .
Best Regards
Suresh M

I found the solution for blocking the "Attachment list" & create attachments of  services of object button through changing the parameter its self it will not appear in the tcodes  MM01,MM02 and mm03
procedure :
go to >>>>SU01 Tcode >>>>>>>>parameters tab  >>enter the parameter
SGOSNOBUT  x Do not display button 'Services for Object'
and save it
Best Regards
SURESH

Similar Messages

  • How to find out list of procedures and functions inside a package

    How I can find out the list of Procedures and Functions inside a Package.

    Look at ALL_PROCEDURES and ALL_ARGUMENTS.

  • F4 help for field old material No in MM02 tcode

    Hi Gurus,
    I want to add F4 help to Old material No Field in MM02 Tcode.
    I searched all possible Exits but couldnt find any one which triggers in the PBO.
    Please give me suggestions.
    Regards,
    Milind

    Hi,
    In program SAPLMGD1 look for screen 2001. You can look for from here.
    The other way you can create a program and put the field old mat. number here and match this field with your search help. Than with tcode OMT3B you can put this program to materal master basic data / general data 1 tab.
    I hope this will help you.
    Regards,
    techmaster

  • List of procedures in a package

    Hi,
    Iam using oracle 11g.
    is there any option to view list of procedures in a package.
    all_procedures gives me list of procedures defined in package specification.
    But i need list of procedures defined in package body both public and private procedures
    Thanks in advance..
    Edited by: user9080289 on Aug 9, 2010 5:00 AM
    Edited by: user9080289 on Aug 9, 2010 5:00 AM

    try this
    SELECT v.owner,
           (CASE V.type
            WHEN 'FUNCTION'  THEN NULL
            WHEN 'PROCEDURE' THEN NULL
            ELSE v.name
            END
           )PACKAGE_NAME ,
            UPPER(
            SUBSTR
            TRANSLATE(
            LTRIM(REPLACE(SUBSTR(ltrim(v.text),LENGTH('PROCEDURE')+1),'"',''),' '),
            '+++'
            ),---TEXT TO BE SEARCH
            1,---STARTING POSITION
            INSTR(
            TRANSLATE(
            LTRIM(REPLACE(SUBSTR(ltrim(v.text),LENGTH('PROCEDURE')+1),'"',''),' '),
            '+++'
            ||'+'
            '+'
            )-1 ---lENGTH
            )OBJECT_NAME
            TRIM(SUBSTR(ltrim(v.text),1,LENGTH('PROCEDURE')))"TYPE"
    FROM dba_source v
    WHERE (TRIM(ltrim(v.text)) LIKE ('FUNCTION%') OR TRIM(ltrim(v.text)) LIKE ('PROCEDURE%')) AND
          v.owner IN (your schema) AND
          v.type IN ('PACKAGE BODY')
    ORDER BY V.OWNER,V.name,v.text;note:
    you may not need the Translate function here, but in my place the spacing of the procedure is a little bit messy.
    maybe there are other better ways than this
    hope this help
    Edited by: HGDBA on Aug 9, 2010 8:09 AM

  • Is there ant standard tcode for list of vendors, suppliers in ECC 6.0

    can any body tell me is there ant standard tcode for list of vendors, suppliers in ECC 6.0

    Hi
    The standard Tcode for list of vendors is S_ALR_87012086 - Vendor List .
    Check whether it is helpful to you or not.
    Plz assign points if it is helpful.
    Regards
    Tapan

  • Tcode for listing database in SAP AII 4.0

    Hi,
    Can anyone tell me what is the Tcode for listing Database in SAP AII 4.0?

    If you're looking for a listing of AII 4.0 tables, most are prefixed with "/AIN/".  You can go to SE16 and type in <b>/AIN/*</b> in the input field and drop down on it to display the different tables and their descriptions.

  • DBMS_JOB.REMOVE procedure

    Hi,
    I submitted a Stored Proc as an Oracle JOB using DBMS_JOB.SUBMIT procedure to execute everyday. I checked it in DBMS_JOBS and USER_JOBS views, I couldn't find it. I submitted the job again. Now that I could see two jobs scheduled (the same procedure) for a daily execution. If I remove the jobs using DBMS_JOB.REMOVE procedure and check the dbms_jobs view in the same session, I cannot see the jobs as scheduled. When I check from another session, the jobs are still scheduled and both of them gets executed on a daily basis now, which I don't need. Why the DBMS_JOB.REMOVE is not removing the job from the job queue? Any clue?
    My Oracle Version is 9.2
    meetme

    If you have exited from the session using exit, then, the job which you remove should have gone. I mean, when you use exit from the session pre-commit take place.

  • MM02 Tcode: Restrict Change for field (Com Comm./imp. code)

    Hi All
    How can we restrict the change access to Comm./imp. code no in MM02 tcode.
    This field lies in Foreign trade Export view of the tcode.
    The Field is related to Table MARC
    Field -STAWN.
    Kindly let me know the status.

    Doesn't have one of its own. M_MATE_STA does not apply here. You will have to face the challenge to do a transaction variant using tx. SHD0.

  • Why we does not have List.contains(E o) List.remove(E o)

    List class is having
    bool contains(Object o)
    bool remove(Object o)
    I was wondering why the List class doesn't have
    bool contains(Object o)
    bool remove(Object o)
    Isn't user will not protected by compiler if they try to do some wrong stuff?
    List<String> list = new ArrayList<String>();
    list.remove(new Integer(123)); // I expect compiler to prevent us to do this???
    Thanks!
    Cheok

    Peter__Lawrey wrote:
    KwangHooi wrote:
    Isn't user will not protected by compiler if they try to do some wrong stuff?User's should be protected, but developers need to understand what they are doing.
    List<String> list = new ArrayList<String>();
    list.remove(new Integer(123)); // I expect compiler to prevent us to do this???That assumes this is an error. The compiler could only determine trivial, pointless cases.
    As a developer you need to be able to determine much more complex cases than the compiler ever could.I do not agree with you.
    Generics feature in Java allow "a type or method to operate on objects of various types while providing compile-time type safety." When we mention about "compile-time type safety", we means the code may be compiled without errors and warnings and does not raise any unexpected ClassCastExceptions at runtime.
    Cosider the following code before we are having generic feature :-
    List v = new ArrayList();
    v.add("test");
    Integer i = (Integer)v.get(0);We will get java.lang.ClassCastException while trying to execute the third line. However, by using generic, programmers are protected from making mistake
    List<String> v = new ArrayList<String>();
    v.add("test");
    Integer i = v.get(0);Compiling the third line of this fragment with J2SE 1.5 will yield a compile-time error because the compiler will detect that v.get(0) returns String instead of Integer.
    So, a class designer, shall design the class in such a way that, "easy to be used, difficult to be mis-used"
    Come back to the original question :-
    If we already have a type safe
    public boolean add(E e)
    Why cann't we have
    public boolean contains(E e)
    public boolean remove(E e)

  • Sales Order Changes - Tcode for Listing

    Hi, can anyone advise if there's a specific tcode to list SO changes other than viewing them directly in the SO via VA02/VA03?
    Thanks
    PP

    Hi,
    There is no such standard T-code for displaying changes made to a sales order.
    You can take help of technical consultant for developing a report using the tables CDHDR & CDPOS (Header & Item respectively) for all the transactional changes made.
    Otherwise you can also create a query to display changes & person responsible using these tables.
    Regards,
    Vijay

  • TS4268 I've tried the listed troubleshooting procedures to activate Facetime and iMessage, but no luck. Are there any other options? If it helps, I'm currently overseas and only using WiFi to connect.

    I've tried the listed troubleshooting procedures to activate Facetime and iMessage, but no luck. Are there any other options? If it helps, I'm currently overseas and only using WiFi to connect.

        lovethoseleaves,
    Oh no! I am saddened to hear that you are having troubles with your MMS pictures. I know that this can be an important thing to be able to do. I appreciate you working with us to get this matter resolved as well. I see that you have spent time working with us, and I know that can also be frustrating. There are a few things we can check though. Are these to any specific numbers or all? A factory reset certainly should've resolved this. We can check into the account set up as well for that if need be. Please share any additional details that you can think of. Thanks.
    ErinW_VZWSupport
    Follow us on Twitter @VZWSupport

  • List of Procedures/Functions in a Package

    Hi All,
    Is it possible to get List of procedure/functions in a package with their number of lines? I tried querying user_source but it treat package and package as a separate object but not function/procedures in that package.
    Thanks.

    dbdan wrote:
    There are some standards related to Quality Assurance where the quality of product is determined based on the bugs per n number of lines of code. I guess it is 0.01 bug per 1000 lines of code in Six-Sigma (may be not exact). We need to present this to client. My manage want us to get granularity even function/procedures within a package, well that is meaningless, if we can count total lines in a package, but Boss is always right :)What a bunch of baloney. Quality of code is not measured by number of lines but by programming design. And if anything the C language showed that a single line of code can be the most complex part of a program - and more difficult to understand and maintain than 100 "+plain+" lines of code.
    Also, what about comments and spacing and formatting? I break down SQL statements in PL/SQL into a properly indented statements that spans multiple lines. So if there are 20 columns to select, there will be 20 lines. Compare this to instead put all 20 columns on a single line.
    So using pure line number calculation will make my formatting score a bigger number on the bug chart. Not formatting at all and simply stuffing everything onto a single line (a nice unreadable mess) will be considered to have less bugs!?
    So you will need to count statements and not lines. But how accurate is that when some statements are significantly more complex than others? PL/SQL and other languages are not RISC machines where all statements are essentially equal.
    Nah.. I think this approach is idiotic, severely flawed, and that your boss is in serious needs of basic education in the principles and fundamentals of software engineering.

  • How to obtain the list of procedures and functions

    hi,
    how can I obtain the list of all the stored procedure & functions in the database?

    SELECT * FROM DBA_OBJECTS WHERE OBJECT_TYPE IN ('FUNCTION','PROCEDURE')
    Cheers

  • Standard tcode for list of BOM & routing

    Dear Friends,
    Is there any standard report in sap to view entire list of BOM and Routing apart from viewing thru tables MAST,STKO for BOM and POKL for routing
    Gvrrus

    Dear GVR,
    1.You can use CEWB to list down all the BOM and routing available,to execute CEWB,you have to
    configure the individual working area in OP77.
    2.Check CA51 to list down the routing details of all the materials for specifying the task list type.
    3.For finding out all the materials that has a BOM is just goto CS03,press F4 in the field for material
    selection,now in the search method serach using material by bill of material,eneter the plant,BOM
    usage and remove the maximum no of hits and enter,now you can download this by right clicking and
    selecting download.
    In my understanding use the step no 3 for a rough checking purpose,but for exact details always use
    the tables.
    Check and revert back.
    Regards
    Mangalraj.S

  • Remove Procedure

    How do I remove a PL/SQL procedure?
    In particular, I attempted to "Create or Replace Function MYFUNCTION" when MYFUNCTION had previously been a procedure, and I get the following:
    ORA-00955: name is already used by an existing object
    Since I would like to keep the same name, and more importantly, figure out how remove (or delete) the procedure.
    Thanks,
    james smyth

    drop procedure MYFUNCTION;
    Then continue with you create or replace ...

Maybe you are looking for

  • VPN Clients cannot access remote site

    Hey there, I am pretty new in configuring Cisco devices and now I need some help. I have 2 site here: site A Cisco 891 external IP: 195.xxx.yyy.zzz VPN Gateway for Remote users local IP: VLAN10 10.133.10.0 /23 site B Cisco 891 external IP: 62.xxx.yyy

  • The user does not exist or is not unique - workflow problem

    I am using Solution Starters Dynamic Management workflow on my Project Server 2010.  I was working fine for a year now, but today all workflows were broken when someone tried to submit them to a next stage. "Workflow terminated. An error has occurred

  • Korg MicroKontrol

    So far I haven't found too useful or helpful information in my search. Some people seem to have working native mode and others don't. After trial and errors I've got it partially working... I got this keyboard in the hope I can have an easier access

  • Do you think middleware or XIF adapter is based on SOA?

    Hi, For current CRM 5.0 version, do you think middleware XIF adapter is based on SOA? Or classic tech.? How about it in new CRM?

  • Upgrading from Oracle DB from 10.2.0.3 to 10.2.0.4

    Hello All, I have a requirement to connect to both Oracle DB and SQL Server. So for that I believe I need to make use of Gateway Application. DG4MSQL comes integrated with 11g but for 10g I need to upgrade to 10.2.0.4. Please feel to correct me if I