Problem in the Middle name ( F4 help)

Hi Gurus,
I am enhancing the standard F4 help of Personnel Number in PA30.My work is to add Middle name with the Last name - First name tab.I had added the Middle name in the search help PREMN and I had copied the M_PREMN selection method to Z_M_PREMN with middle name as an additional field. The problem I face is when I am giving the Middlename in the F4 of Personnel Number ( PA30) it is case-sensitive.
For Example I have middle name stored as Daniel in IT0002. When I am entering the Middlename as Daniel in the field Middlename in the F4 help of Personnel Number I am getting the corresponding output. But when i give it as DANIEL or DAniel it doesnt work.
How to resolve this issue?Please help.

Hi,
I think you should try translating to either upper or lower case both the search term and the entry in It0002.
Rgds,
Hema

Similar Messages

  • Error message in time machine: "There was a problem with the user name or the password of the network

    I have been unable to back up my macbook to my time capsule for some time now. I received the following error message (translated from Swedish) when trying to back up using time machine:
    "The network's volume could not be placed on the desktop. There was a problem with the user name or the password for the network.
    Open system preferences and go to Time Machine. Select the volume for security backup again and state the correct user name and password."
    I have confirmed the network password, and also tried with resetting the password. I have not idea what else to do. Any help is much appreciated.
    Best regards,
    John

    I have been unable to back up my macbook to my time capsule for some time now. I received the following error message (translated from Swedish) when trying to back up using time machine:
    "The network's volume could not be placed on the desktop. There was a problem with the user name or the password for the network.
    Open system preferences and go to Time Machine. Select the volume for security backup again and state the correct user name and password."
    I have confirmed the network password, and also tried with resetting the password. I have not idea what else to do. Any help is much appreciated.
    Best regards,
    John

  • A problem determining the JNDI Name of a local EJB with WL 8.1

    Hi,
    I created a very simple local EJB and deployed it with Weblogic8.1. When I test
    it in the Weblogic server admin page, I got the following message:
    "The EJB MyLocal has not been tested successfully. There was a problem determining
    the JNDI Name of the given bean."
    Can anyone help figure out the problem?
    Thanks
    Henry

    Does the ejb have a target server specified?
    Does the Ejb have a Jndi binding as specified in the <local-jndi-name></local-jndi-name>
    element of weblogic-ejb-jar.xml?
    thanks,
    Deepak
    "Henry" <[email protected]> wrote:
    >
    >
    Hi,
    I created a very simple local EJB and deployed it with Weblogic8.1. When
    I test
    it in the Weblogic server admin page, I got the following message:
    "The EJB MyLocal has not been tested successfully. There was a problem
    determining
    the JNDI Name of the given bean."
    Can anyone help figure out the problem?
    Thanks
    Henry

  • Cannot erase the middle name field in contacts?

    I cannot erase the Middle Name Field in Contacts, is this a bug or is there a trick?

    I would suggest raising a SR for this with Customer Support as it looks like issues around language translation

  • TS3376 I was able to use the findmyiphone app last week, but now I have been getting an error message "Can't load findmyiphone.  There was a problem loading the application."  please help as we are trying to locate an ipod with pics of a no deceased loved

    I was able to use the findmyiphone app last week, but now I have been getting an error message "Can't load findmyiphone.  There was a problem loading the application."  please help as we are trying to locate an ipod with pics of a no deceased loved one.

    Had the same problem and the same message --  was suddenly unable to access icloud apps on my pc, also using Windows 7 and Internet Explorer. After several days of pulling my hair out, decided to try a different browser and was able to get in by using Firefox instead of Internet Explorer.  Hope this helps. 

  • Problems with the Proxy Programme--Please help

    Hi All,
    I have written a simple proxy server in the form of a servlet. I changed the proxy config of my browser to connect to this servlet hosted on the default context(http://localhost:8080) of the Tomcat 5.0.25 . Well , this servlet internally connects to the proxy of the corporate LAN . The logic that I have applied is as follows. The servlet gets the request from the client (ie the browser in this case) , extracts the headers and contents from the request, sets them to a new request that it forms and finally send this new request to the proxy. When the proxy responds, the servlet collects the response headers and contents adn writes them in its response. To sum up , this servlet transparently carries the requests and responses between the client(browser) and the corporate LAN proxy. Now the problem is this. Let's say , now I am accessing http://www.google.com.The browser sends a request to my servlet with the following headers as they are extracted by my servlet.
    ProxyServer:::>posting request
    ProxyServer:::>headerValue::> headerName = accept : headerValue=*/*
    ProxyServer:::>headerValue::> headerName = referer : headerValue=http://www.google.com/
    ProxyServer:::>headerValue::> headerName = accept-language : headerValue=en-us
    ProxyServer:::>headerValue::> headerName = proxy-connection : headerValue=Keep-Alive
    ProxyServer:::>headerValue::> headerName = user-agent : headerValue=Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; UB1.4_IE6.0_SP1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)
    ProxyServer:::>headerValue::> headerName = host : headerValue=www.google.com
    ProxyServer:::>headerValue::> headerName = cookie : headerValue=PREF=ID=1be27c0a74f198ca:TM=1082058853:LM=1082058853:S=bu6ORrygzm8AUkm8
    ProxyServer:::>postRequest
    I set these headers into a new connection opened to the proxy and post a fresh request to the proxy,which, in turn responds with the following headers.
    ProxyServer:::>posted request successfully
    ProxyServer:::>writing response
    ProxyServer:::>writeResponse-->headerName = Proxy-Connection : headerValue = [close]
    ProxyServer:::>writeResponse-->headerName = Content-Length : headerValue = [257]
    ProxyServer:::>writeResponse-->headerName = Date : headerValue = [Tue, 13 Jul 2004 14:01:40 GMT]
    ProxyServer:::>writeResponse-->headerName = Content-Type : headerValue = [text/html]
    ProxyServer:::>writeResponse-->headerName = Server : headerValue = [NetCache appliance (NetApp/5.5R2)]
    ProxyServer:::>writeResponse-->headerName = Proxy-Authenticate : headerValue = [Basic realm="Charlotte - napxyclt2"]
    ProxyServer:::>writeResponse-->headerName = null : headerValue = [HTTP/1.1 407 Proxy Authentication Required]
    ProxyServer:::>writeResponse exiting
    ProxyServer:::>wrote response successfully
    I write these headers back to the client. According to what I was thinking, the client ie the browser would open a new dialog box asking for username/password owing to the presence of the "Proxy-Authenticate " header. But it does not happen that way. Rather the browser stops responsding and displays a blank page. Does anyone know why it happens this way? I am pasting the server prog below for everybody's reference.
    package server.proxy;
    //import all servlet related classes
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.*;
    import java.io.*;
    import java.net.*;
    import server.resources.*;
    //My Proxy server --->Currently it is very simplea and relies on
    //other proxy servers of an already connected network.
    public class ProxyServer extends HttpServlet
    //stores the resource bundle
    private ServerResBundle resBundle = null;
    //checks for the mode of operation
    private boolean proxySet = false;
    private String proxy = null;
    //storing the original System out/err etc
    private PrintStream sysOutOrig = null;
    private PrintStream sysErrOrig = null;
    private InputStream sysInOrig = null;
    //initialise certain features that are required later
    public void init() throws ServletException
    try
    //initialise the resource bundle
    this.initResBundle();
    System.out.println("ProxyServer:::>res bundle init");
    //set the mode of operation
    this.setMode();
    System.out.println("ProxyServer:::>mode set");
    //set the system out and err --System.setOut etc
    this.setSystemOutErr();
    System.out.println("ProxyServer:::>in/out/err set");
    }//End try
    catch(Exception e)
    System.out.println("Exception in init..."+(e.getMessage()));
    throw new ServletException(e);
    }//Edn
    catch(Throwable e)
    System.out.println("Irrecoverable Error...");
    throw new ServletException(e);
    }//End
    }//End init
    //method to init the resource bundle;
    private void initResBundle()
    this.resBundle = ServerResBundle.getBundle();
    }//End
    //method to set the mode of the server--proxy or direct
    private void setMode()
    //read the target proxy property from the bundle and
    //if it is set,take that URL
    String temp = (String)(this.resBundle.getResource(ResKeys.PROXY_SERVER));
    if ( (temp != null) && (temp.length() > 0) )
    this.proxySet = true;
    this.proxy = temp;
    temp = null;
    }//End
    }//End
    //method to set the system out and err etc
    private void setSystemOutErr() throws Exception
    //keep a copy of the original system out and error
    this.sysOutOrig = System.out;
    this.sysErrOrig = System.err;
    try
    //read the options adn if they are set, take the values directly
    String newOutStr = (String)(this.resBundle.getResource(ResKeys.SYSTEM_OUT));
    String newErrStr = (String)(this.resBundle.getResource(ResKeys.SYSTEM_ERR));
    if ((newOutStr != null) && (newOutStr.length() > 0))
    System.setOut(new PrintStream(new FileOutputStream(new File(newOutStr),true),true));
    }//End if
    if ((newErrStr != null) && (newErrStr.length() > 0))
    System.setErr(new PrintStream(new FileOutputStream(new File(newErrStr),true),true));
    }//End if
    }//End
    catch(Exception e)
    //restore the stuff
    System.setOut(this.sysOutOrig);
    System.setErr(this.sysErrOrig);
    }//End
    }//End
    //this is where the proxy functionalities will be embedded
    public void service(HttpServletRequest req,HttpServletResponse resp)
    throws ServletException,java.io.IOException
    //conenction URL
    URL target = null;
    //conenction to the remote object
    URLConnection targetConn = null;
    //stores the OOS and the OIS
    ObjectOutputStream oos = null;
    ObjectInputStream ois = null;
    try
    //check for the mode of operation
    if (proxySet)
    URLConnection objects go through two phases: first they are created, then they are connected.
    After being created, and before being connected, various options can be specified
    (e.g., doInput and UseCaches). After connecting, it is an error to try to set them.
    Operations that depend on being connected, like getContentLength, will implicitly perform the connection,
    if necessary.
    //for the URL to the proxy
    target=new URL(this.proxy);
    //conenct to the proxy
    targetConn = target.openConnection();
    //set the details of the connectuon
    targetConn.setDoInput(true);
    targetConn.setDoOutput(true);
    targetConn.setUseCaches(false);
    // If true, this URL is being examined in a context in which it makes sense to allow user interactions such as popping up an authentication dialog. If false, then no user interaction is allowed
    targetConn.setAllowUserInteraction(true);
    //connect to the remote object
    // targetConn.connect();//call this only when all the request properties are set
    System.out.println("ProxyServer:::>posting request");
    //post the received request to the URL
    this.postRequest(targetConn,req);
    System.out.println("ProxyServer:::>posted request successfully");
    System.out.println("ProxyServer:::>writing response");
    //receive the response
    //write the received response to the client
    this.writeResponse(targetConn,resp);
    System.out.println("ProxyServer:::>wrote response successfully");
    }//End if
    else
    //currently this functionality is not supported
    throw new ServletException(
    (String)(this.resBundle.getResource(ResKeys.ERR_FUNC_NOTSUPPORTED)));
    }//End
    }//End try
    catch(Exception e)
    if(e instanceof ServletException)
    throw (ServletException)e;
    }//End
    if (e instanceof IOException)
    throw (IOException)e;
    }//End
    //wrap it up in ServletException
    throw new ServletException(e);
    }//End
    }//End
    //method to write the response back to the client
    private void writeResponse(URLConnection targetConn,HttpServletResponse resp)
    throws ServletException
    //get all the header fields from the response connection and set them to the
    //response of the servlet
    Map headerFields = null;
    Iterator headerFieldEntries = null;
    Map.Entry header = null;
    //stores the input stream to the conn
    BufferedReader brConn = null;
    //stores the writer to the response
    PrintWriter prResp = null;
    //checks if the proxy authentication needed or not
    boolean proxyAuthReqd = false;
    try
    //juste ensuring that the proxy authentication is reset
    proxyAuthReqd = false;
    if( (targetConn != null) && (resp != null) )
    //Returns an unmodifiable Map of the header fields.
    //The Map keys are Strings that represent the response-header field names.
    //Each Map value is an unmodifiable List of Strings that represents the corresponding
    //field values
    headerFields = targetConn.getHeaderFields();
    //Returns a set view of the mappings contained in this map
    Set temp = headerFields.entrySet();
    //Returns an iterator over the elements in this set
    headerFieldEntries = temp.iterator();
    if (headerFieldEntries != null)
    while (headerFieldEntries.hasNext())
    Object tempHeader = headerFieldEntries.next();
    if (tempHeader instanceof Map.Entry)
    header = (Map.Entry)tempHeader;
    Object headerName = header.getKey();
    Object headerValue=header.getValue();
    System.out.println("ProxyServer:::>writeResponse-->headerName = "+headerName+" : headerValue = "+headerValue);
    //do not select the key-value pair if both the key adn the value are null
    if ( ( headerName == null) && (headerValue == null) )
    continue;
    }//Enmd
    if (headerValue != null)
    List headerValList = null;
    if (headerValue instanceof List)
    headerValList = (List)headerValue;
    }//End
    if(headerValList != null)
    for (int i=0;i<headerValList.size();i++)
    Object headerValueStr = headerValList.get(i);
    if (headerValueStr instanceof String)
    //note that the header-key can not be null for addHeader
    //I have made this temporary provision to make the programme work.
    resp.addHeader(( (headerName==null)? ("null_header"+i) :(String)headerName),
    (String)headerValueStr);
    //check if the proxy authentication required or not
    if (((String)headerValueStr).
    indexOf(resp.SC_PROXY_AUTHENTICATION_REQUIRED+"") != -1)
    System.out.println("ProxyServer:::>writeResponse-->proxy auth needed");
    //proxy authentication is needed
    proxyAuthReqd = true;
    }//End
    }//Ednd of
    else if (headerValueStr == null)
    resp.addHeader(( (headerName==null)? null :(String)headerName),
    null);
    }//End
    }//End for
    }//End if
    }//End if
    }//End
    }//End while
    }//End if
    //get the writer to the client
    prResp = resp.getWriter();
    System.out.println("ProxyServer:::>writeResponse-->proxyAuthReqd="+proxyAuthReqd);
    //juste test a simple header
    System.out.println("Proxy-Authenticate = "+(resp.containsHeader("Proxy-Authenticate")));
    //if the proxy asks you for authentication,pass on the same to the client
    //from whom you have received the request.When this flag is true,the connection
    //is closed by the remotehost adn hence any attempt to open in input steram
    //results in an error ie IOException
    if (!proxyAuthReqd)
    //now get the content adn write it to the response too
    brConn = new BufferedReader(new InputStreamReader(
    targetConn.getInputStream()));
    String tempStr = null;
    while ((tempStr = brConn.readLine())!=null)
    prResp.println(tempStr);
    }//End while
    //close the connections
    brConn.close();
    }//End if
    else
    prResp.println("Proxy Authentication needed...");
    }//End
    //close the streams
    prResp.flush();
    prResp.close();
    }//End if
    System.out.println("ProxyServer:::>writeResponse exiting\n");
    }//End try
    catch(Exception e)
    throw new ServletException(e);
    }//End
    }//End
    //method to post request to the internet
    private void postRequest(URLConnection targetConn,HttpServletRequest req)
    throws ServletException
    //extract the header parameters and the body content from the incoming request
    //and set them to the new connection
    Enumeration reqHeaders = null;
    //reads the incoming request's content
    BufferedReader brReqRd = null;
    PrintWriter prResWt = null;
    //stores temp header names and values
    String headerName = null;
    String headerValue = null;
    try
    if( (targetConn != null) && (req != null) )
    reqHeaders = req.getHeaderNames();
    //extract a header adn set it to the new connection
    while (reqHeaders.hasMoreElements())
    headerName = (String)(reqHeaders.nextElement());
    headerValue = req.getHeader(headerName);
    targetConn.setRequestProperty(headerName,headerValue);
    System.out.println("ProxyServer:::>headerValue::> headerName = "+headerName+" : headerValue="+headerValue);
    }//End
    System.out.println("ProxyServer:::>postRequest\n");
    //establis the actual connection
    //calling this method bfore the above loop results in IllegalStateException
    targetConn.connect();
    //NOTE : try reading from and writing into OIS and OOS respectively
    //now read the contents and write them to the connection
    // brReqRd = req.getReader(); //this hangs for some reason
    brReqRd = new BufferedReader(new InputStreamReader(req.getInputStream()));
    System.out.println("Got the reader..brReqRd = "+brReqRd);
    if (brReqRd != null)
    String temp = null;
    //establish the printwriter
    // prResWt = new PrintWriter(targetConn.getOutputStream(),true);
    prResWt = new PrintWriter(targetConn.getOutputStream());
    System.out.println("trying to read in a loop from brReqRd.. ready="+(brReqRd.ready()));
    while( (brReqRd.ready()) && ((temp=brReqRd.readLine()) != null) )
    System.out.println("In while::>temp = "+temp);
    prResWt.println(temp);
    }//Emd while
    //close the streams adn go back
    brReqRd.close();
    prResWt.flush();
    prResWt.close();
    }//End
    }//End outer if
    System.out.println("ProxyServer:::>postRequest exiting\n");
    }//End try
    catch(Exception e)
    throw new ServletException(e);
    }//End
    }//End
    }//End

    Hi serlank ,
    Thanks for your reply. Well , I initially I thought of not pasting the code,as it was too long. But I could not help it,as I thought I must show in code what I exactly meant. That's why I followed a description of my problem with the code. You could probably have copied the code and pasted it in one of your favourite editors to take a look at it. Did you,by any chance, try to read it on the browser? And as regards reposting the same message, I can say that I did it as I felt the subject was not quite appropriate in the first posting and I was not sure as to how I could delete/alter the posting. I am not asking for a code-fix,but some suggestions from some one who might ever have come across such a thing.Anyway, lemme know if you have any idea on it. Thanks...

  • How to remove 1797 emails. stuck in inbox.  but not showing anymore - and i have the same problem wit the sent.  please help

    how to remove 1797 emails. stuck in inbox.  but not showing anymore - and i have the same problem wit the sent.  please help

    This is a user supported frum, so making threats really doesn't help, besides which it's not like any of us can really make a dent in Toshiba's bottom line despite how many people we think we can influence. Unless those people were standing in line to buy a Toshiba product cash in hand, and you pulled them out, it really doesn't add up for them.
    At this point it would probably be better for you to use the 800 number. Have all your e-mails ready to forward, if needed, to whoever you end up talking to. Don;t let them off the hook. An hour on the phone is much better than weeks passing e-mails through a support site. Also contest the charge with your bank or credit card.

  • Problem on the company name field at ACH file

    Dear Experts,
    We have a problem at our ACH file.
    There is no company name information (third column) at batch header record (Record type code = 5).
    Do you know where this company information comes from?
    FYI, we are using SAPFPAYM program.
    Thanks.
    BR,
    Chris Kim
    Edited by: Chris Kim on Aug 21, 2009 1:56 AM

    Hi Chris
    Go Payment program Config FBZP, Then open payment method in Company Code. Open the relevant payment method for ACh in a company codes. Here you can expand the "Form Data" section, then then under the box "Drawer on the form" write the company name in the first row
    Thanks
    Ron

  • A problem with the BBM Bold9900 please help me !!

    Hey All , i have a probem with my BBM , when i write something in personal message my conacts can't see what i wrote and when i put my status busy it shows that i'm avaliable, so please i want you to help me !!!!!!!!!!

    Answered in your original thread.
    http://supportforums.blackberry.com/t5/Device-software-for-BlackBerry/a-problem-with-the-BBM/m-p/139...
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Hearing problems in the middle of a call

    ive having problems with my call lately , iam in the middle of a call and the other part begin to hear a kind of static meanwhile i can hear them clearly, its weird because it happens quen the headsets are plugged too, but when i put the mophie juice pack on the phone the problem disapears, i wonder why this is happening and if theres a software update to relieve my phone of the static noise=?

    It may be that the phone is set to remind you when your balance falls below a certain amount. Its usually $5.00, I have been on the phone for long lengths of time and have never had this happen. Check under Setting and Tools and sound or voice settings. Also notifications settings. There mights be somewhere that says "remind me"

  • SBS 2011; Exchange ActiveSync problems in the middle of a migration

    Hi
    We're in the middle of a migration from SBS 2003 to SBS 2011 and are stuck in the lengthy process of moving users' mailboxes.
    At this point, I have about 20 percent of the users' email on the SBS 2011 box, and the rest still on the SBS 2003 box.
    Right now I have to quickly deal with an issue that's cropped up with Exchange ActiveSync:
    I ran the Connectivity Analyzer for a user (this one's box had been migrated) and got the error below. By the looks of the error, I don't think it matters where the mailbox happens to reside ...
    The SBS 2011 box has been set up using a migration install and the procedures listed in the MS migration docs.
    At the rate we're going, it's still going to take a while to migrate these mailboxes. (The fact that they began tonight was actually an accident.) If mobile users can't get their mail, I'm going to have a big mess on my hands ...
    What do I need to do to get this running properly for all users?
    Thanks
    CL
    An ActiveSync session is being attempted with the server.
      Errors were encountered while testing the Exchange ActiveSync session.
     Additional Details
    Elapsed Time: 793 ms. 
     Test Steps
     Attempting to send the OPTIONS command to the server.
      The OPTIONS response was successfully received and is valid.
     Additional Details
    HTTP Response Headers:
    MicrosoftOfficeWebServer: 5.0_Pub
    Pragma: no-cache
    Public: OPTIONS, POST
    Allow: OPTIONS
    MS-Server-ActiveSync: 6.5.7638.1
    MS-ASProtocolVersions: 1.0,2.0,2.1,2.5
    Content-Length: 0
    Date: Fri, 30 May 2014 08:49:48 GMT
    Server: Microsoft-IIS/6.0
    X-Powered-By: ASP.NET
    Elapsed Time: 205 ms. 
     Attempting the FolderSync command on the Exchange ActiveSync session.
      The test of the FolderSync command failed.
     Additional Details
    An HTTP 403 forbidden response was received. The response appears to have come from Unknown. Body of the response: <body><h2>HTTP/1.1 403 Forbidden</h2></body>
    HTTP Response Headers:
    MicrosoftOfficeWebServer: 5.0_Pub
    Pragma: no-cache
    MS-Server-ActiveSync: 6.5.7638.1
    Content-Length: 44
    Content-Type: text/html
    Date: Fri, 30 May 2014 08:49:48 GMT
    Server: Microsoft-IIS/6.0
    X-Powered-By: ASP.NET
    Elapsed Time: 588 ms. 

    Hi --
    Neither of the Exchange servers is publicly listed as the mail handler for this domain. Mail is preprocessed by a cloud spam filtering service before coming down. So I expect no changes in MX records -- not even a change in the spam filter's delivery IP
    address, since that points to my firewall. I'll forward SMTP traffic to the new server when the time comes.
    I was told by MS that moving the mailboxes would not disrupt anything as long as both SBS boxes were up and running. And despite what the Connectivity Analyzer showed, people in this office have been receiving email on their mobile phones all day. I've had
    a few sporadic reports of people supposedly not getting email on their smartphones, but I can't see how anything I did (basically just move mailboxes at this point) could allow some people's phones to get mail while others' can't, when everyone was getting
    mail yesterday.
    I also have an odd report from someone who claims that his mobile phone is processing email just fine, but his MacBook running Entourage suddenly can't connect.
    Oh well ... The day is over (at least for the workers). Hopefully by the time the workers return on Monday, I'll be back to having just one SBS box on the network.
    The mailboxes are being moved A LOT faster than any of the documents I read warned me they would. One document said that a 75 GB database could take close to 48 hours to transfer. And this server's Exchange database was 67 GB ... But last night's
    "accident" (I thought I was only prepping a new database when in fact the machine was actively moving email into it) resulted in about 40% of the mailboxes being completely moved by 8 a.m.. And since 5 p.m., when I restarted the move requests,
    the machine has completed the moves of about 20% more mailboxes. So I expect this part to be over probably by early morning. (The ones that remain are the really big ones -- still, after I spent a week doing mailbox housekeeping.)
    I was also warned about the lengthy conversion requirements for the public folders. I transferred those last weekend. The whole process was over with in less than four hours. Go figure ...
    (The public folder transfer did have an annoying side effect -- I kept receiving warning after warning via email from the SBS 2003 box about a high number of items in Exchange's send queues ...)
    Thanks
    CL

  • I'm having a problem saving a pages document as another format, like a Word document or PDF file.  I've never had this problem in the past.  Please help me!  I need to have this fixed a.s.a.p.

    Hello everyone,
    I'm currently having a problem saving a Pages document as another format, such as a Word document or PDF file.  I've never had this problem before with Pages.  Please help me!  I need to have this completed a.s.a.p.
    Thanks,
    Amy

    To save as a PDF, you do that from Print
    To save as Wrod format, you export
    Allan

  • HR-PDC interface: Problems in the file name of the downloaded idoc file

    I'm currently busy with the HR-PDC interface to EBI-time recording system. The RFC destination to EBI's quality system is working fine but we are experiencing differences in the idoc file name that we are creating in the EBI path. When we send a request to EBI to upload clocks, an idoc (Message Type: HRCC1REQUPTEVEN and IDOC type: HRCC1REQUPTEVEN01 ) is sent to EBI The file name is HRCC1REQUPTEVEN whereas in a previous implementation file name is HRCC1REQUPTEVEN01. The control record information on the outbound idoc are the similiar in terms message types and idoc types sent through to EBI. Have you ever come across this issue in your previous experiences with SASOL's HR-PDC interface. SAP has not changed the IDOC type HRCC1REQUPTEVEN01 since 1998.

    can you please also contact IDM support about it?
    * http://www.internetdownloadmanager.com/register/new_faq/main.cgi

  • Problem with the personal name in a screen

    Dear Members,
    I want to show in a screen the name of a person. But how I can change the username in the screen from, for example: sap01 into Mr. George Smith?
    Is there any programm from SAP who can manage this?
    Greetings
    Michael

    Unfortunetly Mike, you would need a Function Code to trigger the processing as you are asking.  However, you can only append the USER-COMMAND option on a Check Box or Radio Button.
    However, here is another option.
    Hide all the fields execpt the User name field.  This way the user must hit enter or F8/Run to go forward and you can handle this processing of name in the AT SELECTION-SCREEN event routine.
    DATA: formal_name(50),
          addr_info          LIKE bapiaddr3,
          return_tab  LIKE STANDARD TABLE OF bapiret2.
    CONSTANTS:
      sm2big(52) VALUE
        'aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ'.
    PARAMETERS: puname(12)    TYPE c OBLIGATORY,
                pfname(50)    TYPE c MODIF ID xxx,
                paddr(50)     TYPE c MODIF ID xxx,
                city(50)      TYPE c MODIF ID xxx.
    AT SELECTION-SCREEN.
      IF puname IS INITIAL.
        MESSAGE e001.
        IF sy-ucomm = 'ONLI'. LEAVE TO SCREEN 0. ENDIF.
      ENDIF.
      CALL FUNCTION 'BAPI_USER_GET_DETAIL'
           EXPORTING
                username = puname
           IMPORTING
                address  = addr_info
           TABLES
                return   = return_tab.
      TRANSLATE addr_info-firstname TO LOWER CASE.
      TRANSLATE addr_info-firstname+0(1) USING sm2big.
      TRANSLATE addr_info-lastname TO LOWER CASE.
      TRANSLATE addr_info-lastname+0(1) USING sm2big.
      CONCATENATE addr_info-title_p addr_info-firstname addr_info-lastname
        INTO pfname SEPARATED BY space.
      IF pfname IS INITIAL.
        MESSAGE e001.
      ENDIF.
    AT SELECTION-SCREEN OUTPUT.
      IF puname IS INITIAL.
        LOOP AT SCREEN.
          CHECK screen-group1 = 'XXX'.
          screen-active = 0.
          MODIFY SCREEN.
        ENDLOOP.
      ENDIF.
    START-OF-SELECTION.
      WRITE:/ 'I made it here'.

  • When I re-partitioned Bootcamp, there are discrepancies between the partition name. Help?

    I formatted my BOOTCAMP partion recently and just stuck with the default disk title BOOTCAMP. My first time, last year, I named it Windows. When I select the start-up disk, however, it still says Windows while everything else rightly says BOOTCAMP. For example, when looking in Finder, I see my Mac partition, and then in e: I see BOOTCAMP. In windows explorer, I see in C/ BOOTCAMP. When I start up and hold down option to see the list, however, I see Windows-my previous partition. It functions correctly and it starts up bootcamp, but I'm curious as to why it retained the previous name. Why is it stuck on my old name for the partion in just that one spot?

    Too late now but for $19 and a few minutes, could have resized "in place,"
    I would want to know what type size drive and partition yoj are using.
    From Properties check hardware tools to check for errors. That atea is nkw much better in Windows 8/8.1

Maybe you are looking for

  • I need to change the sum of a column's total with javascript.

    Hi, The HTML output of a SUM column is as follows: <td align="center" headers="COST" class="t2data"><b> 827.49</b></td> I need to change the sum total with javascript. The initial loading of the page SUMs the DB values correctly. Then onchange JS for

  • HT4061 i want to exchange my 4s

    i want to exchange my iphone 4s

  • HT3819 Apple TV- More than one Apple ID?

    In a household, you are more than likely to have more than 1 apple account.  In our home we have 3.  Is there a way we can sign in and out of our Apple TV?  Ex.- my husband is signed in with his apple id, can I log him out and log in with my account?

  • HT1338 What do I need to do if there is a migration interuption?

    I was migrating my music and pictures from my pc to my new maac book pro, but apparently there were an interuption and my mac got kind of froze. what should I do? restarrt the whole process?

  • Widget will not insert

    Working with Dreamweaver and Flash software.  Using a template, couldn't get flv videos to insert correctly, got a white blank box at the tested website.  Finally downloaded widget as a solution, now widget will not insert.  It appears on the insert