How to know last outcome?

I have two navigation case:
<navigation-case>
         <from-outcome>Declaration_Ajouter</from-outcome>
         <to-view-id>/jsf/nmci/declaration/saisie.jsp</to-view-id>
</navigation-case>
<navigation-case>
         <from-outcome>Declaration_Dernier</from-outcome>
         <to-view-id>/jsf/nmci/declaration/saisie.jsp</to-view-id>
</navigation-case>Is it possible to know what is the outcome i come from in the saisie.jsp page?

Probably this will help:
http://www.jsftutorials.net/faces-config/navigationDecorator.html

Similar Messages

  • How to know last access date for the schema's

    Dear all,
    could u plz tell me How to know last access date for the schema’s
    Regards,
    Srinivasa rao.P

    Srinivas,
    could u plz tell me How to know last access date for the schema’s
    In Oracle, we don't access schemas but schema objects.And this informationis not kept anywhere persistantly.As Amit also mentioned,if you do need it,you have to enable Auditing.
    Aman....

  • How to know last updated date of screen

    Dear all my friends,
    Please help to show me : How can i know which screen has been updated by when ?
    or help to show me the table name which contain all screen in system with creatation date and last updated date.
    many thanks

    hi, go to the attribute tab. you can see there when it was last updated.
    hope this helps.
    best regards,
    benedict

  • How to know Last Sales Price?

    Hi all,
    My requirement is, at the time raising SO, I want to know the last sale price of the item for the customer to whom I'm raising SO.
    Is it possible in SAP B1?
    Rgds,
    Balaji

    Dear Mr. Sridharan,
    As per your advise, I tried but I didn't get any details of my last sales price.  In the help file, it says that if we upgrade the package to 2007 then we can see the last price details.  Is it so?  If not, please advise if any other settings to be done to get the last price.
    Rgds,
    Balaji

  • How to know last login in oracle database 9i

    hi all,
    I want to know the last login in oracle database 9i.
    Can some one help me.
    Thanks

    Hi,
    Do you have auditing enabled then you can get details else
    Enable it and execute the below one - then login and logoff times will be recorded for users
    audit connect;
    - Pavan Kumar N
    Oracle 9i/10g - OCP
    http://oracleinternals.blogspot.com/

  • How to know last statements

    Hi All,
    How can i know, what are the statements have run on yesterday in my database for a particular user?
    Thanks
    Desis

    You need to write your own triggers to capoture the DDL and also insert those DDL into your tables. This way you may able to track down users activities including DDL.
    hare krishna
    Alok

  • How to know last command used in solaris

    Dear Friends,
    We have a Solaris 8 server. Someone changed ownership of files. Is there any way to find out who logged in the server & changed ownership ? ?
    last command is not giving much information . Since /var/adm/lastlog is in binary format I am not able to read it's contents.
    Requesting to help me out.
    Regards,
    Tejas J Raval

    You can also check the history of a particular user. By instance, if it use bash, check this file :
    ~/.bash_historyand check his :
    ~/bash_loginand :
    ~/.bashrcbecause he has perhaps some special feature, like to set his history in an other file by instance.

  • How to know last program user

    Hi guys!
    Is there a tcode where I can see the history of who executed a particular program, and what particular programs a user executed?
    I am not sure if this question is in the right forums. Please advise me where this will be applicable. Thanks!
    Message was edited by:
            Ricardo Caliolio Jr.

    > Hi Ricardo,
    >
    > On the lighter side,
    > I am not sure if this question is in the right
    > forums. Please advise me where this will be
    > applicable.
    >
    > <b>Till someone watching the forum knows answer to
    > your question it is in the RIGHT FORUM :).</b>
    >
    > Regards,
    > Atish
    Well, me too. I am not sure if it is supposed to be here. I am just not yet really familiar with these forums. Haha.
    Thanks anyway for the answer!

  • How to know last run time and who ran the query

    Hi
    I am doing the analysis for all the queries , their last run time and who ran the query
    Since there are almost 6000 queries , is there any way to find out last run time and who ran the query
    in one step or through any transaction else It would huge effort taking task to check the data in BW statistics
    table for each query
    Regards,
    Vivek

    Hi,
    Statistics should be switched ON for all the queries first. You can check this in RSDDSTAT.
    Statistics data is stored in BW for a specific period only. This setting can be maintained in table RSADMIN (Field : TCT_KEEP_OLAP_DM_DATA_N_DAYS). If the value for the field is 30, then 30 days old statistics will be available at any point.
    Not all the queries will be ran daily. Some are ran daily, monthly and yearly depending upon User requirement.
    1. You can check in RSDDSTAT_OLAP for the details you needed.
    2. You can install the BI Technical Content and run the respective query for the details you needed.
    Hope this helps.
    Regards,
    Sunil

  • How to know the User name and date, who executed the report last time.

    Hi All,
    We are collecting a list of reports which are not executed for past 3 months. Can anybody tell me how to know the username and date they executed the report last time.
    Is there any table to look ? or is there any process ?
    Thanks,
    Ravi.

    Ravi,
    Use SE16 - then look at rszcompdir.
    We look up Version = 13 for queries.
    Regards
    Gill

  • How i know when a EXECUTE_QUERY retrieved last record

    Hi...
    How i know when the EXECUTE QUERY retrieved the last record in a block ....?
    Exist a trigger after trigger POST-QUERY?
    Regards
    Hector Gabriel Ulloa Ligarius
    Santiago of Chile
    http://es.groups.yahoo.com/group/desarrolloOracle/

    Kevin, sorry
    But the :system.last_record not change the value during the execution of EXECUTE_QUERY.
    Only useful when the data was retrieved into blocks...not during..
    Other mode?
    Regards
    Hector Gabriel Ulloa Ligarius
    Santiago of Chile
    http://es.groups.yahoo.com/group/desarrolloOracle/

  • How to know the internal table's last record

    Dear friends,
    Just I want to know my internal table last records, Ex:
    I am having the records in my internal table like this:
    Itab-col1
    1
    2
    3
    4
    5
    6
    7
    8
    9
    I want to know and print the last record, it maybe n number of records in my itab.
    If I used at last within a loop but it dosn't work its taking the all *** in header.
    How to know which is the last record in my internal table.
    Thanks,
    Sridhar.

    hi,
    sridher reddy
    1st describe ur table i.e read the number of entries in the table .....
    data : count type i.
    DESCRIBE TABLE <table name > LINES count.
    READ TABLE <table name > INDEX count.
    write : <table name>-<fieldname>.......... .
    by this way u can print the last record of your table

  • How to know the parent material in BOM  if we know the last level material

    Dear all,
    We have around 40000 material codes with 18 digits. We can't remember all these. If we know the material code, we can easily find out sublevel or downlevel material by CS03,CS11 ,.....
    But if we know the material code , how to find upper level material code in BOM ?
    How to know the parent material in BOM  if we know the last level material ?
    Pl' answer.

    Hi Kishore,
    Have u tried with report CS15.  Give last Level Material  ->goto nect Screen->select "Multi level " check box then excute.
    it will give All Parent material of Last material, u can indentify with BOM level NO.
    regards
    pradeep

  • How to know through back end employee position in Requisition approval

    Hi all,
    I have one Employee_id ,how to know this employee has a authority to approve the requisition through back end. what is the link between
    per_all_people_f and PO_POSITION_CONTROLS_all.
    Thanks

    hi
    I have one small doubut, what is the differnce in the PO_Requisiiton_headers_all Table Have PREPARER_ID and PO_action_history table Have Empolyee_id and also in po_action_history have created by .what is the main differnce between thease three PREPARER_ID,empolyee_id and created_by .
    Ex :- select created_by,last_updated_by,PREPARER_ID,creation_date,last_update_date
    from apps.po_requisition_headers_all where requisition_header_id=6731548
    O:P- created by last_updated_by prepaper_id creation_date last_update_date
    1216 83867 72208 5/26/2009 8:48:59 AM 5/26/2009 12:41:19 PM
    select created_by,last_updated_by,employee_id,action_code,creation_date,last_update_date
    from apps.po_action_history where object_id=6731548 order by sequence_num
    CREATED_BY, LAST_UPDATED_BY, EMPLOYEE_ID, ACTION_CODE, CREATION_DATE, LAST_UPDATE_DATE
    1216, 1216, 72208, IMPORT, 5/26/2009 8:48:59 AM, 5/26/2009 8:49:27 AM
    1216, 1216, 72208, SUBMIT, 5/26/2009 8:55:41 AM, 5/26/2009 8:55:41 AM
    1216, 1216, 72208, RESERVE, 5/26/2009 8:55:41 AM, 5/26/2009 8:55:42 AM
    1216, 1216, 72208, FORWARD, 5/26/2009 8:55:42 AM, 5/26/2009 8:55:43 AM
    1216, 83867, 72208, APPROVE, 5/26/2009 8:55:43 AM, 5/26/2009 12:41:13 PM
    My Mian Problem is why same employee forward him self to approve the requisiiton.
    but his last updated_by is different.
    I am not Understanding the functionality of this .
    Thanks

  • Cheque printing. How to avoid last page in case of check printing in F110?

    F-68 prints only one page whereas F110 prints 2 pages.
    How to avoid last page in case of check printing using F110? Is there any other option than changing the Script.

    Hi,
    Im also facing the same issue. Generates 1 page with F-58 but 2 pages with f110. Kindly let me know how to resolve.

Maybe you are looking for

  • HP Envy 13 Battery issues

    Hi I have an HPEnvy 13 notebook with the battery & slice battery it came with.  I noticed recently that with the battery plugged in and the AC adaptor connected it would say "plugged in, not charging" and it would never power on when using battery on

  • How can I transfer large files from my iPad to PC-windows?

    I have several videos on my iPad (recorded using the iPad camera).  I am trying to get these transferred to my PC-Windows. When I connect the iPad to the PC and try drag-and-drop from the Camera icon, video files greater than 600MB appear with a zero

  • How to Order a Source Table ???

    How can I do if I have to order the select of my source table ??? I have try to put an order by on the same filter than my filter but it is build with parenthesis if I put an filter with : COL1='3' ORDER BY COL2 it's build like Select ... where ((COL

  • How to create custom Transaction iview

    Hi all, Can any one tell me how to create an Transaction iview for the custom transaction. Is it different from creating an Transaction iview for standard transaction? I tried to create in the same manner as of standard transaction but it is giving p

  • Text selection tool is completely missing

    Hallo, I newly bought Adobe Acrobat XI. It's running on Windows 7. Unfortunately the text and graphic selection tool (the small arrow) is missing in the toolbar. It's not possible to select it to the toolbar - it doesn't appear anywhere. We installed