Display first 25 entries.

Hi,
Do anyone know how to display the first 25entries and 26-50 entries.
Example,
Select employees.* from employees where employees.department="admin" by order of employees.name asc
In the above sql, it will return all entries in the database who work in admin department. Lets say i want to display only the first 25 entries in the order of the name in ascending. How can i do it.. Thanks
becks

You need to order by explicitly over the result set. The order by within the analytical function does not gurantee order!!
for example, this
select * from (select e.*,row_number() over (order by name) rn from employee e where e.department='ADMIN') where rn<=25should be this:
select *
from (select e.*,row_number() over (order by name) rn
        from employee e where e.department='ADMIN'
        order by name
where rn<=25P;

Similar Messages

  • How to: Display Specific Xml Entry in AS3

    I have a very simple line of code that i'm trying to modify to display a specific entry in a xml file:
    AS3 Code:
    // The first step is to activate the XML object
    AmbientSettingsXML = new XML();
    With the XML Object now active you must now load an XML foramtted document.
    Any DTD or XLS formatting will be ignored.
    AmbientSettingsXML.onLoad = myLoad;
    AmbientSettingsXML.load("settings.xml");
    // Before proceeding to far into the program, make sure the XML document has loaded
    // Extract information from the XML file
    function myLoad(ok) {
    if (ok == true) {
    trace("ok");
    trace(AmbientSettingsXML);
    The Trace Displays:
    ok
    <?xml version="1.0"?>
    <settings>
    <appearance>
    <event_title>Streaming Demo 1</event_title>
    </appearance>
    </settings>
    So the question is, how do I display the "event_title" entry only? (String)
    Any help is appreciated,
    Thanks!

    var loader:URLLoader = new URLLoader();
    loader.addEventListener(Event.COMPLETE, completeHandler);
    var request:URLRequest = new URLRequest("yourxmlfile.xml");
    loader.load(request);
    function completeHandler(event:Event):void {
    var loader:URLLoader = URLLoader(event.target);
    var xml:XML = XML(loader.data);
    //xml.child("appearance")[0].child("event_title")[0];

  • Display number of entries per sort order

    G'day all.
    Does anybody know how I can display number of entries per sort order in
    ALV grid.
    i.e. ABC 2000
    2000
    2000
    3 (entries) 6000
    DEF 1000
    HIJ 2000
    2 (Entries) 3000
    5 (Total Entries) 9000

    Hi,
    The way I did it I used "AT END OF " statement and added my amount to a
    variable and then move my variable in work area and then modified your
    internal table from work area transporting that field or depending on
    your requirement that you need to add a separate line for totals append
    the internal table which you are going to use it for first display. Then
    after the set_table_for_first_display I added the alv_build_sort
    criteria. And call method alv_list->set_sort_criteria exporting the
    internal table i_sort.
    Cheers,
    Chaitanya

  • GWNCC is not displaying the Organization entry in GW6.5

    Hi,
    The GroupWise Name Completion Control is not displaying the Organization
    Entry. But the older version (I mean GroupWise client less than 6.5) is
    working fine and it displays the Organization entry. But the newer version
    GroupWise 6.5 is not displaying the Organization entry in the GWNCC
    control.
    Here i have the organisation field set in the Address book also. But still
    its not coming.
    Can any one let me know how can I rectify this problem in GroupWise 6.5
    Thanks in Advance
    Shah

    Hi,
         I executed the BAPI from ECC for the same input parameter and got the corresponding output. Apart from this can you explain the Para..
    "Drag out from the Input port of SalesorderGetlist, release, and from the context menu, choose Add Input Form. The Select Input Fields dialog box is displayed, listing the metadata that can be input from the start point to the data service. Select CUSTOMER_NUMBER and SALES_ORGANIZATION and click OK"
    Actually I am developing the iView in VC first time that's why I am facing this challenge.
    Thanks & Regards,
    Kundan

  • How to display first row value returened from a query as checked as default in a report

    How to display first row value returned from a query as checked as default in a report
    Example
    Parameter 1
    Paramerter2
    ABD
    x(checked)
    Test
    DEF
    JMG
    Mudassar

    Hi Mudassar,
    The issue is caused by the order in which the parameters appear in the report data tab can be difference between our report execution and it failing. In other words, “Parameter2” is execution before parameter “A” due to this issue. We can adjust the parameter’s
    order to solve the issue.
    If “Parameter2” is parameter “A”, we cannot use that expression. Because fields cannot be used in report parameter expression, if we want to display the first value returned from a query as default value, we have to fill the “Specify values” text box with
    the specific value in Default Values dialog box.
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Only display first form URL in formsweb.cfg . mutiple URL does not work

    Hi Friends,
    I have 4 form application with 4 URL.
    app. server as 10g in window 2003.
    URL like as:
    http://salerpt.com/forms/frmservlet?config=emis-srmenu
    fmx file Location as C:\OraMid\forms\salerpt-Forms fmx name as srmenu.fmx in same directory
    fmb file location as C:\OraMid\forms\salerpt-Forms_source fmx name as srmenu.fmb in same directory
    # Single Sign-On OID configuration parameter
    oracle_home=C:\OraMid
    in formweb.cfg file
    baseHTMLjinitiator=basejini.htm
    workingDirector : workingDirectory= blank. but C:\OraMid\forms\salerpt-Forms right now
    # Forms runtime argument: which form module to run
    ##form=test.fmx
    ## i moved bottom section of form section in here and before
    ##line as Forms runtime argument: database connection details
    comment two line
    #jinit_exename=jinit.exe
    #jinit_mimetype=application/x-jinit-applet;version=1.3.1.22
    I create 4 sections as
    form=srmenu.fmx
    width=1200
    height=700
    pageTitle=Sale Information System (SIS)
    form=regsale.fmx
    form=salefinincial.fmx
    form=rptinfo.fmx
    However it only display first srmenu form interface that i put in( 4 different URL. only display first URL)
    It seems that one formsweb.cfg, it doesn not support multip form setting application.
    I have 4 small forms application with 4 URL for one formsweb.cfg.
    What should I need to do? I think that i miss some set up in configuration.
    I am waiting for your help!
    JIm

    Hi Bgrant,
    Please review my formsweb,cfg.
    Thanks
    I am looking for your help.
    # $Id: formsweb.cfg 15-apr-2005.13:17:30 pkuhn Exp $
    # formsweb.cfg defines parameter values used by the FormsServlet (frmservlet)
    # This section defines the Default settings. Any of them may be overridden in the
    # following Named Configuration sections. If they are not overridden, then the
    # values here will be used.
    # The default settings comprise two types of parameters: System parameters,
    # which cannot be overridden in the URL, and User Parameters, which can.
    # Parameters which are not marked as System parameters are User parameters.
    # SYSTEM PARAMETERS
    # These have fixed names and give information required by the Forms
    # Servlet in order to function. They cannot be specified in the URL query
    # string. But they can be overridden in a named configuration (see below).
    # Some parameters specify file names: if the full path is not given,
    # they are assumed to be in the same directory as this file. If a path
    # is given, then it should be a physical path, not a URL.
    # USER PARAMETERS
    # These match variables (e.g. %form%) in the baseHTML file. Their values
    # may be overridden by specifying them in the URL query string
    # (e.g. "http://myhost.mydomain.com/forms/frmservlet?form=myform&width=700")
    # or by overriding them in a specific, named configuration (see below)
    [default]
    # System parameter: default base HTML file
    baseHTML=base.htm
    # System parameter: base HTML file for use with JInitiator client
    baseHTMLjinitiator=basejini.htm
    # System parameter: base HTML file for use with Sun's Java Plug-In
    baseHTMLjpi=basejpi.htm
    # System parameter: delimiter for parameters in the base HTML files
    HTMLdelimiter=%
    # System parameter: working directory for Forms runtime processes
    # WorkingDirectory defaults to <oracle_home>/forms if unset.
    workingDirectory= C:\OraMid\forms\sales-Forms
    # System parameter: file setting environment variables for the Forms runtime processes
    envFile=default.env
    # Forms runtime argument: whether to escape certain special characters
    # in values extracted from the URL for other runtime arguments
    escapeparams=true
    # Forms runtime argument: which form module to run
    #form=test.fmx
    [[srmenu]]
    form=srmenu.fmx
    width=1200
    height=700
    pageTitle=Sale Management Information System
    [[regsale]]
    form=regsale.fmx
    width=1200
    height=1500
    pageTitle=Sale Management Information System
    [[salefinincial]
    form=salefinincial.fmx
    width=1200
    height=1300
    pageTitle=Sale Management Information System
    [[rtpinfo]]
    form=rptinfo.fmx
    width=1200
    height=1000
    pageTitle=Sale Management Information System
    # Forms runtime argument: database connection details
    userid=scott/tigerd@oracleapp
    # Forms runtime argument: whether to run in debug mode
    debug=no
    # Forms runtime argument: host for debugging
    host=
    # Forms runtime argument: port for debugging
    port=
    # Other Forms runtime arguments: grouped together as one parameter.
    # These settings support running and debugging a form from the Builder:
    otherparams=buffer_records=%buffer% debug_messages=%debug_messages% array=%array% obr=%obr% query_only=%query_only% quiet=%quiet% render=%render% record=%record% tracegroup=%tracegroup% log=%log% term=%term%
    # Sub argument for otherparams
    buffer=no
    # Sub argument for otherparams
    debug_messages=no
    # Sub argument for otherparams
    array=no
    # Sub argument for otherparams
    obr=no
    # Sub argument for otherparams
    query_only=no
    # Sub argument for otherparams
    quiet=yes
    # Sub argument for otherparams
    render=no
    # Sub argument for otherparams
    record=
    # Sub argument for otherparams
    tracegroup=
    # Sub argument for otherparams
    log=
    # Sub argument for otherparams
    term=
    # HTML page title
    pageTitle=Oracle Application Server Forms Services
    # HTML attributes for the BODY tag
    HTMLbodyAttrs=
    # HTML to add before the form
    HTMLbeforeForm=
    # HTML to add after the form
    HTMLafterForm=
    # Forms applet parameter: URL path to Forms ListenerServlet
    serverURL=/forms/lservlet
    # Forms applet parameter
    codebase=/forms/java
    # Forms applet parameter
    imageBase=DocumentBase
    # Forms applet parameter
    #width=750
    width=1024
    # Forms applet parameter
    #height=600
    height=768
    # Forms applet parameter
    separateFrame=false
    # Forms applet parameter
    splashScreen=
    # Forms applet parameter
    background=
    # Forms applet parameter
    lookAndFeel=Oracle
    # Forms applet parameter
    colorScheme=teal
    # Forms applet parameter
    logo=
    # Forms applet parameter
    restrictedURLparams=HTMLbodyAttrs,HTMLbeforeForm,pageTitle,HTMLafterForm,log,allow_debug,allowNewConnections
    # Forms applet parameter
    formsMessageListener=
    # Forms applet parameter
    recordFileName=
    # Forms applet parameter
    serverApp=default
    # Forms applet archive setting for JInitiator
    archive_jini=frmall_jinit.jar
    # Forms applet archive setting for other clients (Sun Java Plugin, Appletviewer, etc)
    archive=frmall.jar
    # Number of times client should retry if a network failure occurs. You should
    # only change this after reading the documentation.
    networkRetries=0
    # Page displayed to Netscape users to allow them to download Oracle JInitiator.
    # Oracle JInitiator is used with Windows clients.
    # If you create your own page, you should set this parameter to point to it.
    jinit_download_page=/forms/jinitiator/us/jinit_download.htm
    # Parameter related to the version of JInitiator
    jinit_classid=clsid:CAFECAFE-0013-0001-0022-ABCDEFABCDEF
    # Parameter related to the version of JInitiator
    #jinit_exename=jinit.exe
    #Version=1,3,1,22
    # Parameter related to the version of JInitiator
    #jinit_mimetype=application/x-jinit-applet;version=1.3.1.22
    # Page displayed to users to allow them to download Sun's Java Plugin.
    # Sun's Java Plugin is typically used for non-Windows clients.
    # (NOTE: you should check this page and possibly change the settings)
    jpi_download_page=http://java.sun.com/products/archive/j2se/1.4.2_06/index.html
    # Parameter related to the version of the Java Plugin
    jpi_classid=clsid:CAFEEFAC-0014-0002-0006-ABCDEFFEDCBA
    # Parameter related to the version of the Java Plugin
    jpi_codebase=http://java.sun.com/products/plugin/autodl/jinstall-1_4_2-windows-i586.cab#Version=1,4,2,06
    # Parameter related to the version of the Java Plugin
    jpi_mimetype=application/x-java-applet;jpi-version=1.4.2_06
    # EM config parameter
    # Set this to "1" to enable Enterprise Manager to track Forms processes
    em_mode=1
    # Single Sign-On OID configuration parameter
    oid_formsid=formsApp_sales.com_0Axxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    # Single Sign-On OID configuration parameter
    oracle_home=C:\OraMid
    # Single Sign-On OID configuration parameter
    formsid_group_dn=cn=Logical Application Group, orclApplicationCommonName=formsApp_sales.com_0A4911717Fxxxxxxxxxx, cn=forms, cn=Products, cn=OracleContext
    # Single Sign-On OID configuration parameter: indicates whether we allow
    # dynamic resource creation if the resource is not yet created in the OID.
    ssoDynamicResourceCreate=true
    # Single Sign-On parameter: URL to redirect to if ssoDynamicResourceCreate=false
    ssoErrorUrl=
    # Single Sign-On parameter: Cancel URL for the dynamic resource creation DAS page.
    ssoCancelUrl=
    # Single Sign-On parameter: indicates whether the url is protected in which
    # case mod_osso will be given control for authentication or continue in
    # the FormsServlet if not. It is false by default. Set it to true in an
    # application-specific section to enable Single Sign-On for that application.
    ssoMode=false
    # The parameter allow_debug determines whether debugging is permitted.
    # Administrators should set allow_debug to "true" if servlet
    # debugging is required, or to provide access to the Forms Trace Xlate utility.
    # Otherwise these activities will not be allowed (for security reasons).
    allow_debug=false
    # Parameter which determines whether new Forms sessions are allowed.
    # This is also read by the Forms EM Overview page to show the
    # current Forms status.
    allowNewConnections=true
    # EndUserMonitoring
    # EndUserMonitoringEnabled parameter
    # Indicates whether EUM/Chronos integration is enabled
    EndUserMonitoringEnabled=
    # EndUserMonitoringURL
    # indicates where to record EUM/Chronos data
    EndUserMonitoringURL=
    # Example Named Configuration Section
    # Example 1: configuration to run forms in a separate browser window with
    # "generic" look and feel (include "config=sepwin" in the URL)
    # You may define your own specific, named configurations (sets of parameters)
    # by adding special sections as illustrated in the following examples.
    # Note that you need only specify the parameters you want to change. The
    # default values (defined above) will be used for all other parameters.
    # Use of a specific configuration can be requested by including the text
    # "config=<your_config_name>" in the query string of the URL used to run
    # a form. For example, to use the sepwin configuration, your could issue
    # a URL like "http://myhost.mydomain.com/forms/frmservlet?config=sepwin".
    [sepwin]
    separateFrame=False
    lookandfeel=Generic
    # Example Named Configuration Section
    # Example 2: configuration forcing use of the Java Plugin in all cases (even if
    # the client browser is on Windows)
    [jpi]
    baseHTMLJInitiator=basejpi.htm
    # Example Named Configuration Section
    # Example 3: configuration running the Forms ListenerServlet in debug mode
    # (debug messages will be written to the servlet engine's log file).
    [debug]
    serverURL=/forms/lservlet/debug
    # Sample configuration for deploying WebUtil. Note that WebUtil is shipped with
    # DS but not AS and is also available for download from OTN.
    [webutil]
    WebUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTMLjinitiator=webutiljini.htm
    baseHTMLjpi=webutiljpi.htm
    archive_jini=frmall_jinit.jar
    archive=frmall.jar
    lookAndFeel=oracle

  • Only display first item when item no is bound to viewBT117S_SRC/AdvancedSRL

    Hi ;
    I want to add order item attributes to the lines of the page "service confirmatioms" , at first It was displaying only order header lines in standart ,  i enhanced the context node and added "item line no" of the orders but in the view it displays first item lines for each order.ıf you have 18 orders , it displays only 18 lines and only item no 10 for each one.
    new attribute i added to the context no in following orders (item line no)
    -->BTADVSSrvCfm
        -->BTOrderHeader
           -->BTHeaderItemsExt
               --> BTOrderItemAll
                    -->Item No
    For each order I have at least 2 lines , Why does it displays only first items after I enhanced the context node by adding item line no?
    What sould I follow the steps?
    Thanks

    Hi ;
    I want to add order item attributes to the lines of the page "service confirmatioms" , at first It was displaying only order header lines in standart ,  i enhanced the context node and added "item line no" of the orders but in the view it displays first item lines for each order.ıf you have 18 orders , it displays only 18 lines and only item no 10 for each one.
    new attribute i added to the context no in following orders (item line no)
    -->BTADVSSrvCfm
        -->BTOrderHeader
           -->BTHeaderItemsExt
               --> BTOrderItemAll
                    -->Item No
    For each order I have at least 2 lines , Why does it displays only first items after I enhanced the context node by adding item line no?
    What sould I follow the steps?
    Thanks

  • Pages to EPUB: Table of Contents displaying FIRST?

    I saw this question posed earlier, and no solution was raised.
    Does anyone know why my TOC is displaying FIRST when I export to EPUB, instead of behind the Title and Copyright pages, as I have it set on the pages document?
    Thank you!

    Same here. Very annoing, and I cannot find any way to fix this.

  • Creat icon to display no of entries in ALV container

    HI,
    I have to display no of records on push button type icon,
    it should directly display no of entries like'50 hits'.Need not to give any function code,we need not to click push button,it should display like text on button,
    button should be added in alv  container tool bar.
    I am giving output in alv on subscreen

        HANDLE_TOOLBAR
            FOR EVENT TOOLBAR OF CL_GUI_ALV_GRID
                IMPORTING E_OBJECT E_INTERACTIVE.
    define gloabal variable to populate the no of records.and use the variable
      METHOD HANDLE_TOOLBAR.
        DATA: LS_TOOLBAR  TYPE STB_BUTTON.
    * append a separator to normal toolbar
        CLEAR LS_TOOLBAR.
        MOVE 3 TO LS_TOOLBAR-BUTN_TYPE.
        APPEND LS_TOOLBAR TO E_OBJECT->MT_TOOLBAR.
    * append an icon to to save data
        CLEAR LS_TOOLBAR.
        MOVE 'TOTAL' TO LS_TOOLBAR-FUNCTION.
    <b>    MOVE ICON_SYSTEM_SAVE TO LS_TOOLBAR-ICON. "Choose your Icon</b>
        MOVE 'Save' TO LS_TOOLBAR-QUICKINFO.
    <b>    MOVE V_VAR  TO LS_TOOLBAR-TEXT.</b>
        MOVE ' '  TO LS_TOOLBAR-DISABLED.
        APPEND LS_TOOLBAR TO E_OBJECT->MT_TOOLBAR.
        CLEAR LS_TOOLBAR.
    * append a separator to normal toolbar
        CLEAR LS_TOOLBAR.
        MOVE 3 TO LS_TOOLBAR-BUTN_TYPE.
        APPEND LS_TOOLBAR TO E_OBJECT->MT_TOOLBAR.
         ENDMETHOD.                    "handle_toolbar
    Before creating the ALV GRID object try to populate the variable V_VAR with no of records.
    obvious you need to set the handler to appear in the toolbar.
    Regards
    vijay

  • HT4623 How to turn-off tap display during passcode entry

    I recently bought Iphone 4s. I like the phone as such but one thing that I want to change is tap display while entering the passcode on lock screen. I don't want to see which keys I am entering as this can put my phone on risk as anyone close to me can see what keys I had pressed to unlock the phone.
    Please help to let me know "How to turn-off tap display during passcode entry" on locked screen.
    Thanks for the answers and suggestion.

    This cannot be done.  You should simply hide the display from others' view.
    iPhone 5S allows you to use your fingerprint instead of the passcode.

  • Missing "Init display first" on x58a-gd65

    Hello. I have X58A-GD65 motherboard with core-i7 on it.
    Also I have two videocards -- nvidia gtx460 and gt430. I have two monitors and need both of them to be connected to gtx460 (and gt430 is needed to be headless). Gtx460 is plugged into the second pci-express slot and gt430 is plugged into the first -- it's needed to avoid overheating.
    So the problem is that I see post message and bootloader choosing screen only with a monitor connetcted to gt430 and it's unacceptable. If I have both of monitors plugged to gtx460 I see nothing until the OS is loaded (I have both linux and windows).
    All of my previous motherboards were based on AMI bios too and they had an option "Init display first" in which I could set the main PCI-E port. But your motherboard for unknown reason is missing that option -- I tried V22.1, 22.2, 22.3 versions (with 22.0 I have memory issues).
    What can I do to set init display at the second pci-express?
    Thanks in advance.

    Quote from: Jack on 19-June-11, 05:05:53
    Please note that your motherboard is not "our" motherboard in any meaningful sense.  This is a user-to-user forum, not MSI Technical Support.
    Excuse for "your board" -- I actually have written to support too and the messages are similar.
    Quote from: Jack on 19-June-11, 05:05:53
    Mh, none of my motherboards in the last couple of years (must have been 7 or 8 different models) really had an option to specify the exact slot used for video output.  The choices were usually: Onboard/IGP, PCI-Express and PCI, never however PCI-E #1, PCI-E #2, PCI-E #3 etc.
    Actually I had at least two Gigabyte motherboards that supported that feature. And also there are some clues that there is a version of bios for subj motherboard, because there is such an option in at least one of reviewes on this motherboard (look at the 4th screenshot): http://www.overclockers.ru/lab/38886_2/Obzor_materinskoj_platy_MSI_X58A-GD65.html#4
    And also there are messages like this on that problem: http://www.overclock.net/monitors-displays/838532-second-pci-e-primary-display-help.html#post10910073
    That means that it must be in that bios, because my previous botherboards with AMI bios onboard also supperted that option.
    Quote from: Jack on 19-June-11, 05:05:53
    If you really have an over(!)heating problem with a dual-card configuration consisting of a mid-level and a low-level (!) card, then the primary problem I see here is quite insufficiant cooling/case ventilation and I am definately sure that that can be worked out and solved for good with a little bit of effort/problem oriented cooling improvisation.
    I was not very accurate (because didn't want to specify unnecessary details). It's not an overheating problem in general sense. I'm actually a CUDA developer and I use gt430 as debugging board with and I need a disabled watchdog for some reasons. And because of the same reason I need both cards to be connected to pci-e@16 because pci-e@4 appeared to be too slow for massive computations (I used that scheme before but now it's the bottleneck). Thus I need to have cards in the 0th and 1th pci-e accordingly. But gtx460 is two-slotted card and if gtx460 is in the 0th slot and gt430 is in the 1th, gt430 blocks exactly the place where the gtx460 fan is situated. So the gtx460 temp increases up to 80C under 100% load. That's not a problem but the fan of gtx460 starts spinning at 3000rpm and it's very annoying. Temperatures of other devices stay below 50C.
    But if I put gtx460 in the 1th slot and gt430 in the 0th there is a plenty of space in front of gtx460 and all the temperatures stay below 45C even if both cards and the CPU are all loaded at 100% => no annoying noise and fan spins at 800rpm.
    That's the point actually.
    Quote from: Jack on 19-June-11, 05:05:53
    In any case, for costum BIOS fixes (your problem seems very, very ideosyncratic) you need to contact MSI Technical Support:
    I've written them already and waiting for answer. I thought that forum could be more fast (and it appeared to be true:) . And I thought that there may be some means (turning on hidden options in bios for example) that support couldn't tell me about because of some intra-policies

  • I have my contacts sorted and displayed last name, first name - however when I access my contact list via message they display first name, last name - WHY????

    Contacts sorted and dispalyed last name, first name - why when I access contacts via messaging do they display first name, last name?

    Hi
    It is when I tap on the +....
    My husbands display with first name first but grouped by surname alphabetically.
    Thanks
    Cat

  • First data entry and First consolidation

    If I start new BCS system, will the Period and year of First data entry be the year and period of First consolidation?
    I thinkt that it is not possible to track the Change of stockholder's equities in subsidiary from REAL starting period of acquition.

    First:
    There is one very important thing to know about "first consolidation period/year":
    Lets say 12/2008
    If you use carry forward, for example with movement type 100, then you are allowed to upload data into 12/2008 on movement type 100 and only then.
    Second:
    You need to assign an accounting technique to the consolidation group change and reporting.
    Check this link:
    [http://help.sap.com/saphelp_sem60ep1/helpdata/en/68/08d54276053258e10000000a155106/content.htm|http://help.sap.com/saphelp_sem60ep1/helpdata/en/68/08d54276053258e10000000a155106/content.htm]
    Have a look at the table what those attributes mean.
    BR

  • Display first page , 3rd page & consecutive pages / Display 2nd page....

    Hi Friends
    We have a requirement to display first page, 3rd page & consecutive pages (dont display 2nd page) for a sales order particular to a plant in smartforms.
    Similarly, display 2nd page, 3rd page & consecutive pages (dont display first page) for a sales order particular to different plant in smartforms.
    Kindly provide your valuable inputs
    Thanks
    Lavanya

    Hi,
    Write this code in Initilization.
    constants:c_fir(5)  type c value 'FIRST'',
                     c_sec(6)  type c value 'SECOND'.
    DATA:L_NAME(17)   TYPE C VALUE '%HEADER-FIRSTPAGE'.
    FIELD-SYMBOLS: <FIELD>.
    IF werks  <> '1000'.
      ASSIGN (L_NAME) TO <FIELD>.
      IF SY-SUBRC EQ 0.
        <FIELD> = C_SEC.
      ENDIF.
    ELSEIF werks  <> '1010'.
      ASSIGN (L_NAME) TO <FIELD>.
      IF SY-SUBRC EQ 0.
        <FIELD> = C_FIR.
      ENDIF.
    ENDIF.
    By this code you can set the first page. Then to call the disired page in these pages create a command node in main window of each page and select the check box go to page select  third page in drop down .
    Thanks,
    Nethaji.
    Edited by: Nethaji babu on Jul 17, 2009 1:11 PM

  • Can one clip in a sequence have "display first field" and another one  "display both fields"?

    Is it possible that one clip in a sequence will have "display first field" and another one
    "display both fields"?
    My problem is that I have a split screen. One part is a clip of still
    image with text and the text is seen good with "both fields" and a
    little bit blurred with "first field". The second part is a PAL clip
    and it is seen bad with "both" and good with "first".
    The pixel-ratio is 1.094 for both clips. Playback resolution is "full".

    I have an Eizo calibrated monitor.
    Hooked up how?  If in use as the main computer monitor, no this isn't sufficient.  You need a real TV or production monitor connected via HDMI, component, S-video or the like, so that it displays only the video signal and no part of the Desktop.
    (And if you're working in interlaced, it really needs to be a CRT that can properly display an interlaced signal.)

Maybe you are looking for