Simulating a table

Hi folks, This is my first question as I am a newcomer to the AppleMac and in particular iWeb. Since there is no way of inserting an editable table in iWeb (why oh why!!?) I am trying to simulate one using small text boxes arranged in rows and columns. Is there a way of 'grouping' these together so I can move them around the body of the page en masse)?
I would appreciate any help and will surely acknowledge it.
Regards
Batteneye

Batteneye wrote:
I now need to find a decent website designer which is not too expensive.
Whether you'll find the free, web-based Weebly "decent" I don't know — but see this post:
_Domain file - iWeb becoming a headache_
And there's this:
_Creating Tables using Weebly_
Or, for a non web-based alternative, consider _Sandvox Pro_:
_Using Tables Or Bullet Points_
By the way, rather than posting a URL like this:
www.jbpuzzles.co.uk
...include the prefix to make it conveniently clickable:
http://www.jbpuzzles.co.uk

Similar Messages

  • Error rendering a Table on BlackBerry

    Hi guys,
    In order to display some data in a WD for BlackBerry I created a Table with some columns (a few viewtext and one linktoaction).
    When I try to see my application in the BlackBerry simulator, the Table contains data (I think so because pagination is enable) but only shows pagination, neither headers nor rows. Instead appears a "dot".
    What is wrong? I activated javascript in the simulator but nothing happens.
    Thank you!!!

    Hello Sebastian!
    Do you try to do a simple table with template wizard?
    Try to do it, simple table with default components of columns, if it pass then we have a concrete logical that this error occurs only using a diferent kind of component, i have a problem with layouts when i deploy my application on blackberry, but you talked that on simulator the table is empty and only appears pagination links
    Try do do it and write here the result, i suspect that your fields that display are empty.
    Regards, Ronaldo

  • Can someone give me an example of creating a table in the Custom Calc Script?

    I need to simulated a table in the Custom Calculation Script. All I need is an example (maybe two examples, see below) and I can hopefully work out the rest.
    Here is a sample of the first table:
    Col 1
    Col 2
    5
    .1
    50
    2
    75
    6
    100
    12
    Basically I need the script to get the number from the first column and return the associated number (in same row) in the second column.
    The second table I need to simulate is a little more complex as it uses text and has multiple columns:
    Header 1
    Station 1
    Station 2
    Station 3
    Debbie
    5
    0
    16
    Carl
    0
    20
    4
    Josh
    2
    8
    19
    It will pull the names from one field then the stations from another and return the cross referenced value.
    I hope someone can please help.
    Bruce

    An object is a good way to implement this. For the first, the object would look like this:
    var oT1 = {
        "5" : 0.1,
        "50" : 2,
        "75" : 6,
        "100" : 12
    To get the value associated with the 100 property, the code would look something like:
    var val = oT1["100"];
    The variable "val" would then contain the number 12.
    For the second, the value of each object property could be an array, something like:
    var oT2 = {
        "Debbie" : [5, 0, 16],
        "Carl" : [0, 20, 4],
        "Josh" : [2, 8, 19]
    To get the second item in the array for the "Josh" array, the code would look like:
    var val = oT2["Josh"][1];
    To get the last item in the "Debbie" array, you could do this:
    var val = oT2["Debbie"][2];
    Array indexes are zero-based, so the second item has an index of 1, third item is 2, etc..
    Good luck

  • Deletion of schedule line in PO using BAPI_PO_CHANGE

    Hi ,
    Can anyone give me the code to delete a schedule line in a po using the bapi bapi_po_change.
    Useful answers will be rewarded.
    Regards,
    Sowmya.

    Hi,
    Refer below code
    *&      Form  sub_populate_data
          text
    FORM sub_populate_data .
    *--Local Variables
      DATA : l_ipdate      TYPE rc65a-datefrom,
             l_fdate       TYPE sy-datum.
      IF NOT it_succ_file[] IS INITIAL.
        LOOP AT it_succ_file INTO st_succ_file.
          st_ipfile = st_succ_file.
    *--Sales Document
          CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
            EXPORTING
              input  = st_ipfile-vbeln
            IMPORTING
              output = st_salesdoc.
          st_ord_headx-updateflag = c_u.
    *--Sales Document Item
          st_schedule_line-itm_number = st_ipfile-posnr.
          st_schedule_linex-itm_number = st_ipfile-posnr.
          st_schedule_linex-updateflag = c_i.
    *--Schedule line date
          l_ipdate = st_ipfile-edatu.
    *--Call function module to convert the date format into current user format
          CALL FUNCTION 'CY_CONVERT_DATE'
            EXPORTING
              date_string_imp = l_ipdate
            IMPORTING
              date_exp        = l_fdate.
          st_schedule_line-dlv_date = l_fdate.
          st_schedule_linex-dlv_date = c_chk.
          st_schedule_line-req_date = l_fdate.
          st_schedule_linex-req_date = c_chk.
    *--Order quantity in sales units
          st_schedule_line-req_qty = st_ipfile-wmeng.
          st_schedule_linex-req_qty = c_chk.
          APPEND st_schedule_line TO it_schedule_line.
          APPEND st_schedule_linex TO it_schedule_linex.
    *--Clear
          CLEAR : st_schedule_line,
                  st_schedule_linex.
          AT END OF posnr.
    *--Perform to delete the existing schedule line
            PERFORM sub_delete_schedule_line.
          ENDAT.
          AT END OF vbeln.
    *--Clear
            CLEAR : st_erfile.
            READ TABLE it_erfile INTO st_erfile WITH KEY vbeln = st_ipfile-vbeln
                                                         posnr = st_ipfile-posnr
                                                         BINARY SEARCH.
            IF sy-subrc EQ 0.
              g_error_records = g_error_records + 1.
              g_total_records = g_total_records + 1.
            ELSE.
    *--Call the bapi to update sales order schedule line
              PERFORM sub_call_bapi.
            ENDIF.
          ENDAT.
        ENDLOOP.
      ENDIF.
    ENDFORM.                    " sub_populate_data
    *&      Form  sub_call_bapi
          text
    FORM sub_call_bapi.
      g_total_records = g_total_records + 1.
    *--Call BAPI to update sales order schedule line for simulation mode
      CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
        EXPORTING
          salesdocument    = st_salesdoc
          order_header_inx = st_ord_headx
          simulation       = c_chk
        TABLES
          return           = it_return
          schedule_lines   = it_schedule_line
          schedule_linesx  = it_schedule_linex.
      IF NOT it_return[] IS INITIAL.
        READ TABLE it_return INTO st_return WITH KEY type = c_e.
        IF sy-subrc EQ 0.
          g_error_records = g_error_records + 1.
        ELSE.
          REFRESH : it_return.
    *--Call BAPI to update sales order schedule line
          CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
            EXPORTING
              salesdocument    = st_salesdoc
              order_header_inx = st_ord_headx
            TABLES
              return           = it_return
              schedule_lines   = it_schedule_line
              schedule_linesx  = it_schedule_linex.
        ENDIF.
        LOOP AT it_return INTO st_return
                          WHERE type EQ c_e.
          st_erfile = st_ipfile.
          st_erfile-message = st_return-message.
          APPEND st_erfile TO it_erfile.
          APPEND st_erfile TO it_file.
          CLEAR : st_return.
        ENDLOOP.
      ENDIF.
      IF it_file[] IS INITIAL.
    *--Call BAPI transaction commit to change the schedule line
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          EXPORTING
            wait = c_chk.
      ELSE.
        ROLLBACK WORK.
    *--Call BAPI transaction rollback to rollback the schedule line
        CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
      ENDIF.
    *--Clear
      CLEAR : st_salesdoc,
              st_ord_headx.
    *--Refresh
      REFRESH : it_return,
                it_schedule_line,
                it_schedule_linex.
    ENDFORM.                    " sub_call_bapi
    Regards,
    Prashant

  • To delete sales order using BAPI_SALESORDER_CHANGE

    HI ,
           I am using BAPI_SALESORDER_CHANGE to delete a bulk of order lines for an order.But the issue is...the entries are deleted in VBEP and VBUP tables for all the order lines where in VBAP only few order lines are deleted.This is happening repeatedly.
    I am passing data like this...
        CLEAR: l_vbap_inx.
        l_vbap_inx-itm_number            =  t_vbap-posnr.  " will have value
        l_vbap_inx-updateflag            = 'D'.
        APPEND l_vbap_inx.
        CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
             EXPORTING
                  salesdocument    = i_vbeln                   "will have order number
                  order_header_inx = l_vbak_inx            " will be paased with values 'U'
                  order_header_in  = header                 "will not hold any value
                  simulation       = i_simulate                  "space
             TABLES
                  return           = l_return
                  order_item_in    = l_vbap                   "bulk of order lines with 'D' flag
                  order_item_inx   = l_vbap_inx
                  extensionin      = l_vbap_ext.
    can you please suggest on this......
    Thanks in advance.

    HI ,
    Can any one of you please suggest me to amend the below given code which is used to  delete bulk of order lines from VBAP table.presently it is deleting first few order lines from VBAP and all order lines from VBEP and VBUP tables.when i execute the same program for second time  first left out order lines are getting deleted again.So..can any one please check the below code and suggest me something on this.
        REFRESH: l_return, l_vbap, l_vbap_inx, l_vbap_ext.
      IF xorder_delete = 'X'.
        l_vbak_inx-updateflag = 'D'.
    Even though all the order lines are to be deleted, the delete complete
    order flag says don't delete the header data
        IF i_cleanup = space.
          l_vbak_inx-updateflag = 'U'.
          PERFORM validate_line_count TABLES l_vbap_ext         "iw150709
                                       USING i_vbeln.           "iw150709
        ENDIF.
      ELSE.
        l_vbak_inx-updateflag = 'U'.
        PERFORM validate_line_count TABLES l_vbap_ext           "iw150709
                                     USING i_vbeln.             "iw150709
      ENDIF.
      LOOP AT t_vbap WHERE delete = 'X'.
        CLEAR: l_vbap.
        l_vbap-itm_number                =  t_vbap-posnr.
        APPEND l_vbap.
        CLEAR: l_vbap_inx.
        l_vbap_inx-itm_number            =  t_vbap-posnr.
        l_vbap_inx-updateflag            = 'D'.
        APPEND l_vbap_inx.
        CLEAR: l_vbap_ext, l_extension_vbapx.
        l_vbap_ext-structure             = 'BAPE_VBAPX'.
        l_extension_vbapx-vbeln          =  i_vbeln.
        l_extension_vbapx-posnr          =  t_vbap-posnr.
        l_extension_vbapx-zzco_reason    = 'X'.
        l_vbap_ext+30                    =  l_extension_vbapx.
        APPEND l_vbap_ext.
        CLEAR: l_vbap_ext, l_extension_vbap.
        l_vbap_ext-structure             = 'BAPE_VBAP'.
        l_extension_vbap-vbeln           =  i_vbeln.
        l_extension_vbap-posnr           =  t_vbap-posnr.
        l_extension_vbap-zzco_reason     =  i_reason.
        l_vbap_ext+30                    =  l_extension_vbap.
        APPEND l_vbap_ext.
      ENDLOOP.
    Only call BAPI if NOT in test mode.
      IF i_simulate = space.
        CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
             EXPORTING
                  salesdocument    = i_vbeln
                  order_header_inx = l_vbak_inx
                  order_header_in  = header
                  simulation       = i_simulate
             TABLES
                  return           = l_return
                  order_item_in    = l_vbap
                  order_item_inx   = l_vbap_inx
                  extensionin      = l_vbap_ext.
      ENDIF.
      LOOP AT l_return WHERE type = 'E' OR type = 'A'.
        MOVE-CORRESPONDING l_return TO t_messages.
        t_messages-field = 'VBELN'.
        APPEND t_messages.
      ENDLOOP.
    No ERRORs
      IF sy-subrc <> 0.
        IF i_simulate = space.
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
               IMPORTING
                    return = l_return.
    Edited by: manj1325 on Apr 9, 2010 8:19 AM

  • How to gen Schedule line automatical.y by BAPI_SALESORDER_CREATEFROMDAT2

    Dears,
       I am using BAPI_SALESORDER_CREATEFROMDAT2 to create Sales Order,
    everything goes on well, but the only problem is i have to input the schedule line myself by providing the   SCHEDULE_LINES& SCHEDULE_LINESX parameter.
      Just wondering...is there any way to let 
      BAPI_SALESORDER_CREATEFROMDAT2  create schedule line automatically,
      just like what we do in frontend, after we input the order quantity in line item , the
      schedule line will be generated automatically...

    Hello,
    You can use FM: BAPI_SALESORDER_CHANGE with update indicator I (insert)
      call function 'BAPI_SALESORDER_CHANGE'
        exporting
          salesdocument    = l_vbeln
          order_header_inx = l_wa_order_header_inx
          simulation       = l_simulation
        tables
          return           = l_i_return
          order_item_in    = l_i_order_item
          order_item_inx   = l_i_order_item_inx
          partners         = l_i_partners
          schedule_lines   = l_i_schedule_lines
          schedule_linesx  = l_i_schedule_linesx
          extensionin      = l_i_extensionin.
    Thanks
    Subhankar

  • How to add new line item to SO using BAPI_SALESORDER_CREATEFROMDAT2

    Hi,
    I have sales order A with 1 line item, now i want to add new line item with material x and quantity y to the existing sales order A
    using BAPI_SALESORDER_CREATEFROMDAT2.
    Line item no for new line item should be generated by SAP internally.Please let me know the mandatory parameters to be passed to the BAPI to fulfill the requirement.
    DATA: order_header TYPE bapisdhd1,
               order_inx TYPE bapisdhd1x,
               partners TYPE TABLE OF bapiparnr,
               wa_partners TYPE bapiparnr.
    CLEAR: salesdocument,order_header_inx,wa_in, wa_inx.
    REFRESH: item_in, item_inx.
      salesdocument = wa_vbup-vbeln.
      order_header_inx-updateflag = 'X'.
      wa_in-itm_number = ' '.
      wa_in-material = p_nmatnr.
      wa_in-target_qty = gv_menge - gv_wemng.
      APPEND wa_in TO item_in.
      wa_inx-itm_number = ' '.
      wa_inx-updateflag = 'U'.
      wa_inx-target_qty = 'X'.
      APPEND wa_inx TO item_inx.
          CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT2'
          EXPORTING
           salesdocumentin               = salesdocument
           order_header_in               = order_header
           order_header_inx              = order_inx
          IMPORTING
           salesdocument                 = salesdocument
          TABLES
           return                              = return
           order_items_in                = item_in
           order_items_inx               = item_inx
           order_partners                = partners.
    Thanks
    Bhuvana

    Hello,
    You can use FM: BAPI_SALESORDER_CHANGE with update indicator I (insert)
      call function 'BAPI_SALESORDER_CHANGE'
        exporting
          salesdocument    = l_vbeln
          order_header_inx = l_wa_order_header_inx
          simulation       = l_simulation
        tables
          return           = l_i_return
          order_item_in    = l_i_order_item
          order_item_inx   = l_i_order_item_inx
          partners         = l_i_partners
          schedule_lines   = l_i_schedule_lines
          schedule_linesx  = l_i_schedule_linesx
          extensionin      = l_i_extensionin.
    Thanks
    Subhankar

  • How to use LEAD function??

    hello everyone,
    i am new at this; i know only some basic "select" statements like, "select column1, column1, etc. when column1='***' etc...
    Today i ran into a more complicated select, and i can't figure it out. Please help. btw, i tried the "LEAD" function but results is not working as i wanted.
    I have an EMPLOYEE table of the followings. what i want to 'select' is, if the employee name of the next record is equal to the previous record, then put the TITLE of the next record into a new column(see sample results under "RESULTS") section, AND list results of only those records that the "TITLE" does not equal to "NEW-COLUMN"
    thank you.
    Joe
    _EMPLOYEE TABLE_
    NAME          TITLE
    joe          clerk1
    joe          clerk2
    john          nurse1
    john          nurse2
    john wilson nurse3
    _RESULTS_
    NAME          TITLE          NEW-COLUMN
    joe          clerk1          clerk2
    john          nurse1          nurse2

    Hi.
    "WITH subquery_name AS" creates a subquery that you can SELECT as a table here's an example:
    WITH subquery_name AS
      SELECT * FROM scott.emp
    SELECT * FROM subquery_name;
         EMPNO ENAME      JOB              MGR HIREDATE        SAL       COMM     DEPTNO
          7369 SMITH      CLERK           7902 17/12/80        800                    20
          7499 ALLEN      SALESMAN        7698 20/02/81       1600        300         30
          7521 WARD       SALESMAN        7698 22/02/81       1250        500         30
          7566 JONES      MANAGER         7839 02/04/81       2975                    20
          7654 MARTIN     SALESMAN        7698 28/09/81       1250       1400         30
          7698 BLAKE      MANAGER         7839 01/05/81       2850                    30
          7782 CLARK      MANAGER         7839 09/06/81       2450                    10
          7788 SCOTT      ANALYST         7566 19/04/87       3000                    20
          7839 KING       PRESIDENT            17/11/81       5000                    10
          7844 TURNER     SALESMAN        7698 08/09/81       1500          0         30
          7876 ADAMS      CLERK           7788 23/05/87       1100                    20
          7900 JAMES      CLERK           7698 03/12/81        950                    30
          7902 FORD       ANALYST         7566 03/12/81       3000                    20
          7934 MILLER     CLERK           7782 23/01/82       1300                    10
    14 rows selected.
    --another example
    WITH subquery_name2 AS
      SELECT 1,2,3,4,5 FROM dual
    SELECT * FROM subquery_name2;
             1          2          3          4          5
             1          2          3          4          5I use it to create a subquery that simule a table, for example codes, sometimes I prefer it more than CREATE TABLE and INSERT statements because you just have to copy/paste the code and it doesn't create any physical table.
    You can modify the select inside WITH to get the desired set of rows/columns that you want.
    Regards.
    Oscar.

  • Exception Condition Date_After_Range raised in BEx Query

    Hi All,
    I got the above error on after executed Query 0TCT_MC01_Q0112. Anyone has any idea what is this and what actually caused it.
    Your feedback is really much appreciated.
    Thanks
    Best Regards,
    Nas

    Hi,
    Check if this helps...
    These Kind of error also may be due to Factory calender setting was not populated in BI
    So Go to RSA1 -> Source System-> right click on R/3 client -> Transfer global Setting-> check factory calender and first check radio button simulation -> execute-> Tables TFACD (go to se16 and check entries in that table for country id ) -> when ur sure about entries go back and check Rebulid table instead of simulation and execute.
    The new entries will get populated in BI.
    Regards,
    AL

  • BAPI_SALESORDER_CHANGE , not deleted in VBAP, but got deleted in VBEP, VBUP

    Hi All,
    Through BAPI_SALESORDER_CHANGE the sales order item line is being deleted. But, due to some reson, only entries in VBEP and VBUP are got deleted. VBAP table still showing the item line. This is resulting inconsistency of data between tables, and there by resulting an Update termination error.
    Thank you,
    Rajesh.

    >
    Rajesh Turlapati wrote:
    > Hi Kritesh,
    >
    > Actually the code will do bulk deletion, (deletion of multiple order lines in one order),. Few order lines are got deleted properly in all the tables. But few order lines are not get deleted in only VBAP (In VBEP and VBUP, the item lines got deleted). If the order is opened through VA03,  the order lines are still shown.
    >
    > Below is the code we are using,
    >
    >
    >     CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
    >          EXPORTING
    >               salesdocument    = i_vbeln
    >               order_header_inx = l_vbak_inx
    >               order_header_in  = header
    >               simulation       = i_simulate
    >          TABLES
    >               return           = l_return
    >               order_item_in    = l_vbap
    >               order_item_inx   = l_vbap_inx
    >               extensionin      = l_vbap_ext.
    >
    >
    > Thank you,
    >
    > Rajesh
    Did you populate ORDER_ITEM_INX-ITM_NUMBER and Updateflag? 
    The BAPI call seems to be fine and i dont see any problems there.

  • "Enter document number error" in BAPI_SALESORDER_CHANGE

    Hi,
    I am trying to change the sales order thorugh BAPI_SALEORDER_CHANGE as follows,
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
    EXPORTING
    salesdocument = <fs_order_alv_aux>-vbeln
    order_header_in = e_bapisdh1
    order_header_inx = e_bapisdh1x
    simulation = p_consol
    TABLES
    return = t_bapi_return
    extensionin = t_bapiparex.
    I am changing only KVGR5 through this BAPI, and I am passing sales documetn number through <fs_order_alv_aux>-vbeln.
    When I check inside BAPI I am able to see SALESDOCUMENT : 0021033932, while debugging further I came to know about following.
    Inside the Function SD_SALES_DOCUMENT_READ. following 2 lines gets executed.
    VBAK-VBELN = DOCUMENT_NUMBER.
    PERFORM BELEG_LESEN(SAPMV45A).
    Here, VBAK-VBELN has a value, but as soon as it goes inside PERFORM BELEG_LESEN(SAPMV45A). VBAK-VBELN value gets cleared and following error has been set inside the perform.
    if vbak-vbeln is initial.
    message e045.
    endif.
    If I manually fill VBAK-VBELN inside this perform then everything works fine.
    I even tried same thing through SE37 by executing this BAPI but in this case it doesnot clear the VBAK-VBELN inside this PERFROM.
    Can anyone help?
    Thank you.

    Hi Pramod,
    it does not look like a conversion error.
    You may try again with SE37, enter debugger at start and set a watchpoint at VBAK-VBELN in function SD_SALES_DOCUMENT_READ, i.e. program SAPLV45A.
    When VBAK-VBELN is set, it will stop at the watchpoint. Check the call stack at this point to find out how the value gets here. Then start your misbehaving program and (I hope so) find out ehere it is going wrong.
    The SD process is heavily penetrated with enhancements for a couple of industry solutions. I do not know your environment so it is hard to say how the document number is passed to function group V45A.
    Regards,
    Clemens

  • BI Mobile Intelligence

    Hi all,
    I've created an table using WAD, which takes data from an BW query. If i try to open WAD output in the Blackberry simulator, the table data is not getting aligned properly.
    Although we have tried the options "Output Optimization" (both checked and unchecked), we are not able to align properly.
    Do anyone know the solution to align it properly.?
    Thanks and regards.

    I have been experimenting with this as well and been unable to render a table properly. I am not even seeing the table structure, just the data lined row after row. Which version of the simulator are you using i have also had different results depneding on the version of blackberry handheld software.

  • How to render properly to Blackberry 8800

    I've completed the ADF Mobile tutorial which works fine on the Blackberry emulator/simulator. Table rows appear in a table object and look great visually. However, when I run it from the actual Blackberry 8800 the rows appear unformatted without the table object. How do I properly render the output to the 8800 to visually appear like it does in the emulator?
    thanks
    John

    Hi, John, did you use the 8800 simulator when you developed the application as well? Different BlackBerry devices behaves a little bit differently - we would render plain HTML content to BlackBerry 4.5 and below devices because its JS engine is poor. 8800 is one such device. If you are using a simulator running 4.6 and above, then it would look different from how it would appear on the 8800 device.
    Also, on 8800, you would need to ensure a few options are checked - for example one option was to "support hTML tables". You would need to check this option, or the table may not display correctly.
    If you have additional issues, please just email me directly and I can help at [email protected]
    Thanks,
    Joe Huang

  • Simulation in Bapi/FM for sales order is locking tables

    Hi
    We want to use bapi BAPI_SALESORDER_CHANGE or FM SD_SALESDOCUMENT_CHANGE to simulate the effect on prices of a sales order. We must do this during the printing of the sales order. This bapi/FM is locking the sales order tables during the simulation mode. As we are printing from the sales order, the sales order is already locked so we get the error: V1 042 Sales document xxx is currently being processed. Does anyone have a solution to avoid this lock or an alternative to simulate the price from a sales order?
    We need to use the simulation of the sales order to capture all manual changes in the sales order pricing.
    Kind Regards

    Hi,
    FM BAPI_SALESORDER_SIMULATE gives the same pricing data as  BAPI_SALESORDER_CHANGE. you do not need to change an existing document to get the pricing data. Just simulate the creation of a new order.. th prices should be the same as long as you send the same data.
    Dev.

  • Webdynpro java table didn't working correct on Blackberry mobile simulator

    Hello,
    I am using BlackBerry Simulator 9630 the application developed using webdynpro java AS 7.00 sp 17
    In the table I am using check box to select rows.
    but when the application rendered the table , using button to select / de-select rows, I can't see the result on the context node
    (It is mark as selected on the simulator).
    I also can't get the lead selection when using link to action event from the table.
    I am using full domain name and also sap-wd-client = WmlClient.
    Thanks in advance for the help.
    Nir

    Hi Nir,
    This parameter (WmlClient) generates an output wml. Default this output is no longer used or recommended. Opt for the Blackberry OS 5.x and do not use render parameters, or try with the parameter Pie03Client.
    regards,
    Angelo

Maybe you are looking for