Hi all send me the implementation idea for the post

Hello all
Iam developing an application which takes a video file as an input.and all the functionality is to be carried by ajax.
The request will go to struts and there it generate thumbnails of that particular video in a folder on a server.
And my task is to display the images exactly in the page where i have uploaded a video.Suppose iam uploaded a video on a Login.jsp file and i have to show all the thumbnails on the same page.
Plz anyone can help me.
I would appreciate u if u do so.........
Thanks in advance

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
<script type="text/javascript">
var xmlHttp;
function createXmlHttpRequest()
     //For IE
if(window.ActiveXObject)
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
     //otherthan IE
else if(window.XMLHttpRequest)
xmlHttp=new XMLHttpRequest();
return xmlHttp;
//Next is the function that sets up the communication with the server.
function startRequest()
// alert("pppppp");
xmlHttp=createXmlHttpRequest();
//alert("k");
var video=document.getElementById("video").value;
xmlHttp.open("POST","CheckAvailability.do",true);
xmlHttp.onreadystatechange=handleStateChange;
xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
// xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded; charset=UTF-8");
xmlHttp.send("video="+video);
//This function also registers the callback handler, which is handleStateChange. Next is the code for the handler.
function handleStateChange()
var message=" ";
if(xmlHttp.readyState==4)
if(xmlHttp.status==200)
document.thumbs.results.value=video;
else
alert("Error loading page"+xmlHttp.status+":"+xmlHttp.statusText);
</script>
</HEAD>
<BODY>
<center>
<form name="thumbs" method="post" enctype="multipart/form-data" action=" ">
Userid <input type="file" name="video" id="video" onChange="startRequest();"/>
<br>
<br>
<input type="text" id="results"/>
</form>
</BODY>
</HTML>
This is my images.jsp page through which i can upload a video file for which i have to get the thumbnails.
Iam making an ajax call and forwarding the request to this struts.
package actions;
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
import java.util.*;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import java.sql.*;
import java.util.*;
import com.oreilly.servlet.MultipartRequest;
public class CheckAvailability extends Action {
     public ActionForward execute(ActionMapping mapping, ActionForm form,
               HttpServletRequest request, HttpServletResponse response)
               throws IOException, ServletException {
          /*String targetId = request.getParameter("video1");
          System.out.println("targetId " + targetId);
          PrintWriter out = response.getWriter();
          out.println("Meera");
          String uploadDirName="";
          String encodedDirName="";
          uploadDirName = getServlet().getServletContext().getRealPath("/");
          System.out.println("uploadDirName"+uploadDirName);*/
          /*Connection con;
          Statement stmt;
          ResultSet rs;
          String xmlString=null;
          try {
               Class.forName("oracle.jdbc.driver.OracleDriver");
     con=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:orcl","cmsws","system");
               stmt=con.createStatement();
               rs=stmt.executeQuery("select * from employee where empno=");
                    if(rs.next()){
                    xmlString=rs.getString(2)+","+rs.getInt(3);
                    else
                         xmlString ="0,0,0";
          catch(Exception e1){
               e1.printStackTrace();
          String inputvideo=request.getParameter("video");
          System.out.println("inputvideo is "+inputvideo);
//The below commented lines produce thumbnails for the uploaded input video.
//But the thing is that iam not receiving the response at Login.jsp page can u plz help me.
     /*     String contextPath = "";
          String contextPath1 = "";
          String uploadFile = "";
          String[] index = null;
          try {
               contextPath1 = request.getContextPath();
               System.out.println(contextPath1 );
               uploadDirName = getServlet().getServletContext().getRealPath(
                         "/upload"); //$NON-NLS-1$
               System.out.println("upload" + uploadDirName);
               encodedDirName = getServlet().getServletContext().getRealPath(
                         "/encoder"); //$NON-NLS-1$
               System.out.println("encodedDirName" + encodedDirName);
               contextPath = getServlet().getServletContext().getRealPath("/");
               System.out.println("multipart request");
               MultipartRequest multi = new MultipartRequest(request,
                         uploadDirName, 100 * 1024 * 1024, "ISO-8859-1"); //$NON-NLS-1$
               Enumeration params = multi.getParameterNames();
               while (params.hasMoreElements()) {
                    String name = (String) params.nextElement();
                    System.out.println("name" + name);
                    index = multi.getParameterValues(name);
               Enumeration files = multi.getFileNames();
               while (files.hasMoreElements()) {
                    String name = (String) files.nextElement();
                    File f = multi.getFile(name);
                    if (f != null) {
                         uploadFile = f.toString();
                         System.out.println("uploaded file name" + uploadFile);
               String[] str = new String[] { contextPath + "/ffmpeg", "-r", "1",
                         "-i", uploadFile, "-r", "0.1", "-ss", "00:00:05", "-y", "-s",
                         "120x80", contextPath + "/gen_images/test%3d.jpg" };
               ProcessBuilder pb = new ProcessBuilder(str);
               pb.redirectErrorStream(true);
               Process p = pb.start();
               InputStream is = p.getInputStream();
               InputStreamReader isr = new InputStreamReader(is);
               BufferedReader br = new BufferedReader(isr);
               String ss = br.readLine();
               while (ss != null) {
                    // System.out.println(ss);
                    ss = br.readLine();
                    pb.redirectErrorStream(true);
               File folder = new File(contextPath + "/gen_images/");
               File[] listOfFiles = folder.listFiles();
               List imageList = new ArrayList();
               int noofimages=listOfFiles.length;
               System.out.println("noofimages is "+noofimages);
               for (int i = 0; i < listOfFiles.length; i++) {
                    if (listOfFiles.isFile()) {
                         String fileAbsolutePath = contextPath1 + "/gen_images/"
                                   + listOfFiles[i].getName();
                         System.out.println(fileAbsolutePath);
                         imageList.add(fileAbsolutePath);
                    } else if (listOfFiles[i].isDirectory()) {
                         System.out.println("Directory " + listOfFiles[i].getName());
               request.setAttribute("imageList", imageList);
          } catch (Exception e) {
               e.printStackTrace();
response.setContentType("text/xml");
response.setHeader("Cache-Control","no-cache");
PrintWriter out=response.getWriter();
          if (inputvideo != null)
               //response.getWriter().write("<valid>true</valid>");
               //response.getWriter().write(inputvideo);
               //response.getWriter().println("<valid>true12</valid>");
               //response.setCharacterEncoding("UTF-8");
               //System.out.println("zeera");
               //System.out.println("zeera1");
               //response.getWriter().write("imageList");
               //response.getWriter().write("You have successfully made Ajax Call:");
               request.setAttribute("inputvideo",inputvideo);
               //out.println(inputvideo);
          } else {
               //response.setContentType("text/xml");
               //response.setHeader("Cache-Control", "no-cache");
               //response.getWriter().write("imageList");
               //response.getWriter().write("<valid>false</valid>");
               //response.getWriter().write("<valid1>true1</valid1>");
               out.println(inputvideo+"meera");
          return mapping.findForward("thumbscreated");

Similar Messages

  • Multiple Address Book Entries that all send to the same GW account ?

    Our CIO wants a few address book entries that if chosen, will all send to
    the same account.
    Seems easy enough but I haven't found a way, without creating a new account
    that has some Forward or Delegate rule.
    Is there a nicer way to do it without having another real GW account created
    and using Rules?
    I was kind of hoping to just create an External User that simply points to
    the one account but it complains that that e-mail address already exists.
    Thanks
    Marc

    Marc Charbonneau wrote:
    > Our CIO wants a few address book entries that if chosen, will all
    > send to the same account.
    >
    > Seems easy enough but I haven't found a way, without creating a new
    > account that has some Forward or Delegate rule.
    >
    > Is there a nicer way to do it without having another real GW account
    > created and using Rules?
    >
    > I was kind of hoping to just create an External User that simply
    > points to the one account but it complains that that e-mail address
    > already exists.
    Why not using nick names ? The only downside is gw7 and earlier
    nicknames don't show up in the address book. GW8 does show the
    nicknames in the address book.
    Cheers,
    Edward

  • Is there any way to send apple new feature ideas for upcoming phones?

    I hate turning my phone on and off to replay youtube songs. I was was wondering if there is a forum somewhere where we can give ideas to apple. Like adding a play button like the one on the headphones under the the 2 volume buttons so you can control your music without turning your iPhone on.

    Click here and fill out the form.
    (121746)

  • Great idea for Safari

    Hi All
    I have a great idea for a new feature for Safari that ties into social media and intergration with friends and collegues.
    IMHO this could change the way people use the web.
    Are there any coders or developers out there that would want to come in on the project to help bring it to fruition??
    If anyone is interested please contact me.
    Thanks
    Steve

    http://www.apple.com/feedback/logicpro.html

  • MIGO not displaying GOITEM-SGTXT for new posting

    Hi All,
    MIGO not displaying GOITEM-SGTXT for new posting
    last year postings SGTXT  is visible,
    while checking in customer exits there is no no code.
    I want to make it visible GOITEM-SGTXT.
    Plz help.
    Thanks
    Saket

    Hi guru's,
    I have similar issue with MIGO Material Doc display,
    The screen field GOITEM-SGTXT on the 'Where' tab is not displaying for current year ,
    Previous years the Text field is displaying with the data.
    GOITEM-SGTXT is getting the data from ML18N ,  ESSR-TXZ01 as the text is not entering through MIGO.
    I checked the customer exit and the BADI's for the MIGO , but not activated for manipulating the
    GOITEM-SGTXT.
    Please give me an idea what makes this issue.
    System Details:
    ECC 5.0
    SAP_APPL - 5.0     Logistics.
    SAP_ABA -  6.40   Cross-Application Component
    Thank you

  • Hi All, Pls send me the recording for va01 by handling table control

    Hi All, Pls send me the recording for va01 by handling table control with 3 or more materials. Pls send me a flat file and code ASAP.
    Thanks&regards.
    Bharat

    Here is a example of similar kind ..plz go through this doc..it will be help hul 4 u
    How to deal with table control / step loop in BDC?
    Steploop and table contol is inevitable in certain transactions. When we run BDC for such transactions, we will face the situation: how many visible lines of steploop/tablecontrol are on the screen? Although we can always find certain method to deal with it, such as function code 'NP', 'POPO', considering some extreme situation: there is only one line visible one the screen,
    our BDC program should display an error message. (See transaction 'ME21', we you resize your screen to let only one row visible, you can not enter mutiple lines on this screen even you use 'NP')
    Now, I find a method with which we can determine the number of visible lines on Transaction Screen from our Calling BDC program. Maybe it is useless to you, but I think it will give your some idea.
    Demo ABAP code has two purposes:
    1. how to determine number of visible lines and how to calculte page number; (the 'calpage' routine has been modify to meet general purpose usage)
    2. using field symbol in BDC program, please pay special attention to the difference in Static
    ASSIGN and Dynamic ASSIGN.
    Now I begin to describe the step to implement my method:
    (I use transaction 'ME21', screen 121 for sample, the method using is Call Transation Using..)
    Step1: go to screen painter to display the screen 121, then we can count the fixed line on this screen, there is 7 lines above the steploop and 2 lines below the steploop, so there are total 9 fixed lines on this screen. This means except these 9 lines, all the other line is for step loop.
    Then have a look at steploop itselp, one entry of it will occupy two lines.
    (Be careful, for table control, the head and the bottom scroll bar will possess another two fixed lines, and there is a maximum number for table line)
    Now we have : FixedLine = 9
    LoopLine = 2(for table control, LoopLine is always equal to 1)
    Step2: go to transaction itself(ME21) to see how it roll page, in ME21, the first line of new page is always occupied by the last line of last page, so it begin with index '02', but in some other case, fisrt line is empty and ready for input.
    Now we have: FirstLine = 0
    or FirstLine = 1 ( in our case, FirstLine is 1 because the first line of new page is fulfilled)
    Step3: write a subroutine calcalculating number of pages
    (here, the name of actual parameter is the same as formal parameter)
    global data: FixedLine type i, " number of fixed line on a certain screen
    LoopLine type i, " the number of lines occupied by one steploop item
    FirstLine type i, " possbile value 0 or 1, 0 stand for the first line of new
    " scrolling screen is empty, otherwise is 1
    Dataline type i, " number of items you will use in BDC, using DESCRIBE to get
    pageno type i, " you need to scroll screen how many times.
    line type i, " number of lines appears on the screen.
    index(2) type N, " the screen index for certain item
    begin type i, " from parameter of loop
    end type i. " to parameter of loop
    *in code sample, the DataTable-linindex stands for the table index number of this line
    form calpage using FixedLine type i (see step 1)
    LoopLine type i (see step 1)
    FirstLine type i (see step 2)
    DataLine type i ( this is the item number you will enter in transaction)
    changing pageno type i (return the number of page, depends on run-time visible line in table control/ Step Loop)
    changing line type i.(visible lines one the screen)
    data: midd type i,
    vline type i, "visible lines
    if DataLine eq 0.
    Message eXXX.
    endif.
    vline = ( sy-srows - FixedLine ) div LoopLine.
    *for table control, you should compare vline with maximum line of
    *table control, then take the small one that is min(vline, maximum)
    *here only illustrate step loop
    if FirstLine eq 0.
    pageno = DataLine div vline.
    if pageno eq 0.
    pageno = pageno + 1.
    endif.
    elseif FirstLine eq 1.
    pageno = ( DataLine - 1 ) div ( vline - 1 ) + 1.
    midd = ( DataLine - 1 ) mod ( vline - 1).
    if midd = 0 and DataLine gt 1.
    pageno = pageno - 1.
    endif.
    endif.
    line = vline.
    endform.
    Step4 write a subroutine to calculate the line index for each item.
    form calindex using Line type i (visible lines on the screen)
    FirstLine type i(see step 2)
    LineIndex type i(item index)
    changing Index type n. (index on the screen)
    if FirstLine = 0.
    index = LineIndex mod Line.
    if index = '00'.
    index = Line.
    endif.
    elseif FirstLine = 1.
    index = LineIndex mod ( Line - 1 ).
    if ( index between 1 and 0 ) and LineIndex gt 1.
    index = index + Line - 1.
    endif.
    if Line = 2.
    index = index + Line - 1.
    endif.
    endif.
    endform.
    Step5 write a subroutine to calculate the loop range.
    form calrange using Line type i ( visible lines on the screen)
    DataLine type i
    FirstLine type i
    loopindex like sy-index
    changing begin type i
    end type i.
    If FirstLine = 0.
    if loopindex = 1.
    begin = 1.
    if DataLine <= Line.
    end = DataLine.
    else.
    end = Line.
    endif.
    elseif loopindex gt 1.
    begin = Line * ( loopindex - 1 ) + 1.
    end = Line * loopindex.
    if end gt DataLine.
    end = DataLine.
    endif.
    endif.
    elseif FirstLine = 1.
    if loopindex = 1.
    begin = 1.
    if DataLine <= Line.
    end = DataLine.
    else.
    end = Line.
    endif.
    elseif loop index gt 1.
    begin = ( Line - 1 ) * ( loopindex - 1 ) + 2.
    end = ( Line - 1 ) * ( loopindex - 1 ) + Line.
    if end gt DataLine.
    end = DataLine.
    endif.
    endif.
    endif.
    endform.
    Step6 using field sysbol in your BDC, for example: in ME21, but you should calculate each item will correponding to which index
    form creat_bdc.
    field-symbols: <material>, <quan>, <indicator>.
    data: name1(14) value 'EKPO-EMATN(XX)',
    name2(14) value 'EKPO-MENGE(XX)',
    name3(15) value 'RM06E-SELKZ(XX)'.
    assign: name1 to <material>,
    name2 to <quan>,
    name3 to <indicator>.
    do pageno times.
    if sy-index gt 1
    *insert scroll page ok_code"
    endif.
    perform calrange using Line DataLine FirstLine sy-index
    changing begin end.
    loop at DataTable from begin to end.
    perform calindex using Line FirstLine DataTable-LineIndex changing Index.
    name1+11(2) = Index.
    name2+11(2) = Index.
    name3+12(2) = Index.
    perform bdcfield using <material> DataTable-matnr.
    perform bdcfield using <quan> DataTable-menge.
    perform bdcfield using <indicator> DataTable-indicator.
    endloop.
    enddo.
    Sample code
    Following is a sample code of handling table control in BDC.
    REPORT Y730_BDC5 .
    *HANDLING TABLE CONTROL IN BDC
    DATA : BEGIN OF IT_DUMMY OCCURS 0,
    DUMMY(100) TYPE C,
    END OF IT_DUMMY.
    DATA : BEGIN OF IT_XK01 OCCURS 0,
    LIFNR(10) TYPE C,
    BUKRS(4) TYPE C,
    EKORG(4) TYPE C,
    KTOKK(4) TYPE C,
    NAME1(30) TYPE C,
    SORTL(10) TYPE C,
    LAND1(3) TYPE C,
    SPRAS(2) TYPE C,
    AKONT(6) TYPE C,
    FDGRV(2) TYPE C,
    WAERS(3) TYPE C,
    END OF IT_XK01,
    BEGIN OF IT_BANK OCCURS 0,
    BANKS(3) TYPE C,
    BANKL(10) TYPE C,
    BANKN(10) TYPE C,
    KOINH(30) TYPE C,
    LIFNR(10) TYPE C,
    END OF IT_BANK.
    DATA : IT_BDCDATA LIKE BDCDATA OCCURS 0 WITH HEADER LINE,
    IT_BDCMSGCOLL LIKE BDCMSGCOLL OCCURS 0 WITH HEADER LINE.
    CALL FUNCTION 'WS_UPLOAD'
    EXPORTING
    FILENAME = 'C:\VENDOR.TXT'
    FILETYPE = 'ASC'
    TABLES
    DATA_TAB = IT_DUMMY.
    LOOP AT IT_DUMMY.
    IF IT_DUMMY-DUMMY+0(2) = '11'.
    IT_XK01-LIFNR = IT_DUMMY-DUMMY+2(10).
    IT_XK01-BUKRS = IT_DUMMY-DUMMY+12(4).
    IT_XK01-EKORG = IT_DUMMY-DUMMY+16(4).
    IT_XK01-KTOKK = IT_DUMMY-DUMMY+20(4).
    IT_XK01-NAME1 = IT_DUMMY-DUMMY+24(30).
    IT_XK01-SORTL = IT_DUMMY-DUMMY+54(10).
    IT_XK01-LAND1 = IT_DUMMY-DUMMY+64(3).
    IT_XK01-SPRAS = IT_DUMMY-DUMMY+67(2).
    IT_XK01-AKONT = IT_DUMMY-DUMMY+69(6).
    IT_XK01-FDGRV = IT_DUMMY-DUMMY+75(2).
    IT_XK01-WAERS = IT_DUMMY-DUMMY+77(3).
    APPEND IT_XK01.
    ELSE.
    IT_BANK-BANKS = IT_DUMMY-DUMMY+2(3).
    IT_BANK-BANKL = IT_DUMMY-DUMMY+5(10).
    IT_BANK-BANKN = IT_DUMMY-DUMMY+15(10).
    IT_BANK-KOINH = IT_DUMMY-DUMMY+25(30).
    IT_BANK-LIFNR = IT_DUMMY-DUMMY+55(10).
    APPEND IT_BANK.
    ENDIF.
    ENDLOOP.
    LOOP AT IT_XK01.
    REFRESH IT_BDCDATA.
    perform bdc_dynpro using 'SAPMF02K' '0100'.
    perform bdc_field using 'BDC_CURSOR'
    'RF02K-REF_LIFNR'.
    perform bdc_field using 'BDC_OKCODE'
    '/00'.
    perform bdc_field using 'RF02K-LIFNR'
    IT_XK01-LIFNR.
    perform bdc_field using 'RF02K-BUKRS'
    IT_XK01-BUKRS.
    perform bdc_field using 'RF02K-EKORG'
    IT_XK01-EKORG.
    perform bdc_field using 'RF02K-KTOKK'
    IT_XK01-KTOKK.
    perform bdc_dynpro using 'SAPMF02K' '0110'.
    perform bdc_field using 'BDC_CURSOR'
    'LFA1-TELX1'.
    perform bdc_field using 'BDC_OKCODE'
    '/00'.
    perform bdc_field using 'LFA1-NAME1'
    IT_XK01-NAME1.
    perform bdc_field using 'LFA1-SORTL'
    IT_XK01-SORTL.
    perform bdc_field using 'LFA1-LAND1'
    IT_XK01-LAND1.
    perform bdc_field using 'LFA1-SPRAS'
    IT_XK01-SPRAS.
    perform bdc_dynpro using 'SAPMF02K' '0120'.
    perform bdc_field using 'BDC_CURSOR'
    'LFA1-KUNNR'.
    perform bdc_field using 'BDC_OKCODE'
    '/00'.
    perform bdc_dynpro using 'SAPMF02K' '0130'.
    perform bdc_field using 'BDC_CURSOR'
    'LFBK-KOINH(02)'.
    perform bdc_field using 'BDC_OKCODE'
    '=ENTR'.
    DATA : FNAM(20) TYPE C,
    IDX TYPE C.
    MOVE 1 TO IDX.
    LOOP AT IT_BANK WHERE LIFNR = IT_XK01-LIFNR.
    CONCATENATE 'LFBK-BANKS(' IDX ')' INTO FNAM.
    perform bdc_field using FNAM
    IT_BANK-BANKS.
    CONCATENATE 'LFBK-BANKL(' IDX ')' INTO FNAM.
    perform bdc_field using FNAM
    IT_BANK-BANKL.
    CONCATENATE 'LFBK-BANKN(' IDX ')' INTO FNAM.
    perform bdc_field using FNAM
    IT_BANK-BANKN.
    CONCATENATE 'LFBK-KOINH(' IDX ')' INTO FNAM.
    perform bdc_field using FNAM
    IT_BANK-KOINH.
    IDX = IDX + 1.
    ENDLOOP.
    perform bdc_dynpro using 'SAPMF02K' '0130'.
    perform bdc_field using 'BDC_CURSOR'
    'LFBK-BANKS(01)'.
    perform bdc_field using 'BDC_OKCODE'
    '=ENTR'.
    perform bdc_dynpro using 'SAPMF02K' '0210'.
    perform bdc_field using 'BDC_CURSOR'
    'LFB1-FDGRV'.
    perform bdc_field using 'BDC_OKCODE'
    '/00'.
    perform bdc_field using 'LFB1-AKONT'
    IT_XK01-AKONT.
    perform bdc_field using 'LFB1-FDGRV'
    IT_XK01-FDGRV.
    perform bdc_dynpro using 'SAPMF02K' '0215'.
    perform bdc_field using 'BDC_CURSOR'
    'LFB1-ZTERM'.
    perform bdc_field using 'BDC_OKCODE'
    '/00'.
    perform bdc_dynpro using 'SAPMF02K' '0220'.
    perform bdc_field using 'BDC_CURSOR'
    'LFB5-MAHNA'.
    perform bdc_field using 'BDC_OKCODE'
    '/00'.
    perform bdc_dynpro using 'SAPMF02K' '0310'.
    perform bdc_field using 'BDC_CURSOR'
    'LFM1-WAERS'.
    perform bdc_field using 'BDC_OKCODE'
    '/00'.
    perform bdc_field using 'LFM1-WAERS'
    IT_XK01-WAERS.
    perform bdc_dynpro using 'SAPMF02K' '0320'.
    perform bdc_field using 'BDC_CURSOR'
    'WYT3-PARVW(01)'.
    perform bdc_field using 'BDC_OKCODE'
    '=ENTR'.
    perform bdc_dynpro using 'SAPLSPO1' '0300'.
    perform bdc_field using 'BDC_OKCODE'
    '=YES'.
    CALL TRANSACTION 'XK01' USING IT_BDCDATA
    MODE 'A'
    UPDATE 'S'
    MESSAGES INTO IT_BDCMSGCOLL.
    ENDLOOP.
    FORM BDC_DYNPRO USING PROG SCR.
    CLEAR IT_BDCDATA.
    IT_BDCDATA-PROGRAM = PROG.
    IT_BDCDATA-DYNPRO = SCR.
    IT_BDCDATA-DYNBEGIN = 'X'.
    APPEND IT_BDCDATA.
    ENDFORM.
    FORM BDC_FIELD USING FNAM FVAL.
    CLEAR IT_BDCDATA.
    IT_BDCDATA-FNAM = FNAM.
    IT_BDCDATA-FVAL = FVAL.
    APPEND IT_BDCDATA.
    ENDFORM.
    Reward if helpful

  • I've forgetten my password ID and I can't restore it though you send me an e\mail for it but the e-mail isn't arrive to my account at all. what am I suppose to do in order to restore my password ID?

    I've forgetten my password ID for ([email protected]) and I can't restore it though you send me an e\mail for it but the e-mail isn't arrive to my account at all. what am I suppose to do in order to restore my password ID?

    http://iforgot.apple.com

  • Is there a possibility to send from the Admin console the invitations to endusers in different languages? Somehow all the invitations go out in German but for my colleages in Spain and in the UK it makes it difficult to understand what they have to do wit

    Is there a possibility to send from the Admin console the invitations to endusers in different languages? Somehow all the invitations go out in German but for my colleages in Spain and in the UK it makes it difficult to understand what they have to do with this invitation. It doesn't help when I change the language in the admin console....Thanks for your help

    Hey Eric,
    Thanks for taking the time. Unfortunately no that does not solve it. Same as swipe it will get me there and it will show separate programs spaced out. The issue I am having is that all my open word files are bunched up in a pile on top of each other. I can see the edges of each one but I want them to be separated from each other enough that I can visually identify what file is what.
    Again, thanks for trying, it is appreciated.

  • On my iPad, I was receiving iMessages and had the history of all message that were on my iPhone showing up but I just did a restore and I'm not receiving them.  I can send, though.  Any ideas?

    On my iPad, I was receiving iMessages and had the history of all message that were on my iPhone showing up but I just did a restore and I'm not receiving them.  I can send, though.  Any ideas?

    is there any important stuff saved to your emails? if so you could log on to your emails from a seperate device and back them up. im not sure what else you could do :/

  • My apple I'd has been discarded for security reasons. The site asks me to give my email and they would send me the further instruction. But no Emil has arrived so far. Since January. And I did requested help multiple times. :( any ideas where can I solve

    My apple I'd has been discarded for security reasons. The site asks me to give my email and they would send me the further instruction. But no Emil has arrived so far. Since January. And I did requested help multiple times. :( any ideas where can I solve

    Who discarded the Apple ID? Apple? or You?
    Did you answer the Security Questions? Is the backup email accurate? Have you tried contacting them?

  • Where can I send in an idea for the next iPhone (or anything) to Apple so that they will take it in consideration and hopefully use it?

    I came up with a really amazing and helpful idea for the next generation Apple products!

    http://www.apple.com/feedback/
    http://www.apple.com/legal/policies/ideas.html

  • Give me some ideas for the project.

    Hi,folks
    I am not familiar with programming in web services. Now i have a project related to web services need to finish. I want to someone give me some ideas for the project. how can i implement the access control services. is there anyone can give me some related links for me to learn.
    Project Title: Implementing an access control service
    Project Description:
    Web services are emerging as a new approach to system construction and will make a major impact on the engineering of future business systems. They will allow a move from enterprise to inter-enterprise computing. However, with inter-enterprise computing, there are major problems with providing access to shared data, given that enterprises will not wish to share all data with partners.
    This project aims to investigate this problem by developing a prototype of an access control service that will help decide whether or not data access should be permitted. In essence, companies will outsource their access control to this service and so will not need to maintain their own access control lists for a potentially rapidly changing set of users.
    Suggested Platform: Windows or Linux
    Suggested Languages & Tools: Java

    Well, the approach I've come accross is a central server which is typically accessed indirectly from the web servers (e.g. through SOAP protocol or RMI).
    The remote server sends a user id and a password (or more likely a digest of the password), and receives a session token, basically just a random string of characters which is checked with the central server each time a secure transaction is attempted. The token will be stored in a session object, or perhaps directly in a cookie or in the URLs.
    Active session tokens are stored on the central server for comparison. This means the password doesn't have to be retained in the server.
    It's possible for the session token to be transfered if the user switches from one site to another on the same authentication server.
    Sun distributes one of these beasties, by the way, so you could take a look at their product specs.

  • Mail does not show all mails from the same sender

    Hello,
    I have a problem with Mail - maybe an undiscovered bug? I play lotto on the free online platform www.freelotto.com. Each day freelotto sends me 6 mail receipts for any individual lotto game I took part of. The sender is always the same in each of these mails.
    When I receive these mails on my iphone I got all the six mails I expected. The same on my ipad. But in Mail on my Mac (same settings) I got just four. Two mails are always missing!!! I have no idea why. The are not in the SPAM or any other folder (also not in the recycle bin). They are just missing at all. I also checked my mail provider but those two mails are not longer on the mail server. So Mail must have received them - but does not list them.
    What can I do?
    Regards,
         Meisinotti

    No one who could help?

  • Sending email is very slow for all clients

    Starting last week sending email takes anywhere from 1 to 5 minutes from the time we click on the "Send" button until it actually sends from the Mail app. It's happening to everyone on our network as far as I can tell.
    This happened in the past and after I ran Software Update on the mail server everything started working fine. Well this time we're still having the problem after all the mail server's software is up to date.
    I noticed that if I send an email and I create another email and send it within a minute or so of the first one finally going out, the second one sends off immediately. If I wait a few minutes and send an email I have to wait a minute again after clicking "send" for it to actually send off. It seems as though the connection to the mail server is being reset after a minute or so. And then for the Mail App to reconnect to the mail server is taking a minute to do. I have no idea how the whole process works, but that's what it seems like is happening.
    Hopefully this is making sense to you.
    If you have any ideas for me to try in order to get the Mail Apps to send out mail faster please let me know.
    One thing I have tried is to use the mail server's IP address instead of FQDN. Unfortunately Mail Apps with the IP address are acting just like ones with the FQDN. /shrug
    Thanks in advance for any help you can give me.

    Did some testing and webmail doesn't seem to have the same problems. I sent an email from my account through webmail and it showed up in the mail queue almost instantly. Sending mail from the Mail App through an IMAP connection is still taking me just about 1 minute. Some users are telling me that it takes up to 5 minutes at times.
    I also noticed that the server's CPU usage spikes about once per minute with clamscan taking up to 99% of the CPU's time. I don't remember this much CPU activity in the past. Also as of the last few weeks I have had users complaining of unusually high amounts of SPAM.
    I use spamtrainer to help with the SPAM problem.
    Oh how I adore those SPAMMERS... >.<

  • OC4J 10.1.2 - No XPathFactory implementation found for the object model

    Hello,
    We are doing some maintenance on an old 10.1.2.3.0 container. The project has to be extended with a library built with xml-apis-1.3.03.jar. I know you will suggest a upgrade, but that is a no-go - sorry, since other projects also are running on this server. So I hope some of you remember or know how to avoid or replace the oracle xml parser.
    It seems like it gets the wrong XPathFactory
    XPathFactory#newInstance() failed to create an XPathFactory for the default object model: http://java.sun.com/jaxp/xpath/dom
    with the XPathFactoryConfigurationException: javax.xml.xpath.XPathFactoryConfigurationException: No XPathFctory implementation found for the object model:
    I have searched the documentation for 10.1.2 and everything relevant on the Internet for a solution, but i seems to non-trivial when dealing with oracle xml parser. We tried to put the jar-files (xml-apis-1.3.03.jar, xercesImpl-2.8.0.jar, xalan-2.6.0.jar) in the endorsed library under the jdk, and we have already added <web-app-class-loader search-local-classes-first="true" include-war-manifest-class-path="true"/> to our orion-web.xml.
    I also know that the <shared-library> tag got introduced in 10.1.3 where you easily can replace the parser.
    Any ideas on how to deal with this exception or comments to the interpretation on the exception are appreciated.
    -MK

    Hello,
    You are correct, in OracleAS 10g (10.1.2), Oracle does not expose JMX MBean server.
    OracleAS 10g R3 (10.1.3) is a J2EE 1.4 container will full support for JMX, and all the JSR-77 MBeans exposed. You can also create and register your own MBeans.
    Could you give us the different requirements you have around JMX for your application?
    Regards
    Tugdual Grall

Maybe you are looking for