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

Similar Messages

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

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

  • What is different between Analytics and VC Forum?

    Hi Experts!
    I don't know what is different between Analytics and VC forum in SDN. of course, Analytics is not Visual composer.
    But, I guess that most of analytics questions will be related to Visual Composer in this Analytics Forum.
    How about your opinion?

    Hi Young
    Analytics is business process oriented and thus it's domain is BPX hence it is placed under forum for BPX(Business Process Expert).
    VC is a tool and it is in technology domain.
    First we discuss a scernario based on particular business process. Then we prepare detailed level of analysis-reporting and actionable analytics this business process would need. Then we use tools like VC to accomplish this actionable analytics.
    Hope this helps
    Regards
    Pradip

  • What's Different Between ODI and FDQM ?

    I need to know What's Different Between ODI and FDQM ?

    At is simplest ODI is an enterprise scale ELT tool that can cope with moving very large amounts of data bwteen heteregeneous systems. It requires a fair degree of technical knowledge to use well and that the user is pretty competent with SQL. It is not really an end user tool and the jobs tend to be lights out scheduled processes with a limited user interface for executing these jobs. FDQM is more of a data quaility tool which gives the average end user the out of the box functionality to be able to transform and load data into various target systems. It is not designed to move very large amounts of data efficiently i.e. multi millions of lines of data like ODI. However it does have a rich user interface that provides an easy to use mapping engine, a repeatbale controlled data load process and has a host of in built reporting and audit features which would have to be built from scratch in a tool like ODI

  • What's different between OWB9i and Discorver4i?

    1.What's different between OWB9i and Discorver4i?
    2.Discorver4i is ROLAP or MOLAP or HOLAP?

    1.What's different between OWB9i and Discorver4i?
    OWB9i is a tool used to create data marts or data warehouses. You would use it to create the ETT Extraction, Transformation,
    and Transfer or Load (ETL). Discoverer is a reporting tool.
    2.Discorver4i is ROLAP or MOLAP or HOLAP
    Discoverer 4i is a ROLAP tool. Relational OLAP.
    Christopher
    www.iloveapple.com

  • What' s different between color and swatches?

    what' s different between color and swatches?

    1.What's different between OWB9i and Discorver4i?
    OWB9i is a tool used to create data marts or data warehouses. You would use it to create the ETT Extraction, Transformation,
    and Transfer or Load (ETL). Discoverer is a reporting tool.
    2.Discorver4i is ROLAP or MOLAP or HOLAP
    Discoverer 4i is a ROLAP tool. Relational OLAP.
    Christopher
    www.iloveapple.com

  • What is different between #INITSEG and INITSEG in file bootsect.s?

    I read the file bootsect.s,I think the INITSEG is constant,
    and I think #INITSEG and INITSEG are always equal 0x9000,
    but why are they different usage? 
    Look:
    .text
    BOOTSEG = 0x07c0
    INITSEG = 0x9000
    entry start
    start:
    mov ax,#BOOTSEG
    mov ds,ax
    mov ax,#INITSEG
    mov es,ax
    jmpi go,INITSEG
    I want to know what is different between #INITSEG and INITSEG?
    How to use  #INITSEG and INITSEG?

    I think you are currently mixing up the two definitions. I think the assembler here uses the hash prefix (#) to declare values and a clean number for addresses and offsets.
    ... http://www.oldlinux.org/Linux.old/kerne … bootsect.s
    BOOTSEG = 0x07c0 ! original address of boot-sector
    INITSEG = 0x9000 ! we move boot here - out of the way
    start:
    mov ax,#BOOTSEG ! set register ax to #BOOTSEG = value 0x07c0
    mov ds,ax ! set register ds to register ax = value 0x07c0
    mov ax,#INITSEG ! set register ax to #INITSEG = value 0x9000
    mov es,ax ! set register es to register ax = value 0x07c0
    ! ds and ax cannot be filled directly, the value has to be set to the accumulator register (ax) first I think.
    ! Thats the reason for 4 lines instead of 2
    mov cx,#256 ! set register cx to #256 = value 256
    sub si,si ! set register si to 0
    sub di,di ! set register di to 0
    rep ! call the command in the next line
    movw ! move cx (256) words = 512 bytes from ds (0x07c0) to es (0x9000)
    jmpi go,INITSEG ! jump to the address go + 0x9000. go is the offset of the label "go" to the start of the moved memory segment
    go: mov ax,cs ! here is the label "go"
    Edit: That should be as86 (man as).
    Last edited by progandy (2013-02-21 13:25:03)

  • What are different between gateway and mangement server in scom ?

    Hi all,
    can anyone let me know What are different between gateway and mangement server in scom ?
    thanks,
    Sengottuvel M

    Hi,
    Hope this can answer you question
    About Gateway Servers in Operations Manager
    http://technet.microsoft.com/en-us/library/hh212823.aspx
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • What's different between 32bit and 64bit ?

    Hi all,
    What's different between 32bit and 64bit for Oracle Database 10g Release 1 ?
    such as "Oracle Database 10g Release 1 (10.1.0.2) for Microsoft Windows (32-bit)"
    and "Oracle Database 10g Release 1 (10.1.0.2) for Microsoft Windows (64-bit Itanium)"
    Thanks
    fish

    What's different between 32bit and 64bit ? oooh, about 32 bits ;)
    what is different between (x64) and (64-bit Itanium)This really is the short of question google could answer better but in a nutshell Itanium is the Intel 64bit chip (AKA the Itanic, due to its troubled history). Whereas x64 is the appelation given to AMD's 64bit Opteron chips; I believe x64 was coined by Microsoft but Sun use it as well.
    Cheers, APC.

  • 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's different between CUVC and MeetingPlace ?

    I'm a new guy for Video solution of Cisco and i would like to know what the different between cisco unified video conferencing and MeetingPlace.
    Please help me to clear about both solution thx a lot.

    No one can answer T^T so saddd . wait some one

  • What's different between statfulacl and detailedacl

    i just confused that what's different between stateful ACL and Detailed ACL in Hyper-V 2012R2, i know stateful ACL will create return traffic automatically
    for example:
    Add-VMNetworkAdapterExtendedAcl –VMName “ApplicationServer” –Action “Allow” –Direction “Outbound” 80 “TCP” –Weight 100 –Stateful –Timeout 3600
    if i delete “-statful” and “timeout", then what‘s will happen,any performance issue or something else?

    Looking up the PowerShell command in TechNet will explain each parameter.  As will the PowerShell command Help
    Add-VMNetworkAdapterExtendedAcl -parameter Stateful.
    http://technet.microsoft.com/en-us/library/dn464289.aspx
    If you do not understand the explanation provided by TechNet or Help, please post your question about its definition back here.
    . : | : . : | : . tim

  • What is different between JES and Java EE SDK ?

    Hi
    Thank you for reading my post.
    can some one tell me what is different between Java EE SDK and JES ?
    What i think is:
    - Both of them support Java EE 5.0
    - Both of them has access manager 7.1
    Can we develop application on JES using netbeans IDE ?
    What technicall benefits JES bring that Java EE SDK does not?
    Thanks

    The Java EE SDK is a developer kit that includes Application Server 9 PE,
    as well as early access to other technologies and tools related
    to Java EE 5 development. It is primarily targeted at developers
    for doing development and prototyping -- although you can also
    use it in production.
    Java Enterprise System is a larger integrated stack of software and
    services sold under a subscription model. The current release includes
    Application Server 8.2 EE (and is therefore J2EE 1.4 based), but also
    includes a large number of other products such as Web Server,
    Directory Server, Portal Server, etc. For more details see:
    http://www.sun.com/software/javaenterprisesystem
    Note that it is an unfortunate co-incidence that the current release
    of Java Enterprise System is Java ES 5, which has nothing to do with
    Java EE 5!
    Yes you can use Netbeans to develop applications for Java ES.
    So comparing the two is really comparing apples to oranges. If you
    are a developer and want to develop Java EE 5 applications than the
    Java EE SDK is likely best for you.
    If you are interested in a broader portfolio of software and servcies
    including deploying J2SE 1.4 applications than Java ES may be a good
    match.
    Joe

  • What is different between strut and jsp+servlet+javabean?

    welcome

    Struts is a package that sits on top of the usual webapp stuff and organises and makes regular a lot of the stuff you wind up doing in servlets without it.
    It handles stuff like the objects you usually wind up using to pass data between JSPs and forms and servlets.
    It implements transaction stearing rules.

Maybe you are looking for

  • Print Report in Landscape

    Hi, I ned to print one report in landscape format. though, i tried to select landscape option in print option. I guess, I need to first design the report accordingly. this is just a guess. also, I really appricaite if you direct me a link where I can

  • Mouse-over values format

    Hi All I'm working with Xcelsius over data from SAP BW. Is there a way to change the Mouse-over number format per a specific series? If I have 2 Y axis 1 is for percentages and I want that series to be displayed as percentages when other series will

  • Change default import clip length

    Is there a way to change the default import clip lengths? It seems the default import length is 5 sec (00:05:00). So all photos import at 5 seconds. I would like to import all my photos to come in at 1 frame (00:00:01).

  • INS0017: Installation of the seed data failed.oracle.wh.util.parser.ParseEx

    Hi all! I've already posted my error in this thread: Creating OWB Repository - invalid length inside variable character string but I realized it is not exactly the same error. So, I'm posting a new one and I really hope somebody can give me some advi

  • Every time I text my wife's I phone it sends the same text to me.

    I share an apple account with my wife. Every time I text her I phone from my I phone I get the same message sent back to me.