Query for whether or not the period is open

I want to develop a query as well as get to know if the period is open or not (for periods of FA)

Help, please

Hello.
The period is only open when the PERIOD_CLOSE_DATE of the FA_DEPRN_PERIODS table column is zero. You can get the info:

Select period_name, period_open_date, period_close_date of
fa_deprn_periods where book_type_code =<'your book_type_code'="">
order of period_counter

Octavio

Published by: OctopusRex on March 20, 2009 02:48

Published by: OctopusRex on March 20, 2009 02:48

Tags: Oracle Applications

Similar Questions

  • the update of firefox 28 for mac does not, the bar just rotates, I can't get the update

    the update of firefox 28 for mac does not, the bar just rotates, I can't get the update. Thank you

    Hello

    Try to get the full version here:

    Then just install it.

  • I download InDesign (I paid for it, so not the trial version), but I can only find the button/link "download trial". What should I do?

    I download InDesign (I paid for it, so not the trial version), but I can only find the button/link "download trial". What should I do?

    Hello

    Please refer to the help documents below to download the application Adobe CC:

    Creative cloud to desktop

    Download, install, update or uninstall applications

    Once you have the CC Office application installed, you can install the Indesign from there.

    Kind regards

    Sheena

  • What photoshop is for beginners and not the expensive full version?

    What photoshop is for beginners and not the expensive full version?

    Depending on what you want to achieve, there are also 4 of Lightroom.

    Comparing CS6, Lightroom and elements, Adobe says:

    Q:  How Adobe Photoshop, Photoshop Extended, Photoshop Elements, and different software Photoshop Lightroom?

    A: Photoshop Elements 11 (US$ 99) is designed for those who is just getting started with digital photo and editing book powerful yet easy to use options that help you to organize, edit, create, share and protect your personal photos.

    Photoshop CS6 (US$ 699) is the professional standard to create and manipulate powerful images and Photoshop CS6 Extended (US$ 999) offer everything in Photoshop as well as tools for creating and editing objects and images in 3D.

    Photoshop Lightroom 4 (US$ 149) meets the needs of workflow of professional and amateur photographers, allowing them to import, process, organize and quickly introduce large quantities of digital photographs or develop a single image.

    And they also have a page that sums up the best uses for each product. This article even more deeply penetrates in the comparison. I hope it's useful!

  • the zoom browser constantly. (if u don't have to zoom-in for each unique site and links, and then zoom-in for them again after the closing by opening the browser)

    # zoom the browser constantly. (if u don't have to zoom-in for each unique site and links, and then zoom-in for them again after the closing by opening the browser)

    I haven't seen good eye.

    Install the extension to Default FullZoom Level and set a default zoom level:

    https://addons.Mozilla.org/en-us/Firefox/addon/6965

  • dynamic query for package does not work

    Dear members,

    I have problems with a package in the creation and analysis of a dynamic query in the WHERE clause. Here is an example of what I'm trying to do:

    PROCEDURE test_status_proc)
    wtd_cursor ON cur_type
    date_1 IN date
    date_2 IN DATE
    status in VARCHAR2,
    flag in VARCHAR2)

    IS

    status_sql VARCHAR2 (250): = NULL;
    flag_sql Varchar2 (100): = NULL;

    BEGIN


    Status of the IF = 'A' THEN
    lv_status_sql: = 'A ';
    lv_flag_sql: = 'Y ';
    END IF;
    Status of the 'I' = IF THEN
    lv_status_sql: = 'A ';
    lv_flag_sql: = 'n';
    END IF;

    Status of the 'R' = IF THEN
    lv_status_sql: = "R";
    lv_flag_sql: ='* ';
    END IF;

    Status of the IF = n THEN
    lv_status_sql: = 'n';
    lv_flag_sql: ='* ';
    END IF;

    IF status_code = 'IRN' THEN
    "lv_status_sql: = '('' N'','' R'');
    lv_status_sql: = lv_status_sql | ' OR (s.status = s.flag = "A" AND "N")';
    lv_usecalc_sql: ='* ';
    END IF;

    Status of the = IF'* ' THEN
    lv_status_sql: ='* ';
    lv_flag_sql: ='* ';
    END IF;

    OPEN FOR Test_cursor

    SELECT * from test_status s
    WHERE
    s.Daytime BETWEEN date_1 AND date_2
    S.status AND decode (lv_status_sql,'* ', s.status, lv_status_sql)
    S.flag AND decode (lv_flag_sql,'* ', s.flag, lv_flag_sql);

    The problem I have is especially with the condition 'IRN '. The suite WHERE the part of the clause looks like the following in the lv_status_sql, but the query returns all the values:

    -(', 'R') OR (s.status = 'A' AND s.flag =' only)

    Any help would be much appreciated.

    Kind regards

    dreporter wrote:

    Thanks for your reply and I completely understand your frustration. The problem is sometimes it is very difficult to describe all of the problem due to several reasons. Please take a look at my last post to see if that makes sense.

    If you really need SQL dynamic - true dynamic SQL which includes dealing with dynamic number of bind variables - then DBMS_SQL are an excellent interface to use.

    You can generate the dynamic SQL statement based on the question of whether the filter criteria is null (do not use) or not null (use as a predicate). For example

    if someParam10 is not null then
      // someParam10 needs to be used as a filter predicate
      dynamicSQL := dynamicSQL || ' and some_col_10 = :someParam10 ';
    end if;
    

    This statement can then be analyzed using the DBMS_SQL interface. The binding of values uses the same logic that was used to create predicates. For example

    if someParam10 is not null then
      // someParam10 is used and needs to be bound
      DBMS_SQL.Bind( myCursor, 'someParam10', someParam10 );
    end if;
    

    So, with this approach simplistic, you can easily create a dynamic SQL with variable predicates, dynamically bind these and run the slider.

    Bind variables are used in the dynamic SQL statements, as there are very few threats of SQL injection. And the basic principles observed for shareable SQL creation - the same set of parameters not null to filter, will result in the same SQL statement, which allows the cursor within the Pool shared for this SQL statement to be reused.

    So, technically, dynamic SQL is not a major problem (if used correctly). The major problem is that if really necessary to address the requirements of the business at hand.

    The problem I have with many comments here want to use dynamic SQL statements, is that it is used as one would use a file i/o interface.

    For file IO you want standard Open(), Read(), Write() and Close() calls. And you, the appellant, simply pass the name of the file and the data to write or to receive the data read.

    Similarly, these posters want to use SQL to open a table and read and write the data column - and do it by calling simply (and dynamically) by specifying the name of the table and column. Approaches to dynamic SQL based on one such concept is wrong. And shows that much of the ignorance of what a RDBMS is and how to use an RDBMS.

  • How to check whether or not the value is already in the collection

    Hello

    I'm in the analysis of a donkey of xml file assigning values to the collection.
    For each new record, that I am available for capture of xml, I need to check if this value already exists in the collection or not, and then only I must add this value to the collection.
    How we do that. I am not able to check whether or not it is already present in the collection. Help, please.

    Here is my code


    TYPE tab_A_type_rec IS RECORD)
    Name Varchar2 (50);
    );

    TYPE tab_A_type IS TABLE OF THE tab_A_type_rec;

    pkv_A_tab tab_A_type: = tab_A_type ();


    l_nl: = dbms_xslprocessor.selectnodes (dbms_xmldom.makeNode (l_doc), ' / / List "");
    for cur_rec in 0... dbms_xmldom.GetLength (l_nl)-1 LOOP
    l_n: = dbms_xmldom.item (l_nl, cur_rec);

    pkv_A_tab.extend; -----
    pkv_A_tab (pkv_A_tab. (Last). Name: = dbms_xslprocessor.valueOf (l_n,'Name / text () '); -I have to do these two steps only after checking whther that value is already present in the collection pkv_A_tab or not... What will be the stated case.

    end loop;


    Thank you
    Pramod

    Peter Gjelstrup wrote:

    Then in the final use TOGETHER to eliminate duplicates.

    The only problem - cannot use SET operator nested table records ;) or even on a table nested objects, unless the object type has map/delivery orders. Now if in real life, record type has only one attribute - NAME OP can just create type of TABLE OF VARCHAR2 (50). Then:

    SQL> declare
      2      type tab_A_type is table of varchar2(50);
      3      pkv_A_tab tab_A_type := tab_A_type('A','B','C','A','B','C','D');
      4  begin
      5  if 'B' member of pkv_A_tab
      6    then
      7      dbms_output.put_line('Found B.');
      8  end if;
      9  pkv_A_tab := set(pkv_A_tab);
     10  dbms_output.put_line('List of distinct elements:');
     11  for i in 1..pkv_A_tab.count loop
     12    dbms_output.put_line(pkv_A_tab(i));
     13  end loop;
     14  end;
     15  /
    Found B.
    List of distinct elements:
    A
    B
    C
    D
    
    PL/SQL procedure successfully completed.
    
    SQL>   
    

    SY.

  • When searching in Windows 7, I get a list of headers group for items, but not the articles themselves

    Hello

    When I click on start and enter text in the search programs and files text box, the search returns only for the items returned, but not the articles themselves group headers. Can someone help me solve this problem?

    Thank you

    Christi

    You can get a fix taken care that addresses this problem and it should prevent from happening again in the future. To get it, point your browser to the following Web site:
    http://support.Microsoft.com/kb/977380
    Click then on "view and request the hotfix downloads" which is located just above the beginning of the knowledge base article.

    Hope this helps,

    Alexander Sklar
    Windows engineering - sustaining user experience / developer experience team
       http://blogs.msdn.com/Asklar

    This posting is provided "AS IS" without any warranty and not an entitlement.

  • How to check whether or not the arraycollection collection is initialized

    Hi all

    I am bit new to use the collection arraycollection in flex. I'm having this particular scenario, where I get Server data in a table. So I have to check if the arracollection I created is initialized or not. If it is not initialized I need to initialize it or other wise, just add collection from table to table. Here is the code snippet

    currentTrajectory = new collection ArrayCollection (event.result as Array);

    var _multiTrajectoryEvent:MultiTrajectoriesEvent;

    _multiTrajectoryEvent = new MultiTrajectoriesEvent (MultiTrajectoriesEvent.DRAW_AUTO_TRAJ);

    If (!) (_multiTrajectoryEvent.trajectories.source is nothing))

    {

    _multiTrajectoryEvent.trajectories.addItem (currentTrajectory);

    }

    else

    {

    _multiTrajectoryEvent.trajectories = new ArrayCollection ([currentTrajectory]);

    }

    But unfortunately the above code does not work for me, because the arraycollection collection is not initialized first, there is no way of checking me if it is initialized later or not as the compiler gives me the error checking to null...

    Can any Walter suggest how can I check if the table collection is initialized or not?

    I would appreciate any suggestions and thouhgts for the same

    Thank you

    Akshay

    Sorry to say, but it's not the right approach...

    I'm abt don't know what is exactly done so I'll give a generic example...

    I have an ArrayCollection collection...

    private var arrC:ArrayCollection;

    Maybe it's getting used internally in several places, so you be sure if she be initialized already or not. Then use a code something like that...

    If (arrC! = null & arrC.length > 0)

    {

    ...

    ...

    }

    If you are using

    If (arrC.Length > 0)

    {

    ...

    ...

    }

    and it is not initialised it will give exceptional at the time to compile...

    For a logic if(a && b) be true both a and b must be true, so if same first one (a) is false it will not evaluate the second logic (b).

    Thus, the previous logic works.

    concerning

    Nishant

  • Than return the behavior of Firefox to focus on a new tab empty? Not the same as opening a link in a new tab.

    In previous versions of Firefox, when I open a new empty tab by CTRL-T or by clicking on the 'more' button on the tab bar, Firefox would focus on the new tab. This is not the case with Firefox 11, but I liked this behavior and want to get it back.

    It seems to be different from opening a link in a new tab, which, at least for me, opened without getting the focus (I deselected the option to immediately go to the preferences of some time back, but the new tab behavior remained). I searched through the preferences and have played with the options in the tab, but empty came. Can someone point me in the right direction?

    Thank you!

    As far as I can tell, it is still the default behavior and is not affected by preferences. Is one of your extensions may cause this problem. Go to Firefox > customize > addons and try to disable tabs in impact or the behavior tab.

  • How can I check the updates for Adobe Audition CS 5.5 version. I want to use the software after not using it for three years or more. I can't find any page that tells me whether or not the software updates are available.

    I want to check the updates of Adobe Audition software, purchased as part of the CS programs 5.5 package.

    Beginning of the updates here and product selection, read to see if you need to install updates in the order of the numbers, or if updates are cumulative for the product http://www.adobe.com/downloads/updates/

  • Check whether or not the magsafe power adapter is authentic

    Hello! I bought some 60 W MagSafe 2 Power adapter MD565CH/A, 85 W MagSafe 2 Power adapter MD506CH/A & 45 W MagSafe 2 Power adapter MD592CH/A but the serial number in each category is same for example there are 10 units for 60 W & all have the same serial number. I have a doubt, be they authentic shape Apple or not. Kindly help.

    You will need to call Apple for confirmation.

  • When you install age of empires 3 it progresses quite far ahead, it reports an error and to check whether or not the sound.bar file on the disc (cd 2).

    I ask to check if the file sound.bar is on is the cd or not. I'm unable to explore the disc on my computer to determine if the file is there or not. Overall, the progress bar indicates that the installation was almost complete. There are some light scratches on the cd. All solutions? I'm unable to explore the disc on my computer to determine if the file is there or not. Overall, the progress bar indicates that installation was almost over before I got this error message. Is there any way to get this file, as I suspect the cd is damaged as it has a few light scratches on the cd. All solutions?

    Hello

    1. don't you try to install the game in the other computer with the same disc?

    If you are not able to install the same game on another computer it clearly seems to be a problem is with the CD, then I would you to see link and check if it helps.

    How to replace lost, broken, or lack of Microsoft software or hardware: http://support.microsoft.com/kb/326246/en-gb

    For your information:

    Error message when you install a program of mapping or game from Microsoft: http://support.microsoft.com/kb/258496

    Hope this information is useful.

  • Enabling Shared nodes: Œuvres for 1 hierarchy, not the other?

    I am trying to add a Shared member in my hierarchy, but she claims that she is not enabled.  I activated this function that I am authorized to do so in the other version.  Is this something simple that I'm missing for this hierarchy?

    Must set the property of hierarchy of nodes in sharing allow True

  • Automatically remove virtual machines for VDI pool after the period of time

    Use us Vmware View 5.0 but soon move to 5.2 and have need features to automatically remove all the virtual machines in the pool selected after a certain period of time. We are at disposal VDI for a project that will end for 3 months and after this time, we want to remove this VMs automatically. Is this possible?

    It depends a bit exactly what you want to do, but you can plan everything a powercli-script to remove the virtual desktop at a certain time.

    Another option that I usually prefer is to manage the rights with the ad groups.

    So when you want to revoke a users access to a desktop computer, simply remove the user from the group, which should be easy to do with a script.

    Linjo

Maybe you are looking for