Adding a list in BSP Page

Hi,
In our requirement, we have three output list fields fetched from Database Table.
One more field is to be added for the display.
The code which gets the data is something like this
href="<%= target_page %>?i_sap_job=<%= wa_zadm_jobrun-jobname %><%= amb %>i_RUNINSTANCE=<%= wa_zadm_jobrun-RUNINSTANCE %><%= amb %>i_type_flag=<%=e_type_flag%><%= amb %>i_message=<%= e_message %><%= amb %>i_header=<%= e_header %>i_maestro_job
=<%= wa_zadm_jobrun-maestro_job %>">
The fields jobname, runinstance were already existing. The new field maestro_job is to be added to the output list.
The data is coming in debugging, but in output it is not diplayed.
Hope the query is clear...
Thanks in advance..
Do let know if any other details are required.
It is an urgent requirement...
Regards
Ajaz

answered by self...
Thanks

Similar Messages

  • Adding a URL to BSP Page

    Hello,
    I want to add an URL to the BSP page, could anyone give me insights on this.
    -Kewl

    By adding a URL, do you mean that you want a link to another URL?  You could always a plain HTML <a href>.  Or you could use the HTMLB extension <htmlb:link>.  Examples of the HTMLB elements can be found in the sample app SBSPEXT_HTMLB and HTMLB_SAMPLES. 
    On the other hand are you needing help building a URL to another BSP application?  Or perhaps did your question have to do with navigation between pages or applications?

  • How to remove a list from a page ?

    I added a list to a page and then later decided it would be easier to add the list to page 0. Now I can't find how to remove the list from the page.
    Edited by: Rene W. on Oct 6, 2008 1:52 AM

    Ok sorry I understood you wrong then.
    I tried to recontruct your problem and did the following things.
    1. Created a new list in: Home>Application Builder>Application 305>Shared Components>Lists>Create / Edit List
    2. Created a new region on page 2: Home>Application Builder>Application 305>Page 2>Create Region Type: List, Name:"test1"
    3. Created a new region on page 1: Home>Application Builder>Application 305>Page 1>Create Region Type: List, Name: "test2"
    4. Deleted region "test1" on page 2
    5. List and region still survived on page 1. :D
    Tobias

  • Adding an interactive "Processing" message to BSP pages

    Hi All,
    I would like to add an interactive message when I hit the save button on my BSP page. Since I do a lot of database writing upon hitting "SAVE", I would like to display some sort of "popup" message that would let the users know that the page is currently being processed.
    Thanks for all the help!
    Roman D.

    Hi Roman,
    try using the PHTMLB tag "ProtectDoubleSubmit". If you are not using HTMLB you will have to develop something int JavaScript. There are some posts in this forum about this.
    Regards
    Ariel

  • Download to excel in different tabs from bsp page

    Hi all,
    I have a requirement in which I have to download to xl-sheet in different tabs based on some conditions from a bsp page.
    I am successful in downloading data into different tabs.
    Now I had written the piece of code required to download to xl in a function module
    and I am calling that function module when pressing a button in bsp page.
    When I run the fm seperately its working but when I run it from bsp page its not working.But while debugging I found that the fm is being called and executed perfectly without any errors.
    But the xl is not being created on our side.
    Can anyone suggest me how to proceed on this.
    Helpful answers will be rewarded.
    Thanks,
    Uga

    Hi Raja,
    Yes I am using ole objects.
    For more clarity I am alos pasting my code.
    If this is not possible then please guide how to achieve this in BSP.
    *******************CODE*****************************************
    include ole2incl.
    data: w_cell1 type ole2_object,
    w_cell2 type ole2_object.
    *--- Ole data Declarations
    data: h_excel type ole2_object, " Excel object
    h_mapl type ole2_object, " list of workbooks
    h_map type ole2_object, " workbook
    h_zl type ole2_object, " cell
    h_f type ole2_object, " font
    gs_interior type ole2_object, " Pattern
    worksheet type ole2_object,
    h_cell type ole2_object,
    h_cell1 type ole2_object,
    range type ole2_object,
    h_sheet2 type ole2_object,
    h_sheet3 type ole2_object,
    gs_font type ole2_object,
    flg_stop(1) type c.
    Internal table Declaration
    data:gt_kna1 type standard table of kna1,
         gt_knvv type standard table of knvv,
         wa_kna1 type kna1,
         wa_knvv type knvv.
    types: data1(1500) type c,
    ty type table of data1.
    data: it type ty with header line,
    it_2 type ty with header line,
    it_3 type ty with header line,
    rec type sy-tfill,
    deli(1) type c,
    l_amt(18) type c.
    data: begin of hex,
    tab type x,
    end of hex.
    field-symbols: <fs> .
         constants cns_09(2) type n value 09.
    assign deli to <fs> type 'X'.
    hex-tab = cns_09.
    <fs> = hex-tab.
    data gv_sheet_name(20) type c .
    SELECT kunnr name1
      INTO corresponding fields of table gt_kna1
      FROM kna1
    UP TO 1000 ROWS.
    SELECT kunnr vkorg
      INTO corresponding fields of table gt_knvv
      FROM knvv
    UP TO 3 ROWS.
    loop at gt_kna1 into wa_kna1.
    concatenate  wa_kna1-kunnr  wa_kna1-name1 into it separated by deli.
    append it.
    clear it.
    endloop.
    loop at gt_knvv into wa_knvv.
    concatenate wa_knvv-kunnr wa_knvv-vkorg into it_2 separated by deli.
    append it_2.
    clear it_2.
    endloop.
    if h_excel-header = space or h_excel-handle = -1.
    *start Excel
    create object h_excel 'EXCEL.APPLICATION'.
    endif.
    call method of h_excel 'Workbooks' = h_mapl.
    set property of h_excel 'Visible' = 1.
    *add a new workbook
    call method of h_mapl 'Add' = h_map.
    gv_sheet_name = 'KNA1'.
    get property of h_excel 'ACTIVESHEET' = worksheet.
    set property of worksheet 'Name' = gv_sheet_name .
    *--Formatting the area of additional data 1 and doing the BOLD
    call method of h_excel 'Cells' = w_cell1
    exporting
    #1 = 1
    #2 = 1.
    call method of h_excel 'Cells' = w_cell2
    exporting
    #1 = 1
    #2 = 50.
    call method of h_excel 'Range' = h_cell
    exporting
    #1 = w_cell1
    #2 = w_cell2.
    *CALL METHOD OF gs_cells 'Select' .
    get property of h_cell 'Font' = gs_font .
    set property of gs_font 'Bold' = 1 .
    data l_rc type i.
    call method cl_gui_frontend_services=>clipboard_export
    importing
    data = it[]
    changing
    rc = l_rc
    exceptions
    cntl_error = 1
    error_no_gui = 2
    not_supported_by_gui = 3
    others = 4.
    call method of h_excel 'Cells' = w_cell1
    exporting
    #1 = 1
    #2 = 1.
    call method of h_excel 'Cells' = w_cell2
    exporting
    #1 = 1
    #2 = 1.
    PERFORM err_hdl.
    call method of h_excel 'Range' = range
    exporting
    #1 = w_cell1
    #2 = w_cell2.
    call method of range 'Select'.
    *PERFORM err_hdl.
    call method of worksheet 'Paste'.
    ****for second sheet**********
    GV_SHEET_NAME = '2ND SHEET'.
    gv_sheet_name = 'Knvv'.
    get property of h_excel 'Sheets' = h_sheet2 .
    call method of h_sheet2 'Add' = h_map.
    set property of h_map 'Name' = gv_sheet_name .
    get property of h_excel 'ACTIVESHEET' = worksheet.
    *--Formatting the area of additional data 1 and doing the BOLD
    call method of h_excel 'Cells' = w_cell1
    exporting
    #1 = 1
    #2 = 1.
    call method of h_excel 'Cells' = w_cell2
    exporting
    #1 = 1
    #2 = 50.
    call method of h_excel 'Range' = h_cell
    exporting
    #1 = w_cell1
    #2 = w_cell2.
    get property of h_cell 'Font' = gs_font .
    set property of gs_font 'Bold' = 1 .
    call method cl_gui_frontend_services=>clipboard_export
    importing
    data = it_2[]
    changing
    rc = l_rc
    exceptions
    cntl_error = 1
    error_no_gui = 2
    not_supported_by_gui = 3
    others = 4.
    call method of h_excel 'Cells' = w_cell1
    exporting
    #1 = 1
    #2 = 1.
    call method of h_excel 'Cells' = w_cell2
    exporting
    #1 = 1
    #2 = 1.
    PERFORM err_hdl.
    call method of h_excel 'Range' = range
    exporting
    #1 = w_cell1
    #2 = w_cell2.
    call method of range 'Select'.
    PERFORM err_hdl.
    call method of worksheet 'Paste'.
    Can you people give me inputs so that I can proceed further.
    Thanks,
    Uga

  • How to enhance CRM 7.0 webclient, say, insert several BSP pages?

    Hi,
    Would you please answer this question?
    Customer required to insert several BSP pages into standard Webclient scenarios of CRM7.0 so that customer specific business check scenarios could be added.
    Best regards,
    Hao

    Hi,
      Could you please elabrote your question.
    If you want to insert BSP pages jsut go to SE80 and see the BSP application name and  enter.
    You will get existing pages. If you want to add new pages just right click and click create button.
    Regards
    Srinu

  • To Intigrate Google Map in BSP page

    Hello Experts,
        My requirement is to show the google map in my BSP page. I have generated API key for that also. the following code works in .html extension but it wont work if i create a view in IC webclient and paste in its .htm page
    But same code with BSP tags. wont work. It will just gives you a blank screen.
    Bsp tags added are as follows
    <%@page language="abap" %>
    <%@extension name="thtmlb" prefix="thtmlb" %>
    <%@extension name="chtmlb" prefix="chtmlb" %>
    <%@extension name="bsp" prefix="bsp" %>
    <%@extension name="htmlb" prefix="htmlb"%>
    http://code.google.com/apis/maps/documentation/examples/event-argumentsl   
    You People can have a look at source code which i have used.right-click view source code
    i found the follwing blog. I tried the same in system still the view is grayed out . I cant see any thing
    Geocode Business Partner with Google Maps
    suggest me What else should be done .
    Thanks in advance
    SRiNi

    Put the below code in your layout of the page/view.
    <%@page language="abap"%>
    <%@extension name="htmlb" prefix="htmlb"%>
    <htmlb:content design="design2003">
      <htmlb:page title = "FIRST PAGE ">
        <htmlb:form>
         <iframe src="URL OF GOOGLE MAPS" width="100%" height="500px">
         </iframe>
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>

  • How to Import dutch language in CProject 3.1 BSP pages

    Hi all,
    I had installed Cprojects 3.1 in my ECC5 system which installed with Dutch language.
    I'm not sure full translation of cProjects in Ductch language is possible in version 3.1 as my customer was request for Dutch translation in cProjects Web Application.
    *support package for the cProjects is 12
    The following messages was exists when loaded BSP pages
    The current language status for language Dutch (NL) has been not yet
    imported. This means that some text rules of the object which you want
    look after, in language Dutch (NL) possibly not yet available or
    become obsolete to be. In the care for the missing translations the
    associated texts from the original language are inserted.
    When you the object modifies Dutch (NL) now in language, dragon when
    you the object modifies Dutch (NL) now in language, no longer can this
    that the texts of this object in language Dutch (NL) by the succeeding
    language import could have been actualised. These texts then handamtig
    must be actualised.
    Get in touch with the system manager to let carry out required the
    language import. Fodder afterwards just the modification.
    ##FYI. I had loaded Dutch support packages in SMLT and its look fine with the language translation
    Please guide me regarding this.
    Thanks
    Edited by: Tow Terry on Apr 18, 2008 11:03 AM

    Hi Sunil,
    I had tried this solution instead. Its same as stated in yours solution. For Dutch Language code AN?  I guess it was "NL" instead?
    Please correct me if i was wrong.
    1.) SPRO -> SAP Reference IMG
    2.     On the Change View “Service for an SAP Transaction”: Overview screen select the dialog structure Alias for the Web Server of an SAP Transaction.
    3.     On the Change View “Alias for the We[<a href="http://www.freeimagehosting.net/">[img]http://img2.freeimagehosting.net/uploads/7e105edf9a.jpg[/img]</a>] Entries screen, enter the Web Server Alias and the corresponding Web Server Address.
    5.     Select the entered Web Server and double click on the dialog structure Parameters of a Web Server of an SAP Transaction.
    6.     On the Change View “Parameter of a Web Server of an SAP Transaction”: Overview screen choose New Entries.
    7.     On the New Entries: Overview of Added Entries screen enter the following parameter names with the correct parameter value of your system:
                                              Parameter Name     Parameter Value (example)
                                                     ~CLIENT              100
                                                     ~LANGUAGE          EN
                                                     ~LOGINGROUP     PUBLIC
    8.     Save your entries.
    However, the translation of language still encounter the same problem.
    How could i change the original language instead of German language??
    [<a href="http://www.freeimagehosting.net/">[img]http://img2.freeimagehosting.net/uploads/7e105edf9a.jpg[/img]</a>]
    Thanks,
    Terry
    Edited by: Tow Terry on Apr 18, 2008 4:06 PM
    Edited by: Tow Terry on Apr 18, 2008 4:18 PM

  • Embedding JavaScript rendered controls into a BSP page

    Hello,
    I want to add a JavaScript rendered grid control from the Ext JS framework into a tab of a BSP application.
    It looks however that the layout management code behind BSP (it has to manage its tab container somehow)
    interferes with the JavaScript of the Ext JS library.
    My question is how to embed such a non-trivial JavaScript software into a BSP page without interfereing with the internals of the BSP rendering engine.

    Now in more detail:
    I am talking of adding a sophisticated grid control, which itself is implemented with the Ext JS JavaScript framework.
    Here is a simple grid of that kind:
      [http://www.sencha.com/deploy/dev/examples/grid/array-grid.html]
    To give you an impression of the amount and complexity of the code, here is the user code which calls the Ext JS framework:
      [http://www.sencha.com/deploy/dev/examples/grid/array-grid.js]
    The present embedding is of the kind:
    (code sample omitted, because the forum software dies with a post error if leave it)
    This is included into a BSP tabcontrol tab.
    In Firefox we see that the ext-grid is hidden by some BSP JavaScript logic which gets delivered with the final pages in the user's browser.
    In Internet Explorer we see a bug:
      file: sapUrMapi_ie6.js, line 4729, function sapUrMapi_PcTabSeq_draw, error: style.display is not an object  (it tries to check the display attribute).
    which stops execution and such has the lucky effect of not hiding the grid, so it display as intended from our part.
    I have researched some examples on the net, where AJAX code was embedded into a BSP application and saw that this code is often structured differently, using documentHead, documentBody und content HTMLB Elements, but also sometimes puts the JavaScript just at the end like in the code fragment given above. Alas I lack a proper description and guidelines when to use what element and where to put what JavaScript (and CSS)  into the various sections of a BSP htm file.
    Regards,
    Marc van Woerkom

  • HR programming and BSP pages

    Can't get some simple HR programming to Work with BSP pages.  I've tried defining field "zevnt1" just about every way I can think of and I can't get the following to work.  Below I've added 1 example that I tried to define "zevnt1".
    How do I define zevnt1 so this will work? 
    I keep getting an error message saying that "wa_pa0041-dar01 AND zevnt1 are type-incompatable" 
    DATA: BEGIN OF zevnt1,
           darxx TYPE pa0041-dar01,
           datxx TYPE pa0041-dat01,
          END OF zevnt1.
    LOOP AT i_pa0041 INTO wa_pa0041.
      DO 12 TIMES
      VARYING zevnt1 FROM wa_pa0041-dar01
                     NEXT wa_pa0041-dar02.
      ENDDO.
    ENDLOOP.

    Hi,
    The syntax should be like this:
    DATA: zevnt1 TYPE pa0041-dar01,
          zevnt2 TYPE pa0041-dat01.
    LOOP AT i_pa0041 INTO wa_pa0041.
    DO 12 TIMES
    VARYING zevnt1 FROM wa_pa0041-dar01 NEXT wa_pa0041-dar02
    VARYING zevnt2 FROM wa_pa0041-dat01 NEXT wa_pa0041-dat02.
    ENDDO.
    ENDLOOP.
    Greetings,
    Vincent

  • Displaying cascading list in the page

    Hi
    I have a cascading parent child list of Country , City , World.
    I want to display the world list on the page using some webpart. I want that there should be two drop downs and when the Country and city are selected from that drop down then the list item should be displayed .
    For eg.
    If I select India and Delhi then the list item should be displayed for the same.
    Vij

    Hi Vij, Romeo's solution will work inside the form, but I think you might be talking about adding the dropdowns to the page itself where the list is, then I suggest the html web part. See the following link for information on how to set it up:
    https://support.office.com/en-ie/article/Use-the-HTML-Form-Web-Part-to-filter-and-display-data-in-another-Web-Part-860b681c-38ad-43ff-a036-a60868497ff7
    cameron rautmann

  • Trash in BSP-Pages for ABAP-reports

    Hi,
    it´s strange that I´m getting trash in the BSP-Pages that represent an ABAP report. I just can´t identify how it is produced and shows up between Titel and real list. I use
              SUBMIT (progr_name)
                 WITH SELECTION-TABLE sel_table
                 EXPORTING LIST TO MEMORY AND RETURN.
    and then CALL FUNCTION 'LIST_FROM_MEMORY'
    later    CALL FUNCTION 'WWW_HTML_FROM_LISTOBJECT'
    I make a loop with the output and save all in a variable of type string, which is later used in the layout page.
    After execution, I get something like:
         Title       page Nr.      User name
         trash
         more trash
         even more trash
         list
    the data that I describe as trash is information from the list, but it also appears where it must.
    Has anyone experience with it ?? Thanks

    I am also getting some "trash" at the beginning of my report in some cases. The report list I am sending the FM contains Material Descriptions and our descriptions (can) contain a combination of slashes (/), colons ( and commas (,) (eg. SPARES:DISPLAY/GASKET,MONO,GEMINI) - I find that if I remove the commas from the descriptions during the reporting, that I do not have this problem. However this is not a viable solution. Any ideas would be very helpful.

  • Call a BSP page and save the output

    I have a BSP page, and an other one that acts as a report. From the first one I would like to call the second one to save its output as binary data. Can anyone help? Thaks in advance.

    This code may help you.
    report = 'ZREPORT'.
    submit (report)  LINE-SIZE 360
           with
    s_bukrs = '0030' sign 'I'
          with s_bldat between FROM_DATE and to_date sign 'I'
                   EXPORTING LIST TO MEMORY and return.
       call function 'LIST_FROM_MEMORY'
        tables
          listobject       = LISTOBJECT
              EXCEPTIONS
                NOT_FOUND        = 1
                OTHERS           = 2
    store listobject in data base or export to memory.

  • Adding dynamic text to SharePoint Pages

    Hello all,
    Our SharePoint developer has quit and not his "duties" have been "pushed" onto me. While I am no developer, I can hold my own on certain things.
    Basically I have been asked to add "dynamic" text to our pages that will "read" a field in our "project information list" - project name, client etc.
    Is there a way to "read" a field in SharePoint and add this information dynamically to a page? Our project pages will be around 20 and to do it manually for every page would be a bit of a bear.
    Lastly, we have a documentation library with folders in it. Is there a way to display the "folder" the user is currently in? Right now, when the user clicks on "procedures", there is no visual indication on the page they are in the "procedures"
    folder.
    Thanks all for any help you may be able to provide.
    Brent

    Hi,
    It would be easier for communities focus on one question in one single thread, if you may have more than one questions, it would be better to post one question in one single
    thread.
    For the first question, you want to display values from a column of a list in a page, what’s more, the values will be changed along with the changes in the corresponding list.
    Content Query Web Part would be a good choice without coding.
    You can specify the column you want to display, the style of the content and you can even filter the values you got. All you need to do is add this web part into your 20 pages
    with some necessary settings, then you will get a dynamic view of data on your page.
    Display a dynamic view of content on a page by adding the Content Query Web Part
    http://office.microsoft.com/en-001/sharepoint-foundation-help/display-a-dynamic-view-of-content-on-a-page-by-adding-the-content-query-web-part-HA101794897.aspx
    Here is two demos about how work with the Content Query Web Part:
    http://community.bamboosolutions.com/blogs/sharepoint-2013/archive/2013/05/10/how-to-use-the-content-query-web-part-to-rollup-data-in-sharepoint-2013.aspx
    http://www.codeproject.com/Articles/756834/Customizing-the-Content-Query-Web-Part-and-Item-St
    Feel free to reply if there are still any questions.
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • E-Recruitment BSP pages/SmartForms interface

    I've activated a Customer Include field for hrp5121. (Job Postings).  The BSP page methods have been modified to display this new field.
    I've copied SmartForm HRRCF_DATA_SUMMARY_POSTING and in my Z version, my new field is available in table POST_INFO_WT and has been added to the body of the form.  I've also updated table T77RCF_UI_PARAM to use my Z version form.
    From the BSP page "Job Posting for Requisition" (HRRCF_POST_MNT), I can click the posting link to view the SmartForm, but my new field has no value.
    What method(s) needs to be modified to get my field value from hrp5121 into the SmartForm interface?

    Hi,
    when reading your question i asked the following question: what do you expect to achieve by integrating fuctionality which is meant to be called by an external candidate (someone sitting 1000 miles away from your company at home) into your corporate portal? The external candidate has no access to the portal, so why add them? He has to call the applications directly via links sended to him or through links on you career web side.
    Technically you might face the problem that all applications for external candidates use the web user for authorization that means they use the ALIAS not the user for logging in, that's why you should always set your user name as ALIAS in SU01 for testing purposes on your development system, This makes life much easier during rollout.
    Kind Regards
    Roman

Maybe you are looking for

  • Looking for Mac that can handle CPU intensive apps (Music & Video)

    Hi everyone, I am looking to get a new mac in the near future but wanted to know which Desktop mac is best for music and video? I was thinking of the new iMac but not sure if they are powerful enough? I need something that can handle CPU intensive st

  • Automated Scrolling Text

    I'm using Captivate version 8 to write a quiz. I'd like to create a proof reading exercise whereby the text automatically scrolls down and the student needs to click on any errors that they see. The automated scrolling is to add time pressure to the

  • SSL connection refused: errno=61

    I'm trying to follow this guide to import OD servers SSL certificate for my client server: http://support.apple.com/kb/ht4183 my os version is 10.6, so the guide states that I need to import the certificate manually. But when I try to run the command

  • Jspdynpage having db connection

    hi all i created one jspdynpage application having db connection but i got so many errors in that can any one send par file to me having jspdynpagejspdbconnection

  • Group by week on select statement

    Hi friends, I have a select statement which returns me the data that i need to group it on a weekly basis. The week starts from wednesday morning to tuesday night. what should e the syntax for group by clause to get the desired result. I am using the