Table borders for html Page

HEllo ABAPERS,
KINDLY HELP .
I have developed a report which displays a html page in a custom control .But while printing it not displaying table borders . I have used method display_document ffor printing .Can anyone tell me the reason why is it not printing borders ?
Following code is the code for subroutine and PBO : -
MODULE status_0322 OUTPUT.
SET PF-STATUS 'xxxxxxxx'.
SET TITLEBAR 'xxx'.
  IF first_display EQ 'X'.
    SET PF-STATUS 'PMENU'.
create document
    CREATE OBJECT do.
fill document
    PERFORM display_data USING do t_no.
merge document
    CALL METHOD do->merge_document.
display the document inside the container named 'mmscr
    CALL METHOD do->display_document
      EXPORTING
        container          = 'MMSCR'
      EXCEPTIONS
        html_display_error = 1.
    " do some exception handling ...
    CLEAR first_display.
  ENDIF.
ENDMODULE.                 " STATUS_0322  OUTPUT
*&      Form  display_data
FORM display_data USING p_do TYPE REF TO cl_dd_document P_no type n.
  DATA ta1 TYPE REF TO cl_dd_table_element.
  DATA col11 TYPE REF TO cl_dd_area.
  DATA col12 TYPE REF TO cl_dd_area.
  DATA col13 TYPE REF TO cl_dd_area.
  DATA col14 TYPE REF TO cl_dd_area.
  DATA col15 TYPE REF TO cl_dd_area.
  DATA head1 TYPE sdydo_text_element.
  DATA head2 TYPE sdydo_text_element.
  DATA head3 TYPE sdydo_text_element.
  DATA head4 TYPE sdydo_text_element.
  DATA text TYPE sdydo_text_element.
  CALL METHOD p_do->new_line.
      CALL METHOD p_do->add_table
        EXPORTING
          no_of_columns               = 5
          cell_background_transparent = space
          with_heading                = 'X'
          border                      = '5'
          width                       = '50%'
        IMPORTING
          table                       = ta1.
set columns
      CALL METHOD ta1->add_column EXPORTING heading = head1
                                            width   = '10%'
                                  IMPORTING column  = col11.
      CALL METHOD ta1->set_column_style EXPORTING col_no    = 1
          sap_color = cl_dd_area=>list_background_int.
      CALL METHOD ta1->add_column EXPORTING heading = head2
                                            width   = '15%'
                                  IMPORTING column  = col12.
      CALL METHOD ta1->add_column EXPORTING heading = head3
                                            width   = '15%'
                                  IMPORTING column  = col13.
      CALL METHOD ta1->add_column EXPORTING heading = head4
                                  width   = '15%'
                                  IMPORTING column  = col14.
      CALL METHOD ta1->add_column EXPORTING heading = head4
                                            width   = '15%'
                                  IMPORTING column  = col15.
fill columns
      text = ' '.
      CALL METHOD col11->add_text
        EXPORTING
          text = text.
      text = 'Init'.
      CALL METHOD col12->add_text
        EXPORTING
          text = text.
      text = 'Supv No'.
      CALL METHOD col13->add_text
        EXPORTING
          text = text.
      text = 'Date'.
      CALL METHOD col14->add_text
        EXPORTING
          text = text.
      text =  'Discrepancy Report Notation'.
      CALL METHOD col15->add_text
        EXPORTING
          text = text.
      CALL METHOD ta1->new_row
        EXPORTING
          sap_color = cl_dd_area=>list_background.
      text = 'Q/C by'.
      CALL METHOD col11->add_text
        EXPORTING
          text = text.
      text = ' '.
      CALL METHOD col12->add_text
        EXPORTING
          text = text.
      CALL METHOD col13->add_text
        EXPORTING
          text = text.
      CALL METHOD col14->add_text
        EXPORTING
          text = text.
      CALL METHOD col15->add_text
        EXPORTING
          text = text.
      CALL METHOD ta1->new_row.
      text = 'Received by'.
      CALL METHOD col11->add_text
        EXPORTING
          text = text.
      text = ' '.
      CALL METHOD col12->add_text
        EXPORTING
          text = text.
      CALL METHOD col13->add_text
        EXPORTING
          text = text.
      CALL METHOD col14->add_text
        EXPORTING
          text = text.
      CALL METHOD col15->add_text
        EXPORTING
          text = text.
      CALL METHOD ta1->new_row.
      text = 'Sign Off'.
      CALL METHOD col11->add_text
        EXPORTING
          text = text.
      text = ' '.
      CALL METHOD col12->add_text
        EXPORTING
          text = text.
      CALL METHOD col13->add_text
        EXPORTING
          text = text.
      CALL METHOD col14->add_text
        EXPORTING
          text = text.
      CALL METHOD col15->add_text
        EXPORTING
          text = text.
      CALL METHOD do->new_line
        EXPORTING
          repeat = 1.
ENDFORM.
MSK

You can use HTTP Receiver to pass the data to the servlet that runs on the HTTP Server.  The servlet has already screen design logic written in HTML or jsp to display in HTML Table or so.  PI requires to just post data on the servlet of HTTP Server using HTTP Receiver. PI will not create screen look and feel logic while posting data.
If you want HTML table coding logic refer this link
http://www.w3schools.com/html/html_tables.asp

Similar Messages

  • How to populate a table in the html page from the java script

    Hi all,
    I have doubt in populating a table in the html page. my application is as follows
    I have a html page in which i have a combo box and a table following the combo box.
    i have to populate the table depending on the item selected in the combo box.
    for this i am using javascript to get the value of combo box onClick
    then i have to call some function thru jsp to get the data and then i have to populate the table with thst into from java script
    how can i do this, i.e populating html table from java script
    Thanks in advance
    satya

    Hi Mihai,
    You can populate data in DO_INIT_CONTEXT method of ur impl class in your Z component.
    data:
    lv_struct_ref type ref to YOUR_STRUCTURE,
    lv_value_node type ref to cl_bsp_wd_value_node,
    lv_bo_coll type ref to if_bol_bo_col.
    Data: current type ref to if_bol_bo_property_access.
    data: dref type ref to data.
    data: lv_guid_h type crmt_object_guid.
    data: lt_attr type table of YOUR_STRUCTURE.
    data: ls_attr type YOUR_STRUCTURE.
    data: lr_entity type ref to cl_crm_bol_entity.
    create object lv_bo_coll type cl_crm_bol_bo_col.
    lt_attr is ur internal table.
    Loop at lt_attr into ls_attr.
      create data lv_struct_ref.
      create object lv_value_node
           exporting
                iv_data_ref = lv_struct_ref.
    call method lv_value_node->if_bol_bo_property_access~set_property
    exporting
    iv_attr_name = 'YOURFIELDNAME1'
    iv_value = ls_attr-firstname.
    call method lv_value_node->if_bol_bo_property_access~set_property
    exporting
    iv_attr_name = ' YOURFIELDNAME2'
    iv_value = ls_attr-lastname.
    lv_bo_coll->add( lv_value_node ).
    typed_context->YOURCONTEXTNODE->set_collection( lv_bo_coll ).
    endloop.
    Regards,
    Raghu

  • Borders for a page

    I am very new to MAC & Pages from the Microsoft Office world. Is there any way to import borders for a page on Pages? I am thinking of something I did on Publisher; find a picture suitable for a border, download the picture, import it to publisher/borders; then insert onto the page.

    Similar procedure here, except you don't have an object class specific to "borders". You will go to the Wrap Inspector and set the object to Floating and deselect Object Causes Wrap. Download the Pages User Guide. You can link from the Help menu. It's a good read.
    Jerry

  • Parse table data from HTML page

    Hello. I have a program that creates an HTML page with several tables to present some data. What I would like to do is extract the data row by row from one of the tables, and parse the data I'm interested in from each row. Can anyone suggest how I should approach this problem?

    Andrew,<br /><br />1. If you want to append these data to the existent one, you've to read the XMP of the file.<br /><br />2. You've to add or modify the Dublin Core Description field <dc:description><br /><br />For example:<br /><rdf:Description rdf:about='uuid:d659be9a-21d7-11d9-9b6a-c1fd593acb83'<br />  xmlns:dc='http://purl.org/dc/elements/1.1/'><br /> <dc:format>image/jpeg</dc:format><br /> <dc:description><br />  <rdf:Alt><br />   <rdf:li xml:lang='x-default'>Image Caption</rdf:li><br />  </rdf:Alt><br /> </dc:description><br /></rdf:Description><br /><br />3. You've to replace the app1 block on the JPG with the new XMP<br /><br />Regards,<br /><br />Juan Pablo

  • Best table format for html?

    I see that after I convert my FM doc to Online Help (via webworks), the tables do not expand in the output the way the text does. Is there a specific table format that works best for conversion to html?
    Regards,
    Bill

    Bill,
    in FrameMaker you design each table to have certain column widths because you are limited by the size of your page (and the paper).
    HTML browsers have more freedom unless they are explicitly instructed to create certain column widths. The basic rule for HTMl tables (and there is only a single table "format" in HTML) are those:
    Check each column for its minimum width, specified by a graphic or a very long unhyphenated word.
    Look in each column for the longest content. i.e. as if multi-line content would be written in a single line (attention: <br> tags force line breaks)
    If all columns expanded to hold the longest content fit inside the browser window: scale them accordingly: This may result in tables which are smaller than in print, because they contain only very short texts
    If the columns do not fit the current browser width, scale them down to fit the browser width, but only as far as the minimum width.
    If the sum of minimum widths is wider than the browser window: create a horizontal scrollbar.
    Of course, using CSS instruction like {width: 12em;} one can force certain column width independent from content, but this is usually not the default.
    If you want all your tables to always span the full width of the browser window, you have to add the following to your CSS (maybe via the Webworks UI):
    table { width: 100%; }
    HTH,
    - Michael

  • Paragraph Formatting in Tables - RH8 for HTML

    In working with paragraph formatting in tables, I find that whatever I set the Table Properties to be in terms of Flush Left, Centered, or Flush Right, that formatting is assigned to every paragraph within the table. 
    So if I want to center the table on the page, then the text within every cell is also centered.
    Is this common to others?  What's the solution?

    Cracked it.
    I found different results with different browsers.
    IE8 and Opera = Text is centred in output
    FF and Chrome = Text is left aligned.
    That meant it had to be a browser issue so what could be different? The way they handle XHTML. Go to Tools > Options and tick Convert RH edited topics to HTML.
    The first test is that Preview will now display the text left aligned. Then generate an output and test in any browser, it should now be OK.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • BSP HTMLB TABLE - BORDERS FOR EMPTY CELLS

    Hello Colleagues, I'm new to BSP HTMLB, maybe someone could help me.
    I’m taking data from a DB table through select and there are a lot empty cells.
    The layout looks like:
    <htmlb:tableViewColumn columnName="PK_Terms"
    <%--wrapping="true"--%>
    width="50"
    horizontalAlignment = "center"
    verticalAlignment = "middle"
    fixedColumn="true">
    </htmlb:tableViewColumn>
    THE BORDER does not APPEAR in empty cells (the table looks horrible), how can I make it appear?

    Hi,
    If the cell is initial pass the   then it will shows the border like when the data is not initial.
    i have got this in my requirement.
    if it is not shows the any cell pass <border=1>
    Regards,
    Sri..

  • Content-Lenght header on html pages

    I hope this is a simple one, and I am just lame in my web searching skills, but how would one get the Sun One Web Server 6.1 to include the Content-Length response header on requests for html pages?
    If I curl the web server for say an exe file (application\octet-stream mime type) the server sends me a Contetn-Length header in the response. When I curl a html page from the same server there is no Content-Length header in the response.
    I have a developer that wants to use this header to determine if we need to delete the object from our CDN network, which by the way does provide the Content-Length response header on html pages.
    Thanks in advance for any help on this.

    If there's no Content-Length header in the response when you request a .html file, server-parsed HTML has likely been enabled. When server-parsed HTML (aka SHTML or SSI) is enabled, the server parses the .html file and dynamically generates a response. When the response is dynamically generated, the server doesn't know how long the response will be until it has been completely generated. As a result, the server may omit the the Content-Length header.
    You can disable server-parsed HTML in the administration server GUI.

  • DOM tree for HTML

    Hello,
    How can I create DOM tree for HTML pages with java.
    Can anybody tell me about good examples or relevant material for this.
    Thanks
    Tabbasum

    JTidy. Rhino.

  • HTML Printing with JEditorPane table borders is missing...

    Hi,
    My application prints HTML reports that was rendered on a JEditorPane,
    actually the printing is working fine (almost)...
    After reading a lot of posts and the Printing API i've found a very god aproach to print HTML documents... the DocumentRenderer:
    http://www.fawcette.com/javapro/2002_12/online/print_kgauthier_12_10_02/
    I'm having a strange problem that I was unable to figure out by myself...
    Table borders and table background images never get printed...
    ex: <TABLE BORDER=1 ...
    <td background="image.gif" ...
    On the JEditorPane it shows just fine but, when the page is printed there's no border or table background pictures...
    Everything else is printed ok including images, small fonts, etc...
    Does anyone else had the same problem ?
    Thanks for any help

    The borders present an interesting problem created by the way the DocumentRenderer class finds for printable Views in the HTML. DocumentRenderer searches recursively down the tree of Views starting with the Document's root view looking for leaf views, those with no children. The DocumentRenderer only paints these smallest chunks of text to the printer graphics context. This usually works because leaf views do not usually contain anything paintable.
    The problem with borders is that they represent paintable areas of branch views, those with children. When we only print leaf views, these areas get ignored.
    I see two logical solotions to the problem:
    I. Change the code of the recursive printView method of Document Renderer to print any border that intersects with the current printable clip rectangle.
    II. A much more elegant solution would be to print any view, branch or leaf, that fits within the current printable area, and cease the recursion there. This would include the borders.
    It would also increase efficiency by terminating the recursive method earlier by painting larger chunks of the HTML. A strange problem pops up when I try this, however. When the size of the chunk to be printed gets too big, nothing is printed at all. In the article this is mentioned in the area of large images. "Lastly, large icons do not print. Java simply refuses to render them on the page. Small icons work quite well, however." The same holds true for any large View.
    I have not been able to quantify the exact size where this failure occurs, nor what is causing it. If anyone can tell me what causes this problem, it should be fairly easy, depenging on the cause of the problem, to rewrite the class to print borders and also does lots of other good stuff. I have already coded the new and improved printView method, but this size limitation has made it unworkable.
    Simply stated, if I can figure out why the class does not print large icons, the rest should be easy.
    Any suggestions would be appreciated.
    Thanks,
    Kei Gauthier

  • Set DOCTYPE for a self rendered HTML page using cl_gui_html_viewer

    G'Day!
    I'm dealing with HTML in ABAP and i' stuck with a nasty little problem. Perhaps somebody know's the answer and can help me out. Thanks in advance. (I'm sorry for my poor english)
    My problem is:
    I am rendering a html page in abap and display ist using a cl_gui_html_viewer.
    Works fine.
    But now in need to set the right DOCTYPE for the rendered html page.
    If i add the DOCTYPE definition, my html page is not displayed, instead i get a display of the html-code??
    To break it down to the root:
    How can i add the DOCTYPE definition to a self-rendered html page?
    If i add the DOCTYPE definition as first element of my html table, the html code won't be interpreted.
    If i do not add the DOCTYPE defintion everything works fine.
    I need the DOCTYPE definition so that the browser won't get into quirks mode and interpretes the html tag's right.
    What i've done so far:
    (Dynpro, container, html_viewer)
    Load my JScripts (with load_mime_object)
    Load my CSS (with load_mime_object)
    Load my HTML:
    -- lt_html       TYPE w3htmltab
    ((--  APPEND  '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">'  TO ct_html.)) this line cause my trouble
    -- filled the itab with my html tags <html>....</html> (set right url for Jscript and CSS)
    -- Load my html table and get an URL CALL METHOD gr_labform_html->load_data
    -- Load the url CALL METHOD gr_labform_html->show_url

    I've "solved" my issue with a little workaround.
    I created an empty html page with an existing DOCTYPE def and an tag like <!MYDATA!>
    After that i filled 'l_merge_table TYPE swww_t_merge_table' with my tag and my html_data.
    Loaded the whole thing with CALL METHOD gr_labform_html->load_html_document and now the DOCTYPE is set fully correct!
    But i'm still interessted why i can't set the DOCTYPE directly? Anybody knows?
    Got the idea from: Re: How can I read color from frond-end PC

  • Table/colum used in html pages in oracle apps

    Hello All,
    If we want to find table name against oracle forms in apps . then we can find it from help -> Diagnostics -> examine .But how we will find table name used against HTML Page in oracle apps?
    Thanks..

    Hi,
    It should be in the "About This Page" link -- See these thread for details.
    RECORD HISTORY (or) WHO COLUMNS in R12???
    RECORD HISTORY (or) WHO COLUMNS in R12???
    An alternative would be opening the page in JDeveloper and viewing the source code.
    Thanks,
    Hussein

  • Save HTML page of HTTP request in table

    Hello,
    I use Oracle 11.2.0.3. I want to Save HTML page of HTTP request in table. I used this:
    DECLARE
      l_http_request   UTL_HTTP.req;
      l_http_response  UTL_HTTP.resp;
    BEGIN
      l_http_request  := UTL_HTTP.begin_request('http://www.google.com');
      l_http_response := UTL_HTTP.get_response(l_http_request);
    insert into sms_response
    (STATUS_CODE , REASON_PHRASE, HTTP_VERSION  )
    values
    (l_http_response.status_code,l_http_response.reason_phrase, l_http_response.http_version );
      UTL_HTTP.end_response(l_http_response);
    END;
    This is the table definition:
    CREATE TABLE "SMS_RESPONSE"
      ( "STATUS_CODE" NUMBER,
    "REASON_PHRASE" VARCHAR2(256),
    "HTTP_VERSION" VARCHAR2(64),
    "MSG_BODY" VARCHAR2(300)
    So, I need to save the HTML response in the column MSG_BODY. How can I do it ?
    Regards,

    You can retrieve any http document on the Internet. For example you could retrieve "http://www.ni.com/images/legal/us/nilogo1.gif" which is LabVIEW image from the NI Website. When you download a web page with this tool, you only get the html document, because that is what you asked for. This document embeds images, which most web browsers will download automatically and place within the formatted page. What you will need to do is retrieve the html document, parse it for all embedded image files and then download them one at a time. This is sort of what a "web spider"/"web crawler"/"web bot" does, except they mostly just parse out other pages and then visit those sites collecting information of interest.
    Best of Luck - Jim

  • FIREFOX 26 changed the 'post crash' page with the list of windows and pages. It was a real HTML page with links for each page. Now it isn't (and blows)

    * You changed the page that comes up after a crash - the one which shows the windows and pages that were up before the
    crash.
    This used to be a real HTML page and it isn't any more. THis choice was pure isiocy consider how peopel used that page every day (try taking to your users for a change).
    The pages listed on that 'post crash page' used to be actual LINKS (you could right click them &
    manually open them in another tab - and most peope DID that every day). You could also (and I did this a lot) drag a second
    copy of the page, into a new tab (to keep track of all the pages I had not wanted to open)
    Now the pages are no longer links. You cannot right-click them.
    The thing in the probser is no longer a page that I can drag into a new tab.
    Roll the version back and throw this one in the bin...and have a good long talk with your developers about the definition of
    'STUPIDITIY'
    Then I try to type anything in the addres bar it is suppose to repoond with the history of old things I have types in the past, or
    search for what I type (and in some cases I think it tyes to convert it intoa URL). However it no longer does any of these
    things. When I type in the ADDRESS BAR ONLY, I do not get all of my letters to appear. I have to type into a notepad or
    into the search and to copy and paste to go to a URL. Nothing that is typed into the address bad responds normally at all
    anymore, and I am fairly certain there are no new addons on this machine at all. It does not matter which things I disable. It
    still does this. W of course points the finger back at a change to FIREFOX. I wich I could just sitct with one stable release
    forever but the MOZILLA folk thing it is best to force peopel awy from a working broswer release to a horrible one (due to it
    being out of date).
    FIREFOX 26.0 has 'issues' (ie new *features*/bugs)
    1) History is no longer accurate. My Proof? This machine is the primary one for the entire family (the only PC working). It is
    logged in with same user every time and never has its history cleared. It now January 7 so I ought to have a list of all of last
    months browing available to me.
    However, according to FIREFOX history, in all of December 2013, the entire family only went to 51 primary URL's. None of
    the official TV sites I use to get episodes are listed. None of the official movie sites I use are listed. The primary URL for
    ebay is not listed. Only 1 out of our 4 weather sites that I use (at least once a week) are listed. Only 1 of our 3 FINANCE
    sites is listed. There ought to be several; hundred root URLs listed.
    Please fix history as this change seriously "blows greasy chunks"
    PROBLEM (a stupid change in the new FIREFOX version)
    FOr a long time, after a crash you got a useful page (a real HTML page) which gave you a list of all of your last sessions
    'winwos and tabs' that were open when the browser crashed. there were certain ways of using this page that are no longer
    able to be done.
    The old method was wonderful as it had this behavior :
    *** The old method for displaying your 'Recovered Tabs' allowed you to :
    a) right click an individual item and open it in a tab without getting rid of that lovely window of your previous session of
    'recovered windows and tabs '.
    2) drag the URL for the entire window of 'recovered windows and tabs ' to a new tab (to make a second copy) so that you
    could select just a few of them to open as a group, and stil have the old list handy.
    You can no longer do either of these things. The 'recovered windows and tabs ' page no longer has links in it and can no longer be dragged, so you cant select a few of them to use, and keep the rest around for later. NOW - once you choose which pages to open the window is gone forever (can can't get a second copy).
    People used to make a copy of the page for later use (with a drag)
    we also used to open pages with a right click (which no longer functions
    This new method seriously blows big greasy chunks. A parge loss in function has occurred.
    Put things back as they were. 26 is full of terrible changes that NOBODY likes. It also has a lot of bugs (history is not reliable at all)

    (1) Firefox's built-in post-crash page has not been a real HTML page for a long time (for example, from the time of Firefox 22, see: [https://support.mozilla.org/en-US/questions/968212 Want to save LOTS of versions of "Restore Session.xht" from the "oops ..." page for later use]). If you had this working differently with Firefox 25, that might have been created by an extension.
    You can check to see whether extensions are disabled or need an update on the Add-ons page. Either:
    * Ctrl+Shift+a
    * orange Firefox button (or Tools menu) > Add-ons
    In the left column, click Extensions. The disabled extensions cluster toward the bottom of the list. To poll for updates, use the "gear" button above the list and choose Check for Updates.
    If you used the Reset feature (or Firefox automatically did a reset due to some problem during upgrading), you will need to reinstall missing extensions. The reset feature creates a folder on the desktop named Old Firefox Data. Do you have that folder? There may be data you can recover from it.
    (2) There are many ways for history to get cleared, both internal to Firefox and external. Could you double-check your Privacy settings?
    orange Firefox button (or Tools menu) > Options > Privacy
    * The "Firefox will" drop-down says Remember History: Firefox shouldn't be clearing history, but an add-on or external software could do it
    * The "Firefox will" drop-down says Use custom settings for history: inspect the "Clear history when Firefox closes" setting to make Firefox isn't set to clear history. Also check your add-ons and consider external software.
    Firefox normally accumulates months of history. However, some of Firefox's database sizes are based on disk space available. If your hard drive is very full, Firefox might reduce the amount of history stored.

  • How to get the List of Database Objects (Table/View) for a given APEX Page.

    Hi,
    I have an application and that consist of pages like page1,2,3,.....
    *1.* I want a report which can give me the list of all the Pages1,2,3,....
    I am using the following query to acheive this.... THIS IS FINE..
    select a.workspace, a.owner, a.application_name, b.page_id, b.page_name
      from apex_applications a,
           apex_application_pages b
    where a.workspace = b.workspace
       and a.application_id = b.application_id*2. Now, I want for each individual page*, the list all the database objects (tables/views), which that page is using.
    I am using ALL_DEPENDENCIES , but I am not getting the result.
    So, want to know if there any view/table, where I can get the Application Pages & there database object list...
    Thanks,
    Deepak

    Hari,
    Thanks for the response.
    The view APEX_APPLICATION_PAGE_DB_ITEMS will only give me the table name related to any Page Items defined to that page..It will not give me all the database objects..
    suppose we have a Page, having a report based on multiple tables and there is no Page items defined on that page, we will not have any value in this ....DB_ITEMS table. same thing if we have define some PL|SQL(using some table/view) in a Process, that will not be populated in .....DB_ITEMS table. I want some thing like all the database objects (table/views/function/procedure/.....) for a particular Page ID.
    Thanks,
    Deepak

Maybe you are looking for

  • HDMI from Macbook to Samsung LCD

    Hi Bought an iWires Mini DisplayPort to HDMI cable to today with the view of connecting my MacBook to my TV, all is well apart from on my TV it flickers and cuts out and I get a black screen every few seconds. What is causing this and how do I fix it

  • Can't open Word attachments. How to fix?

    When someone sends me a Word document in an email, I can't open it on my IPhone or IPad. It asks me if I want to open it in an app called The Vault, which is not a word document. How do I fix this?

  • Regarding presence of Standard Reports

    There are some reports which could be generated in Oracle. Can someone please provide inputs on whether we have these standard reports in SAP? Some of these reports are - EQUITY IN EARNINGS GLOBAL CONSOLIDATED INCOME STATEMENT GLOBAL CONSOLIDATED BAL

  • DATA SOURCE ENHANCEMENTS

    If we add a field in Transactional Data source what kind of syntex's for codeing reqd. in CMOD under EXIT_SAPLR..001 etc....

  • Adobe Camera Raw Calibration

    Hi, I've requested access to the SDK as it may help me further but thought that in the meantime, I would post my query here. Would anyone know if (and how) it is possible to "add" a camera calibration from within the ACR pull-down menu (which typical