Anil Jain

Ranch Hand
+ Follow
since Mar 10, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Anil Jain

hello
i have a variable in xsl with a value like str1 = 6'3"Frame . When i m passing this function in my javascript function in xsl file getDatat('{str1}') i am getting errors. Please advise.
Hello all:
I have the following code in my stored proc to get the entire recordset. I am checking each record in this "TEMPREC" and i m also checking the condition of varialeb "i_copy_Notes". if it is equal to 1 then i want to move to next record. When i use "NEXT" . the compiler flags that next must be declared.
Please let me know how to move to next record.
Thanks

FOR TEMPREC IN
(
SELECT
DP_SER,
GRD_POS,
TS_POS,
ASG_ID,
DESCS,
GRD_ID
FROM DCGRD_POS
WHERE CLLI = i_FROM_CLLI AND SUBSYS = i_SUBSYS AND BAY_ID = v_OLD_BAY_ID ORDER BY GRD_ID
)
LOOP

IF v_OLD_GRDID = TEMPREC.GRD_ID THEN
v_NEW_GRDID := v_NEW_GRDID;

IF i_COPY_NOTES = 1 THEN
NEXT;
END IF;
ELSE
v_OLD_GRDID := TEMPREC.GRD_ID;
SELECT DCGRD_POS_GRD_ID.NextVal INTO v_NEW_GRDID FROM DUAL;
END IF;

INSERT INTO DCGRD_POS VALUES
(
i_TO_CLLI,
DCGRD_POS_ROW_SER.NextVal,
TEMPREC.DP_SER,
v_NEW_GRDID,
v_NEW_BAY_ID,
TEMPREC.GRD_POS,
DECODE(i_COPY_NOTES,1, TEMPREC.TS_POS,''),
TEMPREC.ASG_ID,
DECODE(i_COPY_NOTES,1,TEMPREC.DESCS,'UASGN'),
i_CURRENT_ISSUE,
-1,
i_SUBSYS,
SYSDATE,
i_USERID
);

END LOOP;NEXT
20 years ago
Hi:
I am trying to use keys to group my data in stylelist but i m getting the following error??
msxml2.dll error '80004005'
Keyword xsl:key may not be used here.
Please help asap
Thanks,
Friends:
I am getting the following error when i m trying to access the next sibling node value of my xml document.
Invalid axes name. parent: ATA/<--following-sibling::
What could be the problem??
Thanks,
Eric,
I am trying the following expresssion but it is not working accurately for me
/[a-z]{1,2}[0-9]{1-3}/gi;
(I forgot to mention you that even the numbers have to be atleast 1 and the at the most 3.
So in short the pattern should be like this
atleast 1 or at the most 2 alphabets and atleast 1 and at the most 3 numbers.
so all of the following would pass the test
a9
aa9
a999
x99
ff99
but the following will fail
9
a
aaa9
aa9999
aa9999
Please let me know if possible .
Thanks Eric for you earlier post as well
Friends!!
How do validate a word using regular expression in javascript, if i had to check that the word should have a atleast 1 alphabet and at the most 2 alphabets and only 3 digits.
There can be one alphabet or 2 alphabet and 3 number.
eg.z999 or zz999

Thanks
Friends!!
How do validate a word using regular expression in javascript, if i had to check that the word should have a only 1 alphabet and only 3 digits.
There should not be more more than one alphabet and 3 number and the first letter must be a letter.
eg.z999

Thanks
Friends:
Is there any way whereby I can get the data in xml format from an oracle database (9i) thru stored procedure.
To rephrase: i have to write stored procedure in oracle 9i which will return data in xml format.
Regards
Friends:
Is there any way whereby I can get the data in xml format from an oracle database (9i) thru stored procedure.
To rephrase: i have to write stored procedure in oracle 9i which will return data in xml format.
Regards
21 years ago
Friends:
I have a situation. I have to display 15-20 web pages. These web pages are forms and have almost same functionality. some pages require 5 fields while other require 8, something like that. but there are some pages that have almost same fields with a diffence of 1 or 2.

I don't want to hard code the 15-20 web pages. is there any way that we can create the web pages on the fly as per the user requirement.???
Every suggestion is appreciated
R
21 years ago
JSP
Dear Friends:
I have to graphically demonstrate the flow of web pages from one page to another. For instance, the first web page would be login page. If login succeeds then they enter the website if not then they go to registration page etc etc.
I have to provide this flow for more then 30 pages. Is there any tool for implementing this graphically.
Please Let me know asap.
Regards,
21 years ago
JSP
Hello:
Is there any JSP Certification available??
Regards,
Hello:
I would like to know if there is any JSP certification available?
Thanks
21 years ago
JSP
Hello friends!!
I am trying to compile these codes which belong to same package. The first code compiles allright but the second one gives me errors. Both of them belong to same package.
**********Item.java file****************

I get the folloing errors when i compile the ShoppingCart.java
C:\Tomcat\jakarta\webapps\myJSPApp\WEB-INF\classes\ShoppingCart.java:5: cannot resolve symbol
symbol : class Item
location: class jspin24hrs.hour16.ShoppingCart
public void addItem(Item i){items.addElement(i);}
^
C:\Tomcat\jakarta\webapps\myJSPApp\WEB-INF\classes\ShoppingCart.java:9: cannot resolve symbol
symbol : class Item
location: class jspin24hrs.hour16.ShoppingCart
Item item = (Item)itemEnum.nextElement();
^
C:\Tomcat\jakarta\webapps\myJSPApp\WEB-INF\classes\ShoppingCart.java:9: cannot resolve symbol
symbol : class Item
location: class jspin24hrs.hour16.ShoppingCart
Item item = (Item)itemEnum.nextElement();
^
C:\Tomcat\jakarta\webapps\myJSPApp\WEB-INF\classes\ShoppingCart.java:20: cannot resolve symbol
symbol : class Item
location: class jspin24hrs.hour16.ShoppingCart
Item item = (Item)itemEnum.nextElement();
^
C:\Tomcat\jakarta\webapps\myJSPApp\WEB-INF\classes\ShoppingCart.java:20: cannot resolve symbol
symbol : class Item
location: class jspin24hrs.hour16.ShoppingCart
Item item = (Item)itemEnum.nextElement();
^
5 errors
Tool completed with exit code 1

PLEASE LET ME KNOW WHERE I AM MAKING THE MISTAKE
THANKS,
(edited by Cindy to format code)
[ August 13, 2002: Message edited by: Cindy Glass ]
21 years ago