SUBMIT does not work in background...

Hi guys,
We have a copy program of a standard transaction and once we use this copy program in the main program via SUBMIT... it does not work in background...
Why is this so,,, Please advice...
THanks!

Hi,
When executing some program using the statement like SUBMIT prog_2 WITH parameters and RETURN.
In foreground PROG_2 is executed, and once you click on the BACK button the code written after this SUBMIT statement will be executed.
If you are executing the same in the BACKGROUND mode, no feasibility of clicking on BACK button, hence control will remain in the PROG_2 only after executing its logic.
Please code accordingly.

Similar Messages

  • GUI_DOWNLOAD does not work for background printing

    Hi,
    Need some help urgently.
    Function moduel GUI_DOWNLOAD does not work for background printing. I want to know how this issue can be handled or we have to use some other function module.
    We are using this in a report and i get the error dump OBJECTS_OBJREF_NOT_ASSIGNED when we run this report in background.
    Kindly suggest.
    Best Regards,
    Abbasi

    you can not use gui_download in background.
    Try searching first, this thing has been posted a thousand times already

  • Submit Code not working in Background processing

    Hi All,
    I have a requirement to create delieveries based on the Sales Order through transaction VL04 (RV50SBT1).  Essentially, the program takes selected sales orders, determines the shipping point and creates deliveries immediately.  I believe that the code below is correct as it works when my program is run in the foreground; however, when I run my program in background, SM37 gives an error "Fill in all required entry fields."  The only mandatory field in VL04 is the Shipping Point (VSTEL) which is being successfully populated. 
      SUBMIT rv50sbt1  AND RETURN
                      WITH vstel = ls_vbap-vstel
                      WITH s_ledat BETWEEN '20091231' AND '99991231'
                      WITH samml = 'X'
                      WITH anzei = ' '.
    Similar code to this is working in other custom developments that I have done; however, those programs only submit to programs without mandatory fields.  Am I doing something wrong?  Is it not possible to use the Submit command if a field is mandatory in the program you are submitting to?  Any help you can give would be greatly appreciated.  Thanks.
    John

    Hi Guys,
    Yes, I am certain VSTEL is populated.  I created a very simple program to ensure that the values would be there and it still didn't work in background.  In this case, I pass one sales order that I know has a shipping point (in my case the VSTEL is populated with US01) via a parameter.  In debugging, I found that the value is correctly passed. 
    Here is the test program I created.
    data: ls_vbap type vbap.
    PARAMETERS: pa_vbeln TYPE vbeln.
      SELECT SINGLE * INTO ls_vbap FROM vbap
        WHERE vbeln = pa_vbeln.
      SUBMIT rv50sbt1  AND RETURN
                      WITH vstel = ls_vbap-vstel
                      WITH s_ledat BETWEEN '20091231' AND '99991231'
                      WITH samml = 'X'
                      WITH anzei = ' '.
    John

  • SUBMIT RVV50R10C not working in background as well as foregrnd tcode:vl10b

    Hi,
       I have to create a code which creates delivery of STO in background as baapi creating issue and BDC can not be used for this, i am using submit.
    Code is as follows :
    report ZKIRAN.
    TABLES : mara.
    TYPES : BEGIN OF STR,
             SIGN(1),
             OPT(2),
             LOW(18),
             HIGH(18),
            END OF STR.
    TYPES : BEGIN OF STR1,
             SIGN(1),
             OPT(2),
             LOW(10),
             HIGH(10),
            END OF STR1.
    TYPES : BEGIN OF STR2,
             SIGN(1),
             OPT(2),
             LOW TYPE D,
             HIGH TYPE D,
            END OF STR2.
    DATA : MATNR TYPE STANDARD TABLE OF STR  WITH HEADER LINE,
           DATE  TYPE STANDARD TABLE OF STR2 WITH HEADER LINE,
           STO   TYPE STANDARD TABLE OF STR1 WITH HEADER LINE.
    MATNR-SIGN = 'I'.
    MATNR-OPT  = 'EQ'.
    MATNR-LOW  = '000000000001004362'.
    APPEND MATNR.
    CLEAR  MATNR-LOW.
    STO-SIGN = 'I'.
    STO-OPT  = 'EQ'.
    STO-LOW  = '6200001140'.
    APPEND STO.
    DATE-SIGN = ''.
    DATE-OPT  = ''.
    DATE-LOW  = ''.
    DATE-HIGH = ''.
    APPEND DATE.
    SUBMIT RVV50R10C  VIA SELECTION-SCREEN WITH st_matnr IN MATNR
                                           WITH st_ebeln IN STO
                                           WITH ST_LEDAT IN DATE
                                           WITH P_PROF1  eq '5001'
                                           WITH P_LERUL  EQ ''
                                           EXPORTING LIST TO MEMORY
                                             AND RETURN.
    It is not working .. plz reply what else i need to add in this code.
    This code displays 1st screen of vl10b . it also populates valeus passed in respective fields..but does not process further.
    I am suppose to schedule this job in background.
    Waiting for ur reply...A wrong code is already in productiion and i have ket my fingures crossed.
    pls help.

    Hi this was the code i used and it worked fine.
      DATA: t_ledat TYPE RANGE OF vbep-mbdat,
            e_ledat LIKE LINE  OF t_ledat.
      DATA: t_vbak  TYPE RANGE OF vbak-vbeln,
            e_vbak  LIKE LINE  OF t_vbak.
      DATA: t_vstel TYPE RANGE OF vbap-vstel,
            e_vstel LIKE LINE  OF t_vstel.
      DATA: t_ekko  TYPE RANGE OF ekko-ebeln,
            e_ekko  LIKE LINE  OF t_ekko.
          MOVE c_include              TO e_ledat-sign.
          MOVE c_between              TO e_ledat-option.
          MOVE s_mbdat-low            TO e_ledat-low.
          MOVE s_mbdat-high           TO e_ledat-high.
          APPEND e_ledat              TO t_ledat.
          MOVE c_include              TO e_vbak-sign.
          MOVE c_equal                TO e_vbak-option.
          MOVE <fs_del_sales>-vbeln   TO e_vbak-low.
          APPEND e_vbak               TO t_vbak.
          MOVE c_include              TO e_vstel-sign.
          MOVE c_equal                TO e_vstel-option.
          MOVE <fs_del_sales>-vstel   TO e_vstel-low.
          APPEND e_vstel              TO t_vstel.
          CLEAR:  w_scenario,
                  w_profilname.
          MOVE : '0001'   TO w_scenario,
                      '5001'         TO w_profilname.
          CLEAR: e_t186v,
                       e_list_profil.
    *       Get List-Profil-data if given or from default values
          PERFORM f_profil_data_complete in program saplv50r_pre
            USING    w_scenario
                     w_profilname
            CHANGING e_t186v
                     e_list_profil.
          MOVE 1 TO e_list_profil-list_type .
          MOVE e_ledat-high TO e_list_profil-ledat_high.
          CALL FUNCTION 'SHP_LIST_PROFIL_SET'
            EXPORTING
              ix_list_profil = e_list_profil.
          CLEAR : w_souro.
          MOVE p_souro TO w_souro.
          SUBMIT rvv50r10c WITH p_prnam  EQ w_souro
                           WITH p_lerul  EQ space
                           WITH st_ledat IN t_ledat
                           WITH st_vbeln IN t_vbak
                           WITH st_vstel IN t_vstel
                           EXPORTING LIST TO MEMORY AND RETURN.
          IF sy-subrc EQ 0.
            COMMIT WORK AND WAIT.
          ENDIF.
    You can also check the code in  FM OIO_RS_M_DELIVERY_2 for any more clarifications

  • Email submit does not work; print button does not work online

    I installed livecycle 8 from cs3 onto a windows 7, 64 bit laptop
    I created a sample form to see how it works  (sample form  http://neelyranch.com/dogbabysittingform.pdf )
    Inside the program the form fills nicely, the print button works to my local printer, but the email submit does nothing
    I saved and uploaded the file as pdf online and tried it from my browser (chrome)
    Neiher print nor email submit buttons work
    I saved it as reader extended via adobe 8 with no change
    So, ??? am I doing wrong here
    Just a quick edit here
    I ran the form in Safari, mozila and ie8
    in all three the print button did work online, but in all three the email submit did not.
    nothing worked in chrome

    Thanks for both of  the responses. If you did select send then I did not receive anything.  I did check chrome plugins and found a message requiring an adobe update for pdf 9.
    I updated the pdf reader which gave me an update to pdf 11
    I revisited the sample form in live cycle and the online print routine now works in chrome and ie8 but the send email does not send
    When I select the send button after completing all of the other fields, I get a message 'preparing to send ...' then a window pops up with nothng in it but a greyed out top heading row, then it disappears and that is it.
    Has to be something between the button and the email pgm that is not connecting (my default is gmail)
    Same result in both chrome and ie8 - zip.
    Suggestions?

  • Background saving does not work in background when it is part of an action

    I LOVE the new background saving function. I do agree with a nother post that it would be nice to have some kind of progress bar when in full screen mode though.
    The other thing I noticed is that if you make an action that has a "Save" command in it, it will NOT do that in the background but rather in the way of previous versions, with the progress bar window pop-up.

    Agree

  • Program not working ib background

    Moderator message: background/foreground/GUI problems = FAQ, please search before posting.
    Hi All,
    I have a program which is not working in background.It actuly takes the file and using GUI_upload i upload it into ITAb and then modify the database table based on this. But when i process this in foreground it working and updating the table.But when i scedule in background the job is getting over in 1-2 sec and not updating the table.
    Please help me. below is the code for your refrence:
    data:begin of i_tab occurs 0,
          Bp1 like DATAbase table,
          Bp2 like  database table,
         trf1 type string,
         trf2 type string,
         status type string,
      end of i_tab.
    data: BP_ver type STANDARD TABLE OF DATAbase table      with header line ,
          w_ver type  ZVERS_BUT050_CUR .
    DATA: it_tab type filetable,
        gd_subrc TYPE i,
        file_name TYPE string,
        path TYPE string.
    DATA : lw_file TYPE file_table.
    DATA: LIN TYPE I.
    *Input File
    SELECTION-SCREEN begin of block blk with frame title text-100.
    SELECTION-SCREEN SKIP 2.
    parameters : p_file like rlgrap-filename .
    SELECTION-SCREEN end of block blk.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      CLEAR:  file_name.
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
        EXPORTING
          window_title     = 'Select only Text File'
          default_filename = '*.txt'
          multiselection   = ' '
        CHANGING
          file_table       = it_tab
          rc               = gd_subrc.
      READ TABLE  it_tab INTO lw_file INDEX 1.
      file_name = lw_file.
      p_file = file_name.
    START-OF-SELECTION.
    *Upload the file
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          FILENAME                      = FILE_NAME
         FILETYPE                      = 'ASC'
       HAS_FIELD_SEPARATOR           = 'X'
      HEADER_LENGTH                 = 0
      READ_BY_LINE                  = 'X'
      DAT_MODE                      = ' '
      CODEPAGE                      = ' '
        TABLES
          DATA_TAB                    = i_tab
    EXCEPTIONS
       FILE_OPEN_ERROR               = 1
       FILE_READ_ERROR               = 2
       NO_BATCH                      = 3
       GUI_REFUSE_FILETRANSFER       = 4
       INVALID_TYPE                  = 5
       NO_AUTHORITY                  = 6
       UNKNOWN_ERROR                 = 7
       BAD_DATA_FORMAT               = 8
       HEADER_NOT_ALLOWED            = 9
       SEPARATOR_NOT_ALLOWED         = 10
       HEADER_TOO_LONG               = 11
       UNKNOWN_DP_ERROR              = 12
       ACCESS_DENIED                 = 13
       DP_OUT_OF_MEMORY              = 14
       DISK_FULL                     = 15
       DP_TIMEOUT                    = 16
       OTHERS                        = 17
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      loop at i_tab.
        if i_tab-status = 'Yes'.
          i_tab-status = 'V'.
        else.
          i_tab-status = 'I'.
        endif.
        modify i_tab.
      endloop.
      if i_tab is not INITIAL.
        select * from DATAbase table into CORRESPONDING FIELDS OF TABLE  BP_ver FOR ALL ENTRIES IN i_tab
          where PARTNER1 = i_tab-Bp1 and PARTNER2 = i_tab-bp2  .
      endif.
    *Update the table
      loop at BP_ver .
        clear i_tab.
        read TABLE i_tab  with key bp1 = BP_ver-PARTNER1 bp2 = BP_ver-PARTNER2  .
       if i_tab-bp1 = w_ver-PARTNER1 and i_tab-bp2 = w_ver-PARTNER2.
        BP_ver-PARTNER1 = i_tab-bp1 .
        BP_ver-PARTNER2 = i_tab-bp2 .
        BP_ver-Z_CURRENTLY_VALI = i_tab-status .
        modify BP_ver TRANSPORTING Z_CURRENTLY_VALI .
       endif.
      endloop.
      update DATAbase table from table bp_ver[] .
      if sy-SUBRC eq 0.
        commit work.
        message 'Table DATAbase table Updated Sucsussfully' type 'S'.
      else.
        message 'Table Not Updated !!! Check the file data or input' type 'S'.
      endif.
    Edited by: Thomas Zloch on Nov 12, 2010 11:03 AM

    Hi,
         Look at the coding in FM GUI_UPLOAD ... This does not work in background ....
    Batch mode is not supported
      IF sy-batch = 'X'.
        MESSAGE ID 'FES' TYPE 'E' NUMBER '002' RAISING NO_BATCH.
      ENDIF.
    Regards,
    Srini.

  • Submit and return exporting list to memory is not working in background

    Hi gurus,
    i am using submit statement and exporting list to memory. it works fine in foreground and i am able to get the output. but in case of background , it is not exporting the list.PLease help me on this.
    Thanks and regards,
    Rajeshwar

    Hello Rajeshwar,
    This is a duplicate thread. You have a thread with the same question.
    [list_to_memory is not working in background;
    Jayant Sahu

  • Row highlight does not work when class has a background-clolor

    This is more a CSS / javascript question but since the problem occurs in Apex I'll try my luck here.
    I try to implement a row highlight feature that worked in 3.2 but not in 4.0. The difference is that the style that is used for the table cells contains a background-color in the 4.0 template and it did not in 3.2.
    This is how it works.
    I created a report template with "before each row" : <tr onMouseOver="cOn(this);" onMouseOut="cOut(this);">
    The javascript does this:
    function cOn(td) {
       if(document.getElementById||(document.all && !(document.getElementById))) {
          if (td.previousSibling != null) {
              td.style.backgroundColor="#FFFF99";
              td.style.color="#000000";         
    }My thought was that td.style.backgroundColor="#FFFF99" would overrule the background color given by the class but when this happens from within javascript this does not work. Is this proper behaviour? Are there other methods that will work?

    Hi Rene
    If you are just looking for a row highlight on a mouse hover, it might be easier to place the following in the html header of the page:
    <style = text/css>
    .apexir_WORKSHEET_DATA tr:hover td {
    background-color: #FFFF99 !important;
    color: #000000 !important;
    </style>
    ~Andrew Schultz

  • TS1702 Maps program does not work. In standard it only shows a grid. If I ask for a route it shows start and end point and three route boxes but nothing else. It does show directions. If I switch to hybrid it shows to routes but no roads. Background is a

    Maps program does not work. In standard it only shows a grid. If I ask for a route it shows start and end point and three route boxes but nothing else. It does show directions. If I switch to hybrid it shows to routes but no roads. Background is a blur.

    Do you have a question? This is a user to user help forum. Apple is not here only other users like yourself. You don't report problems to Apple here.
    By the way, it might help if you indicated where you are located.
    To complain to Apple use http://www.apple.com/feedback/ipad.html

  • Android mobile does not work with submit fdf format

    I want to gather data by mobile device (Android) as JavaScript does not work well in this environment, I intend importing the gathered data into a report PDF form with JavaScript functions etc., however the Acrobat mobile reader does not appear to work with the submit function for sending data (FDF format) by E Mail.
    We are using Acrobat XI in most cases to gather this data and this works well, however we are experimenting with mobile options which are very limiting, and therefore we thought by just gathering the data on a mobile device we could import it into our working windows pdf form, our trials using this concept in a windows environment work, but we stumbled once we found that the submit button does not work in the android reader to send the FDF data.
    Does anyone know of a work around?
    Regards Mike

    FormsCentral can be a bit confusing, so I'll try to clarify some things. It allows you to work with two completely different types of forms: web forms and PDF forms. Web forms are HTML forms and are hosted on the FormsCentral server and loaded into and submitted via the user's browser, so web forms do require internet access.
    FormsCentral can also process submissions from PDF forms, and the forms can either originate from Acrobat or the FormsCentral designer, either the desktop app that comes with Acrobat 11 or the browser-based app. The FormsCentral designer allows you to create PDF forms with simple layouts, whereas Acrobat gives you much more flexibility. Designing a PDF form in FormsCentral can be helpful if you want to be able to use the same form for both a web form and a PDF form, allowing to to take advantage of each type at the same time, but you are not limited to PDF forms that are created by the FormsCentral designer.
    Regardless of how the PDF was created, it can be set up to submit the form data to the FormsCentral server, which is done using the same format as a web form. It is done securely using HTTPS. There are certain features that are supported with PDF forms that aren't supported by FormsCentral, but this is usually not a problem. The most significant limitation is the 500 field limitation, so some larger forms aren't possible.
    Once you have a PDF form created in Acrobat, you simply import it into FormsCentral and it gets uploaded to the FormsCentral server, where it is Reader-enabled, a submit button is automatically added, and is then downloaded so you can distribute it by placing it on your web site, sending by email, etc. So unlike web forms, FormsCentral does not host them for you.
    It is possible to use Acrobat to modify the PDF that you download, first by selecting in Acrobat "File > Save a Copy", opening the copy, and making the changes. This is often done to change the submit button (size, location, other properties) of the submit button that gets added. You can then Reader-enable in Acrobat if needed and distribute the form.
    Since it's a normal PDF form that is Reader-enabled, Reader users will be able to open it, fill it in, and save it at any time using Reader for Windows/Mac or Reader for Android/iOS. The latter currently only support submitting via email or to FormsCentral, as opposed to your own web server. Once the user has access to the internet, they can open the form and press the submit button. If the submit is successful, the FormsCentral server returns a response so the user gets some feedback, unlike with email "submits".
    Each submission is automatically stored in the responses table, which you and team members can view at any time. An individual response can be downloaded as a filled-in PDF, or you can download the entire table and import the data into a spreadsheet for further analysis. As mentioned earlier, you can set it up so that you and others can receive an email for each submission, and it can include the form data in the body of the email if wanted.
    Post again if you have any questions, or go to the FormsCentral forum here. The forum is generally very good, but sometimes questions about PDF forms are not answered entirely accurately, so it's sometime helpful to post here too.

  • In Photoshop CS6 Hue Saturation does not work with forground/background Jitter set at 100 percent no change in color is observed. Help

    In Photoshop CS6 Hue Saturation does not work with forground/background Jitter set at 100 percent no change in color is observed. I have Added a screen Shot of the Brush settings and a demonstration of what the brush produces.
    I also notice That when I make a pattern of a single color, when I fill a selection with the pattern I get a rainbow of different colors.
    I am running a 64 bit version of Photoshop from the CS6 Masters Collection
    I am on a PC with a Intel i7 1366 4 physical cores and 8 threads, 24 Gig of DDR memory, A Crucial 512 Gig SSD and a NVIDIA GTX 570 with 2 Gig of memory.
    The document size is 2100 by 1500 Pixels at 300 PPI   only two layers

    In Photoshop CS6 Hue Saturation does not work with forground/background Jitter set at 100 percent no change in color is observed. I have Added a screen Shot of the Brush settings and a demonstration of what the brush produces.
    I also notice That when I make a pattern of a single color, when I fill a selection with the pattern I get a rainbow of different colors.
    I am running a 64 bit version of Photoshop from the CS6 Masters Collection
    I am on a PC with a Intel i7 1366 4 physical cores and 8 threads, 24 Gig of DDR memory, A Crucial 512 Gig SSD and a NVIDIA GTX 570 with 2 Gig of memory.
    The document size is 2100 by 1500 Pixels at 300 PPI   only two layers

  • Header background color does not work

    Hi,
    I would like to change the background color of the header element, but it does not work as I imagined
    First of all, here is the HTML:
    <body>
    <div id="wraper">
      <header>
        <h1><span>Pacific</span> Coastal Highway</h1>
        <nav>
          <ul>
            <li>Home</li>
            <li>Big Sur</li>
            <li>Pfeiffer Beach</li>
            <li>Elephant Seals</li>
            <li>Morro Bay</li>
          </ul>
        </nav>
      </header>
      // ... some other HTML elements & content ...
    </body>
    So, within <header> element we have <h1> and <nav> elements, and within that <nav> element there is a list that is actually menu.
    Here it CSS code that refers to these elements:
    #wraper {
        width: 1200px;
        background-color: #FFFFFF;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px;
        border-right: 1px solid #000000;
        border-left: 1px solid #000000;
    body {
        margin: 0;
        background-color: #CBD2FB;
        font-family: "OpenSans Regular", "Gill Sans MT", Arial, "Times New Roman", sans-serif;
        color: #202020;
        background-image: -webkit-linear-gradient(270deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 11.91%,rgba(232,238,245,1.00) 25.91%,rgba(202,212,220,1.00) 100%,rgba(0,0,0,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(138,169,207,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(202,212,220,1.00) 100%);
        background-image: -moz-linear-gradient(270deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 11.91%,rgba(232,238,245,1.00) 25.91%,rgba(202,212,220,1.00) 100%,rgba(0,0,0,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(138,169,207,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(202,212,220,1.00) 100%);
        background-image: -o-linear-gradient(270deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 11.91%,rgba(232,238,245,1.00) 25.91%,rgba(202,212,220,1.00) 100%,rgba(0,0,0,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(138,169,207,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(202,212,220,1.00) 100%);
        background-image: linear-gradient(180deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 11.91%,rgba(232,238,245,1.00) 25.91%,rgba(202,212,220,1.00) 100%,rgba(0,0,0,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(138,169,207,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(202,212,220,1.00) 100%);
    h1 {
        margin-top: 0px;
        font-size: 48px;
        text-shadow: 1px 1px 2px #969696;
        padding-top: 32px;
    h1, h2, h3 {
        font-family: "Prociono Regular", "OpenSans Regular", "Gill Sans MT", "Times New Roman", Arial;
        color: #507AAD;
        text-align: center;
    h1 span {
        position: relative;
        top: -37px;
        left: 35px;
        font-family: GoodDog, Arial, "Times New Roman", "Gill Sans MT", sans-serif;
        font-size: 47px;
    header nav ul {
        margin-right: auto;
        margin-left: auto;
        list-style-type: none;
        padding-left: 0px;
        width: 705px;
        /* [disabled]margin-bottom: 10px; */
    nav ul li {
        float: left;
        padding: 10px;
        display: block;
        width: 110px;
        text-align: center;
        background-color: #A9A3FF;
        border-right: 1px solid #FFFFFF;
        border-radius: 23px;
        background-image: -webkit-linear-gradient(270deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 60.11%);
        background-image: -moz-linear-gradient(270deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 60.11%);
    background-image: -o-linear-gradient(270deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 60.11%);
        background-image: linear-gradient(180deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 60.11%);
        margin: 18px 5px;
    And, finally, here's how it looks:
    Now, I'd like to change the background color of the <header> element (to chage that white behind that <h1> and menu into some other color), so I just added the background color of the <header> element in CSS:
    header {
        background-color: #FF2D31;
    But, here is how it looks now:
    As you can see, although <nav> element with list (menu) is IN <header> element - the background color of <header> is just behind <h1> element.
    Do you know why it's happening, and what would be the best way to solve this problem?
    Thank you in advance.

    Ben Pleysier wrote:
    The problem is caused when floated children do not force the parent element to clear the floats.
    Nancy O. wrote:
    It may seem counter-intuitive but overflow:hidden prevents margin collapse on parent elements containing floats:
    The magic of “overflow: hidden” — Articles — Colin Aarts, freelance web developer
    I'm trying to figure out what happened (and why) in my example, where the problem occurred, but...
    I tried with inspecting elements with Firebug - to see what's what in case when there isn't overflow:hidden property that is related to <header> element in this example from the first post:
    As you can see in the picture - <header> element is only that blue area containing <h1> element, and although <nav> element (with the <ul> element inside) is IN <header> element - it is not shown within the blue area, as it is not within <header> element.
    As for the <h1> element which is inside of the <header> element, when I select it - it looks like this:
    Now, purple area indicates the padding-top of <h1> element, and I guess that yellow area which indicates the margin is actually browser's default margin of the <h1> element.
    Next, confusing is when I select <nav> element:
    Although <nav> element is selected - there is no that blue area indicating where is that element on the web-page... ?
    Next, when I select <ul> element, there is only yellow area indicating margin -  I guess that yellow area which indicates the margin is actually browser's default margin of the <ul> element.
    When I select <li> element - it's the same case as with <nav> element there is no that blue area indicating where is that element on the web-page... ?
    Finally, when I select <a> element - it looks like this:
    All in all - inspecting all <header> element and the elements within it didn't help me to see what and why this is happening (with the background color of the header element). I think the problem is in me, I'll wait a few days and maybe then things become clearer in my mind
    Sorry for my bad English.
    Again, thank you all!

  • Workflow not working in Background Processing

    Hi All,
    I am relatively new to Workflow.  Currently, I am creating Deliveries (preferably in background) once a Sales Order is created.  I am using an ABAP Class as the object method to submit the sales order number to the delivery processing method (which just submits basic information to standard SAP transaction VL04).  I found that if the execution of the delivery creation task is not in Background Processing (the user manually kicks off the Delivery creation in SBWP) the workflow works as expected and creates the deliveries.  However, if the Background Processing is checked, the workflow does not process and does not create a delivery.  Is there any specific reason as to why the workflow will not work in background?
    Any help you can give would be greatly appreciated.  Thanks.
    John

    Hi,
    John
    See to process a Back ground task, there should be a proper parameter flow.
    Please look at the import parameters in the method you are using to process the back ground task..
    If proper import parameters are passed then the task will work
    This should help..
    Thanks,
    Shanky

  • ICloud on my iPad does not work in iOS 8

    Hi all,
    I have a problem with iCloud after upgrade to iOS 8 on my iPad. I have updated from IOS 7 to 8 without turning on the iCloud Drive feature (because of the Mavericks on my Macbook Pro in that time).
    Applications like “Pages”, “Numbers”, “MindNode Pro” or “Textastic” (and it seems that all applications using documents in iCloud) stopped working. For example MindNode Pro tells me that "iCloud is not configured on my device”.
    I have tried turning off/on iCloud, resetting the device and the problem is still there - I am not able to access my iCloud documents on my iPad (the Mac OS X versions of the apps works fine). I have upgraded to Yosemite, so I have also turned on the iCloud drive hoping that it will solve the problem… it does not :-(
    Maybe there is some problem with my account, because the Family sharing behaves strange (it created all the calendars, memos, photo streams, etc. twice), and there is a big issue with ENABLING the iCloud DRIVE - this process NEVER ENDS — When I turn the iCloud Drive “on” on my iPad the window with “Turning On iCloud Drive…”. Even after few hour of waiting, this window does not disappear. I can close the preferences app and continue to work with other apps, but the problem with documents in iCloud remains.I have tried hard-resetting my iPad, turning off/on my iPad, disconnect it from my apple id a login again, reinstalling the applications and nothing helps. I am currently running the latest iOS version.
    Another strange thing (maybe related to this problem) is, that in Yosemite I cannot se all the folders in my iCloud drive, here is an example from my Finder:
    Here from MindNode Pro (Mac OS X version) - notice that it is able to open its folder, which is not listed in the iCloud (see above):
    This is what I can see through the icloud.com website (there are items which are not listed in the Mac OS X):
    So, I think that my iCloud is probably in some inconsistent state...
    I am not able to find any Apple support email - I have tried [email protected], but it does not work (email returned with message "this email address aren’t monitored”).
    Zdenek

    Here's a better version:
    When I try to initiate or receive a call via Sony MDR-EX100iP headphones/mic (that worked perfectly with iOS 6 and iOS 7), on iPhone 4S running iOS 8, I hear crackling static and the person on the other end of the line can't hear me.
    I suppose that because I can make a hands-free call using the Apple headphones/mic, Apple will tell me that there's not an issue.  However, the Sony MDR-EX100iP headphones/mic worked much better for me than the Apple headphones/mic, so I'm in a bit of a quandry...
    BTW - It's really lame that you can't delete or even edit a posting once you submit it...

Maybe you are looking for

  • Table Of Contents - Level Formatting

    InDesign CS3 Ive created a long document that catalogs all of my company's graphic options for our motorcycles. Each page contains 2 graphics along with their respective part number and graphic name. The part number and graphic name for each graphic

  • Not able to connect to SQL 2005

    All, I am not able start WLI domain with weblogic XA drivers to sql 2005. It fails during startup. I was able to create weblogic XA data source on another weblogic instance( NOT WLI) after it was up and running. I was able to select from XA datasourc

  • How to create reservation for a particular material through Production orde

    Hi gurus How to create the reservation manually and through production order? Kaisar

  • Simple type mismatch error

    hello all, i wonder why below program throwing an error when i assign child class obj to base class object as baseobj=childoneobj; the error i am getting is Type mismatch: cannot convert from childone to base i am new to java. pls help me out regards

  • Unable to locate Apple TV on my TV

    Unable to locate appletv on my tv?