ADD ICON

IN alv I NEED TO ADD ICON THAT WHEN I CLICK ON IT
IT PRINT SMARTFORM LAYOUT
DO TOU KNOW ?
THANKS

Hi Liat,
For ALV grid function module. Below is the code i have written to display list of contacts. the user has able to select mutliple contacts displayed in the screen and select the Button 'PRINT CONTRACT' to print smartform.
If need complete code give me your mail id, i will send you.
My code works for Tcode VA42.
You have to create GUI status in SE41 to display button on tool bar.
Display output in a ALV Grid
   CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
       I_CALLBACK_PROGRAM                = gs_repid
       I_CALLBACK_PF_STATUS_SET          = 'ALV_STATUS'
       I_CALLBACK_USER_COMMAND           = 'USER_COMMAND'
       IS_LAYOUT                         = gs_layout
       IT_FIELDCAT                       = gt_fieldcat
       IT_SORT                           = gs_sort
       I_SAVE                            = 'A'
     TABLES
       T_OUTTAB                          = it_cntrt
     EXCEPTIONS
       PROGRAM_ERROR                     = 1
       OTHERS                            = 2
   IF SY-SUBRC <> 0.
       MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
   ENDIF.
FORM user_command USING l_ucomm      LIKE sy-ucomm
                        l_selfield   TYPE slis_selfield.
  RANGES: r_kappl FOR nast-kappl,
          r_objky FOR nast-objky,
          r_kschl FOR nast-kschl,
          r_nacha FOR nast-nacha.
  DATA: l_jobname  TYPE TBTCJOB-JOBNAME,
        l_jobcount TYPE TBTCJOB-JOBCOUNT,
        l_repid    TYPE sy-repid,
        l_print_params TYPE PRI_PARAMS,
        l_arc_params   TYPE ARC_PARAMS,
        l_valid        TYPE c,
        l_retcode      TYPE sy-subrc,
        l_blines       TYPE i.
  CASE l_ucomm.
  Process button seleted
    WHEN c_sform.
    process selected records.
      LOOP AT it_cntrt INTO wa_cntrt.
         IF wa_cntrt-box = 'X'.
          place output type in the contract
            PERFORM bdc_output USING wa_cntrt
                               CHANGING l_retcode.
            IF l_retcode = 0.
            add record for jobground job
              r_objky-sign   = 'I'.
              r_objky-option = 'EQ'.
              r_objky-low    = wa_cntrt-vbeln.
              APPEND r_objky.
            ENDIF.
            CLEAR: wa_cntrt, l_retcode, r_objky.
         ENDIF.
      ENDLOOP.
    WHEN c_dclick.
    set contract number id with the selected contract
      SET PARAMETER ID 'AUN' FIELD l_selfield-value.
      SET PARAMETER ID 'KTN' FIELD l_selfield-value.
    call va42 tcode when double click on contract
      CALL TRANSACTION c_tcode AND SKIP FIRST SCREEN.
  ENDCASE.
  DESCRIBE TABLE r_objky LINES l_blines.
IF NOT r_objky[] IS INITIAL.
  IF l_blines > 0.
    Background job name.
      CONCATENATE 'XCM_INDEXATION' sy-uname '_' sy-uzeit
             INTO l_jobname.
    Application
      r_kappl-sign   = 'I'.
      r_kappl-option = 'EQ'.
      r_kappl-low    = 'V1'.
      APPEND r_kappl.
    Message Type
      r_kschl-sign   = 'I'.
      r_kschl-option = 'EQ'.
      r_kschl-low    = c_kschl.
      APPEND r_kschl.
    Message transmission medium
      r_nacha-sign   = 'I'.
      r_nacha-option = 'EQ'.
      r_nacha-low    = '1'.
      APPEND r_nacha.
      l_repid = sy-repid.
    Print Parameters
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
          DESTINATION                  = p_print
          MODE                         = c_batch
          NO_DIALOG                    = 'X'
          REPORT                       = l_repid
          EXPIRATION                   = 2
          IMMEDIATELY                  = 'X'
          NEW_LIST_ID                  = 'X'
        IMPORTING
          OUT_ARCHIVE_PARAMETERS       = l_arc_params
          OUT_PARAMETERS               = l_print_params
          VALID                        = l_valid
        EXCEPTIONS
          ARCHIVE_INFO_NOT_FOUND       = 1
          INVALID_PRINT_PARAMS         = 2
          INVALID_ARCHIVE_PARAMS       = 3
          OTHERS                       = 4.
      IF SY-SUBRC <> 0.
         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                  WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    opening the job
      CALL FUNCTION 'JOB_OPEN'
        EXPORTING
          JOBNAME                = l_jobname
        IMPORTING
          JOBCOUNT               = l_jobcount
       EXCEPTIONS
         CANT_CREATE_JOB        = 1
         INVALID_JOB_DATA       = 2
         JOBNAME_MISSING        = 3
         OTHERS                 = 4.
      IF SY-SUBRC <> 0.
       MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Job submit
      SUBMIT rsnast00 TO SAP-SPOOL
                      USER sy-uname
                      WITH s_kappl IN r_kappl
                      WITH s_objky IN r_objky
                      WITH s_kschl IN r_kschl
                      WITH s_nacha IN r_nacha
                      WITH p_print  EQ p_print
         VIA JOB l_jobname NUMBER l_jobcount
         SPOOL PARAMETERS l_print_params
         WITHOUT SPOOL DYNPRO
         AND RETURN.
      IF sy-subrc <> 0.
      display message when error in scheduling background job
        MESSAGE E016 WITH 'Error scheduling Job'.
      ENDIF.
    Job close
      CALL FUNCTION 'JOB_CLOSE'
        EXPORTING
          JOBCOUNT                          = l_jobcount
          JOBNAME                           = l_jobname
          STRTIMMED                         = 'X'
       EXCEPTIONS
         CANT_START_IMMEDIATE              = 1
         INVALID_STARTDATE                 = 2
         JOBNAME_MISSING                   = 3
         JOB_CLOSE_FAILED                  = 4
         JOB_NOSTEPS                       = 5
         JOB_NOTEX                         = 6
         LOCK_FAILED                       = 7
         OTHERS                            = 8.
      IF SY-SUBRC <> 0.
         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                 WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
  ENDIF.
ENDFORM.
FORM bdc_output USING    wa_cntrt  TYPE ty_cntrt
                CHANGING l_retcode TYPE sy-subrc.
DATA: l_nast TYPE TABLE OF nast,
       it_nast TYPE TABLE OF nast,
       w_nast TYPE nast,
       l_cellno(2) TYPE n,
       l_vbelv TYPE vbfa-vbelv,
       l_vbpa  TYPE vbpa,
       l_yes(1),
       l_temp(40) TYPE c,
       l_lines    TYPE i,
       l_lesscnt  TYPE i,
       l_less(1),
       l_lines1(2) TYPE n.
    REFRESH: it_nast, l_nast, it_bdc.
    CLEAR: l_nast, w_nast, l_yes, l_cellno,
           it_nast, l_nast, it_bdc.
    PERFORM dyn_scr USING 'SAPMV45A' '0102' 'X'.
      PERFORM dyn_fld USING 'VBAK-VBELN' wa_cntrt-vbeln.
      PERFORM dyn_fld USING 'BDC_OKCODE' '/00'.
    PERFORM dyn_scr USING 'SAPMV45A' '4001' 'X'.
      PERFORM dyn_fld USING 'BDC_OKCODE' '=HEAD'.
    PERFORM dyn_scr USING 'SAPMV45A' '4002' 'X'.
      PERFORM dyn_fld USING 'BDC_OKCODE' '=KDOK'.
    SELECT *
      FROM nast
      INTO CORRESPONDING FIELDS OF TABLE l_nast
     WHERE kappl = c_kappl
       AND objky = wa_cntrt-vbeln.
    IF sy-subrc = 0.
        SORT l_nast BY kschl vstat.
        DESCRIBE TABLE l_nast LINES l_lines.
        LOOP AT l_nast INTO w_nast.
            l_cellno = sy-tabix.
            IF w_nast-kschl = c_kschl AND w_nast-vstat = 0.
              EXIT.
            ENDIF.
            IF w_nast-kschl > c_kschl OR
               ( w_nast-kschl = c_kschl AND w_nast-vstat <> 0 ).
               IF l_less = space.
                 l_cellno = l_cellno - 1.
               ENDIF.
               CLEAR l_less.
              IF l_cellno = 0.
                 l_cellno = 1.
              ENDIF.
              l_lines = l_lines + 1.
              l_lines1 = l_lines.
              PERFORM dyn_scr USING 'SAPDV70A' '0100' 'X'.
                CONCATENATE 'DNAST-KSCHL(' l_lines1 ')' INTO l_temp.
                CONDENSE l_temp.
                PERFORM dyn_fld USING l_temp 'Y6C4'.
                CLEAR: l_temp, l_lines, l_lines1.
                PERFORM dyn_fld USING 'BDC_OKCODE' '/00'.
              EXIT.
            ELSEIF w_nast-kschl < c_kschl.
              l_less = 'X'.
              l_lesscnt = l_lesscnt + 1.
            ENDIF.
        ENDLOOP.
    ELSE.
        l_cellno = '01'.
        PERFORM dyn_scr USING 'SAPDV70A' '0100' 'X'.
          CONCATENATE 'DNAST-KSCHL(' l_cellno ')' INTO l_temp.
          CONDENSE l_temp.
          PERFORM dyn_fld USING l_temp 'Y6C4'.
          CLEAR l_temp.
          PERFORM dyn_fld USING 'BDC_OKCODE' '/00'.
    ENDIF.
    IF l_less = 'X'.
        l_lesscnt = l_lesscnt + 1.
              l_cellno = l_lesscnt.
              l_lines = l_lines + 1.
              l_lines1 = l_lines.
              PERFORM dyn_scr USING 'SAPDV70A' '0100' 'X'.
                CONCATENATE 'DNAST-KSCHL(' l_lines1 ')' INTO l_temp.
                CONDENSE l_temp.
                PERFORM dyn_fld USING l_temp 'Y6C4'.
                CLEAR: l_temp, l_lines, l_lines1.
                PERFORM dyn_fld USING 'BDC_OKCODE' '/00'.
    ENDIF.
    PERFORM dyn_scr USING 'SAPDV70A' '0100' 'X'.
      CONCATENATE 'DV70A-SELKZ(' l_cellno ')' INTO l_temp.
      CONDENSE l_temp.
      PERFORM dyn_fld USING l_temp 'X'.
      CLEAR l_temp.
      PERFORM dyn_fld USING 'BDC_OKCODE' '=V70P'.
    PERFORM dyn_scr USING 'SAPDV70A' '0101' 'X'.
      PERFORM dyn_fld USING 'NAST-LDEST' p_print.
      PERFORM dyn_fld USING 'NAST-DIMME' 'X'.
      PERFORM dyn_fld USING 'NAST-TDARMOD' '1'.
      PERFORM dyn_fld USING 'BDC_OKCODE' '=V70B'.
    PERFORM dyn_scr USING 'SAPDV70A' '0100' 'X'.
      CONCATENATE 'DV70A-SELKZ(' l_cellno ')' INTO l_temp.
      CONDENSE l_temp.
      PERFORM dyn_fld USING l_temp 'X'.
      CLEAR l_temp.
      PERFORM dyn_fld USING 'BDC_OKCODE' '=V70I'.
    PERFORM dyn_scr USING 'SAPDV70A' '0102' 'X'.
      PERFORM dyn_fld USING 'NAST-VSZTP' '1'.
      PERFORM dyn_fld USING 'BDC_OKCODE' '=V70B'.
    PERFORM dyn_scr USING 'SAPDV70A' '0100' 'X'.
      PERFORM dyn_fld USING 'BDC_OKCODE' '=V70S'.
    CALL TRANSACTION c_tcode USING it_bdc
                             MODE c_mode     "'N'
                             UPDATE c_updat  "'A'
                             MESSAGES INTO it_mesg.
    IF sy-subrc = 0.
      l_retcode = 0.
    ENDIF.
ENDFORM.                    " bdc_output
*&      Form  dyn_scr
      text
     -->P_0642   text
     -->P_0643   text
     -->P_0644   text
FORM dyn_scr USING    P_0642
                      P_0643
                      P_0644.
    MOVE:  p_0642 TO wa_bdc-program,
           p_0643 TO wa_bdc-dynpro,
           p_0644 TO wa_bdc-dynbegin.
    APPEND wa_bdc TO it_bdc.
    CLEAR wa_bdc.
ENDFORM.                    " dyn_scr
*&      Form  dyn_fld
      text
     -->P_0654   text
     -->P_0655  text
FORM dyn_fld USING    P_0654
                      P_0655.
   MOVE: p_0654 TO wa_bdc-fnam,
         p_0655 TO wa_bdc-fval.
   APPEND wa_bdc TO it_bdc.
   CLEAR wa_bdc.
ENDFORM.                    " dyn_fld
FORM alv_sort.
  DATA: wa_sortcat  TYPE slis_sortinfo_alv.
  WA_SORTCAT-SPOS      = 1.
  WA_SORTCAT-FIELDNAME = 'KUNNR'.
  WA_SORTCAT-UP        = 'X'.
  WA_SORTCAT-EXPA      = 'X'.
Appending gd_sortcat-tabname
  APPEND WA_SORTCAT TO gs_sort.
  CLEAR wa_sortcat.
  WA_SORTCAT-SPOS      = 2.
  WA_SORTCAT-FIELDNAME = 'VBELN'.
  WA_SORTCAT-UP        = 'X'.
  WA_SORTCAT-EXPA      = 'X'.
Appending gd_sortcat-tabname
  APPEND WA_SORTCAT TO gs_sort.
  WA_SORTCAT-SPOS      = 3.
  WA_SORTCAT-FIELDNAME = 'VUNTDAT'.
  WA_SORTCAT-UP        = 'X'.
  WA_SORTCAT-EXPA      = 'X'.
Appending gd_sortcat-tabname
  APPEND WA_SORTCAT TO gs_sort.
ENDFORM.                    " alv_sort

Similar Messages

  • Problem to add Icon to menu option in Oracle forms

    Hello experts,
                          i am using Oracle fussion middleware 11.1.2 (oracle forms 11g) at windows 7.
    I am trying to make mu custom menu module with Icon images in oracle forms.I have done set property palette with
    Icon in Menu =Yes
    Icon file name=home.
    Here home.ico is my icon to corresponding menu item.
    But when I run the form having this menu,the menu is shown but there is no any icon,Please give me solution for that how can I add icons in menus.
    Thank You
    regards
    Aaditya.

    Hi,
    You can define a Form Function filling the basic information and
    HTML call Set as OracleOasis.RunDiscoverer. You can even define Paramters during the form function registration. With this definition you will able to create a link to a Discoverer workbook that will automatically open Discoverer Plus or Viewer to display the workbook using Apps security.
    Please refer to the following Metalink Note for more details:
    278095.1- How to Create a Link to a Discoverer Workbook in Apps11i
    Hope This helps
    - Sanjeev

  • How to add Icon in Tree View in Forms 6.0 (URGENT..!)

    Hello All,
    I want to add icons in tree view (hierarchical tree) by using
    forms 6.0.
    So pls. help me to find out the solution for the same.
    thanks
    Pradeep
    null

    Pradeep (guest) wrote:
    : Hello All,
    : I want to add icons in tree view (hierarchical tree) by using
    : forms 6.0.
    : So pls. help me to find out the solution for the same.
    : thanks
    : Pradeep
    hello pradeep,
    for adding icons in the tree, u willhave to look closely to the
    data format for the tree.in the data format used for populating
    the tree we are supplying 5 fields. the state of the tree node
    (expanded or collapsed), the depth of the node w.r.t the parent
    node, the node value, the node label(what we see on the tree)
    and the node icon which we want to use. for the node icon we
    have to provide the entire path of the icon file. that's it.
    hope this will solve the problem
    null

  • How to add icon in front of Send To menu in context menu?

    Is it possible to add icon to the Send To entry in the windows explorer context menu?

    Hi,
    To add icon to send to context menu, please locate following registry key:
    HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\SendTo
    1. In the right-pane create a String value (REG_SZ) named Icon
    2. Double-click Icon and type the path to an icon (.ico) file, or mention the icon library file name and the icon index.
    3. Exit the Registry Editor.
    Hope this could be helpful.
    Kate Li
    TechNet Community Support

  • How Do I Customize, Add Icons / Shortcuts etc. To Finder Window?

    A friend helped me with a previous computer and he "fixed up" my finder window. There was an icon at the top for "Create New Folder" an icon so I could jump to my desktop, and icon for a specific spreadsheet file so that when I clicked it excel would launch and that file would open. You get he idea. I believe he also made changes to the items listed on the left.
    Now I'm paying more attention to my laptop but forget how he made these changes.
    I have a funny feeling it will be dead easy.
    What do I do?
    Any other hints?
    Thanks

    I have a funny feeling it will be dead easy.
    You guessed it precisely James!
    To modify the top Toolbar of Windows, Right click or Control+click on the Toolbar, choose Customize Toolbar.
    To add icons/folders to the sidebar, just drag a folder on the right to the Sidebar, to rearrange them drag them up or down, to remove them drag them off to the left.

  • How make delete and add buttons as default apex icons(delete , add icons)

    Hi,
    I am new to Oracle apex , Please help me from below issue.
    I am having buttons called Add, Delete whic needs to be display as default apex delete, add icons.
    I have refered below link, even though i didn't get how to apply this.
    http://apex.oracle.com/pls/otn/f?p=45958:21:0:::::
    Please help me how add this icons and where can i see this icons in workspace.
    Thanks and regards,
    Ibrahim Sayyed.

    To call an image, you need to enter something like this in a HTML Region Body, Footer or Header:
    &lt;img src="#IMAGE_PREFIX#alert_error.gif" title="delete" onclick="apex.submit('DELETE')" style="cursor:pointer">What are "default apex delete, add icons"?
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    http://apex.oracle.com/pls/apex/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • Is it possible to add icons to a field in the table control  ?

    Dear Gurus,
               Greetings..............
    Is it possible to add icons to the line item of  a field in the table control ?
    Thanks in advance
    Raj Kumar

    HI
    YES IT IS POSSIBLE.
    DO THE FOLLOWING
    1.DECLARE INCLUDE <ICON>.
    2.IN YOUR INTERNAL TABLE DECLARE FIELD ICON
    icon(4) TYPE c,
    3. POPULATE YOUR INTERNAL TABLE WITH APPROPRIATE ICONS BY SELECTING FROM INCLUDE SPECIFIED ABOVE.
    EG:
    wa2-icon = '@5C@'.
    4.PASS IT TO FIELDCAT
    wa_fieldcat-fieldname = 'ICON'.
        wa_fieldcat-icon = 'X'.            " Displayed as Icon
      wa_fieldcat-tabname = ' '.
      wa_fieldcat-seltext = 'Status'.
      wa_fieldcat-coltext = text-001.
      APPEND wa_fieldcat TO it_fieldcat.

  • How to add icons in native menu with text

    Hello Guys
                     Can Anybody guides me how to add icon in nativemenu system tray.Actually i am making a simple application in adobe air and use minimizing the application into system  tray.On Right  click on the icon present in system tray it open naitive menu with open and exit option.
    i just want to add an icon with each menuItem.Please guide how can i do it.please give me some example for it.i am using this
                                     http://www.swamicharan.com/blog/air/minimizing-an-air-app-to-systemtray/
    link for dock and undock my application.And also tell me how to enhace the width of that naitive menu .please help me out.
    Thanks  And Regards
         Vineet Osho.

               the native menu means in ur application menu or flex system menu?

  • How can we add icon to textview

    Hi All,
    Is there any way to add icon to textview like buttons ... there is no property for textview as an imagesource.
    Regards
    Santhosh.

    dont have a system to check. if image source is not available. Is it OK, to use other than textview or defining one more UI element which has an image source?

  • Add icons to menu bar in Elements 13

    Just watched a video by "Ask Bob" and noticed his PSE 13 window had icons along the menu bar, presumably his most-often used. It's a feature that was lacking in PSE 11 (at least I couldn't find it!), and one I had hoped would be made available in PSE 13, as it is in almost every other program I use. I can't see how to do this, and I couldn't find a reference in the user manual. Can someone tell me how to accomplish this customization - add icons to the menu bar (or somewhere) to accomplish often-used tasks without having to open the drop-down menus.
    Thank you.

    Hi,
    Are these the icons you are talking about?
    If so, I think they are MAC icons and not anything related to PSE - like the Windows 8.1 task bar.  A MAC user might like to confirm that.
    Brian

  • Dock won't let me add icons!

    I try to add icons to my dock from the launchpad it won't do anything. Does anyone know what to do??

    You can add the icons from your Applications folder (if they are apps) or Documents folder (if you have any files or docs and want them in the dock). Simply highlight the app and drag the icon to the dock.

  • How do you add icons to Launch Pad

    I just installed Lion and want to add icons to the Launch Pad, removing them from the dock.  How do I do that?  And, will it work with icons of apps that are not purchased from the App Store?
    Cliff

    I am back.  I have now sorted out my Launch Pad to be organized the way I want it. I have decluttered my Dock.  Very nice. 
    Now I want to add some of the remaining icons for apps that did not automatically show up in Launch Pad.  So, again, how do I do that?
    Thanks,
    Cliff

  • Add ICON to the TEXT

    Hi All,
          Could you please tell me how to add icon to the text value.
    Like, var = It is the best one
    we need add Icon at the end of the string value
            var = It is the best one(Icon should come here).
    Please let me know anyone knows.
    Regards,
    Selva M

    Hi Dieter,
                If you check this variable value in debugging mode, it'll be like this
    VARS = It is the best one @P2@. But I want it like this , VARS = It is the best one ¶.
    Solved my requirement's issue by just copy and paste this symbol. we have this symbol in ABAP editor.
    But still I don't know why we can't add ICON at the end of the text in a variable whereas we can add at the front of variable :(.
    Regards,
    Selva M.

  • Add icons in PPOSE based on relationship of the object

    Hi All,
    Can we add icons in PPOSE based on relationship of the object?
    For example:
    Like the standard hat icon for the chief of the org-unit. I want to add an icon for the A910 i.e. the assistant manager position.
    Is it possible? If yes then how?
    Do guide meu2026
    Regards,
    Pooja

    Check SPRO->Personnel Management-> Org. Management -> Hierarchy framework
    Here you have a possibility to enhance PPOME/PPOSE framework

  • Add Icon to pa30 trans.

    Hi all,
    I need to add icon to the GUI status - MMOD - Application Toolbar.
    its must be repair or not?how can i do it with out repair?

    There don't appear to be any dynamic functions in the GUI status (ECC5), so my bet would be that you'll have to repair it.

Maybe you are looking for

  • Email Submit button works in Acrobat but not Reader

    I have a form with an email submit button.  When those who have Adobe Reader click on the Submit button, nothing happens.  For the users with Acrobat, the submit button works as designed. The users all have the latest version of Reader, Java and Flas

  • Cisco Administration Best Practice - TACACS+ or RADIUS

    I'm new to cisco and currently building a midsize environment and wanted to know what is the best practices for administration management of cisco equipment? Thanks!

  • Recruitment: Multiple Actions on the same day

    Hi expert, Understand that in PA, we are able to perform multiple actions on the same day with the aid of Additional Actions infotype (0302). However, in Recruitment module (i.e. PB), we are unable to perform the above, the previous action record wil

  • Help! trying to start HP Pavillion G7 Windows 8.1 laptop in safe mode

    on friday last week my boss' laptop had an issue with outlook, and we had to do a live chat with microsoft and allow remote connection to get that resolved. the issue was resolved, and he took the laptop home. however, when he attempted to boot up ag

  • Opening an Oracle report in another window

    I am calling Oracle Reports from HTMLDB, the report is called from a button press with a branch to a URL, a substitution string has been set up and single sign on is being used. The url is: &REPORTS_URL.module=&P2_REPORT_ID..rdf&ssoconn=devpmdb&desty