Urgent!! in retreiving value..

Hi to all,
i created a page to c the details of 'n' companies(programatically). Previously i did 3 companies details and created (using property window) 3 diffent vo's, that time no probs to displat the details. Now I did the same for 'n' companies using programatically and create one vo for all.
when page is rendering everytime it shows the last company details to all.
for example no of company 2 means it execute the last(2nd) company details and display 2nd company name to all.
for that what i have to do? seriously i am strucking this issue last 2 weeks.Itz very urgent.
plz guide me.
Thanks in advance.
by
Senthur

Hi,
The layouts which displays one record at a time there it will show last record only.
Regards,
Reetesh Sharma

Similar Messages

  • How to connect database(oracle 10g) and retreive values using poral 10

    can anyone help me how to connect to database and retreive values in detail and also please post the sample code if u have any.

    Hello
    Thanks for your reply
    I tried to connect and here is the result: see below
    [oracle@ebstailin 11.1.0]$ sqlplus / as sysdba
    SQL*Plus: Release 11.1.0.7.0 - Production on Sat Jul 17 15:35:31 2010
    Copyright (c) 1982, 2008, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> CONNECT apps/apps
    Connected.
    SQL>
    But still cannot connect using ORACLE SQL Developer
    thanks

  • Retreiving values for repeated tags

    Hi,
    I am a newbie to Oracle XML Data type.
    I am currently stuck up in what i beleive should be a simiple problem.
    I have an XML stored in the Oracle DB as XML Data type. This XML contains a tag which is repeated 'n' types in the XML. I want to retreive these values as separate elements ....
    For example consider the XML
    <file-list>
    <file>FILE-1</file>
    <file>FILE-2</file>
    </file>
    I want the output of the query as two elements in my result set.
    A query like "SELECT f.ICN.extract('/file-list/file/text()').getStringVal() FROM FILE_LIST_TBL f" returns output as "FILE-1FILE-2" I want the output to be as two rows in the result FILE-1 and FILE-2.
    The reason i want to have it as two rows is because i would have to a join with another relation table.
    I am currently stuck up with this issue; Kindly guide me ....
    Thanks & Regards,
    Sriram

    Be aware that the following are examples, that I fabricated out off my head, without testing them on a database.
    So the syntax could be slightly wrong. Keep Marks advice at hart.
    So -->TABLE(XMLSequence(extract())) should be applied < 10.2 >= XMLTable, for versions equal or higher than.
    Be also aware tha XMLTABLE is much more flexible (and/or its complexity) regarding the syntax used here. See the XMLDB Developers Guides and/or the SQL Reference Guide.
    <file-list>
       <file>FILE-1</file>
       <file>FILE-2</file>
    </file-list>
    select *
    from  FILE_LIST_TBL f
    , TABLE(XMLSequence(extract(f.ICN,'/file-list/file/text()')));
    SELECT *
    FROM   FILE_LIST_TBL f
    ,      XMLTABLE('/file-list/file/text()'
                      passing f.ICN
    BTW. the given xml data isn't wellformed...
    Edited by: Marco Gralike on Feb 26, 2009 9:41 PM

  • Very urgent please ----repetting values in the output

    I am getting values for acc seq   access seq number and codndition table  repeting values as in the output of the report, please have a look in my code and please do respond immediatley.
    regards always, below is my code and output
    REPORT zmaster_condition LINE-COUNT 80 LINE-SIZE  225.
         D A T A                                                         *
    INCLUDE zmaster_condition_top.
        S E L E C T I O N S                                              *
    SELECTION-SCREEN BEGIN OF BLOCK b01 WITH FRAME TITLE text-b01.
    SELECT-OPTIONS: s_kvewe FOR  t683s-kvewe,
                    s_kappl  FOR  t683s-kappl,
                    s_kalsm  FOR  t683s-kalsm,
                    s_kschl  FOR   t683s-kschl,
                    s_kabnr  FOR  t682i-kotabnr,
                    s_kozgf  FOR  t682i-kozgf.
    SELECTION-SCREEN END OF BLOCK b01.
    *SELECTION-SCREEN BEGIN OF BLOCK b4 WITH FRAME TITLE text-s04.
    *PARAMETERS:      p_vari     LIKE   disvariant-variant.
    *SELECTION-SCREEN END OF BLOCK b4.
    **SELECTION-SCREEN BEGIN OF BLOCK b02 WITH FRAME TITLE text-b02.
    *SELECTION-SCREEN BEGIN OF BLOCK b02 WITH FRAME TITLE text-b02.
    PARAMETERS R1 RADIOBUTTON GROUP RADI1 DEFAULT 'X'.
    *SELECTION-SCREEN END OF BLOCK b02.
         A T   S E L E C T I O N - S C R E E N                           *
         M A I N   P R O G R A M                                         *
    START-OF-SELECTION.
    *Initializing the local tables.
      CLEAR:it_t682i,it_t683s,it_t685.
      REFRESH:it_t682i,it_t683s,it_t685.
      clear it_output_report.
      refresh it_output_report.
    *Selection of data from pricing procedure tables
    SELECT kvewe kappl kozgf kolnr kotabnr FROM t682i
                INTO TABLE  it_t682i
                WHERE kvewe = 'B'
                AND  kappl = 'V1'.
      SELECT kvewe kappl kalsm stunr zaehk kschl  FROM t683s
           INTO   TABLE  it_t683s
           WHERE  kvewe = 'B'
           AND    kappl = 'V1'
           and    kschl in s_kschl
           AND    kalsm  IN s_kalsm.
    sort it_t683s by kvewe kappl.
      DELETE   adjacent duplicates  FROM
             it_t683s  .
    SELECT kvewe kappl kschl kozgf FROM t685
        INTO TABLE it_t685
        WHERE kvewe = 'B'
        AND kappl = 'V1'
        AND  kschl IN s_kschl
        AND kozgf IN s_kozgf.
      LOOP AT it_t683s.
        it_output_report-kvewe = it_t683s-kvewe.
        it_output_report-kappl =  it_t683s-kappl.
        it_output_report-kalsm =  it_t683s-kalsm.
        it_output_report-stunr =  it_t683s-stunr.
        it_output_report-zaehk =  it_t683s-zaehk.
        it_output_report-kschl =  it_t683s-kschl.
      SELECT kvewe kappl kozgf kolnr kotabnr FROM t682i
                 INTO TABLE  it_t682i
                 WHERE kvewe = it_t683s-kvewe
                 AND  kappl = it_t683s-kappl
                 and  kozgf   in s_kozgf
                 and  kotabnr in s_kabnr.
                 clear it_t682i.
    loop at it_t682i.
    it_output_report-kozgf = it_t682i-kozgf.
    it_output_report-kozgf = it_t682i-kozgf.
      it_output_report-kolnr = it_t682i-kolnr.
      it_output_report-kotabnr = it_t682i-kotabnr.
       APPEND it_output_report.
       CLEAR it_output_report.
    endloop.
    APPEND it_output_report.
      ENDLOOP.
            E N D - O F - S E L E C T I O N
    END-OF-SELECTION.
    *Output to a list
      FORMAT COLOR 2 .
      WRITE:/2 'Usage',09 'App',17 'Proced',24 'Step',
                37 'Counter',50 'CondType',63 'Description',85 'AccSeq',
               97 'AccSeqNum',108 'ConTable'.
      WRITE:/1(225) sy-uline.
      LOOP AT it_output_report.
        WRITE:/ it_output_report-kvewe UNDER 'Usage',
                it_output_report-kappl UNDER 'App',
                it_output_report-kalsm UNDER 'Procedure',
                it_output_report-stunr UNDER  'Step',
                it_output_report-zaehk UNDER  'Counter',
                it_output_report-kschl UNDER 'CondType',
               it_output_report- UNDER  'Description',
                it_output_report-kozgf UNDER 'AccSeq',
                it_output_report-kolnr UNDER 'AccSeqNum',
                it_output_report-kotabnr UNDER  'ConTable'.
                it_output_report- UNDER  'SalesOrg',
                it_output_report- UNDER  'DocType'.
                it_output_report- UNDER  'Customer'.
      ENDLOOP.
    output of the report:
    Usage  App     Proced   Step   Counter CondType   AccSeq AccqNum  ConTable                                                                               
    B      V1        V10000      220   00           ZCR1        Z200         05           511     
    B      V1 V10000      220          01           ZRAS        Z200        05         511     
    B      V1 V10000      225          00           ZTPT         Z200        05         511     
    B      V1 V10000      230          00           ZOP4         Z200        05         511     
    B      V1 V10001      010          01           RD03         Z200        05         511     
    B      V1 V10002      010          00           ZREP         Z200        05         511     
    B      V1 V10000      200          00           ZOP3          z200        05         511     
    B      V1 V10000      130          00           ZOC3           z200        05         511

    i would like to thanks you for your valuable help.
    i am still getting repeated values for access seq , access number and cond table,last three columns in the output, pls see as it it is very urgent...
    here is the code:
    REPORT zmaster_condition LINE-COUNT 80 LINE-SIZE  225.
         D A T A                                                         *
    INCLUDE zmaster_condition_top.
        S E L E C T I O N S                                              *
    SELECTION-SCREEN BEGIN OF BLOCK b01 WITH FRAME TITLE text-b01.
    SELECT-OPTIONS: s_kvewe FOR  t683s-kvewe,
                    s_kappl  FOR  t683s-kappl,
                    s_kalsm  FOR  t683s-kalsm,
                    s_kschl  FOR   t683s-kschl,
                    s_kabnr  FOR  t682i-kotabnr.
                   s_kozgf  FOR  t682i-kozgf.
    SELECTION-SCREEN END OF BLOCK b01.
    *SELECTION-SCREEN BEGIN OF BLOCK b4 WITH FRAME TITLE text-s04.
    *PARAMETERS:      p_vari     LIKE   disvariant-variant.
    *SELECTION-SCREEN END OF BLOCK b4.
    **SELECTION-SCREEN BEGIN OF BLOCK b02 WITH FRAME TITLE text-b02.
    *SELECTION-SCREEN BEGIN OF BLOCK b02 WITH FRAME TITLE text-b02.
    PARAMETERS R1 RADIOBUTTON GROUP RADI1 DEFAULT 'X'.
    *SELECTION-SCREEN END OF BLOCK b02.
         A T   S E L E C T I O N - S C R E E N                           *
         M A I N   P R O G R A M                                         *
    START-OF-SELECTION.
    *Initializing the local tables.
      CLEAR:it_t682i,it_t683s,it_t685.
      REFRESH:it_t682i,it_t683s,it_t685.
      REFRESH it_output_report.
      SELECT kvewe kappl kalsm stunr zaehk kschl  FROM t683s
           INTO   TABLE  it_t683s
           WHERE  kvewe IN s_kvewe
           AND    kappl IN s_kappl
           AND    kalsm  IN s_kalsm
            AND    kschl IN s_kschl.
    *delete adjacent duplicates from it_t683s comparing
                                    kvewe kappl kschl.
    SELECT kvewe kappl kozgf kolnr kotabnr FROM t682i
                     INTO TABLE  it_t682i
                    FOR ALL ENTRIES IN it_t683s
                     WHERE kvewe = it_t683s-kvewe
                     AND  kappl = it_t683s-kappl
                    AND  kozgf   IN s_kozgf
                     AND  kotabnr IN s_kabnr.
      LOOP AT it_t683s.
       it_output_report-kvewe = it_t683s-kvewe.
       it_output_report-kappl =  it_t683s-kappl.
       it_output_report-kalsm =  it_t683s-kalsm.
       it_output_report-stunr =  it_t683s-stunr.
       it_output_report-zaehk =  it_t683s-zaehk.
       it_output_report-kschl =  it_t683s-kschl.
      move-corresponding it_t683s to it_output_report.
    sort it_t683s.
    sort it_t682i.
    READ TABLE it_T682i with KEY KVEWE = it_T683s-KVEWE
                                kappl = it_t683s-kappl.
    LOOP AT it_T682i  WHERE KVEWE = it_T683s-KVEWE
                           AND  kappl = it_t683s-kappl.
                          AND  kotabnr IN s_kabnr.
    IF SY-SUBRC EQ 0.
       move-corresponding it_T682i to it_output_report.
         it_output_report-kozgf = it_t682i-kozgf.
         it_output_report-kolnr = it_t682i-kolnr.
         it_output_report-kotabnr = it_t682i-kotabnr.
    ENDIF.
    APPEND it_output_report.
      ENDLOOP.
    *DATA TAB(4).
    *DATA VKORG LIKE  TAB-VKORG.
    *CONCATENATE it_t683s-kvewe it_t682i-kotabnr INTO TAB .
    *SELECT SINGLE VKORG INTO VKORG FROM  TAB WHERE
    KSCHL = 'ZRC1'.
            E N D - O F - S E L E C T I O N
    END-OF-SELECTION.
    *Output to a list
      FORMAT COLOR 2 .
      WRITE:/2 'Usage',09 'App',15 'Proced',24 'Step',
                37 'Counter',50 'CondType',63 'Description',85 'AccSeq',
               97 'AccSeqNum',108 'ConTable'.
      WRITE:/1(225) sy-uline.
      LOOP AT it_output_report.
        WRITE:/ it_output_report-kvewe UNDER 'Usage',
                it_output_report-kappl UNDER 'App',
                it_output_report-kalsm UNDER 'Proced',
                it_output_report-stunr UNDER  'Step',
                it_output_report-zaehk UNDER  'Counter',
                it_output_report-kschl UNDER 'CondType',
               it_output_report- UNDER  'Description',
                it_output_report-kozgf UNDER 'AccSeq',
                it_output_report-kolnr UNDER 'AccSeqNum',
                it_output_report-kotabnr UNDER  'ConTable'.
                it_output_report- UNDER  'SalesOrg',
                it_output_report- UNDER  'DocType'.
                it_output_report- UNDER  'Customer'.
    here is the output:
    Report to list out all Condition Records for Output and Pricing.                                                                               
    Usage  App   Proced   Step  Counter CondType  AccSeq  AccSeqNum  ConTable
                                                                                    B      V1     V05000   010        01      AF00             Z001        05         551    
    B      V1    V05000   020          02      MAIL           Z001        05         551    
    B      V1    V05000   030          01      ESYM         Z001        05         551    
    B      V1    V06000   010          01      AN00          Z001        05         551    
    B      V1    V06000   020          02       MAIL          Z001        05         551

  • LOOKUP and retreiving values

    I need to retreive some data from an other application with a logic.
    Pour une logique je vais avoir besoin de rechercher des données dans
    une autre application. J'air echerché des trucs sur SDN et sur la Doc
    mais les exemples ne sont pas tres clairs. Voila mon problème :
    Here is the example :
    The logic is called in the application COGS
    The data to retreive are in application SALES
    SALES has one dimension more than COGS : it's CHANNEL. I need to retreive data only from CHANNEL="D12V_COMMON".
    I need to retrive data only from the dimension Time = 2020.JAN
    Here is my Code
    *LOOKUP SALES
    *DIM CHANNEL="D12V_COMMON"
    *ENDLOOKUP
    *WHEN LOOKUP(SALES)
    *IS <> 0
    *WHEN TIME
    *IS 2020.JAN
    *REC()
    *ENDWHEN
    *ENDWHEN
    *COMMIT
    The logic doesn't trough any error but it doesn't retrieve any data either.
    Can you the errors ?
    Do you have some full example of logic that retreive data from one application ?
    Do you have some link for documentation? I found only example of Rate but i can fit them to my issue.
    Best regards
    Damien

    The log file; does it indicate that you have values from your LOOKUP process?  You might try to add more parameters to the the LOOKUP, that you have in the scope of the send process. The trick is to make sure that the matches occur at the Account as well.  So if there is a specific account to lookup, you need that as well in the logic, or lookup or both. 
    Once you can see that it has data in a set, then the Script must be able to match a scope from the send to the lookup set.  If the lookup app has 1 more dimension than the script app, then you may need another lookup variable to create a match.

  • Unable to retreive values from selection screen built using WDR_SELEC_OPTIO

    Hi All,
    I have created a selection screen as below
    lr_field = wd_this->m_handler->create_range_table( 'YFMTFLOW' ).
    *  ASSIGN lr_field->* TO <fs_range>.
    *  ls_date-sign   = 'I'.
    *  ls_date-option = 'EQ'.
    *  ls_date-low    = 'US'.
    *  APPEND ls_date TO <fs_range>.
    * Add the select-option to the group
      wd_this->m_handler->add_selection_field(
        i_id           = 'FLOW'
        i_within_block = 'PROC'
        i_no_intervals = abap_true
        it_result      = lr_field ).
    If i enter some value  and click a button to retireve the values as below
    DATA
        lt_sel_item TYPE if_wd_select_options=>tt_selection_screen_item.
    types: ty_flow type range of yfmtflow.
      FIELD-SYMBOLS:
        <fs_sel_item> LIKE LINE OF lt_sel_item,
        <fs_process>   TYPE yfmtprocess,
        <fs_flow>   TYPE ty_flow.
    * Get the selection-screen items
      l_handler->get_selection_screen_items(
        IMPORTING et_selection_screen_items = lt_sel_item ).
    * Retrieve the values from the select-options items
      LOOP AT lt_sel_item ASSIGNING <fs_sel_item>.
        CASE <fs_sel_item>-m_id.
          WHEN `PROCESS`.
            ASSIGN <fs_sel_item>-m_value->* TO <fs_process>.
          WHEN 'FLOW'.
            ASSIGN <fs_sel_item>-mt_range_table->* TO <fs_flow>.
        ENDCASE.
      ENDLOOP.
    <fs_flow> is empty
    but after I enter value and then press enter and then click the button to retrieve the values I am able to get low value <fs_flow> not the sign and option
    Is it the standard functionality ,if yes how can we overcome
    Thanks
    Bala Duvvuri

    Am giving clear coding of select options.
    nOTE: S_CARR_ID IS THE DATA ELEMENT OF CARR ID  FIELD,
    FOR THAT I AM APPLYING SELECT OPTIONS IN BELOW CODING.
    WRITE THE BELOW CODE IN WDDOINT( ) METHOD OF
    REQUIRED VIEW
    Data: lt_range_table type ref to data,
         read_only type abap_bool.
    WD_THIS->M_WD_SELECT_OPTIONS = WD_THIS-
    >WD_CPIFC_SELECT_OPTIONS( ).
    WD_THIS->M_HANDLER = WD_THIS->M_WD_SELECT_OPTIONS-
    >INIT_SELECT_SCREEN( ).
    WD_THIS->M_HANDLER->SET_GLOBAL_OPTIONS(
         I_DISPLAY_BTN_CANCEL = ABAP_FALSE
         I_DISPLAY_BTN_CHECK = ABAP_FALSE
         I_DISPLAY_BTN_RESET = ABAP_FALSE
         I_DISPLAY_BTN_EXECUTE = ABAP_FALSE ).
    LT_RANGE_TABLE = WD_THIS->M_HANDLER-
    >CREATE_RANGE_TABLE( I_TYPENAME = 'S_CARR_ID' ).
    WD_THIS->M_HANDLER->ADD_SELECTION_FIELD(
              I_ID = 'S_CARR_ID'
              IT_RESULT = LT_RANGE_TABLE
              I_READ_ONLY = READ_ONLY ).
    BELOW CODE IN REQUIRED ACTION( SAY IN SOME BUTTON
    ACTION WHICH WILL RETRIEVE THE DATA FROM DATABASE TABLE
    USING SELECTI OPTIONS VALUES)
    fIRST THE GET REFERENCE TO NODE( CTRL F7--->READ
    CONTEXTB---FLIGHT NODE )
    ***THEN BELOW CODE
    DATA: RT_CARRID TYPE REF TO DATA.
    DATA:IS_FLIGHT TYPE TABLE OF SFLIGHT.
    FIELD_SYMBOLS: <FS_CARRID> TYPE TABLE.
    RT_CARRID = WD_THIS-> M_HANDLER-
    >GET_RANGE_TABLE_OF_SEL_FIELD( I_ID = 'S_CARR_ID' ).
    ASSIGN RT_CARRID-> TO <FS_CARRID>.*
    SELECT * INTO CORRRESPONDING FIELDS OF TABLE IS_FLIGHT
       FROM SFLIGHT WHERE CARRID IN <FS_CARRID>
    NODE_FLIGHT->BIND_TABLE( IS_FLIGHT ).

  • Urgent :CHECK BLANK VALUES

    Hi
    I am fetching some data into a date IO but the problem is that some records contain a blank value for that fild.
    So i am using a routine to assign some value to that field based on some logic.
    i have used
    if DATEIO is intial...
    then codn..
    but the code doesnt seems to work.
    Is this the right way to check. or shud i use if DATEIO = '00000000'.

    Hi,
    What you put is correct, but let me review your code:
    Assumptions: You are using the code in update/field routine.
    if comm_structure-date is initial.
    logic......
    endif.
    Cheers,
    Rewards accepted

  • Very urgent excise base value isnt captured to are1 and are3

    dear sir,
    in are1 and are3 documents base exicise value is nt being captured and higher edusess 1% too but BED and educess is captured ?can anybody help me ?is ita notes problem?

    hi,
    for the hiegher education cess not appearing i req u to chek ur pricing procedure if its there in the pricing proceudre and also to check the budget-07 settings also chek if u have checked mark AT1 in excise reg settings. follow--img-log gen-tax on goods mvmnt -india-baisc settings--maintain reg.
    for teh secong search on service .sap.com. if you do not find nething tht meets ur need. write to SAP it may be cos of a program error.
    saurabh

  • How to retreive value from my table..

    hi,
    I have developed a GUI which consists of table..of three columns and 16 rows..
    the table consists of propety and value and operator column..property column when user clicks on that cell it shows a combobox of 16 values like empno and empname and emporg,date etc..if user selects any of these value then in operator column it shows corresponding values ..like if selects empno it shows acombo box of less than,greater than,equals..if selects empname then equal,like ,not like with a combo box for selection..like that there r upto 16 rows//user can select any no of rows..after selection if he clicks on find then the selected values should be submitted to a query and passed to maethod..
    my doubt is how to retrieve the values and generate query..bcos iam not sure how many rows he is going to select..and in operator column it is string form and i have convert it to >=,< etc form..and submitt to query..
    can any body give me some tips for this with sample code..
    regards,
    sam

    Put your logo in a subreport, then you can suppress if no data etc.
    CR is a Relational Database reporting tool, it requires the tables to be linked otherwise there are 2 SELECT statements generated and unknown results...
    Don

  • Very Urgent - Converting Character value to Hexa Decimal value

    Hi
    data: lv_stsor_hex(16) type X.
    p_is_ppc_comp_conf-stsor is a char 10 field ***
    <b>write p_is_ppc_comp_conf-stsor to lv_stsor_hex.</b> "<-- Hex Conversion
    In 4.6C version this write statement is working fine but this is obsolete in ECC 6.0
    and its showing syntax error.
    Can anyone tell me how to convert a 10 char length value to a hexa decimal value
    which is of 16 characters length and of type hexadecimal
    Thanks a lot. Points will be rewarded immediately.

    Hi,
    Use the Function module CHAR_HEX_CONVERSION.
    report zeta_hex.
    data: s type string.
    data: h(1) type x.
    data: c(1) type c.
    data: byte(2) type c.
    data: length type i.
      FIELD-SYMBOLS: <DUMMY>.
    s = 'ThisIsAString'.
    length = strlen( s ).
    do length times.
      byte = ( sy-index - 1 ).
      c = s+byte(1).
    * You can do this
      ASSIGN h TO <DUMMY> TYPE 'X'.
      WRITE c TO <DUMMY>.
    * or you can do this
    *  call function 'CHAR_HEX_CONVERSION'
    *       exporting
    *            input     = c
    *       importing
    *            hexstring = h.
      write:/ h.
    enddo.
    Regards
    Sudheer

  • URGENT: Share PageParameter value between multiple pages

    Hi All
    I have a set of pages where each page have a page parameter (lets call it ParamX). This parameter is used by portlets on the pages to display content from database.
    The problem is that, I need to share the same value of this parameter in all pages of the portlet. In other words, when ParamX is updated from value V1 to V2 in PageA, PageA is refreshed to show new data corresponding to new Value V2. But when user goes to another page PageB, the value is still V1. I want this value to be updated as it was in the page from where user navigated to new page.
    In short, the value ParamX pageparamter should be shared by all pages.
    Thanks in advance

    hi,
    as far as i know there are no global parameters that we support in the portal UI.
    could you please post this question in Portal Development Forum, the people there are more development oriented and might have a solution for you:
    http://forums.oracle.com/forums/forum.jspa?forumID=4
    regards,
    christian

  • Urgent:capture group values in variables

    Hi,
    I am new to BI publisher, need some help to solve my issue.
    i need to grab group value in variables.
    i have a code like this
    <?for-each-group:contact;./contactname?>
    for example that above code will give 5 contact names. i have to capture 1st contact in one variable. Second contaname in second variable.. etc.
    Thanks,
    lax

    Not concatenation,
    i have for each group statement with contact name
    it is displaying data like this
    Name1
    Name2
    Name3
    now i want to get that values in my each variable. for example variable1 should have Name1 value. variable2 have Name2 value. Variable3 have Name3.
    so that in some other pages i have to query some records based on above variable values.
    Thanks,
    lax
    Edited by: user7498756 on Aug 23, 2012 12:23 PM

  • Retreiving value back from formhandler to jhtml form

    I want to ask that what to use to get value from formhandler back to jhtml page and to find whether it contain null or not,and on the basis of which print some value....which is inunicode....
    What to use if we have to get values from a form which is in chinese and to process this values.....
    Thanks in advance....

    Below I have tried to give you solution that you want. It would be helpful if you explain your exact requirement?
    [1] define your attibute formhandler
    //your XXXFormHandler.java
    package a.b.c;
    public class XXXFormHandler extends GenericFormHandler{
         String name;
         String successURL;
         String errorURL;
         //anyogher property(ies)
         //getters and setters
         //handler method
         public boolean handleDoIt(DynamoHttpServletRequest pRequest, DynamoHttpServletResponse pResponse)throws ServletException, IOException{
              preDoIt(pRequest,pResponse);
              //your operation goes here
              postDoIt(pRequest,pResponse);
              return return checkFormRedirect(getSuccessURL(), getErrorURL(), pRequest, pResponse);
         void preDoIt(DynamoHttpServletRequest pRequest, DynamoHttpServletResponse pResponse)throws ServletException, IOException{
              if(getName()==null||getName().IsEmpty()){
                   addFormException(new DropletException("name should not be null"));
              //other varification goes here
         void postDoIt(DynamoHttpServletRequest pRequest, DynamoHttpServletResponse pResponse)throws ServletException, IOException{
                   //code you want to do after handle method operation goes here
         //other code .............     
    [2] make component config/a/b/c/XXXFormHandler.properties:
    $class=a.b.c.XXXFormHandler
    $scope=request
    [3]use dsp:form in page1.jsp
    page1.jsp:
    <dsp:form action="" method="post">
         //print error message
         <dsp:droplet name="Switch">
              <dsp:param name="value" bean="XXXFormHandler.formError"/>
              <dsp:oparam name="true">
                   <dsp:droplet name="ProfileErrorMessageForEach">
                        <dsp:param name="array" bean="XXXFormHandler.formExceptions"/>
                        <dsp:oparam name="outputStart">
                             <ul>
                        </dsp:oparam>
                        <dsp:oparam name="output">
                             <tr><td><li><font color="red"><dsp:valueof param="message"/></font></li></td></tr>
                        </dsp:oparam>
                        <dsp:oparam name="outputEnd">
                             </ul>
                        </dsp:oparam>
                   </dsp:droplet>
              </dsp:oparam>
         </dsp:droplet>
         <dsp:input type="text" bean="XXXFormHandler.name">
         //set error/success urls
         <dsp:input type="hidden" bean="XXXFormHandler.successURL" value="page1.jsp"/>
         <dsp:input type="hidden" bean="XXXFormHandler.errorURL" value="page2.jsp"/>
         <dsp:input type="submit" bean="XXXFormHandler.doIt" value="Send"/>
    </dsp:form>-RMishra
    Edited by: RMishra on Apr 8, 2013 6:46 PM

  • Retreiving value of paramter passed

    Hi,
    We have a scenario where by using java SDK we are scheduling a crystal report. On successful completion of the report we want to notify the java code that the report is been run successfully - this is to be done by passing the parameter value back to the java code.
    java passes a value to a parameter in CR - runid
    on completion we want to pass back this runid to a web service call.
    Question:
    how do we extract what parameter value was passed to the report.
    Any hint/ help
    Thanks in advance

    Hi Priya,
    just use htmlb input field and set visible to false.
    Hope it helps
    Detlev

  • URGENT!!VALUES DISPLAY IN CHART BARS & COLOR THEMES !!

    hi
    I want the chart to be displayed with the their values but u can see the values only by rolling over each bars.
    Could anyone help me out what are the solutions to be carried out???Is there any options in the EP itself to enter the values displayed automatically when execting it????
    what about the color themes to be changed for each bars as per user requirement in EP???
    THNX
    RAJ.

    hi Raj,
    Few options:
    1. if you are using query designer to create query and displaying it in the web analyser and choose graph there, you cant really change the colors of the graphs.
    In that case you have to create the web template in the WAD for the same query in BI and make color selections in the graph control in WAD.
    2.If you dont want to use WAD, you can use visual composer and try out various options of its chart control. you also have animations possible in visual composer. VC is totally in EP and you dont have to do much on BI except for the query creation.
    hope it helps..

Maybe you are looking for