Help with moving between custom screens in a Standard Transaction

All,
I'm working with a standard transaction, but in this transaction, the I'm having 2 tabs of customized screens. In each of the screen, I have 1 mandatory fields to be filled. If the user only fill in the mandatory field of the first screen and click save, I need to display an error message and also display the second screen automatically? How can I do this? I tried to use CALL SCREEN 9200 but the system keep displaying the error "Screen SAPLXQQM 9200 must not be in Include screen".
Can anyone help me on this one? Thanks in advance.

You must don't calling screen 9200. I mean delete lines code
CALL SCREEN 9200.
from your program.
This code can be placement in screen fiew logic only!
Instead, set code of needed tab of tabstrip using FM. Program process this command and automaticly call tab with your 9200-subscreen.

Similar Messages

  • Needing help with moving pictures around

    I am in need of help in moving pictures and images around
    dreamweaver document window. My older brother gave me his computer
    witch has dreamweaver MX (he is in Irag) so i can start building
    building my own websites. I went to borders and bought a book on
    dreamweaver MX. Here is where I am having a problem with: when ever
    I bring a picture into the document window I can not move the
    picture around the document window. The book say "place the
    insertion point where you want the image to appear" but there is no
    insertion point. There is just a straight line as if I am about to
    type something. It's almost like I am in microsoft word. If I take
    the mouse over the picture , and then left click and try to drag
    the picture to the location I want it in, it doesn't move. Can
    somebody PLEASE help me out with this problem. Thanks Jical

    Nadia gave you a good place to start… Here is what you
    have to understand. Web pages are based on specific code that tells
    the viewer’s browser how to display the page. There has to be
    something that says, “Put this picture in the lower right
    hand corner, and center this image in the middle of the
    screen”
    Then there are further instructions that say “Put this
    text here and that link there”. So Dreamweaver (and most
    other web developing programs) do not work like Illustrator or
    PowerPoint where you can simply grab a picture and slide it around
    the page.
    In its simplest form you might drag an image onto the
    Dreamweaver design view page and click on the center button in the
    properties dialog.
    Then type in text and center it, left justify, right justify,
    etc. Add another picture and so on and you could possibly create a
    passable web page. Now click on the Code view button and see what
    code Dreamweaver generated in order to do all of this.
    That is what you will really need to understand before you
    can really get proficient at web design.
    At the next level, you can start to add in tables. These
    actually are similar to tables in Word. You can put text in one
    cell, images in another, colored backgrounds, thick and thin
    borders with contrasting colors, and you can start to see how to
    “contain” your images as Nadia suggests.
    Now look at the code again and see how these cells are
    defined around your content.
    Once you understand how this works, you will get much more
    comfortable with Dreamweaver. You will just have to get used to the
    idea that it doesn’t work like all of the publishing software
    that is only dependant upon its own format for layout. HTML is
    dependant upon the many browsers, computers, operating systems,
    user preferences, and a million other unknown factors.
    That’s why this forum has more than 91,000 posts…

  • Help with Refreshing and Calling Screens

    Hi everyone.  I have somewhat of a simple ABAP program in which the user will enter data on Selection-Screen 1000.  This will then be loaded into an Object Oriented ALV Grid for display purposes only (screen 0100).  At any time, the user may use the back button on the ALV Grid Screen; which will take them from screen 0100 to screen 1000(Selection Screen).  Lets assume the user does not want to go back to the original selection screen from the ALV Grid Screen; they entered the information correctly and want to continue processing using a custom button I've created which will continue to process the record of data into a BW ODS.  This process works, but now I would like to use the write statement once the custom button is clicked to show a summary of the data I am inserting into the ODS after the data has been inserted.  The problem is, the title of the ALV Grid still shows and the Write statement is processed, but not shown on the screen.  I've been trying to refresh the screen with set screen and call screen combinations, but no luck.  Any Help would be appreciated.  Thanks!
    Here is a sample of the code below:
    *& Report  ZINC_DSP_SALES_INCRASE
    REPORT  ZINC_DSP_SALES_INCREASE MESSAGE-ID zsm.
    INCLUDE <icon>.
    DATA: credit_itab type standard table of /bic/azincosvi00,
          wa_credit like line of credit_itab,
          alv_itab type standard table of /bic/azincosvi00,
          wa_alv like line of alv_itab.
    DATA: ok_code LIKE sy-ucomm,
          save_ok LIKE sy-ucomm,
          incent type table of /bic/azincosvi00,
          g_container TYPE scrfname VALUE 'Increase DSP Sales',
          grid1 TYPE REF TO cl_gui_alv_grid,
          gs_layout TYPE lvc_s_layo,
          g_custom_container TYPE REF TO cl_gui_docking_container.
    DATA: active_guid like /bic/mzguid_dsr,
          UNIQUEKEY LIKE /BIC/AZINCOSVI00-/BIC/ZRCRDKEY,
          rpt_per_rec like  /BIC/MZRPTPRDCR,
          dsrcode like /bic/mzdsrcode-/bic/zdsrcode,
          payrec like /bic/mzsubcode.
    CLASS lcl_event_receiver DEFINITION DEFERRED.
    CLASS lcl_event_receiver DEFINITION.
      PUBLIC SECTION.
        METHODS:
        handle_toolbar
            FOR EVENT toolbar OF cl_gui_alv_grid
                IMPORTING e_object e_interactive,
        handle_user_command
            FOR EVENT user_command OF cl_gui_alv_grid
                IMPORTING e_ucomm.
        PRIVATE SECTION.
    ENDCLASS.
    CLASS lcl_event_receiver IMPLEMENTATION.
    This will create the toolbar
      METHOD handle_toolbar.
       DATA: ls_toolbar  TYPE stb_button.
       CLEAR ls_toolbar.
       MOVE 3 TO ls_toolbar-butn_type.
       APPEND ls_toolbar TO e_object->mt_toolbar.
    append an icon to show booking table
       CLEAR ls_toolbar.
       MOVE 'CREATE' TO ls_toolbar-function.
       MOVE ICON_OKAY TO ls_toolbar-icon.
       MOVE ' ' TO ls_toolbar-disabled.
       APPEND ls_toolbar TO e_object->mt_toolbar.
      ENDMETHOD.
    METHOD handle_user_command.
      CASE e_ucomm.
      WHEN 'CREATE'.
      Insert /bic/azincosvi00 from wa_credit.
      CALL METHOD grid1->free.
      SET SCREEN '200'.
      WHEN 'OTHERS'.
      " DO NOTHING
      ENDCASE.
      ENDMETHOD.
    ENDCLASS.
    Data: event_receiver TYPE REF TO lcl_event_receiver.
    START-OF-SELECTION.
    Selection-Screen BEGIN OF BLOCK 1 with frame title text-001.
    Parameters:  start   like /bic/azincosvi00-BILL_DATE.
    Selection-Screen END OF BLOCK 1.
    Selection-Screen BEGIN OF BLOCK 3 with frame title text-003.
    Parameters: guid         type /BIC/OIZGUID_DSR,
                pcode        type /BIC/OIZPGMCODE,
                scode        type /BIC/OIZSUBCODE,
                reason       type /BIC/OIZEXCPTC,
                quantity(5)  type n,
                discount     type /BI0/OISUBTOTAL_4.
    Selection-Screen END OF BLOCK 3.
    END-OF-SELECTION.
    IF quantity <> '00000'.
       if pcode <> 'SCTMS'.
          message e000 with 'Quantity can only be used with seating spiff'.
       endif.
    ENDIF.
    GET REPORT PERIOD INFO using today's date.
      select single * from /bic/mzrptprdcr INTO rpt_per_rec
          where calyear  = sy-datum(4)
            and /bic/zpgmcode  = pcode
            and ( /BIC/ZRPPRDSTR <= start
                  and /BIC/ZRPPRDEND >= start ) .
      if sy-subrc <> 0.
        message e000 with
        'Report Period NOT FOUND for' pcode ' ' sy-datum(4).
      endif.
    Select Active Guid based upon user entry on selection-screen
    Select single * from /bic/mzguid_dsr into active_guid
                                      where /bic/zguid_dsr = guid
                                      and   /bic/zdsrstat = 'A'.
        If sy-subrc <> 0.
        MESSAGE e000 WITH 'Please enter a valid GUID'.
        ENDIF.
    Select DSR Code based upon a valid guid entered
    Select single /bic/zdsrcode from /bic/mzdsrcode into dsrcode
                                     where /BIC/ZGUID_DSR = guid
                                     and   /BIC/ZDSRCDST = 'A'.
        If sy-subrc <> 0.
        MESSAGE e000 WITH 'GUID entered does not have an active dsr code.'.
        ENDIF.
    Select MAX( /BIC/ZRCRDKEY ) FROM /BIC/AZINCOSVI00 INTO WA_CREDIT-/BIC/ZRCRDKEY.
    UNIQUEKEY = WA_CREDIT-/BIC/ZRCRDKEY + 1.
    WA_CREDIT-/BIC/ZRCRDKEY = UNIQUEKEY.
    WA_CREDIT-PO_NUMBER = UNIQUEKEY.
    WA_CREDIT-/BIC/ZERDAT = SY-DATUM.
    WA_CREDIT-BILL_DATE = SY-DATUM.
    WA_CREDIT-/BIC/ZRPPRDSTR = rpt_per_rec-/BIC/ZRPPRDSTR.
    WA_CREDIT-/BIC/ZRPPRDEND = rpt_per_rec-/BIC/ZRPPRDEND.
    WA_CREDIT-/BIC/ZCUBPRCDT = SY-DATUM.
    WA_CREDIT-/BIC/ZRPTPRDCR = rpt_per_rec-/BIC/ZRPTPRDCR.
    WA_CREDIT-/BIC/ZINCPYPRC = '00000000'.
    WA_CREDIT-/BIC/ZGUID_DSR = ACTIVE_GUID-/bic/zguid_dsr.
    WA_CREDIT-/BIC/ZDSRCODE = dsrcode.
    WA_CREDIT-/BIC/ZPGMCODE = PCODE.
    WA_CREDIT-/BIC/ZUNASSIGN = 'N'.
    WA_CREDIT-/BIC/ZSUBCODE = SCODE.
    WA_CREDIT-/BIC/ZSITE_ICR = ACTIVE_GUID-/BIC/ZSITE_IRG.
    WA_CREDIT-/BIC/ZSUSPEND = 'N'.
    WA_CREDIT-/BIC/ZSUSPNDR = ' '.
    WA_CREDIT-/BIC/ZSITE_IRG = ACTIVE_GUID-/BIC/ZSITE_IRG.
    WA_CREDIT-/BIC/ZSITE_CST = ' '.
    WA_CREDIT-/BIC/ZINCBONUS = '0.00'.
    WA_CREDIT-STAT_CURR = 'USD'.
    WA_CREDIT-DOC_CURRCY = 'USD'.
    WA_CREDIT-SALES_UNIT = 'ST'.
    WA_CREDIT-CALYEAR =  SY-DATUM(4).
    WA_CREDIT-/bic/ZCASEID = SY-UNAME.
    WA_CREDIT-/bic/ZSLSRSN = REASON.
    WA_CREDIT-RECORDMODE = ' '.
    *Depending on Program Code, populate the amounts to be paid.
    Data: fivepercent type p.
          fivepercent = '0.05'.
    If pcode = 'SCW5S' or pcode = 'SCTMS'.
    Select single * from /bic/mzsubcode into payrec
                         where /bic/zpgmcode = pcode
                         and /bic/zsubcode = scode
                         and CALYEAR = sy-datum(4).
          if sy-subrc <> 0.
            write: / '**************  ERROR  ***********************',
                   / '** Missing Program Information for ',
                   /  pcode,
                      scode,
                      sy-datum(4),
            exit.
            endif.
    ENDIF.
    If pcode = 'SCW5S'.
    WA_CREDIT-/BIC/ZINCUSDDS = discount.
    WA_CREDIT-/BIC/ZPAYAMTUS = WA_CREDIT-/BIC/ZINCUSDDS * payrec-/bic/zpayper / 100.
    WA_CREDIT-SUBTOTAL_4 = discount.
    WA_CREDIT-/BIC/ZINC_QTY = ' '.
    Endif.
    If pcode = 'SCTMS'.
    WA_CREDIT-/BIC/ZPAYAMTUS = quantity * payrec-/bic/zpayper / 100.
    WA_CREDIT-/BIC/ZINCUSDDS = '0.00'.
    WA_CREDIT-SUBTOTAL_4     = '0.00'.
    WA_CREDIT-/BIC/ZINC_QTY = quantity.
    Endif.
    If pcode = 'SCTB'.
    WA_CREDIT-/BIC/ZPAYAMTUS = '0.00'.
    WA_CREDIT-/BIC/ZINCUSDDS =  DISCOUNT.
    WA_CREDIT-SUBTOTAL_4 =  DISCOUNT.
    WA_CREDIT-/BIC/ZINC_QTY = ' '.
    Endif.
    *Create ALV Grid to show the user what the record will look like in which they are creating.
    Append wa_credit to alv_itab.
    CALL SCREEN 100.
    *&      Module  PBO  OUTPUT
          text
    MODULE alv_pbo OUTPUT.
      SET PF-STATUS 'MAIN100'.
      SET TITLEBAR  'MAIN100'.
      IF g_custom_container IS INITIAL.
    CREATE OBJECT grid1
    EXPORTING i_parent = g_custom_container.
        CALL METHOD grid1->set_table_for_first_display
          EXPORTING
            i_structure_name = '/bic/azincosvi00'
           CHANGING
            it_outtab        = alv_itab.
        CREATE OBJECT event_receiver.
        SET HANDLER event_receiver->handle_user_command FOR grid1.
        SET HANDLER event_receiver->handle_toolbar FOR grid1.
        CALL METHOD grid1->set_toolbar_interactive.
      ENDIF.
    ENDMODULE.                 " PBO  OUTPUT
    *&      Module  PAI  INPUT
          text
    MODULE alv_pai INPUT.
      save_ok = ok_code.
      CLEAR ok_code.
      CASE save_ok.
        WHEN 'EXIT'.
          LEAVE PROGRAM.
        WHEN 'CANCEL'.
          LEAVE PROGRAM.
        WHEN 'BACK'.
          CALL METHOD grid1->free.
          CALL SELECTION-SCREEN '1000'.
        WHEN OTHERS.
        " DO NOTHING.
      ENDCASE.
    ENDMODULE.                " PAI  INPUT
    *&      Module  200_PBO  OUTPUT
          text
    MODULE 200_PBO OUTPUT.
      Write at 5: 'Increase DSP Sales'.
      Skip 1.
      Write at 5: 'USER'.
      Write at 15:'PROGRAM CODE'.
      WRITE AT 25:'SUB CODE'.
      WRITE AT 37:'DISCOUNTED SALES'.
      WRITE AT 67:'PAY AMOUNT US'.
      WRITE AT 80:'REASON'.
    ENDMODULE.                 " 200_PBO  OUTPUT

    There are some problems with ok_code, you need to assign sy-ucomm at each module.  Also the main problem was that you needed leave to list-processing and suppress dialog before writing.  However, when you do this the screens calls change a little. You also needed to use the container correctly.  Apply the correctons below and you'll be all set. Unfortunaley you will have to play around with calling the sel. screen (1000) from screen 100, I don't think call sel. screen 1000 will work properly there (you might need a custome screen instead).  The user may be okay with kicking back out to sa38 after the alv display, however.  Good luck and don't listen to the clowns' comments above. I once worked in that circus,    Hey Guys.
    Instead of this:
    METHOD handle_user_command.
    CASE e_ucomm.
    WHEN 'CREATE'.
    Insert /bic/azincosvi00 from wa_credit.
    CALL METHOD grid1->free.
    SET SCREEN '200'.
    WHEN 'OTHERS'.
    " DO NOTHING
    ENDCASE.
    ENDMETHOD.
    <b>DO THIS:</b>
      METHOD handle_user_command.
        CASE e_ucomm.
          WHEN 'CREATE'.
            Insert /bic/azincosvi00 from wa_credit.
            CALL SCREEN 200.
          WHEN 'OTHERS'.
            " DO NOTHING
        ENDCASE.
      ENDMETHOD.                    "handle_user_command
    <b>Instead of this:</b>
    *Create ALV Grid to show the user what the record will look like in which they are creating.
    Append wa_credit to alv_itab.
    CALL SCREEN 100.
    <b>DO THIS:</b>
      IF g_custom_container IS INITIAL.
        CREATE OBJECT g_custom_container EXPORTING dynnr = '100'
                                          repid = sy-cprog
                                          ratio = '95'.
      ENDIF.
      IF grid1 IS INITIAL.
        CREATE OBJECT grid1 EXPORTING i_parent = g_custom_container.
      ENDIF.
      CREATE OBJECT event_receiver.
      SET HANDLER event_receiver->handle_user_command FOR grid1.
      SET HANDLER event_receiver->handle_toolbar FOR grid1.
      SET SCREEN 100.
      CALL SCREEN 100.
    <b>Instead of this:</b>
    MODULE alv_pbo OUTPUT.
    SET PF-STATUS 'MAIN100'.
    SET TITLEBAR 'MAIN100'.
    IF g_custom_container IS INITIAL.
    CREATE OBJECT grid1
    EXPORTING i_parent = g_custom_container.
    CALL METHOD grid1->set_table_for_first_display
    EXPORTING
    i_structure_name = '/bic/azincosvi00'
    CHANGING
    it_outtab = alv_itab.
    CREATE OBJECT event_receiver.
    SET HANDLER event_receiver->handle_user_command FOR grid1.
    SET HANDLER event_receiver->handle_toolbar FOR grid1.
    CALL METHOD grid1->set_toolbar_interactive.
    ENDIF.
    ENDMODULE. " PBO OUTPUT
    <b>DO THIS:</b>
    MODULE alv_pbo OUTPUT.
      SET PF-STATUS 'MAIN100'.
      SET TITLEBAR  'MAIN100'.
    CALL METHOD grid1->set_table_for_first_display
      EXPORTING
         i_structure_name = '/bic/azincosvi00'
      CHANGING
         it_outtab = alv_itab.
      CALL METHOD grid1->set_toolbar_interactive.
    ENDMODULE.                 " PBO  OUTPUT
    <b>Instead of this:</b>
    MODULE alv_pai INPUT.
    save_ok = ok_code.
    CLEAR ok_code.
    CASE save_ok.
    WHEN 'EXIT'.
    LEAVE PROGRAM.
    WHEN 'CANCEL'.
    LEAVE PROGRAM.
    WHEN 'BACK'.
    CALL METHOD grid1->free.
    CALL SELECTION-SCREEN '1000'.
    WHEN OTHERS.
    " DO NOTHING.
    ENDCASE.
    ENDMODULE. " PAI INPUT
    <b>DO THIS:</b>
    MODULE alv_pai INPUT.
      ok_code = sy-ucomm.
      CASE ok_code.
        WHEN 'EXIT'.
          LEAVE PROGRAM.
        WHEN 'CANCEL'.
          LEAVE PROGRAM.
        WHEN 'BACK'.
          CALL METHOD grid1->free.
          LEAVE PROGRAM.
    *       CALL SELECTION-SCREEN '1000'.
        WHEN OTHERS.
          " DO NOTHING.
      ENDCASE.
    ENDMODULE.                " PAI  INPUT
    <b>Instead of this:</b>
    MODULE 200_PBO OUTPUT.
    Write at 5: 'Increase DSP Sales'.
    Skip 1.
    Write at 5: 'USER'.
    Write at 15:'PROGRAM CODE'.
    WRITE AT 25:'SUB CODE'.
    WRITE AT 37:'DISCOUNTED SALES'.
    WRITE AT 67:'PAY AMOUNT US'.
    WRITE AT 80:'REASON'.
    ENDMODULE. " 200_PBO OUTPUT
    <b>DO THIS:</b>
    *Take care of all your list output here
      LEAVE TO LIST-PROCESSING.
      SET PF-STATUS 'MAIN200'.
      SET TITLEBAR  'MAIN200'.
      SUPPRESS DIALOG.
      WRITE AT 5: 'Increase DSP Sales'.
      SKIP 1.
      WRITE AT 5: 'USER'.
      WRITE AT 15:'PROGRAM CODE'.
      WRITE AT 25:'SUB CODE'.
      WRITE AT 37:'DISCOUNTED SALES'.
      WRITE AT 67:'PAY AMOUNT US'.
      WRITE AT 80:'REASON'.
    ENDMODULE.                 " 200_PBO  OUTPUT
    <b>Add Moule:</b>
    MODULE 200_pai INPUT.
      ok_code = sy-ucomm.
      CASE ok_code.
        WHEN 'EXIT'.
          LEAVE PROGRAM.
        WHEN 'CANCEL'.
          LEAVE PROGRAM.
        WHEN 'BACK'.
          CALL SCREEN 100.
        WHEN OTHERS.
          " DO NOTHING.
      ENDCASE.
    ENDMODULE.                 " 200_PAI  INPUT

  • How can I get some help with Verizon's customer service?

    I want to preface this by stating that this is the first time in the 10 years in which I've been a Verizon wireless customer, that I've had a problem that cannot be resolved to my satisfaction.  My issue started with a Verizon Wireless Stores in Bethlehem, PA.  I asked one of the sales clerks for some assistance (which I now regret).  My question to her was that I simply wanted to be able to connect my home laptop computer to the internet data on my mobile plan. Without even discussing the different options, I was "told" I needed to purchase a Mobile Hotspot Device (for $69.99, but just $20 after rebate!).  I told the clerk I didn't want to have to pay an additional bill every month and didn't want something that wasn't absolutely necessary.  She neglected to give me the more costly details, like the fact that it would require a 2 year contract on the device, and it would also cost me an additional $20 per month.  She knew I wasn't really sure what the most cost-effective option was, so I trusted her knowledge.  I even had my husband speak to her over the phone about the device, since he's more savvy about technology than I am.  The clerk spoke with him the entire time she completed my transaction, and when she rang the sale up, she did not have me sign anything.  She handed me the receipts, and told me I had 14 days to decide If I wanted to keep the device.  When I got home and tried to use it, it would not connect to my computer.  I took it to a local Verizon store on my lunch break one day and they looked into the transaction.  They told me it was never put on my account; it was charged to someone else's account in error.  I had to go back to the store where I originally purchased it.  I wasn't able to get back to the original store right away, but I made sure to get there by the 14th day.  It took two store managers to look at my account and figure out the error.  They fixed it, but no one apologized to me for the inconvenience; they simply told me they could activate the device for me, or if I didn't want it any more, they would take it back (minus the $35 restocking fee). I took issue with the restock fee, because the store made the error by not giving me the full information at time of purchase, and then not charging it to my account so that I could try it out for 14 days.  I was very upset that the manager refused to remove the restocking fee due to "policy" and that I "signed a contract" and I had to pay it.  I argued that she should make an exception in this case, because I was inconvenienced.  I told her if she valued my future business at her store, she would reconsider.  She refused to budge and told me that I didn't need to shop in her store any more.  I thought that was quite rude and insulting. So, I took all of my original receipts, along with the receipt that indicated that she refunded the $69.99 plus tax (minus the $35 restock fee).  I left the store quite upset, but figured there wasn't much else I could say to her. Meanwhile, it's days later and my bill still shows the entire amount of $74 for the mobile hot spot device still on there.  There is no credit for the return at all.  I called customer service on my lunch break yesterday, and was on the phone for 45 min with a "Kendra R" to no avail.  The entire call, she kept putting me on hold, and my bill was still not straightened out. When I asked to speak with a supervisor or manager, she said there was no one else available.  Later that afternoon, I got an automated call (that left a voice message) from Verizon Customer Service to do a survey on my customer service experience.  I did the survey and explained that my problem was not resolved and I would like a call back.  No one has called me back yet, and I am stuck with no resolution to my problem.  Now the Verizon store has the device back, and I still have the entire amount for it on my bill.  Can you help me please?

    Nope, it was a Verizon Wireless Store.  I went in there in the first place because I trusted the Company for their professionalism, but I've been let down badly.  I posted my story on here because I'm hoping to be able to get the attention of someone from Customer Service.  It seems like the only way you can actually speak with a live person who knows what they are doing, is when you stop paying your bill on time.  After you pay your bill, they transfer you to a poorly trained "rep" that has no authority to handle anything important. I'm actually a pretty patient person, but when it takes someone over 45 min mostly just to keep me on hold, and then tell me they can't help me, I'm not really impressed with their idea of customer service.

  • Help with hours between two dates

    Hi I need help with the below query
    select count(*),a.col1,max(a.dt),min(a.dt)
    from tab1 a
    where a.dt > to_date('01-JUL-08','dd-mon-yyyy')
    group by col1
    having count(*) >=2
    and (max(a.dt) - min(a.dt))* 24*60*60 > 360;
    I am trying to pull the records with more than 2 entries, and having more than 6 hrs difference between max date and min date. When I am trying to execute this I am getting an error at "(max(a.dt) - min(a.dt))* 24*60*60 > 360".
    any ideas how can I pull the records more than 6 hrs?
    Thanks in advance!

    Sorry guys...here is the erros i am getting
    ORA-00932: inconsistent datatypes: expected INTERVAL DAY TO SECOND got NUMBER
    my version : 9.2
    SQL>
    SQL> @ver
    BANNER
    Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production
    PL/SQL Release 9.2.0.8.0 - Production
    CORE    9.2.0.8.0       Production
    TNS for Solaris: Version 9.2.0.8.0 - Production
    NLSRTL Version 9.2.0.8.0 - Production
    SQL>
    SQL>
    SQL> --
    SQL> drop table tab1;
    Table dropped.
    SQL> create table tab1 as
      2    select 'stin_8723646' as col1, to_date('7/22/2008 5:48:32 AM', 'mm/dd/yyyy hh:mi:ss AM') as dt from dual union all
      3    select 'stin_8723646', to_date('7/22/2008 1:34:12 PM', 'mm/dd/yyyy hh:mi:ss AM') from dual union all
      4    select 'stin_8723646', to_date('7/22/2008 3:16:25 PM', 'mm/dd/yyyy hh:mi:ss AM') from dual union all
      5    select 'stin_8723647', to_date('7/22/2008 1:10:07 AM', 'mm/dd/yyyy hh:mi:ss AM') from dual union all
      6    select 'stin_8723647', to_date('7/22/2008 4:19:00 AM', 'mm/dd/yyyy hh:mi:ss AM') from dual union all
      7    select 'stin_8723647', to_date('7/22/2008 9:52:44 AM', 'mm/dd/yyyy hh:mi:ss AM') from dual;
    Table created.
    SQL>
    SQL> alter session set nls_date_format = 'mm/dd/yyyy hh:mi:ss am';
    Session altered.
    SQL>
    SQL> select * from tab1;
    COL1         DT
    stin_8723646 07/22/2008 05:48:32 am
    stin_8723646 07/22/2008 01:34:12 pm
    stin_8723646 07/22/2008 03:16:25 pm
    stin_8723647 07/22/2008 01:10:07 am
    stin_8723647 07/22/2008 04:19:00 am
    stin_8723647 07/22/2008 09:52:44 am
    6 rows selected.
    SQL>
    SQL> --
    SQL> select
      2    count(*),
      3    a.col1,
      4    max(a.dt),
      5    min(a.dt)
      6  from tab1 a
      7  where a.dt > to_date('01-JUL-08','dd-mon-yyyy')
      8  group by col1
      9  having count(*) >=2
    10  --and (max(a.dt) - min(a.dt))* 24*60*60 > 360
    11  and (max(a.dt) - min(a.dt))* 24 > 6;
      COUNT(*) COL1         MAX(A.DT)              MIN(A.DT)
             3 stin_8723646 07/22/2008 03:16:25 pm 07/22/2008 05:48:32 am
             3 stin_8723647 07/22/2008 09:52:44 am 07/22/2008 01:10:07 am
    SQL>
    SQL>isotope

  • Help with Java Printing-Custom paper sizes

    Hi,
    I'm trying to print documents with custom paper sizes out of java.
    I can print fine when I don't try to set the MediaSize to a custom size or when I use already named constants like: "MediaSizeName.JIS_B4"
    The error message I get is this:
    java.lang.ClassCastException
         at javax.print.attribute.AttributeSetUtilities.verifyAttributeValue(Unknown Source)
         at javax.print.attribute.HashAttributeSet.add(Unknown Source)
         at hello.Printy.printDocument(Printy.java:103)
         at hello.Printy.main(Printy.java:135)
    The offending line(103) looks like this:
    pras.add(new MediaSize(1,10,MediaSize.INCH ));The function that its from looks like this:
    public  void printDocument()
    try
              System.out.println("input file name is");
         System.out.println(inputFileName);
    PrintRequestAttributeSet pras = new HashPrintRequestAttributeSet();
    DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;
    PrintService printService[] = PrintServiceLookup.lookupPrintServices(flavor, pras);
    PrintService defaultService = PrintServiceLookup.lookupDefaultPrintService();
    PrintService printPrintService = null;
    // didn't work pras.add(new MediaSize(1,10,MediaSize.INCH) );
    PrintService service = ServiceUI.printDialog(null, 200, 200,printService, defaultService, flavor, pras);
    if (service != null)
         System.out.println("There is a service aunty-may!!");
    DocPrintJob job = service.createPrintJob();
    FileInputStream fis = new FileInputStream(getInputFileName());
    DocAttributeSet das = new HashDocAttributeSet();
    //pras.add(new MediaSize((float)3.25, (float)4.75, Size2DSyntax.INCH ) );
    // - works
    //pras.add(MediaSizeName.JIS_B4);
    pras.add(new MediaSize(1,10,MediaSize.INCH ));
    //pras.add(new MediaSize(1,10,MediaSize.INCH) );
         System.out.println("Doc has been set to custom size");
    Doc doc = new SimpleDoc(fis, flavor, null);
    job.print(doc, pras);
         System.out.println("any doc for you?");
    catch (Exception e)
    e.printStackTrace();
    }Any help with this would be greatly appreciated. I'm new to java but I've programmed a bunch in c++.

    Hmm ... no real help, but I found this note in the API:
    MediaSize is not yet used to specify media. Its current role is as a mapping for named
    media (see MediaSizeName). Clients can use the mapping method
    MediaSize.getMediaSizeForName(MediaSizeName) to find the physical dimensions of
    the MediaSizeName instances enumerated in this API. This is useful for clients which
    need this information to format & paginate printing.

  • Help with Moving Emails from Exchange Server 2013

    Hi Team,
    Help, I need a solution on how to copy incoming and outgoing emails together with their attachments and was hoping someone could help with a solution I need to find for this problem.
    1) I have a need to copy all incoming and outgoing emails & attachments from Exchange Server 2013 mailboxes on a daily basis, so they can be archived into an external 3rd party database overnight.
    I believe that the first step is that I can set up another Exchange mailbox, through Journaling to receive these emails. 
    Is there any way that these emails can then be moved direct from the Journaling mailbox that I have created, to a shared folder on the network? If so what format would they be sent out as e.g. .msg, .ems and what is the process?
    Failing that, could they be sent to an Outlook client (not another Exchange mailbox) on the network and stored in a .pst file? (I have a program that will export them from .pst)
    I would really appreciate any assistance that you can provide in this matter.
    Regards, Greg.

    Hi,
    You can set auto-forward on journaling mailbox and auto-forward emails to another mailbox. Why don’t directly archive the emails from the journaling mailbox “an external
    3rd party database”.
    Thanks,
    Simon Wu
    TechNet Community Support

  • Help with icon on n85 screen

    Hi all.
    Looking for help with an icon that appears at near the top left corner of my n85 screen (I'm new to S60's).  It appears when I'm either in a call using the keypad to dial a number.  Sometimes it's a small arrow/triangle in an orange/red background and other times it's a green background.
    Does this have anything to do with call diverts??  Tried googling and the forums but can't find anything.
    Thanks everyone.
    J.

    kali,
    that will come up to show you when you have something Java running. To close out of that once it is open, is to close out of all of your browser (IE for example) windows to reset the Java runtime environment.
    MT

  • Help with moving files

    I'm having problems copying data across my network to my new mac mini and i'm looking for some help with how to resolve this issue.
    I'm using "Connect to Server' to connect via SMB to a Vista x64 machine that has the files I need to copy. I'm mounting the share as the user that has permissions to the files on the vista client. The connection is fine, but when I start the copy process, I receive an error message about not having the appropriate permissions to copy files and then the entire copy process fails. Here is the exact error message:
    Copy
    The operation cannot be completed because you do not have sufficient privileges for some of the items.
    OK
    From the vista machine I have logged in as the same user and I have taken ownership of ALL of the files and folders I'm trying to copy. I also made sure that the folder is shared with EVERYONE having full access (not something I would normally do, but figured it might help this situation). The vista machine is in a workgroup if that makes a difference.
    Question 1: how can I do this via command line so that instead of stopping the entire file copy it skips the ones it can't copy and copies the rest of them?
    With hundreds of subfolders and thousands of files, I have no idea which ones it is failing to copy making this process quite painful.
    I'm also stuck on another basic issue - when I originally connected to the share, I told the OSX machine to remember the password. If I want to reconnect to the share using a different username and different password, how do I get OSX to reprompt me for this information?
    Help

    You are probably better off using
    ditto
    In a terminal
    man ditto
    and read the description and instructions.
    Yes, sadly, many copy process when the fail at a file abort the rest of the process. Windows does this as well.

  • Changing the customer screen tab name in transaction co02

    I have done a exit in transaction CO02.Added one tabstrip in the screen.Its named as customer screen there.How to change this name.please provide with steps.

    Hi
    I'm working on 46C and ECC 6.00: it works fine in the both realeses.
    So I suppose it'll have to work on 470
    I run SMOD trx (no CMOD)
    Insert PPCO0012 and press TEST icon
    Doubleclick on line Exit Menu
    A popup is shown and here I can change the description and the icon for function +COI
    That's all.
    If you're getting the error "Non-existent components: Menu option SAPLCOCU+COI", try to check the sap note 626530
    Max

  • I need help with moving my iTunes library to a new disk...

    I'm soon gonna get a new SSD which is half the size of my HDD. So i guess i wont be able to restore with time machine or use disk utility to clone the drive. I'll have to start with a fresh copy of moutain lion.
    What I'll want to do is that keep all my music on my ssd and let all the podcast and itunes u be on an external hdd.
    can someone outline the steps to...
    create a library on the ssd on which os x is installed.
    move music, playlists and apps.
    let the podcast and itunes u be on an external hdd and yet be accessible from itunes, like being referenced.
    in the past i did this by moving the entire library to the internal drive and then while itunes was running, move the videos from the library folder to the external drive. it autoMAGICALLY was able to find the videos on the external drive while my music and apps were stored in the internal.
    now my library size is so big with all the videos that i cannot do the above steps as i want be able to copy the entire library to the internal ssd.
    any help is appreciated.
    thanks in addvace.
    Neerav

    Sometimes we sleep.  We have even been known to be away from the keybord to bathe (but usually not for longer than 2 minutes once a week ).
    I don't know how you automagically did it last time - your details are lacking.  iTunes is normally terrible at following you moving things, especially from drive to drive.  You either have to let iTunes do the moving (by consolidating to a new location) or you have to disable iTunes managing your media in which case it will follow moving inside a drive but still not between drives.
    Despite the new version, iTunes still does not make it easy to split your library between drives.  Probably since you only buy your items from iTunes and are never away from a high speed Internet connection it doesn't matter since you can always stream or download items you need from your Match subscription, right?
    Small hard drive? Split your iTunes library across multiple volumes - http://www.macyourself.com/2009/04/24/small-hard-drive-split-your-itunes-library -across-multiple-volumes/  - copying media folders to external, then deleting from internal, then adding again.
    Splitting & Managing Your iTunes Library - http://machintsandtips.com/i-j-k/itunes/splitting-managing-your-itunes-library/ - using option+drag to override iTunes from copying file to your default media folder.
    Dougscripts: Relocates selected files to a folder of your choice - http://dougscripts.com/itunes/scripts/ss.php?sp=relocateselected - replaces "Move Files To Folder"
    https://discussions.apple.com/message/10160819#10160819 - Change location of media folder to start putting files on second drive.  Note later follow-up post about leaving 'organize media' and 'copy to drive' checked.
    TuneSpan: (OS X app) A utility that allows you to distribute the media files in your iTunes Library across multiple drives. - http://tunespan.com/ - https://itunes.apple.com/us/app/tunespan/id528459889?mt=12 - Requirements: OS X 10.6.6 or later, 64-bit processor

  • Any way to keep the dock from moving between dual screens in Mavericks?

    As the topic says, with the new dual-monitor functionality that Mavericks brought in, my dock bounces back and forth between screens. This is driving me absolutely nuts. Does anyone know a way to disable it? I cannot seem to find any feature that will shut it off.

    I recently switched and was having this issue as well. This list (actual slide 35) helped me understand: http://www.maclife.com/article/gallery/70_mavericks_tips_and_tricks#slide-34
    It seems like I was accidentally "bumping" the corresponding edge of the dockless screen and that is what made the dock switch. To what level the "bumping" is that sets it off has not been consistant for me (or hard to tell with a track ball) but if i move quickly to the edge and stay there it switches after a view tries.
    *Didn't see how to disable but it helped me realize the cause creating the issue for prevention.

  • How Do I get Help with a Major Customer Service Issue?

    Hello,
    I am a Pro Care member and I took my Macbook Pro in to one on the local stores to ask them about a font issue that I was experiencing. One one the Genius guys came over and asked me a few questions and told me that this wasn't a big deal at all, that they just needed to reinstall my default fonts and that it should take maybe 45 minutes. This was at 4:30pm. Six hours later they came back to be to tell me that they had corrected the font issue but all of my user data and applications were lost! It was if I had a brand new Macbook Pro! This was a Friday evening. I was told to take my laptop to a company called Data Savers the next day to have this company try to restore my data/applications.
    I took my laptop to Data Savers on Saturday and they told me that they would need to keep it for a day. I went back to pick it up on Sunday and I was given an external drive that had "raw restored data" on it. When I had been speaking with the store manager about the situation and he wanted me to provide him with a list of software that was on the machine. So, when I got home from picking up my laptop from Data Savers I started it and all I got was an icon of a circle with a slash through it!! I called the guys at Data Savers and told them about this and they asked to bring the laptop back to them on Monday. I did. After running some diagnostics on the machine I was told that my hard drive was "toast!"
    Needless to say I was both upset and distraught! The store manager told me (in emails that I still have) that he understands how upset that I was about coming in for a font related issue and three days later being told that my laptop was no more that a big paper weight. He said (in these emails) that he would replace my laptop and he would try to get me the latest versions of the software that I had to make up for the business that I had lost in the last few days due to the fact that I didn't have have my machine.
    The store manager then called me back on a Tuesday and said that his superiors had told him that he cold not do what he said that he would do. Obviously, this increased my level of frustration. I was able to speak to this manager, think it may have been some sort of regional manager and after indicating that I had emails of the store manager acknowledging the facts of the matter and stating that he was very sorry for what happen, the regional manager said that she wanted me to send her copies of the emails. I told her that the store manager had copies of everything. She told me that she would get back to me. This was Wednesday afternoon. That same evening the store manager called me to say that "because I was lead to believe that Apple would replace my laptop, they would do so. I was told to be be at the store around noon on the following day (Thursday) and to bring my laptop. I was told that they would replace it.
    When I got to the store on Thursday, the manager came up to me and shook my hand and said that he was sorry for all the trouble and inconvenience. He went on to say that before he could replace my laptop that I would have to sign a document saying that I agree that they were not responsible for anything that had happened in the past six days!!
    The fact is, that isn't true and they know it. I have the email to prove it. I didn't sign the document. the next day because I could no longer afford to lose money and clients I went into another Apple store and purchased in brand new system!
    The fact is that I believe that Apples products are far superior to PC products. I was told by some to never buy from Apple again and tell everyone that I know about my experiences with this particular store. All I want is for Apple to do the right thing! Just replace my Macbook Pro like they said they were going to do. They don't have to provide any software updates, just do the right thing and replace my machine!!
    Can anyone tell me if they have had a similar experience and if so, how it was resolved? Who in the corporate office can I talk to about this to get it resolved? Are there and Apple insiders out there that can help me resolve this situation? I would like to avoid having to take legal action if at all possible.
    I look forward to any help that you can provide.
    SydCam

    Apple Computer Customer Relations:
    1-512-674-2500

  • Help with fitting text in screen

    Could anyone help me with figuring out how I can get the full
    page of the Webkinz home page to fit on the screen with Adobe Flash
    Player 9? Is there another program to allow it to fit on the
    screen? Minimizing the screen size does not work.

    Could anyone help me with figuring out how I can get the full
    page of the Webkinz home page to fit on the screen with Adobe Flash
    Player 9? Is there another program to allow it to fit on the
    screen? Minimizing the screen size does not work.

  • Help with creating a custom component.

    Hi. I have created a really simple custom component called
    myComp. It is a simple Canvas 100 pixels x 100 pixels with an Image
    control component.
    <mx:Canvas>
    <mx:Image id="image1">
    </mx:Canvas>
    After instantiating the component in Main.mxml eg. var
    pic1:myComp = new myComp(); I am having a problem setting the
    source property of the Image component.
    "image1" is the id of mx:Image in the custom compoenent so I
    tried pic1.image1.source = "assets/ball.jpg" but I get a run time
    error "Error #1009: Cannot access a property or method of a null
    object reference".
    Don't really know what I am doing wrong.
    Any help please!

    In your custom component, try adding a bindable public var
    which contains the path to your image. Also, set the image.source
    to this var.
    In your main app, set the var within the <mx:> tags of
    the custom component. Since it is a public var, it will show up in
    the code hint. You can also now change the image var from the main
    app anytime you like using ActionScript code.

Maybe you are looking for

  • How is the best way to delete Windows off of your Mac?

    I have Windows all up and running, and I no longer need it. What is the best way to get rid of that partition, and be back ot pure OSX? I would love to hear there is a way without erasing my whole hard drive. Thanks!

  • Genius doesn't work

    I have a problem with my iPod classic It constantly displays "Connect to iTunes to use Genius" when I'm trying to create a Genius playlist (even when "slide to run Genius" slider displays in Now playing), but no matter how much I sync my iPod or upda

  • My 5G seems to stutter then freeze when plugged in

    Has anyone heard of this problem; While the 5G is plugged into the dock or the Alpine car unit (same type of connection as the doc), it will play for awhile then start to stutter ( stop and start ) for about a minute - then it will freeze. At which p

  • Add color swatch upon launch?

    Hello, Is there a way to add a color swatch (in this case, PANTONE Solid Coated) into the CS4 AI color pallete so that it's permanent upon launch? It's a hassle to have to open this color swatch every time I launch AI. Thanks

  • Skype Number Not Forwarding

    My MX local skype number is active, current on billing and the forward is setup to a US (Dallas, TX) landline.  The forward is not working properly and going to a message saying the number is inactive.  The direct US landline number is working proper