Display form  function not working at HRADMIN level.

Hi ,
I have got a problem with   an  Adobe interactive form at HRADMIN level. i could run the perform personnel Actions(connecting to R/3), Email functions from the Action Box at  HRADMIN . when i try for the Display form , the page is refreshing it self and not getting  displayed .
needs some help.
Rgds,
Venkat

Thanks for your reply.
I have set the rendered property to ${oa.viewobjectname.columnname}
which is same as u mentioned I guess. It is working based on the first row fetched but not based on each rows value.
As per Ramkumar in the below thread , SPEL does not work at row level is it TRUE can anypne confirm?
Re: Bound Values
I have been waiting to get someresponse from yesterday.
Anyway, as My plan was to use the logic to build review page ( to show Blue dot if old value is not equals to new value) , I have planned to replace SPEL with oracle SQL logic I wrote a sql which returns something like this, I could not find any better alternates ( wrost one was to create 7 VO's (bcaz i have 7 columns to disp) and apply SPEL there)
Select 'Empno' column, AEmpno Current,Bempno Proposed,decode( a.empno,b.empno,'','*') from xxx_v
union
Select 'Ename',Aename,Bename,decode(aename,bename,'','*') from xxx_v
* indicates Changed data.

Similar Messages

  • Validate form function not working

    I want to implement a validate form function within my bean.I can add to table no problem but when i am testing and leaving a field out (first name for example),it should redirect to a retry page. but it is throwing a null pointer exception within the validate method.
    here is an example..just the firstName validation
    public boolean validate() {
    boolean allOk=true;
    if (firstName.equals("")) {
    errors.put("firstName","Please enter your first name");
    firstName="";
    allOk=false;
    .....return allOk; if all fields have been entered
    the field is empty so it should return allOk as false,therefore redirecting to retry.jsp
    the controller jsp is as follows
    <jsp:useBean id="registerUser" class="com.football.RegisterBean" scope="request">
    <jsp:setProperty name="registerUser" property="*"/>
    </jsp:useBean>
    <%
    if (registerUser.validate()) {
    %>
    <jsp:forward page="RegisterServlet"/>
    <%
    } else {
    %>
    <jsp:forward page="/register_retry.jsp"/>
    <%
    %>
    i have also tried
    if ("".equals(firstName)) {
    but this will allow the user to be added without first name..any ideas?
    ???

    Try the below code snippet
    public boolean validate() {
    boolean allOk=true;
    if (firstName.equals(" ")) {   //modified here.
    errors.put("firstName","Please enter your first name");
    firstName="";
    allOk=false;
    }

  • Not able to sign into Blackberry Protect. Backup and Restore function not working. "Your device isn't associated with a Blackberry ID"

    Not able to sign into Blackberry Protect.  Backup and Restore function not working. Message is: "Your device isn't associated with a Blackberry ID."  My Blackberry Messenger and Blackberry World is working fine so I am sure its not an ID issue on the phone.  I can sign into Link, Blackberry.com and Protect.  I see my device in Protect but cannot send messages or view it on a map.  Times out with cannot reach device message.  BB Protect on Device has a swirling circle beside the on/of switch.  Cannot turn off.  
    I have deleted Link and re-installed.
    I have reset phone to default(factory) and signed in. 
    OS level is 10.2.1.3062
    BB Link is 1.2.3.56
    Solved!
    Go to Solution.

    I managed to figure this out myself. I had to delete the device from the Blackberry Protect website.  protect.blackberry.com.  I wiped my device again and signed in with my Blackberry ID.  I dont know if the step of wiping was necessary as I did not try my backup with the current configuration on the device following the delete.  Restore is in progress for me!

  • Form is not working of multiple form check boxs, source posted. HELP.

    Form is not working of multiple form check boxs, source posted. HELP.
    I'm trying to have golive form be able to check one, two or all of the options in Graphics field.
    As is it will only post results from the last checked box.
    Here's the page
    http://www.perfection-press.com/Pages/ContactForm.html
    Here's where source in golive has scanning,design,filesupplied.
    [code removed to fix forum topic display]

    Since the checkboxes all have the same name, the values are over-writing each other when being passed to the PHP script. The best way to fix that is to add a pair of empty square [] brackets after the checkbox names, so make the names "graphics[]" instead of "graphics". That tells PHP that the values are being passed as a list (an array) instead of a single value. As long as your processing script knows what to do from there (and it does), should solve the problem.
    By the way, I noticed that two of the checkboxes were named "graphics" and the other was "graphic" (singular). You'll want to fix that too so they're all the same.

  • MDX -Children count function Not working in Case statement

    Hi,
    I am trying to create set when you slice with the Hierarchy member is leaf level , I want a output only that Leaf level .
    and When I slice with  the parent level , it has to give all the members below that parent level.
    But the problem here is when I select child member or leaf member , The first condition in the Case is not working
    WITH SET
    TESTSET AS
    CASE
    WHEN
     [Dimension].[Hierarchy].currentmember.children.count<0
    THEN
     [Dimension].[Hierarchy].currentmember
    ELSE
     DESCENDANTS([Dimension].[Hierarchy].Currentmember,,AFTER)
    END
    SELECT
    WBSSET ON 1,
    {} on 0
    FROM
     (SELECT {[Dimension].[Hierarchy].&[10]} ON COLUMNS FROM [CubeName])
    Thanks,
    Santosh

    Hi Santosh,
    I don't think Children count function not working in case statement, I have tested it on my local environment, here s the sample query for you reference.
    with member
    testset as
    case
    when
    [Geography].[Geography].currentmember.children.count<10
    then "X"
    else "OK"
    end
    select testset on 0,
    {[Geography].[Geography].[Country].members} on 1
    from
    [Adventure Works]
    In your scenario, the issue might be caused by the query isself, you can try to use IsLeaf Funcion to achieve your requirement. Please refer to the links below.
    http://msdn.microsoft.com/en-us/library/ms144932.aspx
    http://www.databasejournal.com/features/mssql/article.php/3633696/MDX-Operators-The-IsLeaf-Operator--Conditional-Logic-within--Calculations.htm
    http://www.mdxpert.com/Functions/MDXFunction.aspx?f=22
    Regards,
    Charlie Liao
    TechNet Community Support

  • SPEL Review Page - not working at row level

    I have searched the forum for "review page" and "SPEL" try to find solutions and tryed the techniques, but still not working.
    This is what I am trying to do Display Employee details ( empno,sal,comm,deptno) I wanted to display edit icon only when deptno=10 otherwise not.as mentioned in one of the threads i have added a column decode(deptno,10,1,0) DispEdit and set the rendered property of that edit icon/item. Wrote the code necessary to return TRUE or FALSE,
    I think its setting rendered property based on the first record, not changing based on each record.
    currently based on the first record and how I put the logic its 1. Displays the column/edit icon 2. Does not display the column.so it this statement right?
    Please help.
    I found 2 forums that said it worked
    1. same as above
    Problem Using SPEL
    2. in the second thread uses row.setAttributeValue/populate...
    SPEL
    basically I am trying to create a review page with change indicator image ( I have sql that has select old_date,new_date, changes_YN columns).

    Thanks for your reply.
    I have set the rendered property to ${oa.viewobjectname.columnname}
    which is same as u mentioned I guess. It is working based on the first row fetched but not based on each rows value.
    As per Ramkumar in the below thread , SPEL does not work at row level is it TRUE can anypne confirm?
    Re: Bound Values
    I have been waiting to get someresponse from yesterday.
    Anyway, as My plan was to use the logic to build review page ( to show Blue dot if old value is not equals to new value) , I have planned to replace SPEL with oracle SQL logic I wrote a sql which returns something like this, I could not find any better alternates ( wrost one was to create 7 VO's (bcaz i have 7 columns to disp) and apply SPEL there)
    Select 'Empno' column, AEmpno Current,Bempno Proposed,decode( a.empno,b.empno,'','*') from xxx_v
    union
    Select 'Ename',Aename,Bename,decode(aename,bename,'','*') from xxx_v
    * indicates Changed data.

  • My start and end form is not working .

    My start and end form is not working .
    It showing error that start form in invalid.
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
       DIALOG                            = 'X'
       FORM                              = 'YSAMPLE1'
       LANGUAGE                          =  SY-LANGU.
    loop at itab1.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = '525'
       FUNCTION                       = 'SET'
       TYPE                           = 'BODY'
       WINDOW                         = 'MAIN'.
    endloop.
    CALL FUNCTION 'START_FORM'
    EXPORTING
      ARCHIVE_INDEX          =
       FORM                   = 'ysample1'
      LANGUAGE               = ' '
       STARTPAGE              = 'next'.
       CALL FUNCTION 'END_FORM'.
    Thanks and regards
    Mave
    CALL FUNCTION 'CLOSE_FORM'.

    You should use END_FORM and START_FORM when you want to say to your system:
    - OK! Here document print begins and there it finishes.
    Infact you can print many document opening the sapscript only one time:
    CALL OPEN_FORM
    LOOP MY_DOCUMETS.
    Here the print of document starts:
      CALL START_FORM
      CALL WRITE_FORM
      CALL WRITE_FORM
    Here the print of document finishes
      CALL END_FORM
    ENDLOOP.
    CALL CLOSE_FORM.

  • Copy/paste function not working in Firefox 22. Always good in previous versions

    Copy/paste function not working in Firefox 22. Always good in previous versions editions

    Well I've uninstalled FF22, thanks for the suggestion.
    Chrome works perfectly with ZA and C&P.

  • Why is the scroll function not working after accessing the voice feature in settings?

    Why is the scroll function not working after accessing the voice feature in settings?

    For some prerecorded audio files the Transpose slider will not work reliably. I found no clear pattern, when it does and when not.
    If all fails, create a loop from the audio file. Select the region in the track and use the command "File: Add region to Loop library".
    Set the current key and tempo, name the loop, and save the loop.
    Now add it from the loop browser to a new track and delete your old track. The search field in the Loop browser will help you to find the loop quickly.
    You will be able to transpose the sample as described above, like a regular loop.
    For example - a audio file turned into a loop and transposed:

  • Palm Desktop 6.2.2. and Lookup function not working in Windows 7

    Palm Desktop's lookup function not working in Windows 7 64bit. Please help.
    Post relates to: Centro (Verizon)
    This question was solved.
    View Solution.

    I was able to solve this by unchecking compatibility mode and setting the application to run as administrative.

  • My mini i pad 2 retina display screen is not work correctly after two days of buying appear some gray line on screen un furtunately i live in iran and i havnot access to any i pad store please guide me

    My mini i pad 2 retina display screen is not work correctly after two days of buying appear some gray line on screen un furtunately i live in iran and i havnot access to any i pad store please guide me

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430
     Cheers, Tom

  • My 'contact' form is not working.  When I send a test contact it returns to my adobe email account this: "Contact Form" has a new form submission.

    My 'contact' form is not working.  When I send a test contact it returns to my adobe email account this:
    "Contact Form" has a new form submission.

    What exactly is not working ? As you have mentioned form submission notification is received in your email account so form process is working I believe but you want the notifications to go to another email account I think.
    Have you added the email address in "Email to" field in form options ? If yes and then also you are not receiving the form , then please provide me the site url and post a screenshot or form with option box open.
    Thanks,
    Sanjit

  • 3.4: keyword auto-completion not working for multiple levels

    Auto-completion does not work with higher level keywords, which used to work in LR 3.3 (IIRC).
    Example:
    I enter in the "Click here to add keywords" field:
    "He" then LR tries to complete the keyword by showing keywords starting with "He". Fine.
    But this is a keyword which does not exist so far, so I enter "Heldenplatz > W" because I want to have sorted it under Wien. If I'm not mistaken, LR 3.3 showed after entering the "W" a list of existing keywords starting with W (auto-completion for the one level higher tag). This is not the case anymore. I have to enter  "Heldenplatz > Wien" completely, which makes it slow and error-prone.
    Am I mistaken or can you reproduce it?
    Cheers

    GaryRowe wrote:
    How can it be, after all this time, that they still do not have effective regression testing in place ? Any sane development team (who wants to remain sane ;-) builds this as a priority ... unless they aren't given the resources?
    I think (don't remember though) that this never worked, so regression testing would not have helped.
    What is really to worry, that features aren't consequently and completely implemented (and tested). With a new option in Lightroom 3, Adobe has offered support for keywords with spaces. It seems that this feature as neither been thoroughly analysed or implemented. Thus, we face the currently inconsequent support of it:
    keyword completion only works with the first entered word, but when you enter a complete keyword hierarchy using the ">" letters
    filtering seems to have problems too

  • Send & Recieve functionality not working with  WebDav after installing Acrobat XI

    Send & Recieve functionality not working with  WebDav after installing Acrobat XI for PDF.  Acrobat XI is complete installations(Trial Version).

    Hi Kiro ,
    Did you try opening that file in any other browser ?If not ,please try doing that once and see if that  works for you.
    Try Repairing Acrobat once and see if  that helps.
    Launch Acrobat>Navigate to Help>Repair Acrobat Installation.
    Regards
    Sukrit Dhingra

  • Keyboard + mouse functions not working

    After updating InDesign CC 6-days ago started to have issue with all keyboard + mouse functions not working ex. shift key does not constrain proportions when scaling. A restart fixed the issue thr first time. Today I have installed latest update and shut down and restarted several times does not fix issue. On a MacBook pro running OS X Mavericks 10.9.2.

    Disconnected extrenal devices ie keyboard and Wacom Bamboo tablet and restarted computer seemed to correct the issue.

Maybe you are looking for

  • Ae crashing when opening project

    Since of yesterday AE started crashing when opening a project which i worked on a few weeks ago. We opened it on a PC, saved, with a new name. and it would open just fine. When reconnecting the files (AI-drawing) it crashed again. Renamed the drawing

  • FI correspondence payment request form

    Payment request can be made via tcode FB12.  Now I need to print the payment request in SAPscript correspondence but there does not seem to be a form for this purpose.  Are there any forms that can be used? If not how do I resolve this issue?

  • X58 Pro not POSTing correctly

    Hi, My new install X58 Pro system powers up OK, all fans running, DVD and HDs spinning up but I get no video output and the machine powers back to standby after about 2-3 minutes. A couple of noob questions: - For a single video card which PCI-Expres

  • Developer help

    Im a registed devloper im wondering do i need a mac to get ios 5 beta?

  • Catalog sharing between Lightroom and Photoshop Elements

    Can the catalog be shared between Lightroom 2 and Photoshop Elements 10?