Linking multiple fields to one concatenated field.

Post Author: DaveChel
CA Forum: Data Connectivity and SQL
I'm dealing with two tables that aren't directly related in my database. My Sales Order Release table and my Shipping Items table. There is a foreign key in the Shipping Items Table for the Sales Order Release. However that key is: sorels.fsonosorels.finumbersorels.frelease So, it's a concantenated field. How do I link this key called FSOKEY in my Shipping Items table to those fields in my Sales Order Release table(sorels)? Is this a situation where I'd have to build the SQL Query myself and put it in as an "Add Command"?

Post Author: n8than1
CA Forum: Data Connectivity and SQL
Dave, Build the SQL Query in Query analyzer and using the "Add Command" to paste in the code.  I've done some thing like this with the ARITEM, ARMAST, and SORELS tables to create an invoiced Sales report. So far ARTIEM is the hardest table i've worked with because of the way the data is in the fields for FSOKEY and FSHIPKEY , etc.....

Similar Messages

  • HT204053 Link multiple devices to one account

    How do I link multiple devices to one master account for purchases with multiple usernames

    Hello,
    This is a great tutorial using a couple of free DW
    extensions.
    Check out the "Finished Gallery" example.
    You can easily change the settings so the images all appear
    in the same
    place.
    http://www.projectseven.com/tutorials/images/showpic/index.htm
    Take care,
    Tim
    "serestibi" <[email protected]> wrote in
    message
    news:fpiloc$ruf$[email protected]..
    > Hi, beginner here, can you tell?
    > I am trying to link multiple images (thumbnails) to one
    big picture frame.
    > So if you click the thumbnails, each will blow up in the
    same frame.
    > The easy solution would be to link them to a table, but
    it doesn`t seem
    > linkable.
    > I tried different slide viewers but I can`t personalize
    them enough.
    > Can I do something within dreamweaver to get this
    affect?
    > Please sombody help me!
    > Thanks , Tibor
    >

  • Combine two date field into one timestamp field

    Hello all,
    I need help combining two date fields into one timestamp field.
    I have separate Date and Milliseconds fields and want to
    combine to one Timestamp field can some suggest sql???

    This is my data
    01 JAN 1989 12:01:00.001 AM
    this is my insert drag_time is a timestamp field in another schema
    INSERT
    INTO DRAG (drag_time)
    SELECT to_char(drag_time, 'DD MON YYYY HH12:MI:SS')||(drag_second)||to_char(drag_time, ' AM')
    FROM sa.drag;
    This is the error
    ERROR at line 3:
    ORA-01855: AM/A.M. or PM/P.M. required

  • Using Javascript to create concatenated string from checkbox fields to one text field

    Hi. I have a PDF form that I am trying to have output to a spreadsheet that matches my database schema. Here is the dilemna:
    * I have a set of checkboxes for available languages (LANGUAGE_ENGLISH, LANGUAGE_SPANISH, etc.) When they export to spreadsheet, the value is TRUE.
    * I need to take values from checked boxes and create a single string in a text field called LANGUAGE_DISPLAY (so my UI will not need to do the concatenation). If LANGUAGE_ENGLISH is TRUE (checked), append "English, " to LANGUAGE_DISPLAY, else append "". Then, if LANGUAGE_SPANISH is TRUE (checked), append "Spanish, " to LANGUAGE_DISPLAY, else append "". And on and on
    In the LANGUAGE_DISPLAY text field properties, I am inserting a Custom Calculation script to try to achieve this, but am not getting any results. I tried teh following even trying to pull the checkboxes default values and string them together:
    box1 = this.getField("LANGUAGE_ENGLISH").value.toSrting();
    box2 = this.getField("LANGUAGE_FARSI").value.toSrting();
    box3 = this.getField("LANGUAGE_MANDARIN").value.toSrting();
    event.value = box1 + ', ' + box2 + ', ' + box3;
    I also played with this to get the desired strings output...but to no avail:
    if ( LANGUAGE_ENGLISH.rawValue == true )
    box1.rawValue = "English, ";
    if ( LANGUAGE_FARSI.rawValue == true )
    box1.rawValue = "Farsi, ";
    if ( LANGUAGE_HEBREW.rawValue == true )
    box1.rawValue = "Hebrew, ";
    event.value = box1 + box2 + box3;
    Then I tried to simplify to see one field output so used this script...still no results:
    event.value = "";
    var f = this.getField("LANGUAGE_ENGLISH");
    if ( f.isBoxChecked() == true) {
    event.value = "English";
    Couple questions:
    1) Am I on the right track with any of these scripts?
    2) Is there something else I need to do to get the script to run before running the Create Spreadsheet with Data Files comman in Acrobat to get my csv file output? Maybe there needs to be some event to get the checkbox values read by that field in order to calculate/create the string.
    Appreciate any help you can provide.

    LiveCycle Designer has shipped with all Acrobat Professional versions since the "Professional" version was introduced with version 6.
    You do not let us know want results you get in the field or the JavaScript console.
    Using:
    box1 = this.getField("LANGUAGE_ENGLISH").value.toString();
    box2 = this.getField("LANGUAGE_FARSI").value.toString();
    box3 = this.getField("LANGUAGE_MANDARIN").value.toString();
    event.value = box1 + ', ' + box2 + ', ' + box3;
    returns "Off, Off, Off", when no box is checked and returns "Yes" for the appropriate box being checked when the default value is used for the creation of the check box. So if one would make the 'Export Value' of the box from the default value of 'Yes" to the appropriate language, one would get a more desirable result. But for each unchecked box the value would appear as "Off". So one needs to change the 'Off' value to a null string. But one is still left with the separator when there is an unchecked option.
    Using the following document level function:
    // Concatenate 3 strings with separators where needed
    function fillin(s1, s2, s3, sep) {
    Purpose: concatenate up to 3 strings with an optional separator
    inputs:
    s1: required input string text or empty string
    s2: required input string text or empty string
    s3: required input string text or empty string
    sep: optional separator sting
    returns:
    sResult concatenated string
    // variable to determine how to concatenate the strings
    var test = 0; // all strings null
    var sResult; // re slut string to return
    // force any number string to a character string for input variables
    s1 = s1.toString();
    s2 = s2.toString();
    s3 = s3.toString();
    if(sep.toString() == undefined) sep = ''; // if sep is undefined force to null
    assign a binary value for each string present
    so the computed value of the strings will indicate which strings are present
    when converted to a binary value
    if (s1 != "") test += 1; // string 1 present add binary value: 001
    if (s2 != "") test += 2; // string 2 present add binary value: 010
    if (s3 != "") test += 4; // string 3 present add binary value: 100
    /* return appropriate string combination based on
    calculated test value as a binary value
    switch (test.toString(2)) {
    case "0": // no non-empty strings passed - binary 0
    sResult = "";
    break;
    case "1": // only string 1 present - binary 1
    sResult = s1;
    break;
    case "10": // only string 2 present - binary 10
    sResult = s2;
    break;
    case "11": // string 1 and 2 present - binary 10 + 1
    sResult = s1 + sep + s2;
    break;
    case "100": // only string 3 present - binary 100
    sResult = s3;
    break;
    case "101": // string 1 and 3 - binary 100 + 001
    sResult = s1 + sep + s3;
    break;
    case "110": // string 2 and 3 - binary 100 + 010
    sResult = s2 + sep + s3;
    break;
    case "111": // all 3 strings - binary 100 + 010 + 001
    sResult = s1 + sep + s2 + sep + s3;
    break;
    default: // any missed combinations
    sResult = "";
    break;
    return sResult;
    And the following cleaned up custom calculation script:
    box1 = this.getField("LANGUAGE_ENGLISH").value;
    box2 = this.getField("LANGUAGE_FARSI").value;
    box3 = this.getField("LANGUAGE_MANDARIN").value;
    if (box1 == 'Off') box1 = '';
    if (box2 == 'Off') box2 = '';
    if (box3 == 'Off') box3 = '';
    event.value = fillin(box1, box2, box3, ', ');
    One will get the list of languages with the optional separator for 2 or more language selections.

  • Search for multiple items in one text field

    Hi all,
    I am new to ApEx, I have a request from one of our users to ask if there is a way we can allow them to enter more than one search items delimited by a comma. For instance, we have a text item field for user to enter some values as emp names, when he key in like PETER,SMITH,ALLEN,WARD, once he submit the page he will see the result as:
    select t.empno, t.ename, t.job, t.mgr, t.hiredate, t.sal
    from scott.emp t
    where t.ename in('PETER','SMITH','ALLEN','WARD')
    Many thanks.
    Message was edited by:
    lcpx

    You can create a multiselect list named P1_REPORT_SEARCH based on a List of Values (LOV) with those employee names and use this code.
    select t.empno, t.ename, t.job, t.mgr, t.hiredate, t.sal
    from emp t
    where
    (instr(':'||:P1_REPORT_SEARCH ||':',':'||ENAME||':') > 0 or :P1_REPORT_SEARCH is null) /**for multiselect**/
    )

  • Mapping multiple source fields to one target field

    Hi,
    I'd like to take the XML content fromy my outbound message and put this into a single field within my inbound message.
    Please can someone suggest a suitable XSL mapping or user defined function I could use to achieve this.
    Thanks,
    Alan

    Hi,
    OK, so I now have the XML data in one wrapper tag called inbound but when this is passed to the inbound ABAP proxy I obtain the error as listed below.
    Any ideas how I overcome this?
    XML payload
    <?xml version="1.0" encoding="UTF-8" ?>
      <inbound>
      <![CDATA[ <n0:outbound xmlns:n0="http://homeoffice.gov.uk/immigration/migrant/cas/bulk-cas-re" xmlns:prx="urn:sap.com:proxy:NUD:/1SAI/TASDBA95DB1CF1834B8939A:700:2008/06/25"><ApplicantID>123</ApplicantID><FamilyName>Bloggs</FamilyName><GivenName>Blogs</GivenName><Nationality>GB</Nationality><Gender>1</Gender><CountryOfBirth>GB</CountryOfBirth><PlaceOfBirth>Gloucester</PlaceOfBirth><DateOfBirth><FullDate>1976-06-23</FullDate></DateOfBirth><ApplicantPassportOrTravelDocumentNumber>123</ApplicantPassportOrTravelDocumentNumber></n0:outbound>
      ]]>
      </inbound>
    Error
    Error during XML => ABAP conversion (Request Message; error ID: CX_ST_MATCH_ELEMENT; (/1SAI/TXS2EC9427C9FBC1EDCA9A0 XML Bytepos.: 48 XML Path: inbound(1) Error Text: System expected the element 'inbound')) System expected the element 'inbound'
    Thanks,
    Alan

  • Multiple Rows Into One Column Field

    Hi All,
           Today I tried one query:
    select wm_concat(ename) from emp
    group by deptno;
    I have a data that looks like this.
    CLARK,KING,MILLER,SREE
    JONES,FORD,ADAMS,SCOTT
    ALLEN,MARTIN,BLAKE,TURNER,JAMES,WARD
    Can someone help me to build an SQL command that would have the output as follows:
    I need per column 3 values....
    CLARK,KING,MILLER,
    SREE,JONES,FORD,
    ADAMS,SCOTT,ALLEN,
    MARTIN,BLAKE,TURNER,
    JAMES,WARD

    StewAshton wrote:
    That's funny, I don't get the same answer
    Why do you think you should?
    Besides, you're not the only one.
    ENAMES
    KING,BLAKE,CLARK
    JONES,SCOTT,FORD
    SMITH,ALLEN,WARD
    MARTIN,TURNER,ADAMS
    JAMES,MILLER
    Regards
    Etbin
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE 11.2.0.3.0 Production
    TNS for Linux: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    It's from my APEX Workspace: first select from the emp table (not touched until now)
    Message was edited by: Etbin

  • Pupulating two database fields from one form field

    Hopefully an easy query for someone with more experience than
    me!!!
    I have set up a form (PHP page) to add new users to a table
    in a MySQL database. So far, so good.
    The problem is that I want to use the value entered in one of
    the form fields (Email) to populate two different fields in the
    table (username and email). I realise that this is redundant, but
    it is necessary for other reasons that I won't go into here...
    I've tried using a hidden input field for username, but I'm
    just not sure what I need to specify for 'value'...
    The code for the input field is:
    <input name="Email" type="text" class="RequiredInput"
    value="" size="32">
    and the code for the hidden input is:
    <input type="hidden" name="username" value=Email>
    As you can see, this puts the text 'Email' in the field,
    rather than the value of the Email input...

    When I try an post a reply with the code attached I get this
    screen:
    The page you requested could not be found on our web site.
    You may wish to try one of the following links:
    Search
    Search the Adobe web site.
    Adobe Homepage
    Go to the Adobe homepage.
    Macromedia Flash Player
    Download the Macromedia Flash Player.
    Broken Link?
    Send us an e-mail.
    When the forum's working again I'll have another go at
    posting the code...

  • Import 2 source fields into one destination field (appending entries)

    Dear forum members,
    In MDM Import Manager, is it possible to take 2 fields from the source file structure and map the values to the same destination lookup field, so both values are appended to the table for the same record?
    If so, can you provide detaiuls and considerations?
    I have been looking at partitions, but all I can do is create a single record in the lookup table consisting of both values combined.
    Many thanks,
    Nick

    Hi Alon,
    Yes the field I am testing with is called 'Hyperlink' of type 'Lookup [Qualified Flat] (multi-valued)'
    The field shows as type 'F' in the destination field pane.
    I do acrtually want to load to a different field eventually, but am just testing with this as it seems to be the riight type.
    The table I want to load to is the Hyperlinks table in SRM-MDM. It has the following structure in the console:
    Field Name        Field Type       Non-Qualifier / Qualifier
    Type                 (Lookup[flat])    Non-qualifier
    Mime Type        (Lookup[flat])    Qualifier
    URL                  (Text)              Qualifier
    URL Description (Text)              Qualifier
    In import manager, the fields available are:
    Hyperlink                                F    Lookup [Qualified Flat] (multi-valued)
    Mime Type <Hyperlink>           Q   Lookup [Flat]
    URL <Hyperlink>                     Q  Text[250]
    URL Description <Hyperlink>    Q  Text[250]
    Ultimately I am trying to map:
    1. Hyperlink          - a null source value to a fixed dest value of 'Link'
    2. Mime Type        - a null source value to a null dest value
    3. URL                  - 2 values from 2 fields in the source file to 2 (appended) entries
    4. URL Description - same 2 source values in the source file to 2 (appended) entries
    Unfortunately we cannot modify the hyperlinks table or use a different one as the fields will not be displayed properly in the catalogue view SRM requisitioners will have so I HAVE to use this table and these fields.
    What do you think?
    Thanks a lot,
    Nick

  • How to select max (field) and one more field from table?

    Hi experts!
    I need to select maximum value of ENDDA from PA0023 and BRANC of max ENDDA.
    How can I do that ?
    When I trying this code:
    This is the  code:
    SELECT MAX( endda ) branc
      FROM pa0023
      INTO (pa0023-endda, pa0023-branc).
    I get error message:
    The field "PA0023~BRANC" from the SELECT list is missing
    in the GROUP BY clause. Addition INTO wa or INTO (g1,...,gn)  is required.
    So what is the problem?
    Thanks forehead.

    Hi
    Though am not totally sure of your requirement, check below code samples without any syntax errors:
    1. As per you current coding:
    TABLES: pa0023.
    SELECT MAX( endda ) branc
           FROM pa0023
           INTO (pa0023-endda, pa0023-branc)
           GROUP BY branc.
    ENDSELECT.
    2. Above code results only on one record where as the criteria can be more than one. Eg: for a specific data more than one record can exist. Below code helps you handle the same:
    TABLES: pa0023.
    TYPES: BEGIN OF t_pa0023,
             endda TYPE endda,
             branc TYPE brsch,
           END OF t_pa0023.
    DATA: i_pa0023 TYPE TABLE OF t_pa0023,
          wa_pa0023 TYPE t_pa0023.
    SELECT MAX( endda ) branc
           FROM pa0023
           INTO TABLE i_pa0023
           GROUP BY branc.
    LOOP AT i_pa0023 INTO wa_pa0023.
    ENDLOOP.
    3. If the requirement is to get the Industry Key for the record with highest End Date. We can acheive it by using subquery something like:
    TABLES: pa0023.
    SELECT SINGLE endda branc
           FROM pa0023
           INTO (pa0023-endda, pa0023-branc)
           WHERE endda = ( SELECT MAX( endda ) FROM pa0023 ).
    Kind Regards
    Eswar

  • Icon and field in one column field

    Hi I want to add ok icon with ebeln with below code .But how thanks in advance..
    REPORT ytest001.
    TYPE-POOLs : icon.
    TABLES : ekko.
    DATA gr_alvgrid TYPE REF TO cl_gui_alv_grid .
    DATA gc_custom_control_name TYPE scrfname VALUE 'CC_ALV' .
    DATA gr_ccontainer TYPE REF TO cl_gui_custom_container .
    DATA gt_fieldcat TYPE lvc_t_fcat .
    DATA gs_layout TYPE lvc_s_layo .
    DATA: BEGIN OF gt_itab OCCURS 0.
            INCLUDE STRUCTURE ekko.
    DATA:   ebeln2(50) TYPE c.
    DATA: END OF gt_itab.
    *-status icon
      CONSTANTS : lv_ok(4) TYPE C VALUE '@01@' .
    CALL SCREEN 100.
    *&      Form  DISPLAY_ALV
          text
    FORM display_alv.
      PERFORM getdata.
      PERFORM preparealv.
    ENDFORM.                    "DISPLAY_ALV
    *&      Form  write_alv
          text
    -->  p1        text
    <--  p2        text
    FORM preparealv.
      IF gr_alvgrid IS INITIAL.
        CREATE OBJECT gr_ccontainer
          EXPORTING
           container_name              = gc_custom_control_name
           EXCEPTIONS
            cntl_error                  = 1
            cntl_system_error           = 2
            create_error                = 3
            lifetime_error              = 4
            lifetime_dynpro_dynpro_link = 5
            OTHERS                      = 6
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                     WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
        CREATE OBJECT gr_alvgrid
          EXPORTING
            i_parent          = gr_ccontainer
          EXCEPTIONS
            error_cntl_create = 1
            error_cntl_init   = 2
            error_cntl_link   = 3
            error_dp_create   = 4
            OTHERS            = 5
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        PERFORM create_field_cat CHANGING gt_fieldcat.
        PERFORM create_layout CHANGING gs_layout.
        CALL METHOD gr_alvgrid->set_table_for_first_display
      EXPORTING
        I_BUFFER_ACTIVE =
        I_CONSISTENCY_CHECK =
        I_STRUCTURE_NAME =
        IS_VARIANT =
        I_SAVE =
        I_DEFAULT = 'X'
          is_layout = gs_layout
        IS_PRINT =
        IT_SPECIAL_GROUPS =
        IT_TOOLBAR_EXCLUDING =
        IT_HYPERLINK =
      CHANGING
          it_outtab = gt_itab[]
          it_fieldcatalog = gt_fieldcat
        IT_SORT =
        IT_FILTER =
      EXCEPTIONS
          invalid_parameter_combination = 1
          program_error = 2
          too_many_lines = 3
      OTHERS = 4 .
        IF sy-subrc <> 0.
    *--Exception handling
        ENDIF.
      ELSE .
        CALL METHOD gr_alvgrid->refresh_table_display
          EXPORTING
          IS_STABLE =
          I_SOFT_REFRESH =
          EXCEPTIONS
            finished = 1
            OTHERS = 2 .
        IF sy-subrc <> 0.
        ENDIF.
      ENDIF .
    ENDFORM.                    " write_alv
    *&      Form  create_field_cat
          text
    -->  p1        text
    <--  p2        text
    FORM create_field_cat CHANGING pt_fieldcat TYPE lvc_t_fcat.
      DATA ls_fcat TYPE lvc_s_fcat .
      CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
       EXPORTING
       I_BUFFER_ACTIVE              =
         i_structure_name             = 'EKKO'
       I_CLIENT_NEVER_DISPLAY       = 'X'
       I_BYPASSING_BUFFER           =
        i_internal_tabname           = 'GT_ITAB'
        CHANGING
          ct_fieldcat                  = pt_fieldcat[]
    EXCEPTIONS
       INCONSISTENT_INTERFACE       = 1
       PROGRAM_ERROR                = 2
       OTHERS                       = 3
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      LOOP AT pt_fieldcat INTO ls_fcat.
        CASE ls_fcat-fieldname.
          WHEN 'EBELN'.
            ls_fcat-icon = 'X'.
           ls_fcat-SYMBOL = 'X' .
            MODIFY pt_fieldcat FROM ls_fcat.
        ENDCASE.
      ENDLOOP.
      LOOP AT pt_fieldcat INTO ls_fcat.
        CASE ls_fcat-fieldname.
          WHEN 'EBELN'.
            ls_fcat-fieldname = 'EBELN2'.
            ls_fcat-outputlen = 20 .
           APPEND ls_fcat TO pt_fieldcat.
        ENDCASE.
      ENDLOOP.
    ENDFORM.                    " create_field_cat
    *&      Form  create_layout
          text
    -->  p1        text
    <--  p2        text
    FORM create_layout CHANGING ps_layout TYPE lvc_s_layo.
      ps_layout-zebra = 'X' .
      ps_layout-grid_title = 'EKKO' .
      ps_layout-smalltitle = 'X' .
    ENDFORM.                    " create_layout
    *&      Form  GETDATA
          text
    -->  p1        text
    <--  p2        text
    FORM getdata .
    DATA : LS_ITAB LIKE gt_itab,
           lv_value(15) .
    data : lv_return(30) type c.
    field-symbols <f1> type any.
      SELECT * FROM ekko INTO TABLE gt_itab UP TO 10 ROWS.
      LOOP AT gt_itab.
         ls_itab = gt_itab.
        CONCATENATE lv_ok  gt_itab-ebeln INTO lv_value
        separated by space .
          assign ('LS_ITAB-EBELN2') to <f1> .
        <f1> = lv_value .
        MODIFY gt_itab FROM LS_ITAB.
      ENDLOOP.
    ENDFORM.                    " GETDATA
    *&      Module  STATUS_0100  OUTPUT
          text
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'MAIN100'.
      SET TITLEBAR 'EKKO'.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  DISPLAY_ALV  OUTPUT
          text
    MODULE display_alv OUTPUT.
      PERFORM display_alv.
    ENDMODULE.                 " DISPLAY_ALV  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
          text
    MODULE user_command_0100 INPUT.
      DATA ok_code TYPE sy-ucomm.
      ok_code = sy-ucomm.
      CASE ok_code.
        WHEN 'BACK'.
          SET SCREEN 0.
          LEAVE PROGRAM.
        WHEN 'EXIT'.
          SET SCREEN 0.
          LEAVE PROGRAM.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT

    Well, I think that I remember trying that before and couldn't get it to work, you can either have the icon or the text value, but not both.   I woudl suggest having a separate column for the icon.
    Regards,
    RIch Heilman

  • Linking multiple images to one rollover hotspot.  Multiple hotspots on one slide.

    Does anyone know if there is a widget or work around or something that will allow me to do this? My job depends on it
    Thanks!

    As long as you're not worried about output to HTML5, the Event Handler widget is probably your best bet:
    http://www.infosemantics.com.au/adobe-captivate-widgets/event-handler-interactive
    I think what you're probably trying to do is have multiple images appear or disappear when a user mouses over a given hot spot. Is that correct?  If so, then all you really need is a single Event Handler widget attached to a highlight box set to 0% Alpha (to make it act as a transparent hotspot).  You can execute one Advanced Action to SHOW the images via the On Success event set to Roll Over, and a different Advanced Action set to the Roll Out even on the Failure side of the widget to HIDE all the same images.  Set the widget preference to Reset Success Fail Criteria on Action so that you can perform the mouseover and mouseout actions repeatedly.
    You can even stack multiple widgets onto a single object, each widget can be set to listen for a different mouse event and do something different depending on what the user does.

  • Need to Insert 2 Fields into one Destination Field

    I have a scenario in this way:
    Source Table  
    Inventory
    Alocation| Blocation
    ABC         DEF
    Destination Table
    LocationID
    Mapping Table  
    LocationID, Location
    1               ABC
    2               DEF
    Now I have to write a query wherey both the location codes should be inserted into LocationID in Destination table
    Normally If one Location was available I would have inserted, but I need to insert both the Records into Destination by mapping them to Mapping table
    if one Location Was Available:
    Insert Into DestinationTable
    (LocationID)
    Select M.LocationID From MappingTable M Join Sourcetable S Where M.location = S.ALocation
    This would Output
    Destination Table
    LocationID
    1
    But I want to see this as 
    Destination Table
    LocationID
    1
    2
    Please Help on this.
    Thanks
    Thanks, Please Help People When they need..!!! Mark as answered if your problem is solved.

    Check out UNPIVOT:
    http://www.sqlusa.com/bestpractices/training/scripts/pivotunpivot/
    http://technet.microsoft.com/en-us/library/ms177410(v=sql.105).aspx
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Design & Programming
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • Newbie question - repeated fields include one blank field

    Hi,
    I'm pretty new to this, so i hope that the answer to this question will be fairly simple...
    I have an xdp form that I am binding to an xml schema and i want to place a repeating subform onto the page. I am using a sample xml document that contains only one of the nodes that i wish to repeat.
    I drag the subform onto the page and go to pdf preview and i find that it has rendered one set of controls that contain the data that i require and one set of controls that are empty. How do i stop it from rendering the empty controls??
    (And there really is only one node in the xml... I've checked several times).
    If you need more info on this problem, please let me know and i'll provide some...

    Thanks Jimmy, I read through a few other posts on the forum about vaguely related results and found the problem.
    It seems that when i had copied and pasted a bound subform containing data and then changed the binding on the outer subform, the actual binding on the controls hadn't changed (despite seeming to have done so in designer). When i went into the XML source and manually changed these, the problem seems to have cleared up.
    But thanks anyway :)

  • BI for NW04S: Concatenating multiple chars into one field in BI query

    Hi,
      We have BI for NW04S. We have a requirement of concatenating multiple characteristics into one field in the BI report. This single field should have the usual drill down and other olap functionalities that a single characteristic usually enjoy in a BI report.
      In BI for NW04 (Not the S) this probably can be done using the table interface in WAD. However in BI7 WAD functionality are through Java.
      Also can this be done using Query designer alone.
      Can anybody help?
      Thanks

    Hi,
      Can you please elaborate on your Query designer option. You can always have a variable and in the user exit can write code, but what is not clear that
    1> How will you acheive the contatenation done for every row of the report in the BEX user exit variable( since it's called during the beginning of the query execution and not for all rows of the report
    2> How do you transfer the char variable into a char field in the report.
    Please elaborate .
    Thanks

Maybe you are looking for

  • Keep Pallets On Top in CS4

    I've been working to save my CS4 layout so my panels are repositioned as they were in CS3 (which was a better layout in my opinion). However, I can't keep the panels on top of my foreground image I'm working. In CS3, when you would move the window of

  • Can I know the name, type, total number of column in Record Group?

    I created a record group with query dynamically. And then populated it. I don't know the column' count, type, name befause I get the query from user at runtime. Can I know the name, type, total number of column in Record Group?

  • IPOD NOT GIVING AN ANSWER

    Hello to everyone ! My friend has bought a 5G iPod since a weeks ago on-line. Some days ago, the iPod suddently stopped playing and it turned off automatically. Now, when i'm trying to start it it doesn't gives any answer, even when i'm connecting it

  • [JS] Tab key event (ScriptUI)

    Hi, If set to 'window' or 'palette' type, a ScriptUI Window can't receive 'Tab' key events on WinXP. Is this the same with other OS? Is there a workaround? Thanks, Marc

  • SFTP FCC module parameters

    Dear Experts, kindly provide the module parameters to convert CSV to xml messages in SFTP adapter. please find the below my falt structure. ENUMBER,ENAME,SAL,LAST_NAME,FIRST_NAME 1234         , srinu    , 10lac , p,srinu 2344        ,   reee   , 2 la