Get DATA with BSP Application

Hello Everyone,
I want to get data from table SFLIGHT with BSP Application.
I have used <htmlb:tableView and tableViewColumn tags
but i am only getting the structure displayed in the browser, not the data, pls suggest some code to achieve that.
Thank U
Ravi Aswani

Example:
SQL> ed
Wrote file afiedt.buf
  1  with t as (select xmltype('<?xml version="1.0" encoding="UTF-8"?>
  2  <m:report xmlns:m="http://www.bea.com/alsb/example">
  3     <m:startTime>2013-06-04T14:02:08.168+04:00</m:startTime>
  4     <m:endTime>2013-06-04T14:02:23.417+04:00</m:endTime>
  5     <m:duration>PT15.249S</m:duration>
  6     <m:queryId>dummy</m:queryId>
  7  </m:report>') as xml from dual)
  8  --
  9  -- end of test data (in XMLTYPE datatype)
10  --
11  select x.*
12  from   t
13        ,xmltable(xmlnamespaces('http://www.bea.com/alsb/example' as "m"),
14                  '/m:report'
15                  passing t.xml
16                  columns startTime varchar2(30) path './m:startTime'
17                         ,endTime   varchar2(30) path './m:endTime'
18                         ,duration  varchar2(30) path './m:duration'
19                         ,queryId   varchar2(30) path './m:queryId'
20*                ) x
SQL> /
STARTTIME                      ENDTIME                        DURATION                       QUERYID
2013-06-04T14:02:08.168+04:00  2013-06-04T14:02:23.417+04:00  PT15.249S                      dummyNote, this is based on XMLTYPE input (you'll have to convert your data to that type)
As for your timestamps etc. if you require those in TIMESTAMP or DATE datatypes you can convert those in the query

Similar Messages

  • WAD template with BSP Application - how to read selection screen values

    Hello,
    I've created Web template with Web Application Designer (WAD).
    I would like to extend  that page with BSP Application...
    Purpuse of this application is to read some information from tables
    on BW transaction server and display them within Web page.
    Question: How to read selection screen values from a Web template ?
    Thanks for any help,
    Pawel Borowiec

    Hi,
    The selection screen parameters will be on an inputField, so try and get the is of the inputfield generated by doing View source...
    And once you get the inputfield Id, you can read the value in the InputField(InF) by
    using the following code...!
    data : if_value type ref to cl_htmlb_inputfield.
    data : variable type string.
    if_value ?= cl_htmlb_manager=>get_data( request = request
                                                name    = 'inputField'
                                                id      = 'InF_ID_here'
           if if_value->value is not initial.
             variable  = if_value->value.
           endif.
    Hope this helps.
    <b><i>Do reward each useful answer..!</i></b>
    Thanks,
    Tatvagna.

  • MathScript Nugget #19: Sharing Data With Other Applications

    In MathScript Nugget #18, we looked at ways to transfer data between MathSript and the rest of LabVIEW. In today's nugget, we'll see some of the different ways that MathScript can share data with programs besides LabVIEW.
    The most common way to share data between programs is by reading and writing files. MathScript supports several file formats that are recognized by other programs. The ones we'll touch on in this nugget are MLV, MAT, CSV, TXT, TDM(S) and XLS.
    The easiest way to bring data into MathScript is with the 'load' function. The help topic for this function does a great job of explaining it. The load function will bring in a group of variables that have been saved to a file earlier. The most common formats that load supports are:
    MLV files created with MathScript save function
    MAT files created with  version 6.0 or earlier of The MathWorks, Inc. MATLAB® software
    TDM and TDMS binary measurement files created in LabVIEW or DIAdem
    The load and save functions are great for storing off a group of variables to be used again in a future session of MathScript. You can do the same thing using the Operate>>Load Data... and Operate>>Save Data... menu items in the MathScript Window. These support the same file formats as load and save.
    The best formats to use if you want to share data with other applications are TXT, CSV, and XLS. MathScript has special funcitons to read and write each of these formats. The functions, such as fread_csv and fwrite_xls, are all members of the support class.
    The last way to read and write data files with MathScript is to use a custom file format. MathScript supports common file operations like fread and fwrite. You can use these functions to create or import files of any binary or textual format.
    There's one last way to move data out of MathScript without using files. You can copy data from the MathScript Window or MathScript Probe as tab-delimited text to your OS clipboard. You can then paste this text to a text editor or spreadsheet program.
    Hopefully now you have an idea of the many ways to move data into and out of MathScript.
    MATLAB® is a registered trademark of The MathWorks, Inc.
    jattas
    LabVIEW MathScript R&D
    ps Check out more MathScript Nuggets!

    TDM and TDMS are also excellent file formats to share your data with other applications. National Instrumenst offers free libraries and add-ins to access TDM and TDMS files with e.g. Excel, OpenOffice Calc or The MathWorks, Inc. MATLAB® software. Have a look at this page to 
    Find Resources for Reading and Writing TDMS Files in Third-Party Products

  • Best way To get data from another application using NDDE lbrary

    My vb.net application gets data from another application using NDDE Library. I got stocks prices (open,high,low,close,volume,change......(about 15 records for each stock)) (about 200 stocks) . I don't know if there is a problem in my code.
    This is my code:
    l : is the list of stocks.
    This Sub connects to server and requests the data :
    Public Shared Sub GetQuotes()
    Try
    client1 = New DdeClient(server, topic)
    client1.Connect()
    For i As Integer = 0 To l.Count - 1
    client1.StartAdvise("QO." & l(i).t & ".TAD$last", 1, True, 60000)
    client1.StartAdvise("QO." & l(i).t & ".TAD$open", 1, True, 60000)
    client1.StartAdvise("QO." & l(i).t & ".TAD$high", 1, True, 60000)
    client1.StartAdvise("QO." & l(i).t & ".TAD$low", 1, True, 60000)
    client1.StartAdvise("QO." & l(i).t & ".TAD$pclose", 1, True, 60000)
    client1.StartAdvise("QO." & l(i).t & ".TAD$volume", 1, True, 60000)
    client1.StartAdvise("QO." & l(i).t & ".TAD$date", 1, True, 60000)
    client1.StartAdvise("QO." & l(i).t & ".TAD$time", 1, True, 60000)
    Next
    Catch ex As Exception
    MsgBox(ex.Message)
    End Try
    End Sub
    and then I get the data from Client_advise sub (called each time a value changed )and fill the list. What I know is that client advise gets only one record for single stock each time is called..
    Example: for stock AAPL. 1st time enters client_Advise I get open price for AAPL, 2nd time I get high price for AAPL,3rd time I get low price..... and I update the value in the List (l)
    This the client_Advise Sub:
    Private Shared Sub client1_Advise(ByVal sender As Object, ByVal e As NDde.Client.DdeAdviseEventArgs) Handles client1.Advise
    For q As Integer = 0 To l.Count - 1
    If l(q).t = w(1) Then
    Dim item() As String = e.Item.Split("$")
    If l(q).Open = "#" Then
    l(q).Open = "0"
    End If
    If l(q).hi = "#" Then
    l(q).hi = "0"
    End If
    If l(q).lo = "#" Then
    l(q).lo = "0"
    End If
    If l(q).Close = "" Or l(q).Close = "#" Then
    l(q).Close = "0"
    End If
    If l(q).pclose = "#" Then
    l(q).pclose = "0"
    End If
    If item(1) = "open" Then
    l(q).Open = Format(Val(e.Text), "0.00")
    ElseIf item(1) = "last" Then
    l(q).Close = Format(Val(e.Text), "0.00")
    ElseIf item(1) = "high" Then
    l(q).hi = Format(Val(e.Text), "0.00")
    ElseIf item(1) = "volume" Then
    l(q).Volume = Val(e.Text)
    ElseIf item(1) = "low" Then
    l(q).lo = Format(Val(e.Text), "0.00")
    ElseIf item(1) = "pclose" Then
    l(q).pclose = Format(Val(e.Text), "0.00")
    If l(q).pclose <> "" And l(q).pclose <> "#" And l(q).Close <> "" And l(q).Close <> "#" Then
    l(q).c = Format(l(q).Close - l(q).pclose, "0.00")
    l(q).cp = Format(((l(q).Close - l(q).pclose) / l(q).pclose) * 100, "0.00")
    End If
    l(q).flag1 = 2
    ElseIf item(1) = "date" Then
    l(q).Date1 = e.Text
    ElseIf item(1) = "time" Then
    l(q).Time = e.Text
    End If
    Exit For
    End If
    Next
    End Sub
    Am I doing something wrong which inreases CPU usage to 80 or 90 % ?
    Thanks in advance.

    Hi MikeHammadi,
    According to your description, you'd like to get data from another app using NDDE library.
    When using the NDDE library, the CPU usage is high. As the NDDE library is third-party library, it is not supported here. I suggest you checking if the problem is caused by the NDDE library.
    If you'd like to get data from another app. I suggest you could save the data in the dataBase, and then read it in another application if necessary.
    If you have any other concern regarding this issue, please feel free to let me know.
    Best regards,
    Youjun Tang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to get  data with the raw pattern from resultset ?

    would you tell me how to get data with the raw pattern from resultset ?
    thank you in advance!
    longgger2000

    I tried getBytes() and getObject()
    , but I can not get the right result , for example the
    data in oracle database is 01000000DFFF, when In used
    the method of getBytes() and getObject(), I get the
    result of [B@1c2e8a4, very different , please tell me
    why !
    thank you
    longgger2000
    [B is byte arrayseem that it return an bytes array for you.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • On a west Texas highway I believe my old 3G iphone could get data with 3 bars. My new 4S could make phone calls but not get data. An att guy told me it's because there aren't enough 4G towers yet. Other explanations?

    On a west Texas highway I believe my old 3G iphone could get data with 3 bars. My new 4S could make phone calls but not get data. An att guy told me it's because there aren't enough 4G towers yet. Other explanations?

    Simple solution. Get a real internet service and not a cell phone internet connection service it was never meant to be used as the primary internet service
    And how do you lose a home and job and be sued as you claim. What over 10 Gb of data? Give me a break
    In my city small claims is $5000.00
    And over that amount you can go to a superior court to have your issue settled.
    http://www.bbb.org
    Good Luck, Elector

  • Not able to integrate the Adobe flex4 with BSP application.

    HI,
    I have created one flex4 application using the BSP(XML).  I am able to run the flex application, data retriving properly and working fine.but when I imported the SWF file into BSP application(MIME Repository) and  if  I run  the application from  the BSP (HTMLfile ).  it's  giving the Error # 2302.
    and at  the same time I have created flex application using  flex builder 3 using BSP then  its working fine again.I am able to execute the application from the BSP also.
    Is it possible to integarte the Flex4 with BSP?
    Thanks and Regards
    Aravind.

    flash 4 is very much compatible.
    can you check in your falsh builder whats set at
    Project->Properties->Flex Build Path->Framework Linkage
    is it merge into code or RSL?
    you should use merged into  code.
    Also when you refer the swf file in your bsp page are you using relative url for the swf  ?

  • Problem with BSP Application

    Hi all,
    We have three BSP applications running on Production Environment, but after applying Support Patches only two are running , and the third one is not running. But all three applications are running fine in Development, and Consolidation. Here are some inputs which we figure out while trying to fix this problem:
    1) When we point the Production Server to Test Server's Web Dispatcher all three applications executed well, and when we point the test server to Production Server's Web Dispatcher, two applications which were running fine executed, but the third one failed. So this excercise gave us a conculsion that problem is with Web Dispatcher of Production . but we couldn't figure what.
    2) After debugging both successful applicationa and failed application both are indeed passing some basic URL to HTML Viewer, here are the URL's
    Successful Application : https://sun109.pseg.com:443/sap/bc/bsp/sap/zhr_ta
    Failed Application :
    https://sun109.pseg.com:443/sap/bc/bsp/sap/zhr_poe
    (sun109 is host for Production Web Dispatchure)..
    and following are the URL's which i have got after i did right click on the HTML viewer when the application is pulled up.(In case of failed application i am getting blank page).
    SuccessFul Application:
    https://sun109.pseg.com/sap(bD1lbiZjPTEwMCZ0PVpQU0VHJnc9NjE1NzcyMCs=)/bc/bsp/sap/zhr_ta/ta_intro.htm?sap-htmlb-design=
    Failed Application:
    https://sun109.pseg.com/sap/bc/bsp/sap/zhr_poe
    One more point when i took the URL of successful application and changed the application name like this, and pasted it on browser :
    https://sun109.pseg.com/sap(bD1lbiZjPTEwMCZ0PVpQU0VHJnc9NjE1NzcyMCs=)/bc/bsp/sap/zhr_poe/default.htm
    it worked.
    So i think if we compare the URL's ( both input to Web Dispatcher and on properties) of both successful and failed ,  we notice somepart of URL is missing (some kind of encryption) is missing in failed application.
    I want to know why this conversion of URL is happenning , where and how can i fix this problem.
    Regards,
    Akash
    PS: It's very urgent.

    Hi,
    https://sun109.pseg.com:443/sap/bc/bsp/sap/zhr_poe
    is the url of the failed application and under SAPGui we are opening applications in HTML viewer control.This is the url which is passed to the HTML viewer control.
    Contrary, this is the URL of successful application
    https://sun109.pseg.com:443/sap/bc/bsp/sap/zhr_ta
    I have checked this URL while debugging, and this URL is getting passed to HTML Viewer control.
    Also, please let me know how to close the thread.
    Regards,
    Akash Modi

  • Get data with correct array size

    My VI is trying to rearrange the 2D array that I read from test.xls file, so that each function is get separated with there data in it.
    Look over the test.xls file that I have attached. It has 2 columns. Both contains couple functions designated with ) and (. So, ACU_PGM is considered a function. I have rearranged the data so when ACU_PGM (or PGM is selected) the data following it is data for PGM before another function starts, which is KEY and 500 in this case. Same way for all other functions. Each column always ends by );
    )ACU_PGM( )CAB_INP(
    KEY WRITE
    500 50
    )ACU_DIA( 3
    DM1 0
    1010.1 )CAB_CLC(
    0 WRITE
    PROTECT 50
    DM2 3
    101.23 0
    10 NA
    NA )CAB_CRX(
    ); TEMP_1
    3
    0
    The problem with my current design is I am initializing array with 0x0 size, once it gets the 1st function it gets initialized with that same size of that function array for that entire column's fnction, so it want take more elements if 2nd function in same column have more elements like in this case. ACU_DIA has 8 elements but it will only take 2 elements as ACU_PGM has 2 in it.
    Please look over the Get_function.Vi only half portion. I have instructions in text in Vi also. I saw that columns are not lookin good after I submit the question so please open test.xlx file to see actual data Thank you.Message Edited by Amy222000 on 06-02-2005 03:44 PM
    Attachments:
    get_function.zip ‏795 KB
    test.xls ‏14 KB

    Duplicate Post
    E. Sulzer
    Applications Engineer
    National Instruments

  • How to get dates with respect to System Date?

    Hello,
    I am trying to get Date value after 30 days of my System current date. I am using
    System.out.println(new java.util.Date(System.currentTimeMillis()+30*3600*24*1000));
    but I am not getting correct date.
    Suppose my system date is 15July then after executing this code I should get 14Aug, but it is giving a date of month June.
    Please suggest solution for this.
    Thanks,
    Niket

    This doesn't have anything to do with the Collections Frameworks. You should direct this type of question to "Java Programming".
    Here is the code you're looking for anyway...
    import java.util.*;
    import java.text.*;
    public class thirty
        public static void main(String[] args) throws ParseException
         Calendar todaysdate = new GregorianCalendar();
         SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy");
         System.out.println("today's date: " + sdf.format(todaysdate.getTime()));
         todaysdate.add(Calendar.DATE, 30);
         System.out.println("thirty days later: " + sdf.format(todaysdate.getTime()));
    }

  • CachedRowset Error Getting Date with Time

    We are using CachedRowSet and while getting Date from Oracle, it is missing the Time. i.e. It is just returning the Date and not the time.
    e.g. If the DB has 26-01-2005 10:00:00 it is returning just 26-01-2005 and not the time. It is all 0:0:0.
    What should be done in this case? Is this a bug or what?

    That's getTimestamp.Even tried that, but still getting time as 2005-02-09
    00:00:00.0, and where as in the DB it is 2/9/2005
    7:30:00 PMI simply cannot believe this to be true. But if indeed it is, then you have found a bug in Oracle's driver and would suggest you open a case with them to work out. One more thing to try though - what happens if you call getString instead? I don't know for sure if timestamp columns can be retrieved via getString, but if they can, what does it display? Also, are you sure you're getting the right row (correct query) and column versus what you're showing elsewhere (where you claim the DB shows 7:30:00 PM)? Are you getting the column via passing an integer, or a String column name, to the getTimestamp method? If an integer, maybe you're passing the wrong value (and therefor getting the wrong column value).

  • I want to design my database to get data with specified criteria. How do I do it without supplying common 'Where' condition?

    I have more than 100 tables and each table have 2 fields CompanyID And LocationNo.
    for example there is a table like Sales which is containing details about tax invoices. in this table invoice number can be duplicate with CompanyID and Location number. 
    CompID LocNo InvoiceNo
    1           1        1
    1           1        2
    1           2        1
    2           1        1
    1           1        3
    I want to get all invoice data where CompanyID is 1 and LocationNo also 1.
    I know i can do this with simple where condition Where CompanyID=1 AND LocationNo=1. but there are more than 100 tables which are containing same fields and also i want to get only those data where CompanyID=1 AND LocationNo=1. so i cannot put where condition
    everywhere in the whole project to get specified data only.
    Is there any whay to create any datasource or ODBC connection that will help me to get data from only specified criteria.
    More Information
    I want to do something like Tally ODBC Server which is creates temporary ODCB server to retrive data from the tally database. This server retrieves only those data which transaction date is selected in Tally Software.

    Thanks Satheesh for your reply.
    Your idea is good.But, CompanyID and LocationNo can be different on differnt place. So, i cannot fix it with 1 or any other value.
    if any way to pass both parameter into sql connection. So, when i execute only select query without where condition it will returns only specified data.
    If you have used Tally then you know it creates ODBC server for its custom database. We can retrieve data into excel using TallyODBC_9000 connection. 
    This connection retrieves only those data which transaction date is selected in tally software.
    I want to do something like this.

  • How to keep up to date with Sun Application Server 9.1

    Hi All: I'm just starting out deciding between Tomcat and Sun Application Server 9.1. Is there a patch number on SunSolve so I can keep the product up to date with any fixes?
    Any comments on which way to go for this for .war applications that do not have EJBs?
    Thanks,
    Rich

    Hello,
    recently I upgraded from Sun AppServer 9.1 U1 to U2. I downloaded Glassfish V2 U2, what is equivalent to AppServer 9.1 U2. Installing this download there is an option to upgrade the domain of an existing installation of the AppServer.
    This worked pretty well.
    Bernd

  • How to get data of Oracle Applications tables in APEX

    Hi all,
    My requirement is to Develop Oracle apps Order Management Reports in APEX.
    But when i am trying to query the table or view i am unable to get data in APEX.
    Ex: If i query the Sales order form view OE_ORDER_HEADERS_V in toad i am able to get data as i am running this
    begin
    dbms_application_info.set_client_info('204');
    end;
    i.e for particular org_id. i am able to get data.
    But in apex how do i get data. Are there any settings to be done. Please let me know if anyone have worked on the same.
    Regards.
    Chandu

    My Query is like this :
    SELECT DECODE (ship_loc.city, NULL, NULL, ship_loc.city || ', ')
    || DECODE (ship_loc.state, NULL, NULL, ship_loc.state ) Destination,
         party.party_name "Sold To",
         l.ordered_item Product,
         l.ACTUAL_SHIPMENT_DATE "Ship Date",
         Nvl(l.ordered_quantity,0) "Act. Tons",
         '$'||Nvl(l.ordered_quantity,0)* l.unit_selling_price||'.00' "Price"
    FROM mtl_parameters ship_from_org,
         oe_order_lines_all l,
    hz_cust_site_uses_all ship_su,
    hz_party_sites ship_ps,
    hz_locations ship_loc,
    hz_cust_acct_sites_all ship_cas,
    hz_cust_site_uses_all bill_su,
    hz_party_sites bill_ps,
    hz_locations bill_loc,
    hz_cust_acct_sites_all bill_cas,
    hz_parties party,
    hz_cust_accounts cust_acct,
    ra_terms_tl term,
    oe_order_headers h,
    hz_cust_account_roles sold_roles,
    hz_parties sold_party,
    hz_org_contacts sold_cont,
    hz_party_relationships sold_rel,
    ar_lookups sold_arl,
    hz_cust_account_roles ship_roles,
    hz_parties ship_party,
    hz_org_contacts ship_cont,
    hz_party_relationships ship_rel,
    ar_lookups ship_arl,
    hz_cust_account_roles invoice_roles,
    hz_parties invoice_party,
    hz_org_contacts invoice_cont,
    hz_party_relationships invoice_rel,
    ar_lookups invoice_arl,
    fnd_currencies fndcur,
    oe_transaction_types_tl ot,
    qp_list_headers_tl pl,
    ra_rules invrule,
    ra_rules accrule
    WHERE h.order_type_id = ot.transaction_type_id
    AND ot.LANGUAGE = USERENV ('LANG')
    AND h.price_list_id = pl.list_header_id(+)
    AND pl.LANGUAGE(+) = USERENV ('LANG')
    AND h.invoicing_rule_id = invrule.rule_id(+)
    AND h.accounting_rule_id = accrule.rule_id(+)
    AND h.payment_term_id = term.term_id(+)
    AND term.LANGUAGE(+) = USERENV ('LANG')
    AND h.transactional_curr_code = fndcur.currency_code
    AND h.sold_to_org_id = cust_acct.cust_account_id(+)
    AND cust_acct.party_id = party.party_id(+)
    AND h.ship_from_org_id = ship_from_org.organization_id(+)
    AND h.ship_to_org_id = ship_su.site_use_id(+)
    AND ship_su.cust_acct_site_id = ship_cas.cust_acct_site_id(+)
    AND ship_cas.party_site_id = ship_ps.party_site_id(+)
    AND ship_loc.location_id(+) = ship_ps.location_id
    AND h.invoice_to_org_id = bill_su.site_use_id(+)
    AND bill_su.cust_acct_site_id = bill_cas.cust_acct_site_id(+)
    AND bill_cas.party_site_id = bill_ps.party_site_id(+)
    AND bill_loc.location_id(+) = bill_ps.location_id
    AND h.sold_to_contact_id = sold_roles.cust_account_role_id(+)
    AND sold_roles.party_id = sold_rel.party_id(+)
    AND sold_roles.role_type(+) = 'CONTACT'
    AND sold_cont.party_relationship_id(+) = sold_rel.party_relationship_id
    AND sold_rel.subject_id = sold_party.party_id(+)
    AND sold_arl.lookup_type(+) = 'CONTACT_TITLE'
    AND sold_arl.lookup_code(+) = sold_cont.title
    AND h.ship_to_contact_id = ship_roles.cust_account_role_id(+)
    AND ship_roles.party_id = ship_rel.party_id(+)
    AND ship_roles.role_type(+) = 'CONTACT'
    AND ship_cont.party_relationship_id(+) = ship_rel.party_relationship_id
    AND ship_rel.subject_id = ship_party.party_id(+)
    AND ship_arl.lookup_type(+) = 'CONTACT_TITLE'
    AND ship_arl.lookup_code(+) = ship_cont.title
    AND h.invoice_to_contact_id = invoice_roles.cust_account_role_id(+)
    AND invoice_roles.party_id = invoice_rel.party_id(+)
    AND invoice_roles.role_type(+) = 'CONTACT'
    AND invoice_cont.party_relationship_id(+) = invoice_rel.party_relationship_id
    AND invoice_rel.subject_id = invoice_party.party_id(+)
    AND invoice_arl.lookup_type(+) = 'CONTACT_TITLE'
    AND invoice_arl.lookup_code(+) = invoice_cont.title
    AND h.header_id = l.header_id

  • Getting started with BSP ?

    Hi all,
    Maybe someone has an usefull link collection about BSP examples...
    Thanks !!!

    Hi,
    Pls chk this links;
    https://wiki.sdn.sap.com/wiki/display/BSP/Main
    http://www.sapdevelopment.co.uk/webapps/bsp/mvc_example1.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/101c3a1cf1c54be10000000a114084/frameset.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/e5/edae3b59e17646e10000000a11402f/frameset.htm
    http://www.sapdesignguild.org/resources/htmlb_guidance/
    Look at the below links.. Some of them are step by step procedures.
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/weblogs/topic/24
    http://help.sap.com/saphelp_nw04/helpdata/en/7a/b86041397211d5992200508b6b8b11/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/7a/b86041397211d5992200508b6b8b11/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/4e/ac0b94c47c11d4ad320000e83539c3/content.htm
    https://www.sdn.sap.com/irj/sdn/weblogs
    /people/durairaj.athavanraja/blog/2005/08/21/running-your-first-bsp-application-in-sap-netweaver-04-abap-edition--nsp
    www.thespot4sap.com/Articles/SAP_WAS_BSP_Apps.asp
    www.thespot4sap.com/Articles/SAP_WAS_Overview.asp
    help.sap.com/saphelp_nw04/helpdata/ en/56/e6f3409ade8631e10000000a1550b0/content.htm
    New to BSP
    New to BSP. Where do I start from?
    New to BSP's ....Please Help me.......................
    And also recommend you to go through the BSP Weblogs in the BSP forum...highly Suggested and Helpful
    ;\ New BSP Weblogs
    Hope this helps,
    Regards
    CSM Reddy

Maybe you are looking for

  • Albums won't sync from iTunes to iPhone

    When I try to click on specific albums in my iTunes that I want to download into my iPhone 5, my phone will look like it is syncing and then I will check and none of the changes I made are on my phone! I am using a new computer, but I transferred all

  • The Network Path was not Found - Server 2008

    I am managing a Windows Server 2008.  When I go into the Group Policy Management Council and attempt to edit, or add group policy it comes up with an error "Failed to open Group Policy [...] The Network Path was not found."  I am new to using Windows

  • Transformations short dump

    Hi All, While saving or activating infocube transformations in BI development system getting abap short dump. Short dump: Runtime Errors         ASSERTION_FAILED Date and Time          04.08.2009 12:35:44 Short dump has not been completely stored (to

  • Re: after loading Lion on a 13" MacBook Pro the pulsing rest does not work anymore / CoeCon

    Is there any trick with the adjustment??

  • Boolean | vs Logical ||?

    First of all, I know this won't work for bitwise |. But, this code: boolean a=false, b=true, c; c = a|b; // c is now true c = a||b; // c is now also true Is it just a remnant from the C-style language, or what? Are boolean | and logical || optimized