Is it possible to put colors while displaying report using ALVs?

Gayathri

hi
i think the following code is the ur solution
TABLES VBAK.
TYPE-POOLS SLIS.
* Data Declaration
TYPES: BEGIN OF T_VBAK,
      VBELN TYPE VBAK-VBELN,
      ERDAT TYPE VBAK-ERDAT,
      ERNAM TYPE VBAK-ERNAM,
      AUDAT TYPE VBAK-AUDAT,
      VBTYP TYPE VBAK-VBTYP,
      NETWR TYPE VBAK-NETWR,
      VKORG TYPE VBAK-VKORG,
      VKGRP TYPE VBAK-VKGRP,
     <b> LINE_COLOR(4) TYPE C,</b>
      END OF T_VBAK.
DATA: IT_VBAK TYPE STANDARD TABLE OF T_VBAK INITIAL SIZE 0,
      WA_VBAK TYPE T_VBAK.
* ALV Data Declaration
DATA: FLDCAT TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE,
      GD_LAYOUT TYPE SLIS_LAYOUT_ALV,
      GD_REPID TYPE SY-REPID.
*      I_EVENTS TYPE SLIS_T_EVENT,
*      W_EVENTS LIKE LINE OF I_EVENTS.
START-OF-SELECTION.
PERFORM DATA_RETRIEVAL.
PERFORM BLD_FLDCAT.
PERFORM BLD_LAYOUT.
PERFORM DISPLAY_ALV_REPORT.
* Build Field Catalog for ALV Report
FORM BLD_FLDCAT.
FLDCAT-FIELDNAME = 'VBELN'.
FLDCAT-SELTEXT_M = 'Sales Document'.
FLDCAT-COL_POS = 0.
*FLDCAT-EMPHASIZE = 'C411'.
FLDCAT-OUTPUTLEN = 20.
FLDCAT-KEY = 'X'.
APPEND FLDCAT TO FLDCAT.
CLEAR FLDCAT.
FLDCAT-FIELDNAME = 'ERDAT'.
FLDCAT-SELTEXT_L = 'Record Date created'.
FLDCAT-COL_POS = 1.
FLDCAT-KEY = 'X'.
APPEND FLDCAT TO FLDCAT.
CLEAR FLDCAT.
FLDCAT-FIELDNAME = 'ERNAM'.
FLDCAT-SELTEXT_L = 'Cteated Object Person Name'.
APPEND FLDCAT TO FLDCAT.
CLEAR FLDCAT.
FLDCAT-FIELDNAME = 'AUDAT'.
FLDCAT-SELTEXT_M = 'Document Date'.
FLDCAT-COL_POS = 3.
FLDCAT-EMPHASIZE = 'C110'.
APPEND FLDCAT TO FLDCAT.
CLEAR FLDCAT.
FLDCAT-FIELDNAME = 'VBTYP'.
FLDCAT-SELTEXT_L = 'SD Document category'.
FLDCAT-COL_POS = 4.
APPEND FLDCAT TO FLDCAT.
CLEAR FLDCAT.
FLDCAT-FIELDNAME = 'NETWR'.
FLDCAT-SELTEXT_L = 'Net Value of the SO in Document Currency'.
FLDCAT-COL_POS = 5.
FLDCAT-OUTPUTLEN = 60.
FLDCAT-DO_SUM = 'X'.
FLDCAT-DATATYPE = 'CURR'.
APPEND FLDCAT TO FLDCAT.
CLEAR FLDCAT.
FLDCAT-FIELDNAME = 'VKORG'.
FLDCAT-SELTEXT_L = 'Sales Organization'.
FLDCAT-COL_POS = 6.
APPEND FLDCAT TO FLDCAT.
CLEAR FLDCAT.
FLDCAT-FIELDNAME = 'VKGRP'.
FLDCAT-SELTEXT_M = 'Sales Group'.
FLDCAT-COL_POS = 7.
FLDCAT-EMPHASIZE = 'C801'.
APPEND FLDCAT TO FLDCAT.
CLEAR FLDCAT.
ENDFORM.
* Build Layout for ALV Grid Report
FORM BLD_LAYOUT.
GD_LAYOUT-NO_INPUT = 'X'.
GD_LAYOUT-COLWIDTH_OPTIMIZE = 'X'.
GD_LAYOUT-INFO_FIELDNAME = 'LINE_COLOR'.
GD_LAYOUT-WINDOW_TITLEBAR = 'GRID DISPLAY'.
*GD_LAYOUT-TOTALS_TEXT = 'GRAND TOTAL'.
ENDFORM.
* Display report using ALV grid
FORM DISPLAY_ALV_REPORT.
DATA T_EVENT TYPE SLIS_T_EVENT.
CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
EXPORTING
   I_LIST_TYPE           = 0
IMPORTING
   ET_EVENTS             = T_EVENT.
IF SY-SUBRC <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
GD_REPID = SY-REPID.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
   I_CALLBACK_PROGRAM                = GD_REPID
   IS_LAYOUT                         = GD_LAYOUT
   I_CALLBACK_TOP_OF_PAGE            = 'TOP_OF_PAGE'
   I_GRID_TITLE                      = 'SALES DOCUMENT HEADER'
   IT_FIELDCAT                       = FLDCAT[]
   I_SAVE                            = 'X'
  TABLES
    T_OUTTAB                          = IT_VBAK
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.
ENDFORM.
* Retrieve data from VBAK table and populate itab IT_VBAK
FORM DATA_RETRIEVAL.
<b>DATA LD_COLOR(1) TYPE C.</b>
SELECT VBELN ERDAT ERNAM AUDAT VBTYP NETWR VKORG
UP TO 20 ROWS
FROM VBAK
INTO TABLE IT_VBAK.
<b>LOOP AT IT_VBAK INTO WA_VBAK.
LD_COLOR = LD_COLOR + 1.
IF LD_COLOR = 8.
  LD_COLOR = 1.
ENDIF.
CONCATENATE 'C' LD_COLOR '10' INTO WA_VBAK-LINE_COLOR.
MODIFY IT_VBAK FROM WA_VBAK.
ENDLOOP.</b>
ENDFORM.
FORM TOP_OF_PAGE.
DATA: T_HEADER TYPE SLIS_T_LISTHEADER,
      W_HEADER TYPE SLIS_LISTHEADER.
W_HEADER-TYP = 'H'.
W_HEADER-INFO = 'WELCOME HEADER LIST'.
APPEND W_HEADER TO T_HEADER.
W_HEADER-TYP = 'S'.
W_HEADER-KEY = 'REPORT:'.
W_HEADER-INFO = SY-REPID.
APPEND W_HEADER TO T_HEADER.
W_HEADER-TYP = 'S'.
W_HEADER-KEY = 'DATE:'.
CONCATENATE SY-DATUM+6(2) ' / ' SY-DATUM+4(2) ' / ' SY-DATUM(4) INTO W_HEADER-INFO.
APPEND W_HEADER TO T_HEADER.
CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
  EXPORTING
    IT_LIST_COMMENTARY       = T_HEADER.
ENDFORM.
reward points,if it is useful

Similar Messages

  • Images are not loaded while displaying report using Report Viewer with JRC!

    Hi Everybody,
    I created a Report designed using CR XI.
    I am viewing that report from my application using JRC and crystal Report Viewer and PDF viewer.
    In PDF viewer everything is fine including images display, saving etc.
    But in Crystal report Viewer, I am not getting the images of the buttons such as export, next page, previous page etc. But all the funtionalities are working.
    From where i can load the pictuers and how?
    Can anybody help on this?
    Thanks in advance,
    Saravanakumar.
    Edited by: Saravana kumar on Nov 17, 2008 1:23 PM

    Hi Saravana
    The issue you have posted here in the Crystal Reports Design Forum is a Developer issue.  Please post this query to the BusinessObjects SDK Application Development - > Java Development Crystal Reports forum.
    Regards
    Girish Bhosale

  • Error while displaying report

    I am getting following error while displaying report in sap business one-
    <b>Internal error (-101) occured [Message 131-183]</b>
    I tried resintalling sap but it did not solved the problem.The reports are getting displayed on other pc's but not on my pc.

    Hi Yogesh,
           I haven't installed any patch on my client machine.
                                                                                    Regards,
                                                                                    Dilip Kumbhar

  • Reports crashes while displaying report progress dialog box

    Environment Description:
    Architecture: Cleint / Server
    Server:
    RDBMS: 8.0.5.1.0
    OS: Win NT
    Client:
    Win NT 4.0 Workstation, Service Pack 6
    Reports runtime 6.0.5.35.0
    Reports built with Reports builder 6.0.5.35.0
    Problem Description:
    My reports crashes while de 'Report Progress' dialog box is being displayed.
    Just before it crashes the dialog box shifts from the centre to the left of the screen and stops.
    Any help?

    Follow up:
    During the crash WinNT displays Dr. Watson saying:
    ...RWRBE60.exe Exception: divide by zero...
    Any help will be appreciated.

  • Issue while generating report using web.show_document with https

    Hi All,
    I am facing some issue while seeing the report using web.show_document as shown below:
    https://ucrmskr.apac.nsroot.net:10301/forms/html/001725032_gca.rtf_
    In this case the report opens directly without asking for me to save or open or cancel option
    whereas if I hit
    http://scrmskr.apac.nsroot.net:7801/forms/html/001725032_gca.rtf_
    it asks for save or open or cancel option
    so that I can save the report to my machine and open in wordpad format
    The report generated in the first case is not coming in proper format
    Below are my forms.conf mappings:
    # Name
    # forms.conf - Forms component Apache directives configuration file.
    # Purpose
    # It should include the weblogic managed server (routing) directives for
    # the servers where Forms applications are deployed and other miscellaneous
    # Forms component OHS directives.
    # Remarks
    # This file is included with the OHS configuration under
    # $OI/config/OHS/<OHS Node Name>/moduleconf sub-directory.
    # virtual mapping for the /forms/html mapping.
    RewriteEngine on
    RewriteRule ^/forms/html/(..*) /workaroundhtml/$1 [PT]
    AliasMatch ^/workaroundhtml/(..*) "/ucrmap1/weblogic/bea/ucrms/config/FormsComponent/forms/html/$1"
    RewriteRule ^/ucrms/icons/(..*) "/workaroundicons/$1" [PT]
    AliasMatch ^/workaroundicons/(..*) "/ucrmap1/weblogic/bea/ORA_PFRD/forms/java/$1"
    RewriteRule ^/forms/help/(..*) "/workaroundhelp/$1" [PT]
    AliasMatch ^/workaroundhelp/(..*) "/ucrmap1/ucrrgbg2/help/$1"
    <Location /forms>
    SetHandler weblogic-handler
    WebLogicCluster kauh0079:9001
    DynamicServerList OFF
    </Location>
    Please let me know what needs to be done additionally if we are trying to hit https because in the second case we were hitting http with similar mapping in diff environment and it was generating report successfully.
    Regards,
    Harish

    Thanks for answering,
    I changed the URL from
    http://nbotlaguduru.dms.local/export/FMSLaborChargesalcs20060829132645.pdf
    to
    http://nbotlaguduru.dms.local:8889/export/FMSLaborChargesalcs20060829132645.pdf
    and the same problem occured
    the file is located on my local C drive in:
    C:\lcs\export
    seems as though I am missing something else as well
    any ideas?

  • Problem in displaying data using ALV interactive using OOPS

    Hi friends,
    I have created one interactive report using oops..
      on my selection screen i have a select-option  TABNAME for DD02L table with no intervals option.
    ie : i enter table names in that field..
    for example i enter VBAP
                                   MARA,
                                   MARC.       etc
    when i execute i get a basic list which gives some details about the tables.
    now on my basic list when i double click on any row then ie : say if i click on 2nd row , in the back ground based on the index on which i have click iam reading that particular row from the table and from that using the table name iam displaying the all the fields of the table in the ist secondary list....
    Till now its working fine but once when i go back to the back to the basic list and when i click another row... here even if click another row its displaying the same fields of the table which was ist click.
    ie : say ist time i have clicked mara then later vbap.....But its displaying me the mara details instead it should display vbap details...
    I have used refresh_table_display method also.... But its not working fine...
    How can i correct it...
    Regards,
    Kumar.

    Hello Kumar
    I can only guess that you call the second screen (perhaps '0200') within the event handler method for event DOUBLE_CLICK. This is not really a good idea. Instead use a simple trick to overcome this refreshing problem:
    METHOD handle_double_click.
    " Save the row perhaps in a static attribute of your event handler method, e.g.
    .  lcl_eventhandler=>ms_row = e_row.  " ms_row defined as static attribute of event handler class
    " Trigger PAI with a defined ok-code:
      CALL METHOD cl_gui_cfw=>set_new_ok_code
        EXPORTING
         ok_code = 'DETAIL_LIST'.
    ENDMETHOD.
    This method call triggers PAI of your screen which otherwise does not occur after an event has been raised.
    MODULE user_command_0100 PAI.
      CASE gd_okcode.
        WHEN 'DETAIL_LIST'.
           perform DISPLAY_DETAIL_LIST.  " and call screen '0200'
        WHEN OTHERS.
      ENDCASE.
    ENDMODULE.
    The next time you make a double click a new row/index is filled into the static attribute. By triggering PAI (followed by PBO) you ensure a flushing (= refreshing) before the secondary list is displayed.
    Regards
      Uwe

  • Display report using star office

    Hi...Need some light on this,,,How to display abap report using Star offce instead of MS excel???? Thanks

    If Star Office (??) is OLE compliant, you will need to issue a CREATE OBJECT 'WHATEVER.THE.REGISTRY.ENTRY.NAME.IS.HERE'.
    Then once it is activated on the client system, you will need to issue OLE automation commands from ABAP to the Star Office client.
    You will probably need an Object Browser to help you with the Star Office commands to pass the ABAP info down to the client.

  • Need to display report using SSRS

    I have a query that display above format from different tables.
    But since in row 2 and 3 date, time,day values are same, I don't want it do display it again in row 3.Below is the required format.
    How to do this. I need to display this report using SSRS
    Need Help..Thanks
    Abhinav

    This is basically a presentation issue.
    You should be dealing this in your front end tool like say reporting services. The property is called Hide Duplicates in SSRS and is available from textbox properties. You dont need to do anything at sqlserver query end for this.
    If you really have no other way then you can use a logic as below
    select
    case when t1.[Date] IS NULL then '' else cast(t.[Date] as varchar(20)) end AS [Date],
    case when t1.[Date] IS NULL then '' else cast(t.[Day] as varchar(10)) end AS [Day],
    case when t1.[Date] IS NULL then '' else cast(t.[Time]
    as varchar(10)) end AS [Time],
    t.company
    from table t
    left join (select [Date],[Day],[Time],MIN(Company) AS MinComp
    FROM Table
    GROUP BY [Date],[Day],[Time]
    )t1
    ON t1.[Date] = t.[Date]
    AND t1.[Day] = t.[Day]
    AND t1.[Time] = t.[Time]
    AND t1.MinComp = t.Company
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Legend color not displayed when using custom theme

    Hi all,
    We are facing a strange issue in the MSS team calender chart's legend colors. The first legend item's color appear blank/white in a custom portal theme while the color appear properly on the standard theme. Inside the chart, the color is appearing properly.
    What could be the issue? which property in the theme is connected to the legend?
    Thanks and Regards,
    Syam.

    Hi Sidharth,
    We have not done any modifications to the standard service. Also, If this is the reason, why should it appear for some users and why not for others? For those users using the standard theme, the legend colors are appearing properly.
    Thanks and Regards,
    Shyam.

  • Is it possible to put films on an ipad using a camera connection kit?

    I have just bought a camera connection kit for my ipad 3 and a 16GB sd memory card. i was wondering, is it possible to add mp4 films (such as Transformers) onto the ipad using the camera connection kit from my sd card?

    You can. It's just not the easiest thing in the world to do.
    MP4 files play just fine. Handbrake is one very good video converter app.
    Make and have the file on your computer.
    Using the explorer on your computer, You make a folder on the SD card named DCIM
    You give the movie a 8 character name TRANSFOR.MP4 for example - has to be exactly 8 characters + extension
    You put that file into the DCIM folder using your computer
    Eject the card from your computer.
    You attach that card via the camera connection kit, to your iPad
    The photo app should pop up and you'll see either a poster frame or a black box representing your video
    You go through the import process and move that file to your iPad
    You finish the process, taking care not to delete the file off the card (the CCK always gives you the option of deleting the photos or movies you just imported)
    You open the photos app and tap on the movie, it'll open the video app and play the movie
    You finish the movie then have to delete it off your iPad.
    You will not see file names, so if you have multiple movies on  a card you likely can't tell one from the other.
    And you have to have room to import the file, you cannot watch it off the card.
    So it works, but isn't exactly seamless and easy, largely cause the preferred method is that you simply purchase and download the same movies from iTunes

  • Error while displaying report in BI Publisher

    Hi All,
    I am on BI Publisher 10.1.3.4 and applied the patch 9546699 .After applaying the patch , I am not able to view the reports.While clicking on view m getting the followin error:
    c:temp\xdo_070510_103402171_rtf_out.xsl (The system cannot find the path specified)
    I tried to install the bIP desktop as well but didnt resolve the issue.
    Do I need to make any chnges to any of the configuration files.
    Please suggest.
    Thanks!!

    can you create a folder in c: named as "temp"

  • Line's Not Dispalyed While Displaying Report

    Hi there,
         Have one small problem in C Reports, the problem is , have inserted lines and boxes into crystal report the thing is the lines are not displayed in the crystal report viewer during report display but lines are visible in the file after export, why does this happen, and how can i overcome with this problem.......
           i want the lines also to be displayed when the report is displayed into crystal report viewer........
    am using CR ver 10.5
    Visual Studio 2008 Build
    any help will be greatly appreciated
    Regards
    Nayeem
    SSE
    Globals

    Hi, Nayeem;
    See if this will help, in the html view of your page:
    Comment out the DOCTYPE tag or delete it completely to fix this problem. Below shows how to comment out the DOCTYPE tag:
    <!-- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
       http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd> -->
    Regards,
    Jonathan

  • Changing font color in a report using SQL query for APEX 5.0

    Hello,
    I am testing APEX 5.0 in my testing environment to see if I can migrate my internal apps from 4.2 to 5.0.
    How can I change the font color in a field based in the SQL query? I know how to do it in 4.2 but I can't find the same in 5.0.
    Thanks,

    Well, I used to put the html tags in the select as text getting the color value depending a CASE , then I had to change the Display attribute for the column in the report as "Display as text (espace special characters...)".
    I found an old post here: https://tylermuth.wordpress.com/2007/12/01/conditional-column-formatting-in-apex/ and  this method still worked for me in APEX 5.0
    Thanks anyways

  • Javax.mail.internet.ParseException while busrting report using control file

    Hi everyone...
    I am trying to run a concurrent program that will burst emails using a control file.
    In the data definition i want to use few parameters whose values will be passed from concurrent program.In the data definition i am calling an after report trigger function which will fire the seeded email bursting program.
    My data definition file sample:
    ?xml version="1.0" encoding="UTF-8" ?>
    <dataTemplate name="dataTemplateName" description="Template description" defaultPackage="BIREPORTBURSTINGAK_PKG" version="1.0">
    <parameters>
    <parameter name="P_NAME" dataType="varchar"/>
    </parameters>
    <dataQuery>
    <sqlStatement name="Q1">
    <![CDATA[
    select
         emp_Id "EmployeeId"
         ,emp_Name "EmployeeName"
         ,emp_Dept "Department"
         ,emp_Org "Organization"
         ,emp_Email "Email"
         ,emp_salary "Salary"
         --,emp_Phone "Phone"
         from reportSample_AK
         where emp_name=:P_NAME
    ]]>
    </sqlStatement>
    </dataQuery>
    <dataTrigger name="afterReportTrigger" source="BIREPORTBURSTINGAK_PKG.afterReportTrigger(:P_NAME)" />
    <dataStructure>
    <group name="G_EMPLOYEE" source="Q1">
    <element name = "EMPID" value="EmployeeId"/>
    <element name = "ENAME" value="EmployeeName"/>
    <element name = "DEPT" value="Department"/>
    <element name = "ORG" value="Organization"/>
    <element name = "EMAIL" value="Email"/>
    <element name = "SAL" value="Salary"/>
    --<element name = "PHONE" value="Phone"/>
    </group>
    </dataStructure>
    </dataTemplate>
    my control file:
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi" type="bursting">
    <xapi:request select="/DATATEMPLATENAME/LIST_G_EMPLOYEE/G_EMPLOYEE">
    <xapi:delivery>
    <xapi:email id="123" server="agni.bangalore.bedford.local" port="25" from="[email protected]" reply-to="[email protected]">
    <xapi:message id="123" to="${EMAIL}" attachment="true" subject=" Dear: ${ENAME}">
    Please review the attachment .
    Regards,Anupama karote
    </xapi:message>
    </xapi:email>
    </xapi:delivery>
    <xapi:document output-type="pdf " delivery="123">
    <xapi:template type="rtf" location="/usr/tmp/TESTMAIL_AK.rtf" filter=".//LIST_G_EMPLOYEE">
    </xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    my package deatils:
    create or replace package BIREPORTBURSTINGAK_PKG
    As
    P_NAME varchar2(16);
    Function Afterreporttrigger(P_NAME varchar2) Return Boolean;
    end biReportBurstingAK_pkg;
    create or replace package body BIREPORTBURSTINGAK_PKG AS
    Function Afterreporttrigger(P_NAME varchar2) Return Boolean
    is
    v_request_id NUMBER;
    BEGIN
    v_request_id := fnd_request.submit_request('XDO'
    ,'XDOBURSTREP'
    ,NULL
    ,NULL
    ,FALSE
    ,'N'
    ,TO_CHAR(fnd_global.conc_request_id)
    ,'Yes'
    return true;
    End Afterreporttrigger;
    end biReportBurstingAK_pkg;
    i have created data definition and template and attched it to the concurrent program via bi publisher.
    While running the main concurrent program i am getting the following error:
    create or replace package BIREPORTBURSTINGAK_PKG
    As
    P_NAME varchar2(16);
    Function Afterreporttrigger(P_NAME varchar2) Return Boolean;
    end biReportBurstingAK_pkg;
    create or replace package body BIREPORTBURSTINGAK_PKG AS
    Function Afterreporttrigger(P_NAME varchar2) Return Boolean
    is
    v_request_id NUMBER;
    BEGIN
    v_request_id := fnd_request.submit_request('XDO'
    ,'XDOBURSTREP'
    ,NULL
    ,NULL
    ,FALSE
    ,'N'
    ,TO_CHAR(fnd_global.conc_request_id)
    ,'Yes'
    return true;
    End Afterreporttrigger;
    end biReportBurstingAK_pkg;
    Any help is greatly appreciated.
    Regards,

    Am also facing the same issue. Did anyone find a resolution for this problem?
    Regards
    Anoop

  • Displaying report using decision step

    Hi ,
    in the decision step .i am calling the custom report in the methods before workitem execution. when i execute the workitem from the inbox first it is displaying the report after i click back button ( or cancel) button the report is displaying again. I am not getting  why program is displaying the report again.
    this is code :
    BEGIN_METHOD REPORT CHANGING CONTAINER.
    SET  PARAMETER ID 'BES' FIELD OBJECT-KEY-PURCHASEORDER.
    CALL TRANSACTION 'Y0024' and skip first screen.
    END_METHOD.
    please can any one help in solving the problem.
    advance thanks
    paveee

    Hi Paveee,
    Search this forum. I think this problem has been addressed before.
    By the way, you have a question similar to this still open if that question is answered, please close the thread by marking it answered.
    Regards,
    Martin

Maybe you are looking for

  • Pop up not working

    I am having table and i have to delete the record from that table........when i click that delete button the popup to be displayed..... for the generation of the popup i have used the below coding......... DATA: LR_API_COMP_CONTRL      TYPE REF TO IF

  • Mail crashes each time I open it

    Frustrations. Every time I try to open mail, it says "The Application MAIL quit unexpectedly." I try to relaunch but nothing changes. I tried calling the so-called helpful support and someone from India couldn't understand my serial number and hung u

  • Attachment Tab for first user?

    Is it possible to display the attachment tab for the first user(before initiate a process) in the task manager? I mean, when I try open the form from the category (through Start Process icon), it does not display the attachment tab. any suggessions?

  • #DATA# in Chart XML

    The #DATA# field in Chart XML takes the data from your SQL query and wraps it in XML so that AnyChart can render the chart correctly. Is there a way for me to customize how the XML is generated? Where do I find the definition for the #DATA# field? Th

  • Mavericks 10.9.5 -- Brother MFC-7320 does not work.

    Hi apple folks, Mavericks 10.9.5 --> Brother MFC-7320 does not work. I just have downloaded the driver form http://support.brother.com/g/b/downloadhowto.aspx?c=gb&lang=en&prod=mfc7320_eu&o s=132&dlid=dlf005077_000&flang=4&type3=20 Despite the fact th