cancel
Showing results for 
Search instead for 
Did you mean: 

SAP MII and JSP

Former Member
0 Kudos

Hi Experts

I need guidance a bit here ,

I got an  IRPT  file   and inside  i created a form  that will upload  a file to MII Server

but  i got a problem / do not know the solution to this , i need to   add  hidden field  from the IRPT page to the JSP  so that when  the file has been saved it has the  hidden field as the name of the new file in the server.

example

i have  table with   different names and quantiy, so i want to choose the first row of    which has     Apples    and quantity  is 10

now when i upload a document,  the selected row " Apples"  should  be saved  with current date and time  as the new file in SAP Server.

so how would i pass these field values  from IRPT  to JSP.

it has been bugging me for a while now

Accepted Solutions (0)

Answers (1)

Answers (1)

suhas_nagaraju
Participant
0 Kudos

Hi Tigomezge,

     When you try to call the jsp, say example.jsp, append the statement with parameters as you do normally.

Example: Example.jsp?CurrentDate=<current date>&CurrentTime=<current time>.

And on the JSP side retrive these as part of the request object.

Example: request.getParameter("CurrentDate").

Thanks,

Suhas