Webdynpro's  with BSP

hi all,
i am do'g BSP's in WAS 6.40 and i am interested to  do in Webdypro's can i do it in WAS 6.40, if yes how to configure that , Should i requried a SAP 5.0 ECC.
thank u,

Welcome to SDN.
If you want to learn Webdynpro for ABAP you can download the sneak preview version of WAS7.00 from here
https://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/cfc19866-0401-0010-35b2-dc8158247fb6
install it on your laptop and practice.
Regards
Raja

Similar Messages

  • How to call a Webdynpro view from BSP page (MVC) in a new window?

    Dear Experts,
    kindly advise how to call a webdynpro view from BSP application after performing an event (through button or hyper link).
    Regards,
    Sarat.

    Hi,
    This has been discussed many times in several forums.
    Please check the method CL_WD_UTILITIES=>CONSTRUCT_WD_URL, to create a runtime url for your WD Application and call this URL.
    Refer thread: Call Webdynpro Application from BSP Application
    Hope this will be useful!
    Regards,
    Meganadhan S

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

  • How to start with BSP

    Hi
    I am Vijay and i'm new to BSP.
    I want to know how to start with BSP and what kind of questions i can expext in interviews on BSP ...!

    Welcome to SDN.
    best place ot start learning BSPs is
    http://help.sap.com/saphelp_nw04/helpdata/en/e9/bb153aab4a0c0ee10000000a114084/frameset.htm
    Regards
    Raja

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

  • ADS Error while calling WebDynpro Abap with Adobe Form

    Hi Experts,
    I have created an Adobe Form and its interface in Transaction SFP. In a WebDynpro Abap Component I created an UI-element "Interactive Form" with the context of my form. So the WebDynpro Context was created automatically. Then I tried to call the WebDynpro Application in  the Internet Explorer but got the error message:
    german(original):
    WebDynpro Exception: Der Aufruf des ADS schlug fehl. Informationen zur Ursache finden Sie im error.pdf auf dem Applikationsserver.
    english:
    WebDynpro Exception: The call of ADS failed. You find information in error.pdf on Application server.
    How can I call error.pdf and what can that be? One WebDynpro Component with the form runs without any problems, the other one doesn't do this. I have no idea if it is a problem with context or server or something else.
    I hope you can help.
    Thanks al lot.
    Best regards,
    Ingmar

    Hi,
    Check the note in this site...
    https://websmp204.sap-ag.de/notes
    Regards,
    <i><b>Raja Sekhar</b></i>

  • Webdynpro application with dropdown by key

    Hi,
    i' am creating an webdynpro application with dropdown key element. I have created a domain and in the value range tab i have given the entries like this
                                    Fixed Value            ShortDescription
                                  0000001                   ABCD
                                  0000002                   EFGH
                                  0000003                   IJKL
    now when i run the webdynpro application iam able to see only the values entered in the Short Description and not the values entered in the Fixed Values.
    may i know what has to be done to display the contents present in Fixed Value to get displayed in hte dropdownbykey in the webdynpro application.
    Thanks,
    BJR.

    Hi, Badni,
    If you can live without your custom domain, then you can use any standard data element and then programatically fill the attribute property with whatever content you want.
    For example, you can create the following method and call it from WDDOINIT of your view:
    METHOD set_values_for_dropdown_by_key.
    DATA:
        lo_nd_fli    TYPE REF TO if_wd_context_node,
        lo_info_fli  TYPE REF TO if_wd_context_node_info,
        lt_value_set TYPE wdr_context_attr_value_list,
        ls_value_set LIKE LINE OF lt_value_set,
        ls_scarr     TYPE scarr.
    * get node info
      lo_nd_fli   = wd_context->get_child_node( 'YOUR_NODE' ).
      lo_info_fli = lo_nd_fli->get_node_info( ).
    * set values
      ls_value_set-value = '0000001'.
      ls_value_set-text  = '1 - ABCD'.
      APPEND ls_value_set TO lt_value_set.
      ls_value_set-value = '0000002'.
      ls_value_set-text  = '2 - EFGH'.
      APPEND ls_value_set TO lt_value_set.
      ls_value_set-value = '0000003'.
      ls_value_set-text  = '3 - IJKL'.
      APPEND ls_value_set TO lt_value_set.
    * assign value set to attribute
      lo_info_fli->set_attribute_value_set(
        name      = 'YOUR_ATTRIBUTE_NAME'
        value_set = lt_value_set ).
    ENDMETHOD.
    Furthermore, if you insist on domain fixed values, you can get them from the tables DD07L and DD07T and include them in your DropdownByKey programatically with program similar to the above one.
    KR,
    Igor

  • Integrating Dynamic Adobe Form with BSP: SAP Objectives setting &Appraisal

    Hi all,
    My users ask me whether wecan use Adobe Form to replace SAP standard BSP appraisal form (generated by HAP_DOCUMENT).
    I konw that it's possible to integrate Adobe Interactive form with BSP.
    But my Adobe form must contain dynamic table, with ability to insert/delete row on the form. This is just like what's there when you can adding objectives by client scripting in SAP OSA.
    Please tell me if the integration of dynamic Adobe form with BSP is possible?
    (We are on ECC 6, EPH2).
    Thank you so much.
    Giang

    Hello,
    have you worked with the following document?
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/d0e58022-2a39-2a10-69a8-c1a892e2b3f4&overridelayout=true
    Did you try to develop a demo version of the form to try if it is possible to do what you need to?
    Do you plan to replace "only" the standard non-Adobe form or to develop a whole custom application?
    PRovide more details about the steps you´ve tried and we can solve this out. Regards, Otto

  • Upload Excel with BSP

    Hi,
    i have upload a excel file with BSP-Extension htmlb "fileupload". Now i get the excel-content in XString. How can i convert the Xstring to internal table?
    i can convert the xstring to string but i need it in internal table!
    can anyone help me!
    greetings
    markus

    Markus,
    I know of no functions that will convert a XLS file into an internal table. I suspect that even just converting the XSTRING (binary blob) into a string should be sufficient to completely destroy the XLS file.
    Only idea which you might try, is to convert (save as?) the XLS into a CSV file and upload this. This is just a comma separated file and should be easy to parse. This topic (at least writing such files) have been discussed previously a number of times. Maybe you search through the forum.
    ++bcm

  • 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

  • Implementing People-Centric UI with BSP and SAP EP Cookbook

    Here's the URL to access "Implementing People-Centric UI with BSP and SAP EP Cookbook."
    https://websmp203.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000583719&
    --KAL

    Hello KAL,
    I think that you have more access rights to Service Market Place. I as a Customer Employee only see a link to the People-Centric CRM - SAP Help Portal and a Overview Presentation People-Centric CRM. Are you at a SAP Partner?
    Regards
    Gregor

  • TableView Iterator in WebDynpro as in BSP

    Hi all,
    i'm planning to move from BSP to WebDynpro ABAP and have a question:
    Does WD ABAP provide the same kind of <htmlb:tableView> as BSP? Especially, does it support the concept of an tableview iterator?
    Thx & Regards,
    Daniel

    Yes you'll find everything.
    You'll find also the ALV extension of a table.
    I was familiar with iterator and I like it so much; in WDA you can reach the same result but in a different way.
    Basically you have to prepare, in advance, all the data in the table rows and then in the table configuration you'll describe the rules for each column (even with variants per row).
    You have to study the Table UI object with table cell variant and then ALV features.
    Sergio

  • Combining a WD App with BSP - HELP WILL BE REWARDED

    Hello all,
    i have a situation. I have to call a webdympro app from bsp application, without refreshing the current page (the job is done internally), i mean without using the method call_application. The thing is that i have to use a Web services but the WSDL's structure doesn't work for sap, and when i try to create a proxy object for a enterprise services that help me to get the WS in BSP, occurs an error. So i consume the WS from a WD application (perfectly) and now i have to comunicate that application in WD with the BSP App. Any ideas...Please help !!!!
    PS: the wd app is Webdynpro with Java App

    1. Is the connection to the backend is based on SAPlogonticket based or user mapping based?
    2. if its logonticket based, you should not have this problem at all, as portals DSM terminator would have killed the backend session ( whats the cach property set in BSP iview?) - sometimes the DSM may not be working - (popup blocker, etc)
    3. get_server cookie - i am not sure about this, and i doubt that this is the cause of the problem,  but a good practice is to delete the serverside cookies as soon as you finished using it - check in the BSP whether they are deleting.
    Regards
    Raja

  • Create a navigation link from java webdynpro to ABAP BSP

    Hi gurus,
    we received a customer request; we have this scenario. We have created a custom Java WebDynrpo application that works with mySAP CRM.
    The customer request is the following:
    Into a webdynpro page it is possible to call a BSP application passing the parameter CRM_OBJECT_ID?
    In detail (Example): we want to call the BSP Application Account (with the BP 1000001) selected:
    http://domain:port/sap/bc/bsp/sap/crm_bsp_frame/entrypoint.do?appl=CRMM_ACCOUNT&CRM_OBJECT_ID=1000001.
    Thanks in advance.
    Eugenio.

    Hi All,
    First of all, thanks to everybody for the collaboration.
    I'm working to solve the problem. I have to specify better the customer request:
    The navigation should be from a custom webdynpro to the standard crm BSP FrameWork (CRM PC_UI) CRM_BSP_FRAME. If I try to launch a BSP application, Ex: CRMM_ACCOUNT, i see that the application create automatically a session id; this is the URL generated:
    http://name.domain.com:8034/sap(bD1pdCZjPTExMCZkPW1pbg==)/bc/bsp/sap/crm_bsp_frame/entrypoint.do?appl=CRMM_ACCOUNT.
    Now, my question is the following?
    Is there the possibility to call this (PC-UI) application through a custom webdynpro??
    Thanks in advance.
    Kind Regards.
    Eugenio.

  • Why  webdynpro and not BSP or JSP?

    Hi,
    Am new to webdynpro technology. i would like to know what are the benefits of webdynpro over BSP and if we are using java why cant we use JSP's and why should we go for a new concept called webdynpro?
    Regards,
    Rashmi.

    Hi Rashmi,
    first, welcome on SDN! About your question:
    if you get some experiene with WebDynpro, you'll see that as far as the UI is concerned, you'll be able to create quite smooth interfaces quite quickly.  Advantage Nr. 1
    The concept of having a "context" shared among different views also makes life easy if you want fast result without caring how to pass values. This "passing values" is a question of design in WebDynpro.
    In the end, WebDynpro is a programming model which is very much intended on creating UIs with a defined framework where the developer can add some cutom code, where UI and BusinessLogic are more or less hard seperated.
    Just try it. The concept it totally different from other frameworks where you are obliged to implement differen interfaces and declare the usage by providing a XML for example. It's a question of taste if one likes WebDynpro, for it is very strict in it's usage.
    Hope it helps
    Detlev
    PS: Please consider rewarding points for helpful answers on SDN. Thanks in advance!

Maybe you are looking for

  • How can I find the user that created a user account and the user who last updated the account

    How can I find out who created a user account and who last updated the account. I think that this is the same information that is displayed in the description field on the General tab. I am using ADO commands and vbscript ug3j

  • Boot runner doesn't see Windows

    I am trying to use Boot Runner to simplify the rebooting process into Windows 8 but it doesn't identify the Windows partition. Can anyone assist? Below is the layout of my internal drive: *** Report for internal hard disk *** Current GPT partition ta

  • Copy and paste web page

    Hi,this is my first post. When using Internet Explorer on the PC I can copy and paste anything I highlight but in Safari on my Mac it only copies the text so when i paste into Word I only get the text. Is there a way of setting Safari up so that it c

  • Load XML extraway into Oracle 8i

    Hi all I have to load an DB XML extraway into my Oracle 8i, but I don't know how I have to do. I have defined tables, but now I have to load data. Coul you help me, please? Thanks in advance Paolo

  • Quoted string

    I have a string like this: This is the A' tring sample. into a variable Obviously when I tray to insert this I get the error because the middle quote: ORA-01756 quoted string not properly terminated What can I do if I need to sotred as it appears (wi