How display ApprovalStatus=Submit

Hi Gurus,
i have 2 pages.in first page have project_number lov,create button and tableRN.
and i select the project_number and click on the create button it ll navigate to secound page.
in secound page data enter and click on the submit button it ll navigate to first page and show the records in tableRN what ever insert (this part is over).
the peoblem is once inserting tableRN. in tableRN have one column i.e ApprovalStatus.
in this column autometically show the submitted
plz help me
its very urgent
Thanks
Seshu

Hi,
I resolved the issue.
row.setattribute("ApprovalStatus","Submitted");
This is the answer.
Thanks
Seshu

Similar Messages

  • How do I submit a bug to microsoft for TEE

    I'm not sure but I think I may have found a bug in TEE on Linux.  The
    question on stackoverflow was answered but I've just run into the same problem when trying to merge our trunk to my branch.  In short, the root of the problem is that was a directory named
    Directory.  Over the course of time, our naming conventions changed and this directory became named
    directory (the case change).  Interestingly, two files (a *.cpp and *.h) somehow were still associated with the first directory name though the directory named was changed and preserved the new case.  The problems should be apparent for Linux
    users.
    Now, as the link I provided mentions, I did try to fix this by using the tf rename command, but after the command was executed to rename the first file, I could do nothing more using TEE because of this error:
    java.io.FileNotFoundException: /home/andy/devel/project/directory/code.cpp (No such file or directory).  Ok, I just moved on.  A coworker executed the very same command from a Visual Studio Command Prompt and it worked and he was
    able to check in the named files.  "Great," I thought, I'll merge with main and continue.  I did so using the
    tf merge -recursive <source_branch> <dest_branch> and promptly ran into the same problem when trying to do
    tf status and any other tf command. 
    It seems that there might be a bug in how metadata is handled in this case when using TEE in Linux.  How can I submit this to Microsoft?

    http://www.apple.com/feedback/itunesapp.html
    https://discussions.apple.com/thread/4553482 - "Many albums' artwork doesn't display in my Library.  However once I pull up the info window for one track, and return to the album list, the artwork magically appears."
    "...some album covers were missing in album view. Apple says this is a rare bug, but one it has solved and will fix in a minor update soon." - http://allthingsd.com/20121204/itunes-gets-an-upgrade-without-missing-a-beat/

  • How to use SUBMIT for transaction program?

    Hello,
    Please help me with following requirement.
    I need to pass selection screen values from ZReport to transaction F.01 and collect displayed data output in internal table in ZReport and use internal table for further processing.
    Please let me know,
    1) How to use SUBMIT with transaction code or modulepool program (<b>remember I don't want to submit report program</b>)?
    2) How to collect F.01 output data and bring back to Zreport ?
    Thanks in advance.

    Hi ab,
    1.  How to collect F.01 output data and bring back to Zreport
    The data (of output) can be collected,
    for display purpose.
    We cannot get the full data, which makes sense.
    2. The data shall be collected, in a printable format only,
       ie. with vertical lines, horizontal lines (if any) etc.
    regards,
    amit m.

  • How to achieve SUBMIT for the current page when I click other tab?

    Problem: How to achieve SUBMIT for the current page when I click other tab?
    Description: I have a two-page application and each page associates with a tab. Say page1 associates tab1 and page2 associates tab2. In each page, I have a submit button, a after submit process associated to the submit button, and a tabular form. For page1, I fill out the fields and hit the button. The page1 will appear again and I can see the data I have insert. However, If I fill out the fields and click the tab2 (page 2) instead. when I come back to page1, the data I filled out are all gone. Is there any way in HTML DB to force the submit in the current page after you click other page. If use JavaScript, what is code looks like.
    Appreciate your time and your answer.
    Mike

    Scott,
    just for clarity, if I understood correctly what you said there are two possibilities:
    1) keep the standard tab branch and give up the possibility of validating page items. Below you can find an example of such cases.
    2) Replace the template substitution string and perform a "custom" button-like submit also adding a branch to the main page associated with the tab. Page items will be validated if the branch firing point is set after the validations.
    I couldn't find an example of the latter, but I found easily an example of the former:
    it's the "Report attributes", page 420 of app 4000.
    If you enter 'aaa' in the "Number of rows" form field and then you press "apply changes", htmldb correctly displays an inline error message saying that the value must be numeric. On the contrary, if you click on the "Region Definition" tab, htmldb takes you to a page showing an oracle exception:
    ORA-20001: Error in DML: p_rowid=4785927011172906402, p_alt_rowid=ID, p_rowid2=, p_alt_rowid2=. ORA-20001: Invalid numeric value aaa for column PLUG_QUERY_NUM_ROWS
    Bye,
    Flavio

  • How to do submit without any button

    Hi ,
    i am using Jdev 10.1.3.1 .
    i am using JSF ADF BC Technology. i am having a problem. how to do submit the values in inputHidden field without submit or any button.
    even i bind the method in valueChangeListner like below.it is not submit.Am i did any mistake? plz go thru this code and help me.
    Hidden there is no auto submit attribute.
    Code:
    <af:form>
    <af:inputHidden id="startDate"
    value="#{bindings.Eventdate.inputValue}"
    valueChangeListener="#{bindings.Execute.execute}"
    required="false"/>
    <af:commandLink text="search" actionListener="#bindings.Execute.execute}"/>
    OR
    <af:commandButton actionListener="#{bindings.Execute.execute}"
    text="Search"
    disabled="#{!bindings.Execute.enabled}"/>
    </af:form>
    i dont want to use command link or command button for action. how to submit the value in hidden field which is set by javascript function to the corresponding action.
    could you please help me out regarding this?? .
    Thanks & Regards,
    Arun

    Let me see if I have your use case correctly:
    The user views the page, and some event triggers some Javascript code. The Javascript code needs to set the values of a hidden field, then submit the form, executing the action named Execute in the bindings.
    First of all, get rid of the valueChangeListener. If you were to use a valueChangeListener, it would have to reference a method in a backing bean that takes a valueChangeEvent as its argument and returns void. Now try this - I haven't tried it myself, so I don't know that it will work, but I think it will. On your page:
    <af:form id="theForm" defaultCommand="executeButton">
      <af:inputHidden id="startDate" value="#{bindings.Eventdate.inputValue}" />
      <af:commandButton id="executeButton"
                                    actionListener="#{bindings.Execute.execute}"
                                    text="Search"
                                    disabled="#{!bindings.Execute.enabled}"
                                    inlineStyle="display: none;" />
    </af:form>And in your Javascript function:
    document.theForm.submit();The basic idea is that the defaultCommand property of the form says that any submit of the form defaults to the button with the id=executeButton, unless some other button or link is explicitly clicked. The button has an inlineStyle with display none, which hides it from the user. Then the Javascript submits the form which ought to execute the default command.

  • My 9 year old somehow ran up $99.00 while playing games on my iPad. How do I submit for a refund?

    My 9 year old son somehow ran up $99.00 in app purchases on my iPad. How do I submit for a refund? I have been all over the website but of course, this is the ONE thing I can't find.

    There are no refunds.
    You can try contacting itunes support and asking for an exception.
    Click "Support" at the top of this page, then click the link under "Contact Us"

  • I want to connect a FLIR camera to my iPad. How can I submit a PAL signal to my iPad?

    I want to connect a FLIR camera to my iPad. How can I submit a PAL signal to my iPad?

    Thanks, too bad. Now I have to get a different tablet, ****.

  • How Can I Submit A Concurrent Program Using Form Personalizaton?

    How can I submit a concurrent program? Please help!
    Thanks in advance
    PhuTri

    I think the problem in your case coould be that the Concurrent Program you are trying to run has not been registered in the responsibility from which you are runnig it.
    For eg. You are trying to run a program from Inventory Super User responsibility and the request group attached to the responsibility is say 'RG Inventory', but the concurrent program which you are trying to run from your inventory super user responsibility is registered under some other request group say 'RG Order Mangement' which is not attached to the nventory responsibility.
    So register the program under correct request group and see if this helps you.
    Other possibility is that check if you have permission to submit request from that responsibility. You can check this by going to the Menu ->View If the Request menu is disabled then you cannot submit the request.

  • How can i submit form-data with acrobat pocket pc

    how can i submit form-data (http-post) on a PPC?
    how can i store the data offline?
    which submit-functions are availabe for the pocket pc reader?
    do i need ARES?
    where can i find a documentation of of the available functions for the ppc version?
    where can i fond form-samples for ppc?
    from the docu on my pocket pc:
    Submit form data using handheld devices over a wireless connection. If you are working offline, the data is temporarily stored, then submitted once a connection is established. Send forms by e-mail or directly to the destination server using a cradle or cable

    To your question regarding the Pocket PC version of Reader, I downloaded Adobe Reader for Pocket Pc 2 and installed it on my HP iPAQ . I then loaded my test PDF file onto the iPAQ. The Reader for Pocket PC preformed an email submission fine. However, I received no indication that anything happened when I tried an HTTP Post. So I think you can only do an email submission.
    In general, I have been testing to see how much I can do without the Live Cycle Reader Extensions, since for sure I will never be able to purchase them. What I have found is that for Acrobat Reader 7, the email submission works for all of the people I have asked to test it, but the HTTP Post has worked for only one of the two people who have tested it so far with Reader 7 (the one for which it worked claims that he only has Reader 7 on his computernot Acrobat).

  • But how to use submit??

    but how to use submit?? i mean how to generate an event thru submit and how to receive these values in the next page

    but how to use submit??You can do it by using Simple HTML Code
    <INPUT TYPE="SUMBIT" VALUE="SUBMIT">
    i mean how to generate an event thru submit and how to receive these values in the next pageTo generate an event through Submit! You need to do this using java script.
    I think you are talking about assingning some values on the click of submit and collecting those values in the next page!
    To do that
    keep some input fields in page1. Then try to assign the values to those input fileds using javascript through onclick event.
    <INPUT TYPE="SUMBIT" VALUE="SUBMIT" onclick="javascript:callSomeFunc()">
    In
    callSomeFunc() {
    //Assign values to the hidden fields
    In next page say page2 collect those values using request.getAttribute(" InputHiddenFieldsName);
    That's it.

  • How do I submit netflix ID using Apple TV remote

    How do I submit the Netflix ID using Apple TV remote?

    Welcome to the Apple Community.
    just use the up, down, left and right buttons to navigate to each letter or number, pressing enter when the selection is correct, when complete navigate to and select the submit button.

  • How do we submit a new build/update to the stores?

    We have an active/live app that was previously done by an agency via their own server. We have terminated their service, and now via Adobe DPS, how do we submit a new build/update to the stores (instead of submitting as a new app)?
    We are new to Adobe DPS.

    Hi Sarah, the following document should help: Migrating your applications to Adobe Digital Publishing Suite (iOS edition) | Adobe Developer Connection

  • How do I submit my e book to the i book store

    How do I submit my e-pub book to the i store and get approved as quickly as possible?

    There was a question on exactly this topic a few days ago. I suggest you search past topics.
    If it says it needs Leopard then very, very likely you have to have Leopard. You might get away with an earlier version of Leopard (no reason to though, since once you buy Leopard the updates are free).
    My link to Leopard system requirements now shows Snow Leopard which isn't even for sale yet so maybe somebody else has a specific system requirements link for Leopard.
    For hardware suggestions (more RAM) I suggest you post on the hardware forum for your computer. I think RAM upgrades are usually relatively easy to do yourself, though you have to make sure you get the right RAM (Macs can be pretty picky). Get advice from others users of your computer model on the hardware forum for your model.

  • How display top 3 revenues in one block and remaining in another block

    How display top 3 revenues in one block and remaining in another block.

    create a variable as
    v_Rank =Rank([Revenue])
    then create a block level filter on the 2nd block as v_Rank Greater than 3.
    you may need to modify the variable formula as per requirement to get the rank of the row.

  • How do I submit a question without having to be logged in?

    How do I submit a question without having to be logged in?

    you are already logged in, and that is the only way.  Sorry, you arent talking to apple, we are just users like you.

Maybe you are looking for

  • Kerning/Letterspacing Problems with TLF - and more

    Hello, I have some troubles with TLF (RichEditableText - editable) and Letterspacing/Kerning. Problem is, that I my application uses a different rendering-engine on the server-side. Textediting happens with a Flash/Flex Client displaying serverside s

  • Special characters pasted from Word doc not rendering in Adobe Reader

    We have recuiters who have copy/pasted special characters from MS-Word into a new eRecruiting requisition (the text contained square bullets from a bulleted list).  When pasted into the requsition, the Adobe pdf displays those characters as "-,," to

  • How to read ssas cube and role from Excel vba

    Hi, I want to read all roles and cubes in SSAS Db from Excel Vba. 1. First i want to read all the roles which was assigned to me 2. based on the role, i have to read all cube name Please help me to accomplish this task.

  • How to uninstall Adobe Photoshop CS5.1

    I am getting an error message while unstalling Adobe Photoshop CS5.1.  I have also used Adobe Creative Suite Cleaner tool to uninstall this. But could not get sucess. This software is taking 2.10 GB space. Please suggest. My system properties are: OS

  • HTTP Status 404 (not again)

    For some reason, don't know why, I'm running my ANT script and below is the message I get. When I try to view the URL at: http://localhost:8080/OnlineRegistration/ I get the unpleasant message: HTTP Status 404 - /OnlineRegistration/ type Status repor