BSP and ITS

Hi all,
    Can anyone tell me what is the main diffrence between ITS and  BSP?If possible some helpful links for this....
  If i need to display an ABAP report in HTML ,whcih would be the best possible way?
BR,
Gauri.

you should have contined this discussion in your previous thread itself. (R/3 report to be  displayed via  BSP application) anyhow close that thread .
coming to your question.
ITS - Internet transaction server
is a webgateway for SAP , before was 6.10 the only way to communicate with the web was through ITS (apart from RFC,etc) with the advent of WAS - web application server now your ABAP server can also act as Web server thus you dont need ITS for webenabling your applications.
However, if you want to easily convert your exisitng SAP GUI based applications - dialog programs/reports, etc without much effort then the way to go is ITS - but here you dont have much choise about manipulating the look and feel.
BSP - Business Server Pages
its like ASP (Active server pages) or JSP (Java server pages) in BSP the server side code is done using ABAP.
This mechnaism allows greater control over how the page looks, how the navigation works, etc.
for a simply ABAP report if you are not really bothered about the look and feel, easiest way is to go for ITS.
Having said that, if your system is below, WAS6.40 you would need a separate installation of ITS. but with WAS 6.40 and above ITS is integrated with SAP WAS. you dont need a separate installation.
Regards
Raja

Similar Messages

  • Its, BSP  and sicf

    Hi there,
    Can somebody help me differentiate between ITS and BSP and the relatation with SICF?

    Hi,
    As mentioned above ITS is integrated in the Internet Communication Framework of NetWeaver. Transaction SICF is where you control the services avaialble in ICM, one of the services is webgui so if you want to use the SAP webgui you need to enable this service and other ICM services features like load balancing.
    BSP is a page-based programming model with server-side scripting meaning that your programs (BSPs - server-side scripts) have direct access to all elements in the application server.
    Now, you need an entry point to access a BSP, that is a service; a service is controlled (enabled, disabled, etc.) from transaction SICF.
    If you are using SAP webgui you'll notice the URL contains /bc/gui/sap/its/webgui, if you look in SICF you'll find this service under the sap tree.There is section for BSP also. If you enable, for example, BSP wp_sess_test2 you'll notice the URL to access this has sap/bc/bsp/sap/wp_sess_test2. This is how you'll notice whether you are using one or the other.
    --Noe

  • REG: ESS WAS AND ITS properties for EHP4

    Dear All,
            We are using Business Package ESS SP6 with EHP4.
    My question is which type of Applications are used in this EHP4. (ie., BSP or ABAPwebdynpro or JavaWebDynPro )
    If the application types are of JAVA WEBDYNPRO how should we assign the WAS and ITS parameters for SystemObjects like
    SAP_BSP_EREC
    SAP_R3
    SAP_R3_Financials
    SAP_ITS_XSS
    SAP_WebDynpro_XSS(mainly regarding this system object WAS and ITS properties.)
    Please suggest on this.
    Regards,
    kishore.
    Edited by: kishore kumar on Dec 16, 2010 12:18 PM

    Hi,
    We are facing a patch level miss match, as we are unable to see the new patches in the given list, as we are following the below link
    http://wiki.sdn.sap.com/wiki/display/ERPHCM/HOWTOGETRIDOFSPSTACKMISMATCHISSUES
    Currently ABAP patches like.,
    EHP4 STACK 8(SAP_APPL 604 PATCH 8). for this level above link was not updated,
    can you please guide us, what are the relevant JAVA COMPONENTS need to be upgrade.
    We will be waiting for your reply.,
    Thanks in advance,
    Regards,
    kishore.

  • Call SAPGUI transaction from BSP and vice versa

    Hi all
    There was some discussion about this topics before. Maybe someone can just point me to the thread answering this issue:
    1. I need to call a SAPGUI transaction from a BSP application: I want to use SAPGUI, not ITS/webgui, I need single sign on, the SAPGUI transaction could possible run in another SAP system then the BSP.
    As far as I understand I need to create a *.sap file with the correct parameters for sapshortcut. But how does single sign on work? Can I create a logon ticket in my BSP and forward it to sapshortcut?
    2. I need to call a BSP application from a SAPGUI transaction or report, with single sign on but in a MS IE window, not inside a SAPGUI HTML control
    Can I create a logon ticket in my coding an append it to the start url for the BSP?
    any hints?
    thanks
    Michael

    hi Michael,
    For your second issue,to call a BSP application from a SAP GUI in MS IE explorer,
    you can use the Function Module CALL_BROWSER in your report,like
    data url(200) type c.
    url = 'http://<server>.<domain><port>:'.
    concatenate url '/sap/bc/bsp/sap/' into url.
    concatenate url 'znw_poc2_1_prtl/dts.htm' into url.
    concatenate url '?sap-user=<userid>' into url.
    concatenate url '&sap-password=<passowrd>' into url.
    CALL FUNCTION 'CALL_BROWSER'
      EXPORTING
        URL                          = url
    *    WINDOW_NAME                  = ' '
    *    NEW_WINDOW                   = ' '
    *    BROWSER_TYPE                 =
    *    CONTEXTSTRING                =
    *  EXCEPTIONS
    *    FRONTEND_NOT_SUPPORTED       = 1
    *    FRONTEND_ERROR               = 2
    *    PROG_NOT_FOUND               = 3
    *    NO_BATCH                     = 4
    *    UNSPECIFIED_ERROR            = 5
    *    OTHERS                       = 6
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    For this to work you have to enable SSO on your server.
    you can check if it is enabled or not by runnning the BSP application "SYSTEM" ,page "SSO2TEST.htm" .
    Follow the instructions on the page for testing.
    This may not be a great way as your userid password are passed via URL,still it works .
    Hope this helps,
    Regards,
    Siddhartha

  • Xcelsius Dashboard on SAP R/3 Table using BSP and XML Mapping

    Hi Experts,
    I have developed a simple dashboard on small data set (10 records) that I am fetching from a R/3 Table into BSP and generating XML from there and consuming it in Xcelsius (SAP R/3 + BSP + XML Mapping).
    Now I want to fetch data based on Variables values that should be passed from the dashboard at the runtime and should display the data  accordingly. Any help on how it can be achieved?
    Thanks..!!
    Sharad

    Hi,
    You could try doing this by using XML data connection. You would have to make use of Enable load to get the data from XML and Enable send to send data back to XML from dashboard.
    This would require you to write a script.
    Thanks,
    Amit

  • [b]HOW TO:[/b]  Copy and Paste THE Filename AND its PATH from Finder

    HOW TO DO THIS: Copy and Paste THE selected Filename AND its entire PATH from Finder to another application as in document footer reference, or document database which has a path field to aid in locating the file later.
    Finder, Spotlight and File Info (can be used to display Path) or using Command F, command I, etc. but user is not allowed to copy the path to clipboard.
    This is rudimentary, yet the word Path, is unknown to Mac Help.
    Message was edited by: jbov

    AJ,
    Isn't it amazing....There is no Command Key for this action? Apple Care was confounded too. And thanx, it'll be a help....
    Jim
    its tedious, but this should work:
    open a terminal window.
    Drag and drop the icon for the file in the terminal
    window.
    This will put the full path including the filename on
    the command line.
    Copy the path from the command line, and paste
    (wherever).
    Close the terminal window.

  • How can i get a comedy, Dutch Treat or/and its companion Detective School Dropouts released in 1987 be included in the iTunes US store for me to down load. i will pay any thing to download them.

    I wish to request that a comedy, Dutch Treat or/and its companion Detective School Dropouts released in 1987 be included in the iTunes US store for me to down load. i will pay any thing to download them.

    You can try requesting it via this page (these are user-to-user forums) : http://www.apple.com/feedback/itunes.html
    But unless the the US rights-holder passes it to Apple and allows them to sell it in the US then Apple won't be able to sell it there

  • Semantics and its' role in Business Services

    Role and importance of semantics in the context of services and SOA:
    Semantics refer to interpretation of information and not the literal definition of information/ data. Applying semantics to information turns it into “knowledge”. Semantics is the act of applying references and drawing conclusions given a set of more scientific informational constructs. Typically semantics are derived using the context in which information is presented. Transposition on the other hand allows applies the rule of inference where in one can draw conclusions on the implication of truth based on some set of facts.
    Read more about this at <a href="http://entarch.blogspot.com/2007/10/semantics-and-its-role-in-business.html">Surekha Durvasula's</a> blog.
    Surekha is an Enterprise Architecture of a large retail company

    Hi shalini,
            Thanks for the reply and can you please say me the menu path for T.code BUSD
    And can u please say the difference between 4.0 and 5.0 versions
    Regards
    Narayana
    Message was edited by:
            manam narayana
    Message was edited by:
            manam narayana

  • What is RID in non clustered index and its use

    Hi All,
    I need help regarding following articles on sql server
    1) what is RID in non clustered index and its use.
    2) What is Physical and virtual address space. Difference in 32 bit vs 64 bit Virtual address space
    Regards
    Rahul

    Next time Please ask single question in a thread you will get better response.
    1. RID is location of heap. When you create Non clustered index on heap and
    lookup happens to get extra records RID is used to locate the records. RID is basically Row ID. This is basic definition for you. Please read
    this Thread for more details
    2. I have not heard of Physical address space. I Know Virtual address space( VAS)
    VAS is simple terms is amount of memory( virtual )  'visible' to a process, a process can be SQL Server process or windows process. It theoretically depends on architecture of Operating System. 32 bit OS will have maximum range of 4 G VAS, it's calculated
    like a process ruining on 32 bit system can address max up to 2^32 locations ( which is equivalent to 4 G). Similarly for 64 bit max VAS will be 2^64 which is theoretically infinite. To make things feasible maximum VAS for 64 bit system is kept to 8 TB. Now
    VAS acts as layer of abstraction an intermediate .Instead of all request directly mapping to physical memory it first maps to VAS and then mapped to physical memory so that it can manage request for memory in more coordinated fashion than allowing process
    to do it ,if not it will  soon cause memory crunch.Any process when created on windows will see virtual memory according to its VAS limit.
    Please read
    This Article for detailed information
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • I lost my iphone4 yesterday..i have find my iphone apps in there and its updated to IOS 5. i wonder if they would be able to still access my accounts in there after i remote locked it.? its offline whenever i checked till now..

    i lost my iphone4 yesterday..i have find my iphone apps in there and its updated to IOS 5. i wonder if they would be able to still access my accounts in there after i remote locked it.? its offline whenever i checked till now.. im wonderin if ist safe coz all my emails are there and all personal info..i hope someone could answer me..i reported to the police the ist step..coz when it happened ..policemen are there..then i went to the nearest MAC center and tried to track it..but its offline..so they asked me if i want to remote lock it..then i did...which i think the mcreason why i cant track my phone beacause its locked?? or not until they connect to wifi or 3g but its unabling them because i locked it..?

    but when i do remote wipe ..it will erase everything in there and i cant track down the phone anyomore?

  • SSO EP 6.0 and ITS

    Hello,
    I try to establish a single sign on connection from our portal to an its instance.
    The portal version is 6.0 SP2 PL31
    The ITS is 6.20 PL 17
    My problem is that when I call a certain transaction via the ITS URL I always get the logon screen...
    When I call a transaction by using the sap transaction starter I am immediately connected without login, but the transaction starter is using the sap gui...
    I set the parameter ~mysapcomusesso2cookie 1 in the global.srvc; when I trace my html stream I can see that the SAP Logon Ticket arrives at the ITS, but I always get the logon screen.
    I searched the forums for similar problems, but could not find a solution...
    thanx for your help
    Philipp

    For what it's worth, I was about to post the very same problem!  The problem also occurs with ITS PL16.  We had this functionality working last year with EP6 SP2 P4 HF6 and ITS 620 PL7 - obviously something has changed in the patches from then until now.
    I have found that using an IAC iView works OK, but trying to use a URL-based iView does not (both portal and ITS server are in the same DNS domain, all the usual stuff). We have to use a URL-based iView because our IAC will not run in an iFRAME as the portal launcher insists on doing.
    - Darren

  • Help needed. I have a 3TB external hard drive partitioned into 1TB's. I used one partition as backup for the main computer hard drive. But now it is greyed out as shown in the disk utility and its name changed, i dont know how that happened, i tried verif

    Help needed. I have a 3TB external hard drive partitioned into 1TB's. I used one partition as backup for the main computer hard drive. But now it is greyed out as shown in the disk utility and its name changed, i dont know how that happened, i tried verifying and repairing it but had no luck. I also tried mounting and unmounting it but still no solution. Anyone to help please?

    Looks bad. I would strongly advise backing up the stuff on the other two partitions as soon as possible in case the rest of the drive goes wrong.
    Beyond that, Disk Utility has limited abilities to repair disks, DiskWarrior uses a different approach and might, emphasis might be more successful. It has certainly done the job for me in the past when Disk Utility could not.
    See http://www.alsoft.com/diskwarrior/

  • Problems with Syncing iPhone 3G (4.2.1. iOS).  What is appearing in the status bar is "Syncing "untiled playlist.." and its stuck at backing up.  I noticed that my name has been replaced to "untitled playlist". Whats wrong

    Problems with Syncing iPhone 3G (4.2.1. iOS).  What is appearing in the status bar is "Syncing "untiled playlist.." and its stuck at backing up.  I noticed that my name has been replaced to "untitled playlist". Whats wrong

    Welcome to Apple Discussions!
    Maybe a long shot, but WD is not known for the quality of some of their enclosures, although I do like the drives themselves. It may be worth mounting this drive in a different enclosure, something like one of OWC's FireWire enclosures with the highly reliable Oxford chip sets. I wouldn't be inclined to trust a WD enclosure, especially if it already seemed to be acting in a flakey manner.
    Here's an example of what I mean:
    http://eshop.macsales.com/item/Other%20World%20Computing/MEP924FW8E2O/
    I have 3 of these and I really like them.
    From what I understand, if the drive spins up, it is often possible to recover data from it. To be absolutely certain to destroy the data, you just about have to take a hammer to the disk. Hopefully, there will be a way to get your data back.
    Good luck!

  • TS1292 My iTunes  will not work at all I've had 7 different people try it and its still not working

    My iTunes  will not work at all I've had 7 different people try it and its still not working

    Cconnect it to your computer with the latest version of iTunes installed.

  • Display data to edit based on fields and its value defined in internal tabl

    I need to display data in a internal table for editing in a screen.
    you have a internal table with field name , data types and its value. I need to display data in a screen ( sceen painter not in a report) row by row in vrtical format.
    The internal table's structure not fix. you can have any number of fields in the internal table.
    Can you please send me code if it is available with you or send me any senario in SAP if any ...so that i can debug to extract the code..
    have to display data vertically as below in editable format,
    for example,
    Airline
    Flight Number
    Flight date
    Flight price
    Airline Currency
    Plane Type
    Maximum capacity
    Occupied econ.
    Total
    No of fields will change.
    also F4 help needs to be attached with each field.
    I think it can be done through step loop. can anybody give sample code or tell me where to find in SAP or somewhere else?
    it will be great help to me..
    Sanjeev

    Hi
    just check out this program DEMO_DYNPRO_STEP_LOOP.

Maybe you are looking for