Modify initial screen with an HTML page

Hi,
I would like to replace the first right picture by an HTML page. Is it possible ??
(please don't speak about the replacement of the picture with a GIF, or about the text you could add with SE61 ..)
Thanks
fred

I found how to close and I restart the recovery.

Similar Messages

  • Modifying Page Layouts associated with a HTML page

    Hi,
    I have a Page layout that has been associated with a HTML file. What is the procedure/steps to modify the Page layout?Please suggest

    HI ,
    You need to change in HTML file,after saving it is applied to layout.
    Please check the below links for reference.
    http://www.learningsharepoint.com/2013/03/03/create-a-custom-page-layout-in-sharepoint-2013/
    https://msdn.microsoft.com/en-us/library/office/jj822368.aspx?f=255&MSPPError=-2147217396
    if you need further help, let me know.
    Don't forget to mark it as an Answer if it resolves your issue and Vote Me as helpful if it useful.
    Mahesh

  • Modify initial screen of transaction cj02

    hello everyone,
    i need to modify the first screen of the transaction CJ02, in case of having a preject definition and wbs element, i need to have two more fields .so there is a way to do this.
    please help.

    I don't think there exit a screen exit to have new fields, but other option is to create new custom screen (copy of initial screen) and call the CJ01 second screen from your custom one.
    cheers

  • Running IE but with a html page of mine instead of default

    HI - I would like to know a better way to load up my html page using java. So far my execute statement is:
    Runtime.getRuntime().exec("C:\\Program Files\\Internet Explorer\\IExplorer.exe" + "My Page.html");
    If I don't include My Page.html IE will load up, but if I add My Page.html an IOException is caught. I want IE to load up with My Page.html, so My Page.html is the first page I see. Thanks
    Seigot

    Your problem is:
    Runtime.getRuntime().exec("C:\\Program Files\\Internet Explorer\\IExplorer.exe" + "My Page.html");
    will actually become
    Runtime.getRuntime().exec("C:\\Program Files\\Internet Explorer\\IExplorer.exeMy Page.html");
    so what is
    C:\Program Files\Internet Explorer\IExplorer.exeMy Page.html
    Of course it fails, there is a space missing.
    --lichu

  • Returning to initial screen with earlier values from USER EXIT

    Dear All,
    I'm creating message invoking code in one of the user exit in the FB60 Transaction. When the user saves the invoice, as per code, an error message is displayed if the invoice is for a particular order. but after showing the message , the transaction itself is getting terminated. The type of the message is 'I'.
    We require that after showing the message, the user should get back to the earlier screen with earlier values of all fields except ORDER number.
    In short it should lead us to change the order number and nothing else.
    Please help as it is really an urgent issue.
    regards
    Ajay.

    hi ajay,
    i do not know the complexity of your user exit,
    maybe you could try using 'SET CURSOR FIELD <fieldname>.'
    but SET CURSOR would only work for types C,N,T .
    try it out and transfer me with your knowledge if you find another way out
    cheers,
    Aditya.

  • Modifying selection screen with help of radio buttons

    Hi,
      In my program am using three parameters to download a three different files and I have to use radiobuttons for that.
    I want to download only one file at a time.
    I have used MODIF ID but it is not working for 3 Parameters but it is working for only two parameters.
    Please help me out!!!!!!!!!

    Hi,
    check with the following code
    * Parameters and Selection Options
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS: s_lifnr FOR  lfm1-lifnr .
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS:
       r_asn RADIOBUTTON GROUP rad1 USER-COMMAND uc1 DEFAULT 'X',
       r_ers RADIOBUTTON GROUP rad1  ,
       r_830 RADIOBUTTON GROUP rad1,
       r_850 RADIOBUTTON GROUP rad1,
       r_862 RADIOBUTTON GROUP rad1,
       r_810 RADIOBUTTON GROUP rad1,
       r_820 RADIOBUTTON GROUP rad1,
       r_824 RADIOBUTTON GROUP rad1.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-003.
    SELECT-OPTIONS: s_bstae   FOR lfm1-bstae MODIF ID sd1.
    PARAMETERS:
       p_ekorg   TYPE lfm1-ekorg   MODIF ID md1,
       p_evcode  TYPE edp21-evcode MODIF ID md2,
       p_kappl   TYPE nach-kappl   MODIF ID md3,
       p_parvw   TYPE nach-parvw   MODIF ID md4,
       p_kschl   TYPE nach-kschl   MODIF ID md5,
       p_vakey   TYPE nach-vakey   MODIF ID md6,
       p_werks   TYPE werks_d      MODIF ID md7,
       p_bukrs   TYPE lfb1-bukrs   MODIF ID md8.
    SELECTION-SCREEN END OF BLOCK b3.
    *eject
    * Initialization
    INITIALIZATION.
    *  PERFORM check_authorization.
    *eject
    * at selection screen
    *AT SELECTION-SCREEN.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF r_asn EQ 'X'
          AND ( screen-group1 = 'MD3' or screen-group1 = 'MD4'
             or screen-group1 = 'MD5' or screen-group1 = 'MD6'
             or screen-group1 = 'MD7' or screen-group1 = 'MD8').
          screen-active = '0'.
          screen-invisible = '1'.
          screen-input = '0'.
          screen-output = '0'.
        ELSEIF r_ers EQ 'X'
          AND ( screen-group1 = 'SD1' or screen-group1 = 'MD1'
             or screen-group1 = 'MD2' or screen-group1 = 'MD3'
             or screen-group1 = 'MD4' or screen-group1 = 'MD5'
             or screen-group1 = 'MD6' or screen-group1 = 'MD7'
             or screen-group1 = 'MD8').
          screen-active = '0'.
          screen-invisible = '1'.
          screen-input = '0'.
          screen-output = '0'.
        ELSEIF r_830 EQ 'X'
          AND ( screen-group1 = 'SD1' or screen-group1 = 'MD1'
             or screen-group1 = 'MD2' or screen-group1 = 'MD6'
             or screen-group1 = 'MD7' or screen-group1 = 'MD8').
          screen-active = '0'.
          screen-invisible = '1'.
          screen-input = '0'.
          screen-output = '0'.
        ELSEIF r_850 EQ 'X'
          AND ( screen-group1 = 'SD1' or screen-group1 = 'MD1'
             or screen-group1 = 'MD2' or screen-group1 = 'MD6'
             or screen-group1 = 'MD7' or screen-group1 = 'MD8').
          screen-active = '0'.
          screen-invisible = '1'.
          screen-input = '0'.
          screen-output = '0'.
        ELSEIF r_862 EQ 'X'
          AND ( screen-group1 = 'SD1' or screen-group1 = 'MD1'
             or screen-group1 = 'MD2' or screen-group1 = 'MD8').
          screen-active = '0'.
          screen-invisible = '1'.
          screen-input = '0'.
          screen-output = '0'.
        ELSEIF r_810 EQ 'X'
          AND ( screen-group1 = 'MD3' or screen-group1 = 'MD4'
             or screen-group1 = 'MD5' or screen-group1 = 'MD6'
             or screen-group1 = 'MD7' or screen-group1 = 'MD8').
          screen-active = '0'.
          screen-invisible = '1'.
          screen-input = '0'.
          screen-output = '0'.
        ELSEIF r_820 EQ 'X'
          AND ( screen-group1 = 'SD1' or screen-group1 = 'MD1'
             or screen-group1 = 'MD2' or screen-group1 = 'MD3'
             or screen-group1 = 'MD4' or screen-group1 = 'MD5'
             or screen-group1 = 'MD6' or screen-group1 = 'MD7' ).
          screen-active = '0'.
          screen-invisible = '1'.
          screen-input = '0'.
          screen-output = '0'.
        ELSEIF r_824 EQ 'X'
          AND ( screen-group1 = 'SD1' or screen-group1 = 'MD1'
             or screen-group1 = 'MD2' or screen-group1 = 'MD3'
             or screen-group1 = 'MD4' or screen-group1 = 'MD5'
             or screen-group1 = 'MD6' or screen-group1 = 'MD7'
             or screen-group1 = 'MD8').
          screen-active = '0'.
          screen-invisible = '1'.
          screen-input = '0'.
          screen-output = '0'.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.
    *eject
    * Event top of page
    TOP-OF-PAGE.
    *eject
    * event Start of Selection
    START-OF-SELECTION.
    *eject
    *EVENT End-of selection
    END-OF-SELECTION.
    *eject
    *EVENT  End-of page
    END-OF-PAGE.
    Regards,
    Vikas.
    plz reward if helpful..

  • Problem with opening html page in Dreamweaver

    Hello,
    I would like to ask the forum because I have a problem with Dreamweaver 8.
    In the past when I work with my PC on Windows XP I didn't have this problem.
    Now I have a new PC with Windows 7 Familial Edition Premium.
    I can open he most pages I would like, .htm particuliarly but some of them like .html don't opened in Dreamweaver 8
    on PC with Windows 7.
    Example:
    With this page: http://www.pb-veille-consulting.com/veille.html
    I can open it with Dreamweaver 8 under Windows XP on my portable PC.
    But I can't open it with Dreamweaver 8 under Windows 7 on my fix PC.
    Where is the problem?
    You could watch the code of this page and perharps give me answers from my question.
    Thanks a lot.
    Patrick.

    It could be that Extensions.txt and MMDocumentTypes.xml do not have the full set file extensions.
    The first one can be located at ~username/AppData/Roaming/Adobe/Dreamweaver CS6/en_us/Configuration and needs to have HTML added to line 1
    The second one can be located at ~username/AppData/Roaming/Adobe/Dreamweaver CS6/en_us/Configuration/DocumentTypes and needs to have HTML added to line 3 so that it looks like
    <documenttype id="HTML" internaltype="HTML" winfileextension="html,htm,shtml,shtm,stm,tpl,lasso,xhtml" macfileextension="html,htm,shtml,shtm,tpl,lasso,xhtml,ssi" file="Default.html" writebyteordermark="false" mimetype="text/html">

  • I am trying to download itunes but half screen is a internet screen with no internet page.  Can someone help me?

    Trying to download itunes but half screen is a internet screen without internet.  Help me please.

    The iTunes, QuickTime and Safari downloads pages have been cranky in recent days.
    Do you have a different web browser installed on your system? If so, try visting the download page using that different browser. Do the download controls appear for you now?

  • Embedding with html page

    Hi,
    I want to make a pdf fill able form by livecycle or acrobat pro. In which there will be a button.By clicking this button I want to embed it with a html page.Is it possibe for abobe acrobat pro or adobe livecycle? I f possible how can I make thos button?

    Hi,
    I want to make a pdf fill able form by livecycle or acrobat pro. In which there will be a button.By clicking this button I want to embed it with a html page.Is it possibe for abobe acrobat pro or adobe livecycle? I f possible how can I make thos button?

  • Getting one swf to be higher than another in the zindex of a html page

    Hey all could someone please show me how I can tell one .swf
    to be higher in the pages object stack than an other, I presume
    using javascript?
    Any help would be great.

    Add a table with two rows put the first one in the fist row
    and the second
    in the next row. or make a two div's that work and put them
    in there.
    I think that for you the tables would work better and end
    your frustration.
    Dave
    "complexity" <[email protected]> wrote in
    message
    news:e4lqnl$o0m$[email protected]..
    > Hi all,
    >
    > I am atempting to get a swf higher than another on
    screen in a HTML page.
    >
    > I thought that by using the z-index attribute would
    achieve this but I am
    > having difficulty with it.
    >
    > Firstly I have tried Javascript solution.
    >
    > <script language="Javascript">
    > <!--
    > function makeswf1higher() {
    > div1.style.zIndex="4";
    > div2.style.zIndex="3";
    > -->
    > </script>
    >
    > <body onLoad="makeswf1higher()" >
    > <div id="div1"> //mswf here </div>
    > <div id="div2"> //mswf here </div>
    >
    >
    > secondly I have tried a CSS z-index solution.
    >
    > <style type="text/css">
    > <!--
    > #div1 {
    > position:relative;
    > width:200px;
    > height:115px;
    > top: 0px;
    > visibility: visible;
    > left: 0;"
    > z-index: 50;"
    >
    > }
    > #div2 {
    > position:relative;
    > width:783px;
    > height:446px;
    > top: 0px;
    > visibility: visible;
    > left: 0;"
    > z-index: 1;"
    > }
    >
    > -->
    > </style>
    >
    >
    > And neither produces a result for me. Could someone
    please show me what I
    am
    > doing wrong here.
    >
    > Any help is much appreciated.
    >

  • Modify the contents in Dynamic HTML

    Hi friends,
    I want to modify the contents in a HTML page. This page is dynamically generated from some JSP. First of all, is it possible to modify the content in a HTML page that was generated at run time. If so, Pls. give me an example of the same.
    Tons of thanks in advance....
    SIVA

    Here's an example:
    You have a JSP page that has a form tag called myForm.
    You have a textfield named 'textField1' in the form.
    You have a button on the form with an onClick event, in the javascript
    function that is called for the onClick, you can change
    the contents of the textfield by writing something like this:
    document.myForm.textField1.value="new contents";
    For further information on this, I suggest reading up on Javascript. One book on this is 'Javascript, the definitive guide".

  • How to get the source code of an HTML page in Text file Through java?

    How to get the source code of an HTML page in Text file Through java?
    I am coding an application.one module of that application is given below:
    The first part of the application is to connect our application to the existing HTML form.
    This module would make a connection with the HTML page. The HTML page contains the coding for the Form with various elements. The form may be a simple form with one or two fields or a complex one like the form for registering for a new Bank Account or new email account.
    The module will first connect through the HTML page and will fetch the HTML code into a Text File so that the code can be further processed.
    Could any body provide coding hint for that

    You're welcome. How about awarding them duke stars?
    edit: cheers!

  • Report HTML page from XSL

    Hi All,
    I need help with generation HTML page from
    such XML by using XSL transformation.
    XML is generated from db table.
    <ITEM level=0 name="Page row 1" type="PR"/>
    <ITEM level=1 name="Page row 2" type="PR"/>
    <ITEM level=2 name="Table 1" type="T">
         <Captions>
              <Name>Caption 1</Name>
              <Name>Caption 2</Name>
              <Name>Caption 3</Name>
              <Name>Caption 4</Name>
         </Captions>
    </ITEM>
    <ITEM level=3 name="Table row 1" type="TR">
         <Values>
              <Value>Row 1 value 1</Value>
              <Value>Row 1 value 2</Value>
              <Value>Row 1 value 3</Value>
              <Value>Row 1 value 4</Value>
         </Values>
    </ITEM>
    <ITEM level=3 name="Table row 2" type="TR">
         <Values>
              <Value>Row 2 value 1</Value>
              <Value>Row 2 value 2</Value>
              <Value>Row 2 value 3</Value>
              <Value>Row 2 value 4</Value>
         </Values>
    </ITEM>
    <ITEM level=3 name="Table row 3" type="TR">
         <Values>
              <Value>Row 3 value 1</Value>
              <Value>Row 3 value 2</Value>
              <Value>Row 3 value 3</Value>
              <Value>Row 3 value 4</Value>
         </Values>
    </ITEM>
    <ITEM level=0 name="Page row 3" type="PR"/>
    <ITEM level=1 name="Table 2" type="T">
         <Captions>
              <Name>Caption 1</Name>
              <Name>Caption 2</Name>
         </Captions>
    </ITEM>
    <ITEM level=2 name="Table row 4" type="TR">
         <Values>
              <Value>Row 1 value 1</Value>
              <Value>Row 1 value 2</Value>
         </Values>
    </ITEM>
    HTML should looks like:
    Page row 1
         Page row 2
              |Caption 1 |Caption 2 |Caption 3 |Caption 4 |
              | Row 1 value 1|Row 1 value 1|Row 1 value 1|Row 1 value 1|               
              | Row 2 value 1|Row 2 value 1|Row 2 value 1|Row 2 value 1|                         
              | Row 3 value 1|Row 3 value 1|Row 3 value 1|Row 3 value 1|               
              | Row 4 value 1|Row 4 value 1|Row 4 value 1|Row 4 value 1|               
    Page row 3
         |Caption 1 |Caption 2 |
         | Row 1 value 1|Row 1 value 1|
         | Row 2 value 1|Row 2 value 1|
    There can be many levels but always table item is leaf,
    Thanks in advance,
    Regards Peter

    Hi
    You are probably better posting in the flash forum, as without seeing the code, (and if it is not standard flash html publish) they can probably better advise on a solution.
    PZ

  • Referencing static html pages from jsps...

              Hi,
              This is probably a very simple thing to solve, but I'm having problems with referencing
              html pages from jsps under Weblogic.
              I get Error 404 - not found, whenever I try something like this in a JSP...
              <frame name="title" src="title.html" scrolling=no>
              The title.html file has definitely been copied into my ear file, and yet it isn't
              found. I can solve the problem by turning title.html into a jsp and registering
              it in web.xml. But this seems like serious overkill with static content!!
              Am I missing something really simple here?
              

              I've worked it out - directory mistake...
              Thanks,
              Chris
              "Matt Krevs" <[email protected]> wrote:
              >it sounds like a relative pathing problem
              >
              >is title.html reachable if you enter its address in the browser?
              >
              >is title.html in the same directory as your jsp?
              >
              >perhaps you could post your web.xml file?
              >
              >"Chris Sceats" <[email protected]> wrote in message
              >news:3d9c41b5$[email protected]..
              >>
              >> Hi,
              >>
              >> This is probably a very simple thing to solve, but I'm having problems
              >with referencing
              >> html pages from jsps under Weblogic.
              >> I get Error 404 - not found, whenever I try something like this in
              >a
              >JSP...
              >>
              >> <frame name="title" src="title.html" scrolling=no>
              >>
              >> The title.html file has definitely been copied into my ear file, and
              >yet
              >it isn't
              >> found. I can solve the problem by turning title.html into a jsp and
              >registering
              >> it in web.xml. But this seems like serious overkill with static content!!
              >>
              >> Am I missing something really simple here?
              >
              >
              

  • Open html page in same window

    Hi,
    I have an OA page for Travel and expense; it has a button linked with an html page. If we click the button it will open a html page to download “Spreadsheet template”.
    My requirement is right now the html page is opening in a separate window, but I want to open in same page. Any help to achieve this.
    Thanks
    Chandra

    Chandra,
    Kindly check the code that is being used to handle the button to download Spreadsheet template. You can get clues. There is a good likelihood that the target frame is set as _blank. I am sure you would get clues.
    Regards
    Sumit

Maybe you are looking for

  • Cannot find the InfoObject 0DOC_NUMBER in BI Content

    Hi Experts I have a big problem. I am not able to find the InfoObject 0DOC_NUMBER in the BI Content. Nowhere able to find in my IDES System. Tell me what can I do to get this IO. I am in desparate. I try to practice the step-by-step modelling in SAP

  • Creating "Control Combo Box " Relation with data block

    Hi all dears i am switching from C# to oracle developer for joining gulf net software house, i have a problem regarding master detail data the senerio is "List items" control Filled programatically as under shortly:- rg_id := create_group_from_query(

  • Pro Tool Studio LE 7 upgrade... anyone knows where I can buy the upgrade version for this? and how much does it cost?

    I have a Mac Pro 2006 running on leopard and I need to upgrade my Pro Tool Studio LE 7 to 8 so it can work on Leopard.. anyone knows where I can buy the upgrade version for this? and how much does it cost?

  • Display profile for Cinema Display

    Hi there. I'm producing photographic images (for eventual print) and the print company is using Apple Cinema Displays their end (me: a Samsung SyncMaster 913V). There seems to be a great difference between what I see on my screen and what they see on

  • Encrypt target file with GPG

    Hi, I need to encrypt a target ftp file with GPG and i think  that calling an os script  (remote)  could serve. But i dont know if that's the best solution. There is any other way to do that? Thanks in advance, Carme