Exact  difference between se09 and se10

Hi all,
i want to know the exact difference  between se09 and se10  .
i know
SE09 is the workbench transport requests transaction - here the developers can track changes to all ABAP workbench objects (dictionary, reports, module pools, etc). This is a developer-specific transaction and mostly all developers have access to this transaction.
SE10 is the customizing request display transaction - this displays all the customizing requests in the system. Again, this could be restricted to Business analysts if required, since they would be doing most of the customizing changes in the system.
but i think this is not the correct answer which is  already appear in the thread list
recently sombady has answer like the one which i have mentioned above but the interviwer said that this is wrong.
CAN ANYONE TELL ME THE EXACT ANSWER AND HELP ME OUT.
Regards
fareed

Hi Fareed,
  First of all, i would say its a nice obsevation. As soon as i saw your post i started checking both transactions in seperate window and i found something interesting.
My Observation is as follows:-
<b>When we create a Transaction, apart from the Transaction Name, Program Name, Screen Number etc., we also can give someting called "AUTHORIZATION FOR CALLED TRANSACTIONS", under the menu: UTILITIES of the window.
Also we can use TRANSACTION:SE97, Maintain Transaction call Authorization in CALL TRANSACTION. Here we maintain the list of TRANSACTION CALLED for our Calling Transaction.
Now if you see, this list for Transaction SE09 and SE10, The Authorization for Called Transaction Differs a lot. Hence the difference bettween SE09 and SE10 is mainly the AUTHORIZATION Objects.</b>
<b>NOTE:</b> This is my own observation, so there are chances of misinterpretation from my side, accounting to the human err. But this is something new to me too.
Thanks and regards,
RAVI :).
PLEASE AWARD POINTS IF YOU FEEL MY SOLUTION TO YOUR QUESTION IS RIGHT $-).

Similar Messages

  • Difference Between SE09 and SE10

    What is the Difference Between SE09 and SE10?

    hi
      caliber
      there is no difference between this two t_codes.
    both they are used for transport the request.
    Hope this helps you.

  • Please let me know the difference between se09 and se10

    anyone please let me know when we will go for transaction se09 & se10 and what is the difference between these two transactions,difference between customizing request and workbench request.

    Hi,
    SE01 is the main screen of the Change and transport Organizer. From here the administrator can acheive all tasks related to transport requests - such as create, change, view logs, display client/delivery transports, etc. SE09 and SE10 can also be accessed from here. However, not all developers might be granted access to this transaction.
    SE09 is the workbench transport requests transaction - here the developers can track changes to all ABAP workbench objects (dictionary, reports, module pools, etc). This is a developer-specific transaction and mostly all developers have access to this transaction.
    SE10 is the customizing request display transaction - this displays all the customizing requests in the system. Again, this could be restricted to Business analysts if required, since they would be doing most of the customizing changes in the system.
    Hope this will help.
    Regards,
    Ferry Lianto

  • What is different between se09 and se10 ple explain it

    pls explain difference between se09 and se10 for request sending.
    thks
    mahesh

    Hi,
    See Below Link:
    se01,se09,se10 difference
    what is diff between se09 & se10.
    Regards,
    Viswa

  • Exact difference between function and procedure

    exact difference between function and procedure(real time diff.....not like return value, dml....) and function do some work at the same time that work also do procedure..why function

    ranitB wrote:
    1. Function is called Inline a query. A return value is must.
    But, procedure may/may not contain a return value.Not true.
    A function may be called in a query providing it meets certain limitations (no DDL, or transactional statements such as commit/rollback etc.).
    A function does not have to be called from a query, it can be called from other PL/SQL code or from other external applications.
    Regular functions must return a value, though pipelined functions do not...
    SQL> CREATE OR REPLACE TYPE split_tbl IS TABLE OF VARCHAR2(32767);
      2  /
    Type created.
    SQL> CREATE OR REPLACE FUNCTION split (p_list VARCHAR2, p_delim VARCHAR2:=' ') RETURN SPLIT_TBL PIPELINED IS
      2      l_idx    PLS_INTEGER;
      3      l_list   VARCHAR2(32767) := p_list;
      4      l_value  VARCHAR2(32767);
      5    BEGIN
      6      LOOP
      7        l_idx := INSTR(l_list, p_delim);
      8        IF l_idx > 0 THEN
      9          PIPE ROW(SUBSTR(l_list, 1, l_idx-1));
    10          l_list := SUBSTR(l_list, l_idx+LENGTH(p_delim));
    11        ELSE
    12          PIPE ROW(l_list);
    13          EXIT;
    14        END IF;
    15      END LOOP;
    16      RETURN;
    17    END SPLIT;
    18  /
    Function created.
    SQL> SELECT column_value
      2  FROM TABLE(split('FRED,JIM,BOB,TED,MARK',','));
    COLUMN_VALUE
    FRED
    JIM
    BOB
    TED
    MARK... whilst the definition of the function shows a return type, the return statement inside the function simply returns, without a value. That's because the data is passed back through a special "pipeline", and you can write code to show that the data is available to a query as soon as it's piped, and before the function has completed (reached the return statement) if you like.
    A procedure does not return a value (And no an OUT parameter is not a "returned" value, it's a writeable parameter, there's a difference)
    2. There are some limitations in functions which is possbl through procedures.
    Like - Oracle doesn't support DML in functions called in Select queries (using PRAGMA AUTONOMOUS_TRANSACTION will help).Not strictly true. and SQL query is considered to be DML, so a function could perform a query and then be used inside another query...
    SQL> ed
    Wrote file afiedt.buf
      1  create or replace function f_dname(p_deptno in number) return varchar2 is
      2    v_dname varchar2(10);
      3  begin
      4    select dname into v_dname
      5    from   dept
      6    where  deptno = p_deptno;
      7    return v_dname;
      8* end;
    SQL> /
    Function created.
    SQL> ed
    Wrote file afiedt.buf
      1* select empno, ename, f_dname(deptno) as dname from emp
    SQL> /
         EMPNO ENAME      DNAME
          7369 SMITH      RESEARCH
          7499 ALLEN      SALES
          7521 WARD       SALES
          7566 JONES      RESEARCH
          7654 MARTIN     SALES
          7698 BLAKE      SALES
          7782 CLARK      ACCOUNTING
          7788 SCOTT      RESEARCH
          7839 KING       ACCOUNTING
          7844 TURNER     SALES
          7876 ADAMS      RESEARCH
          7900 JAMES      SALES
          7902 FORD       RESEARCH
          7934 MILLER     ACCOUNTING
    14 rows selected.It's been discussed many times on the forum... my favourite here...
    {message:id=1668675}
    Edited by: BluShadow on 17-Sep-2012 09:22

  • Exact difference between VOimpl and VORowimpl and EO.

    Can anybody tell me whats the exact difference between
    VOimpl and VORowimpl and EO.
    Thanks

    Entity Object :BC4J entity objects encapsulate the business rules (validations, actions and so on) associated with a row in a database table, view, synonym or snapshot.
    View Object : (ViewImpl)
    In the simplest terms, a BC4J view object encapsulates a database query and provides iteration over and access to the view rows in its result set.
    View Row : ViewRowImpl :
    Represents a single row in a view object.
    For more Details see OA Developer Guide.
    Thanks

  • Difference bet  se09 and se10

    Hi all
    pls tell the  difference bet  se09 and se10
       Regards.
    Nagendra.

    hi nagendra,
    chk this thread:
    https://www.sdn.sap.com/irj/sdn/profile?userid=3498743
    SE09 transaction is for workbench transport request wherein the developers can track their changes or modifications to the workbench objects . 
    Whereas SE10 is a customising transport request transaction.this is used for displaying customising requests. Sometimes this may be restricted to business analysts.
    regards,
    keerthi

  • What is exact difference between table and template in script

    hello all
    what is exact difference between table and template in script

    Hi there.
    Tables alow you to achieve more complex flows with internal tables. You can use different types os lines, like footer, header, line items, and differente types of line items. Also, and most important, you have different processing blocks, again header block (processed before processing of first row), body block (rows) and footer block (after last row or page break).
    If you don't need any of this, use a template inside a loop to achieve something like a table. I personaly use templates only to draw lines, for example, before and after a loop, or to align some header in my documents.
    A table, is a loop and template mixed to become a very good tool.
    Regards.
    Valter Oliveira.
    Edited by: Valter Oliveira on Jun 5, 2008 5:10 PM

  • What is exact difference between PPM and PDS

    Hi,
    can any one prove details of Difference between PPM and PDS
    Thanks
    suresh

    Dear Suresh,
    please find below the detailed comparative account of PDS Vs PPM. You can copy and put it in an excel sheet in different columns and then read which is easy to understand.
    PDS:
    1. Production Data Structure (PDS) in APO 3.1 & Run Time Object (RTO) in 4.0 and above versions
    2. Master Data Object
    3. Useful for scenarios where the compoenent has got different validity periods
    4. Used as Master data Basis for Planning in SAP-APO
    5. Contains active Master data from iPPE (Integrated Product and Process Engineering) generated from a production version
    6. PPDS PDS & SNP PDS can be used as master data for planning
    7. Change Management, variant configuration & Phantom assemplies are supported in PDS
    8. Sub-contracting in SNP is fully integrated with R/3 is supported in PDS
    9. Direct transfer of SNP PDS from R/3 is possible
    10.Rapid Planning Matrix can be generated
    11. Not possible to maintain PDS directly in APO and can be used only in combination with R/3
    12. The transfer of data changes is simpler
    13. Not possible to create alternate SNP-PDS in std system for different mode combinations
    14. PDS can be automatically generated from two sources ie R/3 and iPPE
    PPM:
    1. Production Process Model
    2. Master Data Object
    3. Cannot be used for scenarios where the component has got different validity period
    4. Used as Master data Basis for Planning in SAP-APO
    5. Contains active Master data generated from the combination of routing (BoM & receipe) and production versions
    6. PPDS PPM & SNP PPM's can be used as master data for planning
    7. Not supported by PPM
    8. Not supported by PPM
    9. Not possible here. SNP PPMs will be generated via PPDS PPMs
    10. Not possible
    11. PPMs can be directly created in APO and can be modified without R/3 also.
    12. Little Complex when compared to PDS
    13. Alternate SNP-PPMs can be easily created
    14. PPM can be generated automatically generated only from R/3

  • Exact differences between Studio and Express, thinking of downgrading.

    Hi - I have a brand new copy of Logic Studio 9. I think Logic itself is wonderful, and I'm interested in some of the other tools such as the Apple loop Utility and the contents of the Jam Packs etc. What I found thought is that maybe I should have bought the Express edition instead since the likes of SoundTrack Pro, WaveBurner, Compressor and all the distributed cluster management software is way over powered for what I want to do, and I'll probably rarely use them. Mainstage I'm divided on - it might be useful but I could equally do without it.
    So what I'd like to know is, is the Logic in the Express edition exactly the same as in Studio, and does Express include the Loop Utility and the Jam Packs? If I sell my copy of Studio and downgrade to Express then will I lose any of these things?

    You ask about the loops utility - you don't get that. You do get 1000 or so loops (as opposed to 20K with Studio), no 40gigs of Jampacks. Full install of Express is 8gigs.
    Editing and whatnot is the same, flex, varispeed, etc. Amp designer stuff is the same.
    Can't say all the diffs, but you don't get Sculpture, Space Designer, or Delay designer.
    Not sure about ES2, the Clavinet, maybe things like Match EQ, AdLimit, LinPhase EQ, vocoder. I think at least a couple of those are not in Express.

  • SE09 and SE10.

    Hi,
    what are differences between SE09 and SE10.
    Yours truly

    No difference anymore.
    Earlier i think they were different, but now no difference they both call the same report.
    Earlier... it was like this(alteast in R/3 4.0B):
    The CTO comprises the following transactions:
    · Customizing Organizer (SE10)
    · Workbench Organizer (SE09)
    · Transport Organizer (SE01)
    Regards,
    Siddhesh
    Edited by: Siddhesh Ghag on Apr 10, 2008 1:29 PM

  • Diff se09 and se10

    Hi all,
               Can anybody please say me the difference between se09 and se10
    Thanks in advance

    In earlier versions – se09 used for workbench request (client independent)and se10 used for customizing request
    (Client dependent) and SE01 is extend view of both workbench and customizing request.
    But now ( from 4.6 ) se09 and se10 are same and has both workbench and customizing request and se01 is the extend view of the same like you can directly enter the request number and display the details of the same or get list of request created by user in particular client, etc.

  • Difference between party and service

    Hi,
       I know  when we are going to  party and service (Normally party means. when we are doing Business to Business ) but what is exact difference  between party and service.. and if possible  definitions  also..
    Thanks
    Babu.

    Babu,
    Refer to url http://help.sap.com/saphelp_nw04/helpdata/en/87/1d6e3fefa13042e10000000a114084/frameset.htm
    An excerpt
    Services without a party are typically used when configuring company-internal processes. Parties (with assigned services) are typically used when configuring cross-company processes.
    Also refer to one of your previous forum questions and my response Re: Business System and Business Service Posted: Nov 28, 2007 4:31 PM in response to: BABU
    You usually use business system services when configuring internal company processes.
    You usually use business services when configuring cross-company processes. In this case, you only make your interfaces known to the business partners involved and either do not make any details about your own system landscape available, or only specific details.
    Hope this helps,
    Mike

  • What is the difference between parameter and parameters

    hi everybody
    what is the exact difference between parameter and parameters

    Hi,
    As far as selection-screens are concerned, the word PARAMETERS and PARAMETER is the same. I just tried it. Below is an example:
    **PARAMETERS**
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS: p_bukrs TYPE t001-bukrs OBLIGATORY,
                p_asof  TYPE bsis-budat OBLIGATORY,
                p_year  TYPE bsis-gjahr OBLIGATORY.
    SELECT-OPTIONS: s_hkont FOR bsis-hkont NO INTERVALS OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK b1.
    **PARAMETER**
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETER:  p_bukrs TYPE t001-bukrs OBLIGATORY,
                p_asof  TYPE bsis-budat OBLIGATORY,
                p_year  TYPE bsis-gjahr OBLIGATORY.
    SELECT-OPTIONS: s_hkont FOR bsis-hkont NO INTERVALS OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK b1.
    Hope this helps...
    P.S. Please award points for useful answers by clicking on the star on the left.

  • Can somebody explain difference between SYS_REFCURSOR and REFCURSOR

    I want to know the exact difference between sys_refcursor and refcursor.

    Please do not post Re: SYS_REFCURSOR and CURSOR. It makes them soggy and difficult to light, er, hard to follow.
    Thank you for your future co-operation.
    Cheers, APC

Maybe you are looking for

  • RAM previewing and rendering not working correctly

    Hi, Today I was just about finished editing a video on CS6 and then when I'm about to add the last effect and render it it stuffs up on me:(. What happens is that while RAM previewing at some point during the loading of the preview it will stop loadi

  • Variable offset for calday is not working - urgent

    Dear experts, I need to create RKF on PO count by 0calday. I need PO count for last 3 cal days in columns. I have a standard variable on 0calday, characteristic type, single value, mandatory. I have created 3 RKF -having offesets:  0calday, 0calday-1

  • Mini to iPad

    Can I stream from my mac mini to my iPad2?

  • Calling function in data model

    Hello All, I am having 1 issues in a report. Here is what i am doing. I created a type of varchar2 and created a function which will return me the output of type. this runs fine in sqlplus but when i put the same query in data model and join another

  • {Solved} Windows 8.1 Doesn't show users when windows loads, only shows options for accessibility and shutdown/restart

    I just recently come into a problem on a dell all-in-one, where the computer has been updated to windows 8.1 and doesn't show users, only a blue screen with the power options and accessibility options and here is how I fixed it. Note: you will lose y