Function/Responsibility dependence

Hello All,
I will really appreciate your help.
Can you suggest an SQL query or where in Sysadmin I can distinguish between function that only allows me to see the Invoice Payments and make payments?
So:
My understanding is that when the function AP_APXINWKB_INVOICE_PAYMENTS is accessed  from Payables Manager it can be used for payment, but the same function accessed from General Ledger Manager only allows to view it. The difference is not "QUERY_ONLY="YES") parameter.
It must be something else.
Any ideas? Is there a profile option for each responsibility?
Thanks,
J.

I was able to locate this page within $OA_HTML/oam/wfm/
Regards,
LC

Similar Messages

  • "Entity Service" update function - response possible?

    Hello,
    I have created a WSDL file in XI and imported it into my CAF application as External Service. The External Service is wrapped by an update operation from an Entity Service.
    As my External Service is a synchronous WebService, I also get a response if the update was successful or not. But in update function there is no possibility to map this response for return (same with delete).
    Do I have to create my own update funtion to be able to get information in my application services if update was successful or not? Or is it anyhow possible to expand the standard update operation?
    Thanks for your answers
    Joschi

    As I know it's possible to create additional custom method for business entity wrapper and map it to external service operation. For example: "Collection updateMyEntity(params)".
    The question is the following: why do you need to use standart update method if it does not satisfy your requirements ?
    The only reason is to use CAF runtime service access functionality in order to access your business entity in generic way. CRUDs operations are designed for this purpose (create, read, update, delete standart operations). These standart methods are required for all business entites and can not be removed. From architectural point of view "update" method wrapping does not make sense without wrapping of others: "create", "read", "delete". If all these methods are implemented properly, in this case business entity service is consitent in the CAF context and  you can use additional powerfull CAF features.
    If you just need to execute some query for updating your data using external service I recommend you to create new custom method in your business entity according to your requirements. Also, it will not probably confuse another developer who touched this entity design.
    Best regards,
    Aliaksei

  • Need help in this jquery ajax response

    Hi Below is the code i got from internet trying to test but alwys getting false alert event the record does not xist in DB.
    Below is the code
    <script language="javascript" src="jquery-1.4.2.js"></script>
        <script type="text/javascript">
                $(document).ready(function() {    
                $('#username').blur(function() {    
                            $.ajax({            
                                    type: "POST",
                                    url: "checkUser.cfc?method=checkUsername",
                                    data: "username=" + this.value,
                                    datatype: "json",
                                    success: function(response) {                                   
                                    alert(response);                                                       
                                    if (response == true) {
                                    alert("true");   
                                    //$('#usernameResponse').css('display', 'none');
                                    //$('#submit').attr('disabled','disabled');
                                    } else {
                                    alert("flase");
                                    //$('#usernameResponse').css('display', 'inline');
                                    //$('#username').select();
                                    //$('#submit').attr('disabled','disabled');
        </script>    
    <form>     <div class="formcontainer">
                      <label>User Name:</label>
                      <input type="text" name="username" id="username" />
                      <span id="usernameResponse">Sorry, that username is taken</span>
                      </div>
                      <div class="formcontainer">
                          <label>Password:</label>
                          <input type="password" name="password" id="password" />
                       </div>     
                 <div class="formcontainer">
                <input type="submit" id="submit" value="Submit" />
                    </div>
                     </form>
    CFC File:
    <cfcomponent output="false">     
        <cffunction name="getAllUsernames" access="private" returntype="query" output="false">
                     <cfset var qGetAllUsernames = queryNew('userID,username') /> 
                     <cfset queryAddRow(qGetAllUsernames, 4) /> 
                     <cfset querySetCell(qGetAllUsernames, 'userID', 1, 1) />
                     <cfset querySetCell(qGetAllUsernames, 'userName', 'John', 1) />
                     <cfset querySetCell(qGetAllUsernames, 'userID', 2, 2) />
                     <cfset querySetCell(qGetAllUsernames, 'userName', 'Paul', 2) />
                     <cfset querySetCell(qGetAllUsernames, 'userID', 3, 3) />
                     <cfset querySetCell(qGetAllUsernames, 'userName', 'George', 3) />    
                     <cfset querySetCell(qGetAllUsernames, 'userID', 4, 4) />
                     <cfset querySetCell(qGetAllUsernames, 'userName', 'Ringo', 4) />
                     <cfreturn qGetAllUsernames />
        </cffunction> 
        <cffunction name="checkUsername" access="remote" output="false" returntype="string" returnformat="JSON">
            <cfargument name="username" type="string" default="" />
            <cfset var qAllUsernames = getAllUsernames() /> 
            <cfquery name="qCheckUsername" dbtype="query">
            SELECT * FROM qAllUserNames WHERE upper(username) = <cfqueryparam value="#ucase(arguments.username)#" cfsqltype="cf_sql_varchar" />
            </cfquery>
            <cfif qCheckUsername.recordcount>
            <cfreturn true>
            <cfelse>
            <cfreturn true>       
            </cfif>       
        </cffunction>   
    </cfcomponent>
    when i run cfc alone returns result like true or false but when i try to alert that response alert box of window size with all spaces and rsult comes so not able to tet if(reponse == true does not working.
    any help will be great thanks
    this is alert box poped with response
    true
    </td></td></td></th></th></th></tr></tr></tr></table></table></table></a></abbrev></acrony m></address></applet></au></b></banner></big></blink></blockquote></bq></caption></center> </cite></code></comment></del></dfn></dir></div></div></dl></em></fig></fn></font></form>< /frame></frameset></h1></h2></h3></h4></h5></h6></head></i></ins></kbd></listing></map></m arquee></menu></multicol></nobr></noframes></noscript></note></ol></p></param></person></p laintext></pre></q></s></samp></script></select></small></strike></strong></sub></sup></ta ble></td></textarea></th></title></tr></tt></u></ul></var></wbr></xmp>

    cfnew wrote:
        <cffunction name="checkUsername" access="remote" output="false" returntype="string" returnformat="JSON">
            <cfif qCheckUsername.recordcount>
            <cfreturn true>
            <cfelse>
            <cfreturn true>       
            </cfif>       
    3 things. Do you mean perhaps:
    1) name="IsUsernameValid"
    2) returntype="boolean"
    3) <cfif qCheckUsername.recordcount>
    <cfreturn true>
    <cfelse>
    <cfreturn false>       
    </cfif>

  • BAPI to SOAP scenario - query for response as table

    This is for BAPI to SOAP scenario. We need response as TABLE(multiple values,like arraylist/resultset in java) , not as single valued items.
    .net method is ->Y_Vct(string CoCode,string Role, ref A_BTable)  -    
       Request:
               CoCode -Optional, if empty string is passed all companies will be fetched by the function
               Role - Optional, if empty string is passed all the roles will be fetched by the function
        Response:
               A_B- returns set of records(Multiple) based on the parameters passed
    BAPI is - Y_Vct
    How to get response from table of multiple values .
    like 10 records as response for 1 request.
    thanks.

    Hi Jha,
    Which version of PI you are using? If you are uisng 7.1 then you can return the multiple values.
    Regards,
    ---Satish

  • OA Page access without attaching to any responsibility

    All,
    I have developed a page where employees can select the gift items. But this selection is possible only on their anniversary day. The page access link should not be available at any time.
    So the plan is to send the page access link to them by email on their anniversary date.
    The problem is, if I didnt attach this page function to any responsibility, the users will not able to access the page from the email link. (Insufficient privileges)
    Is there any way to achieve dis without attaching to any responsibility. Or after attaching to responsibility, is thr any way to hide the link for the user when thy login into APPS?
    thr r few workarounds like, give access to all, and on pageLoad check for their anniversary date and then allow if applicable..
    Lemme know if there is any way to achieve that before going for the abv mentioned workaround..
    - Senthil

    Hi,
    You want to develop a custom OAF page which can be accessed without login, You can develop using Anonymous or Guest Login implementation. If you want more details please give me your mail id i will send you the document about that.
    Mukul/Tapash,
    What i have told is about Anonymous or Guest Logins, i think i have discussed about this earlier.
    Page Supports Anonymous or Guest Logins :
    If you have a Guest user page to display that does not require a user to log in, then you should secure your page with a GUEST user permission. You should also have a explicit grant/function/responsibility assigned to the GUEST user. Note: GUEST is a special seeded user in the Oracle Applications Users form.
    In our example, the Benefits Registration Page is an example of a Guest user page. To create a Guest user page:
    Step 1: Set the Security Mode property of your page to Self secured.
    Step 2: Implement the validateParameters() method in your controllers to protect the integrity of the URL.
    Tip: Note that the above two steps are required because your page should exist outside a user's session, and is therefore "bookmarkable". You can find more information on how to set up bookmarkable pages in the Accelerated Validation topic.
    Step 3: Set a permission on the rendered attribute of your page layout region using a function security SPEL expression.
    So, in our example, let's create a permission called BENEFITS_GUEST, and set the expression ${oa.FunctionSecurity.BENEFITS_GUEST} on the Rendered property of the Benefits Registration Page. We will learn about how to associate this permission with a grant to the GUEST user in the subsequent steps.
    The OA Framework requires no authentication and authorization to run a page that is secured using a GUEST user-granted permission.
    Note: Although a GLOBAL-granted permission would seem logical to use, it actually is not appropriate in this case. All users except the GUEST user have access to pages that have a GLOBAL grant. In addition, GLOBAL users must first log in and be authenticated in order to access those globally-granted pages.
    Thanks.
    With Regards,
    Kali.
    OSSI.

  • PageMethod response returning whole page, unable to debug the server side method

    Hello Guys,
    I am unable to debug my method written on server side when a call is send to it through jquery using page method.
    In response , I get the whole page.
    code:
    ASPX page:
    PageMethods.MyMethod(p1, p2, function(response){
    ASPX.CS
    [System.Web.Services.WebMethod()]
    [System.Web.Script.Services.ScriptMethod()]
    publicstaticstringMyMethod(stringp1,
    stringp2){
    //Updating database
    I did ScriptModule entry in web.config, enabled tracing,have ScriptManager and EnablePageMethods is set to true.
    Still the server side method is not getting called.
    please help.
    Ng_TechFreak

    Hi Ng_TechFreak,
    For ASP.NET questions please post in
    ASP.NET forum where you'll get better help.
    Thanks for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Discoverer Plus/Viewer from menu item in Oracle Applications errors.

    Starting Discoverer Plus/Viewer from menu item in Oracle Applications R12 errors.
    Here is some general config information that is suspected to be the issue.
    1. Running Oracle Applications R12 over HTTPS.
    2. Running Discoverer Plus/Viewer over HTTP.
    3. Calling menu item that calls a function to start Plus/Viewer.
    Function Definition called by the menu item is listed blow.
    Properties Tab: Type=SSWA jsp function Context Dependence=Responsibility
    Form Tab: Parameters="mode=DISCO"
    Web HTML Tab: HTML Call=OracleOasis.jsp
    Fact: Starting Discoverer Plus using a URL works fine in the browser. The login page comes up and I can look in to Plus.
    The page that dose a redirection to start the Plus applet or Viewer web page fails with this error in IE 7.
    Internet Explorer cannot display the webpage
    Most likely causes:
    You are not connected to the Internet.
    The website is encountering problems.
    There might be a typing error in the address.
    Thank you for your time.

    Hi,
    Check that the ICX system profiles are set correctly for your Discoverer configuration. In particular the ICX: Discoverer Launcher and ICX: Discoverer Viewer Launcher system profiles.
    When IE displays an error is the URL displayed in the browser a correct Disco URL?
    Rod West

  • Unable to save lookup field data in SharePoint 2013 online list

    Dear Support,
    I had successfully created provider hosted app and deployed on SharePoint 2013 online site, in my project I created orderservice.asmx.cs web service and write a code for save record on SharePoint
    2013 online list as I mentioned below and calling on App1.js file.
    But I am unable to save lookup field value as mentioned below code
    Customer is a lookup field I want to save data in SharePoint 2013 online list( Order)where I had successfully
    inserted text field  data (Title &
    Special_x0020_Instruction).
    i am getting error as mentioned below
    500 Internal Server Error {"Message":"Invalid web service call, missing value for parameter: \u0027Title1\u0027.","StackTrace":"   at System.Web.Script.Services.WebServiceMethodData.CallMethod(Object target, IDictionary`2
    parameters)\r\n   at System.Web.Script.Services.WebServiceMethodData.CallMethodFromRawParams(Object target, IDictionary`2 parameters)\r\n   at System.Web.Script.Services.RestHandler.InvokeMethod(HttpContext context, WebServiceMethodData methodData,
    IDictionary`2 rawParams)\r\n   at System.Web.Script.Services.RestHandler.ExecuteWebServiceCall(HttpContext context, WebServiceMethodData methodData)","ExceptionType":"System.InvalidOperationException"}
    Please let me know the code how to insert lookup field value (Customer)
    in SharePoint online list.
    OrderService.asmx.cs
    Public
    int InsertOrder (Order
    orderRecord)
                pwd.MakeReadOnly();
                clientContext.Credentials =
    new
    SharePointOnlineCredentials (myUserName, pwd);
    try
                  Web
    oWeb = clientContext.Web;
    ListCollection lists = oWeb.Lists;
    List oOrderlist = clientContext.Web.Lists.GetByTitle("Order");
                    clientContext.Load<ListCollection>(lists);
                    clientContext.Load<List>(oOrderlist);
                    ListItemCreationInformation
    itemCreateInfo = new                 ListItemCreationInformation();
    ListItem oListItem = oOrderlist.AddItem(itemCreateInfo);
                    oListItem["Title"]
    = Title;                        listItem["Special_x0020_Instruction"]
    = orderRecord.Instruction;
                        listItem ["Customer"]
    = orderRecord.CustomerId;
                        listItem.Update();
                        clientContext.ExecuteQuery();
    return 1;
    catch
    return -1;
    App1.JS
    $("#Save").click(function
    debugger;
    var OrderProfile = $('#orderprofile').val();
    var CustomerId = $('#exCustomerlist').jqxComboBox('getItem',
    $('#exCustomerlist').val());
    //var Instruction = $('#instruction').val();
            alert(OrderProfile);
            alert(CustomerId);
    var obj = {
    'Title': OrderProfile,
    'Customer': CustomerId }
            $.ajax({
                url:
    "OrderService.asmx/InsertOrder",
                type:
    "POST",
                dataType:
    "json",
                data: JSON.stringify(obj),
                contentType:
    "application/json; charset=utf-8",
                beforeSend:
    function (XMLHttpRequest) {
    //Specifying this header ensures that the results will be returned as JSON.
                    XMLHttpRequest.setRequestHeader("Accept",
    "application/json");
                success:
    function (response) {
                    $(".errMsg ul").remove();
    var myObject = response.d;
                    alert(myObject);
                error:
    function (response) {
                    alert(response.status +
    ' ' + response.statusText +
    ' ' + response.responseText);
    Regards,
    Akhilesh

    Hi Alex Brassington,
    Thanks for your reply.
    I am having the Site Administrator Permission of the public site.
    I am having the permission of Company Administrator of that site but still unable to find
    Device Channel on Site Setting. still I gave the user full control from Site Permission but nothing is happening.
    What should I do next?

  • Create New List Item

    I am getting an error each time I try to run this code and get the error message "There was a problem submitting your answers. Please try again later."I have looked at this for so long now I am not sure if I am missing something or what. I have referenced SPServices and jquery and it is working correctlyI am trying to make a crossword using some code I found online and I followed it andstill get this error. // Create an object to associate each SharePoint column with the class name used for the input and the user's response for that column
    var responses = {
    "oneAcross": {
    "selector": "one-across",
    "column": "OneAcross",
    "answer": ""
    "oneDown": {
    "selector": "one-down",
    "column": "OneDown",
    "answer": ""
    "twoDown": {
    "selector": "two-down",
    "column": "TwoDown",
    "answer": ""
    "threeDown": {
    "selector": "three-down",
    "column": "ThreeDown",
    "answer": ""
    "fourAcross": {
    "selector": "four-across",
    "column": "FourAcross",
    "answer": ""
    // Create the batchCmd variable that will be used to create the new list item
    var batchCmd = '<Batch OnError="Continue"><Method ID="1" Cmd="New">';
    // Concatenate values of each response input by iterating over the object representing the responses
    $.each( responses, function() {
    // Cache the current item in the responses object.
    var $response = this;
    // For each input in the crossword associated with the current response object, get the values and save them in the answer property.
    $( '.' + $response.selector ).each( function() {
    $response.answer += $( this ).val().toLowerCase();
    // Add the response to the batchCmd
    batchCmd += '<Field Name="' + $response.column + '"><![CDATA[' + $response.answer + ']]></Field>';//Create a new list item on the destination list using the batchCmd variable
    $().SPServices({
    operation: "UpdateListItems",
    async: true,
    webURL: "http://operations.home.blah.com/sites/EIS/SEEIS/SSC/Lists/",
    listName: "Crossword",
    updates: batchCmd,
    completefunc: function( xData, Status ) {
    // If the AJAX call could not be completed, alert the user or include your own code to handle errors.
    if ( Status !== "success" ) {
    alert( "There was a problem submitting your answers. Please try again later." );
    else {
    // If there was an error creating the list item, alert the user or include your own code to handle errors.
    if ( $( xData.responseXML ).find( 'ErrorCode' ).text() !== "0x00000000" ) {
    alert( "There was a problem submitting your answers. Please try again later." );
    // if the list item was successfully created, alert the user and navigate to the Source parameter in the URL (or to a URL of your choosing).
    else {
    alert( "Your answers were submitted successfully! Click OK to continue." );
    if ( window.location.href.indexOf( "Source=" ) !== -1 ) {
    var url = window.location.href.split( "Source=" )[1].split( "&" )[0];
    window.location.href = url;
    else {
    window.location.href = "/";

    When I look at the demo on the page it fires the same response as that is part of the error handling because it is a standalone HTML and not on a sharepoint server so I am wondering if something I am missing on the submit.click function or batchcmd. 
    I included the entire code for it to see if maybe you can see something I am not.  My crossword is on a Sharepoint Server
    $( '#crossword-submit' ).click( function( event ) {
    // If you decide to use a hyperlink instead of a button input, this will prevent
    //the hyperlink from actually navigating away from the page or to an anchor.
    event.preventDefault();
    // Disable the button so the user can't click it again and submit the answers more than once.
    $( this ).prop( 'disabled', true );
    // Prevent submission if the crossword isn't completed.
    if ( $( '#crossword' ).find( 'input' ).filter( function() { return $( this ).val() === ""; }).length !== 0 ) {
    alert( "You have left some answers blank. Please complete all answers before submitting." );
    $( this ).removeProp( 'disabled' );
    return false;
    // Confirm that the user wants to submit their answers.
    var confirmResponse = confirm( "Are you sure you are ready to submit your answers? Once submitted they cannot be changed.\n\nClick OK to continue or Cancel to review your answers." );
    if ( confirmResponse === false ) {
    $( this ).removeProp( 'disabled' );
    return false;
    // Create an object to associate each SharePoint column with the class name used for the input and the user's response for that column
    var responses = {
    "oneAcross": {
    "selector": "one-across",
    "column": "OneAcross",
    "answer": ""
    "oneDown": {
    "selector": "one-down",
    "column": "OneDown",
    "answer": ""
    "twoDown": {
    "selector": "two-down",
    "column": "TwoDown",
    "answer": ""
    "threeDown": {
    "selector": "three-down",
    "column": "ThreeDown",
    "answer": ""
    "fiveDown": {
    "selector": "five-down",
    "column": "FiveDown",
    "answer": ""
    "sixDown": {
    "selector": "six-down",
    "column": "SixDown",
    "answer": ""
    "sevenDown": {
    "selector": "seven-down",
    "column": "SevenDown",
    "answer": ""
    "eightDown": {
    "selector": "eight-down",
    "column": "EightDown",
    "answer": ""
    "fourAcross": {
    "selector": "four-across",
    "column": "FourAcross",
    "answer": ""
    "nineAcross": {
    "selector": "nine-across",
    "column": "NineAcross",
    "answer": ""
    "tenAcross": {
    "selector": "ten-across",
    "column": "TenAcross",
    "answer": ""
    "elevenAcross": {
    "selector": "eleven-across",
    "column": "ElevenAcross",
    "answer": ""
    "twelveAcross": {
    "selector": "twelve-across",
    "column": "TwelveAcross",
    "answer": ""
    // Create the batchCmd variable that will be used to create the new list item
    var batchCmd = '<Batch OnError="Continue"><Method ID="1" Cmd="New">';
    // Concatenate values of each response input by iterating over the object representing the responses
    $.each( responses, function() {
    // Cache the current item in the responses object.
    var $response = this;
    // For each input in the crossword associated with the current response object
    //, get the values and save them in the answer property.
    $( '.' + $response.selector ).each( function() {
    $response.answer += $( this ).val().toLowerCase();
    // Add the response to the batchCmd
    batchCmd += '<Field Name="' + $response.column + '"><![CDATA[' + $response.answer + ']]></Field>';
    // Close the batchCmd variable
    batchCmd += '</Method></Batch>';
    // Create a new list item on the destination list using the batchCmd variable
    $().SPServices({
    operation: "UpdateListItems",
    async: true,
    webURL: "http://operations.homestead.abc.com/sites/EIS/SEEIS/SSC/Lists/",
    listName: "Crossword",
    updates: batchCmd,
    completefunc: function( xData, Status ) {
    // If the AJAX call could not be completed, alert the user or include your own code to handle errors.
    if ( Status !== "success" ) {
    alert( "There was a problem submitting your answers. Please try again later." );
    else {
    // If there was an error creating the list item, alert the user or include your own code to handle errors.
    if ( $( xData.responseXML ).find( 'ErrorCode' ).text() !== "0x00000000" ) {
    alert( "There was a problem submitting your answers. Please try again later." );
    // if the list item was successfully created, alert the user and navigate
    //to the Source parameter in the URL (or to a URL of your choosing).
    else {
    alert( "Your answers were submitted successfully! Click OK to continue." );
    if ( window.location.href.indexOf( "Source=" ) !== -1 ) {
    var url = window.location.href.split( "Source=" )[1].split( "&" )[0];
    window.location.href = url;
    else {
    window.location.href = "/";
    </script>

  • ADF integration with Facebook Login

    Hi,
    just wanted to share a working example of Facebook Login integration in an ADF application, that only uses default ADF Faces tags. Here is how the JSF can look like:
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
        <af:document title="untitled1.jsf" id="d1">
            <af:form id="f1">
                <af:pageTemplate viewId="/oracle/templates/threeColumnTemplate.jspx" id="pt1">
                    <f:facet name="center">
                        <af:panelBox text="PanelBox2" id="pb2">
                            <f:facet name="toolbar"/>
                            <af:panelGroupLayout id="pgl1" layout="vertical">
                                <af:outputText value="Facebook Login" id="ot2"/>
                                <af:outputText value="&lt;fb:login-button show-faces=&quot;true&quot; width=&quot;200&quot; max-rows=&quot;1&quot;>&lt;/fb:login-button>" id="ot1"
                                               escape="false"/>
                            </af:panelGroupLayout>
                        </af:panelBox>
                    </f:facet>
                    <f:facet name="header">
                        <af:outputText value="&lt;div id=&quot;fb-root&quot;>&lt;/div>" id="ot3" escape="false"/>
                    </f:facet>
                    <f:facet name="end">
                        <af:panelBox text="PanelBox3" id="pb3">
                            <f:facet name="toolbar"/>
                        </af:panelBox>
                    </f:facet>
                    <f:facet name="start">
                        <af:panelBox text="PanelBox1" id="pb1">
                            <f:facet name="toolbar"/>
                        </af:panelBox>
                    </f:facet>
                    <f:facet name="branding"/>
                    <f:facet name="copyright"/>
                    <f:facet name="status"/>
                </af:pageTemplate>
            </af:form>
            <f:facet name="metaContainer">
                <af:resource type="javascript">
        window.fbAsyncInit = function() {
            FB.init({
                appId      : '115771338443915', // App ID
                channelUrl : 'http://localhost:8081/Application7-ViewController-context-root/channel.html', // Channel File
                status     : true, // check login status
                cookie     : true, // enable cookies to allow the server to access the session
                xfbml      : true  // parse XFBML
            FB.Event.subscribe('auth.authResponseChange', function(response) {
            // Here we specify what we do with the response anytime this event occurs.
                if (response.status === 'connected') {
                  // The response object is returned with a status field that lets the app know the current
                  // login status of the person. In this case, we're handling the situation where they
                  // have logged in to the app.
                  testAPI();
                } else if (response.status === 'not_authorized') {
                  // In this case, the person is logged into Facebook, but not into the app, so we call
                  // FB.login() to prompt them to do so.
                  // In real-life usage, you wouldn't want to immediately prompt someone to login
                  // like this, for two reasons:
                  // (1) JavaScript created popup windows are blocked by most browsers unless they
                  // result from direct interaction from people using the app (such as a mouse click)
                  // (2) it is a bad experience to be continually prompted to login upon page load.
                  FB.login();
                } else {
                  // In this case, the person is not logged into Facebook, so we call the login()
                  // function to prompt them to do so. Note that at this stage there is no indication
                  // of whether they are logged into the app. If they aren't then they'll see the Login
                  // dialog right after they log in to Facebook.
                  // The same caveats as above apply to the FB.login() call here.
                  FB.login();
        // Load the SDK asynchronously
        (function(d){
             var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
             if (d.getElementById(id)) {return;}
             js = d.createElement('script'); js.id = id; js.async = true;
             js.src = "//connect.facebook.net/en_US/all.js";
             ref.parentNode.insertBefore(js, ref);
        }(document));
        // Here we run a very simple test of the Graph API after login is successful.
        // This testAPI() function is only called in those cases.
        function testAPI() {
            console.log('Welcome!  Fetching your information.... ');
            FB.api('/me', function(response) {
              console.log('Good to see you, ' + response.name + '.');
              console.log('Response: ' + response);
    </af:resource>
            </f:facet>
        </af:document>
    </f:view>
    Note that you must have created a Facebook App on Facebook.com which provides the AppId number and set the App in "Sandbox"  mode.
    The jsf works in JDeveloper 11.1.2.4 and Glassfish 3.1.2 and ADF Essentials 11.1.2.4

    When using a web service proxy, you need to pass the data as an object, which' structure is defined in the web service proxy wrapper classes.
    When you've defined a data control for your bpel process, you can just drag and drop the 'initiate'/'execute', your operation and bind this to the update-button.
    When working with the proxy client, you need to populate your java class objects with the employee-object, this can be done in a backing bean or managed bean in your adf faces application.
    For more information you can always have a look at my blog where I've provided an explanation about the different possibilities of interfacing adf with SOA.
    Kind regards,
    Nathalie

  • Error while saving record in SharePoint 2013 through jQuery

    Dear Support,
    I had successfully created provider hosted app and deployed on SharePoint 2013 online site, in my project I created
    orderservice.asmx.cs web service and write a code for save record on SharePoint 2013 online list as I mentioned below and calling on App1.js file.
    But I am facing error when I am saving record on SharePoint 2013 list on button click event
    “500 Internal Server Error
    <! DOCTYPE html>”
    <html>
    OrderService.asmx.cs
    Public
    int InsertOrder (Order
    orderRecord)
    pwd.MakeReadOnly();
    clientContext.Credentials = new
    SharePointOnlineCredentials (myUserName, pwd);
    try
    Web oWeb = clientContext.Web;
    ListCollection lists = oWeb.Lists;
    List oOrderlist = lists.GetByTitle("Order");
    clientContext.Load<ListCollection>(lists);
    clientContext.Load<List>(oOrderlist);
    ListItemCreationInformation listItemCreationInfo
    = new
    ListItemCreationInformation();
    var listItem = oOrderlist.AddItem(listItemCreationInfo);
         listItem["Title"]
    = orderRecord.OrderProfile;
    listItem["Special_x0020_Instruction"]
    = orderRecord.Instruction;
    listItem ["Customer"] = orderRecord.CustomerId;
    listItem.Update();
           clientContext.ExecuteQuery();
    return 1;
    catch
    return -1;
    App1.JS
    $("#Save").click(function
    debugger;
    var OrderProfile = $('#orderprofile').val();
    var CustomerId = $('#exCustomerlist').jqxComboBox('getSelectedItem');
    var Instruction = $('#instruction').val();
    $.ajax ({
    url: location.pathname + "OrderService.asmx/InsertOrder",
    type: "POST",
    dataType: "json",
    data: "{OrderProfile:'" + OrderProfile
    + "', CustomerId:'" + CustomerId.value
    + "', Instruction:'" + Instruction
    + "}",
    contentType: "application/json; charset=utf-8",
    beforeSend: function (XMLHttpRequest) {
    //Specifying this header ensures that the results will be returned as JSON.
    XMLHttpRequest.setRequestHeader("Accept",
    "application/json");
    success: function (response) {
    $(".errMsg ul").remove();
    var myObject = eval('('
    + response.d + ')');
    if (myObject > 0) {
                                         alert(myObject);
    $(".errMsg").append("<ul><li>Data
    saved successfully</li></ul>");
    else {
    $(".errMsg").append("<ul><li>Opppps
    something went wrong.</li></ul>");
    $(".errMsg").show("slow");
    clear();
    error: function (response) {
    alert(response.status + ' ' + response.statusText
    + ' ' + response.responseText);
    would request for your support.
    Regards,
    Akhilesh

    Hi,
    Can you call your web service using jQuery not in an app successfully?
    As the error message suggests, it might be an error on the server side.
    I suggest you do a simple test to check whether you can call the web service using jQuery.
    Here are two links would provide more information about troubleshooting this error for your reference:
    http://sadomovalex.blogspot.com/2013/08/return-json-from-asmx-when-call-it.html
    http://www.codeproject.com/Tips/761116/Troubleshooting-an-Issue-With-Calling-an-asmx-Web
    Feel free to reply with the test result if the issue still exists.
    Best regards
    Patrick Liang
    TechNet Community Support

  • IPhoto 6 unusably slow (starting with keywords and then the rest o product)

    As I've mentioned in a post in another thread, I upgraded to iPhoto 6 a few weeks ago. From the moment of upgrade, anything associated with the keyword function (applying, searching, even scrolling the keyword box) is painfully slow--60 seconds to 3+ minutes at a time (that's the average--I've had waits of 90 seconds to apply 1 keyword to 1 photo and 8 minutes to apply 1 keyword to 27 photos). Since that last post, I've also discovered that the longer I try to use the product, the slower EVERYTHING in the product gets (other than scrolling the library).
    I use iPhoto as a database, not an image editor. To give you an idea of what I'm talking about, the types of things I'm trying to do include:
    * apply one keyword to 30 photos
    * click on one photo after having assigned a keyword to a different subset of photos
    * scroll down one page in the keyword box
    * select 4 photos
    * scroll one page in the main iPhoto view of photos
    * search by keyword
    I've re-installed, re-built, and re-started. I can also say that the longer I try to use iPhoto 6 in one session, the worse the performance gets. Yesterday morning I had to keyword 150 photos from a party and forced myself to use iPhoto so they could be searched with another set of pictures already in iPhoto. It took me OVER 1 HOUR to assign an average of 6 keywords to each photo with selections averaging 10-15 photos at a time. I am not exaggerating--I timed it (63 minutes). For the record, no other applications were running: iPhoto was flying solo (I thought running alone might help performance, but it didn't. I'm no software programmer but I have a lot of experience with computers and whatever is tying iPhoto's resources into a knot seems to be between iPhoto and iPhoto or iPhoto and the OS.)
    Also, the longer I used the product, the fewer "actions" it saw. So, for example, at the beginning I could click 3 keywords on the same keyword pane view and all 3 would apply to the selected photos (with a still dismal response, but at least I was getting 3 assignments for each response). By the end, only 1 assignment would be "seen" at a time even if 3 were clicked (and the other 2 would be translated into some random actions as iPhoto would scroll the keyword pane and assign a random keyword--not necessarily on the same side or the same position on the screen of the keywords I had actually clicked). The result? The functional response time tripled.
    The product is not only much worse than iPhoto 5, it's unusably slow. Sadly, I've already upgraded. So I'm wondering if anyone can tell me:
    1) Is there any way to know officially if Apple is addressing this specific problem? I know other people are experiencing this and thought there would be a fix from Apple by now, but nothing.
    2) Is there any way to bail out of iPhoto 6 and go back to iPhoto 5? I know there's no official path, but (A) is there any unofficial path and (B) what would I lose?
    3) Since iPhoto 6 is the only iLife product I use, I feel especially ripped-off. What I'd really like to do is get a refund and pursue a different solution. Any thoughts there?
    G4   Mac OS X (10.4.6)  
    G4   Mac OS X (10.4.6)  

    Old Toad
    Since I last wrote I have:
    * Rebuilt the directories with Disk Warrior. The problems I had were 30+ overlaps between iPhoto images and iTunes song files.
    This got rid of the 8 minute responses, but performance was still unusably appalling.
    * I cleaned out the user caches with OnyX.
    No change in iPhoto performance.
    * I reinstalled iPhoto. (Because of the overlaps I also tried to reinstall iTunes but it doesn't have an obvious path for that. Given the number of hours I've already burned on this Apple problem I didn't have the fight in me for another one).
    No change.
    * Per another post in this forum I emptied iPhoto trash, then per Old Toad I rebuilt the iPhoto library with the first 3 options.
    Noticeable improvement, but the performance is still dreadful.
    * Did a re-install and archive of OS X (per a friend's suggestion) and downloaded all the system updates anew.
    No improvement.
    So after rebuilding my system from the directories up, re-installing iPhoto, and rebuilding the iPhoto library I'm "back to" 30 second to 3+ minute waits for everything when the Photo Info pane is active. For example, it takes 30-90 second waits for tasks such as:
    * changing a tab in the Photo Info pane
    * trying to scroll the Keywords tab of the Photo Info pane
    * assign 1 keyword to 1 photo
    It takes 2-3+ minute waits for tasks such as:
    * scrolling the main window (one click in the scroll bar--not dragging) when the Photo Info pane is open
    * assigning 1 keyword to 36 photos
    * closing the Photo Info pane (AFTER however many minutes it took for the final commit i did before trying to exit)
    My observations:
    * When the ball is spinning on the screen, iPhoto doesn't "remember" what I do as other applications do, although the Keywords pane will occasionally scroll backward or forward--apparently randomly--in response to a single click anywhere in iPhoto. (And I'm not one of those people who bangs on the keyboard constantly when the computer is busy: I'm talking about a click that might get in before the ball starts spinning on the screen.)
    * The first "click" after opening the Photo Info Pane (either the Keywords tab or the first keyword box) is always "free"--no problem with excessively long waits. The second click after after a "free" click always has the burdensome wait times. Occasionally, though, in the first 3-5 clicks in the Photo Info pane the first click after what I'm assuming is a commit does not have the painful wait times. After those first 3-5 clicks, though, every click gets this excessive wait.
    * It seems odd to me how consistent the minimum wait is: right around 30 seconds. The click is either "free"--i.e. no perceptible wait time (or a reasonably minimal wait, given the task at hand)--or it's 30+ seconds.
    These response times really do make the product unusable for me. Does anyone:
    1) Have any other suggestions?
    2) Know how I can find out whether this problem is being pursued by Apple?
    3) Know of any path out of the product so I can put myself out of my misery?………
    G4   Mac OS X (10.4.6)  

  • Dreamweaver images not displaying

    Hi,
    I have a site that is not displaying images. I have a blank box in the middle of the page that is supposed to display three images every few seconds. I have looked at the code and cannot see that issue.
    Here is the html fro the index.html
    I have highlighted the parts where i think is the problem
    I hope someone can help.
    The site is www.luxeit.com.au
    <!DOCTYPE html><!--[if IE 6]><html id="ie6" dir="ltr" lang="en-US" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:addthis="http://www.addthis.com/help/api-spec" ><![endif]--><!--[if IE 7]><html id="ie7" dir="ltr" lang="en-US" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:addthis="http://www.addthis.com/help/api-spec" ><![endif]--><!--[if IE 8]><html id="ie8" dir="ltr" lang="en-US" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:addthis="http://www.addthis.com/help/api-spec" ><![endif]--><!--[if !(IE 6) | !(IE 7) | !(IE 8)  ]><!--><html dir="ltr" lang="en-US" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:addthis="http://www.addthis.com/help/api-spec" ><!--<![endif]-->
    <script>
      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
      ga('create', 'UA-42925477-1', 'luxeit.com.au');
      ga('send', 'pageview');
    </script>
    <head><meta charset="UTF-8" /><meta name="viewport" content="width=device-width" /><title>IT Network Support Ocean Grove, Barwon Heads, IT Support Ocean Grove</title><meta name="geo.region" content="AU-VIC" /><meta name="geo.placename" content="Melbourne" /><meta name="geo.position" content="-38.097535;145.170699" /><meta name="ICBM" content="-38.097535, 145.170699" /><meta name="GOOGLEBOT" CONTENT="index, follow"><meta name="language" content="English"><meta name="Robots" CONTENT="index, follow"><meta name="revisit-after" content="1 days"><meta name="Search Engine" CONTENT="http://www.google.com.au/"> <meta name="DC.title" content="IT Support Ocean Grove, Computer Support Ocean Grove, Small Business Server, Sonicwall Firewall" /><link rel="profile" href="http://gmpg.org/xfn/11" /><link rel="stylesheet" type="text/css" media="all" href="wp-content/themes/itmadic/style.css" /><link rel="pingback" href="xmlrpc.php" /><!--[if lt IE 9]><script src="http://www.luxeit.com.au/wp-content/themes/itmadic/js/html5.js" type="text/javascript"></script><![endif]--><link rel="alternate" type="application/rss+xml" title="It medic &raquo; Feed" href="feed/index.html" />
    <link rel="alternate" type="application/rss+xml" title="It medic &raquo; Comments Feed" href="comments/feed/index.html" />
    <link rel='stylesheet' id='output-css'  href='wp-content/plugins/addthis/css/outputccfb.css?ver=3.4.2' type='text/css' media='all' />
    <link rel='stylesheet' id='wp-paginate-css'  href='wp-content/plugins/wp-paginate/wp-paginate9030.css?ver=1.2.4' type='text/css' media='screen' />
    <script type='text/javascript' src='wp-includes/js/comment-replyccfb.js?ver=3.4.2'></script>
    <link rel="EditURI" type="application/rsd+xml" title="RSD" href="xmlrpc0db0.php?rsd" />
    <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="wp-includes/wlwmanifest.xml" />
    <link rel='prev' title='contact' href='contact/index.html' />
    <link rel='next' title='Request A Quote' href='request-a-quote/index.html' />
    <meta name="generator" content="WordPress 3.4.2" />
        <style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
    <!-- All in One SEO Pack 2.0.2 by Michael Torbert of Semper Fi Web Design[775,782] -->
    <meta name="description" content="Call (03) 5255 4214 for quick and best IT support?  We provide versatile IT network support and solutions for enabling your business to achieve goals quickly and cost effectively." />
    <meta name="keywords" content="IT support Ocean Grove, IT network support, support Barwon Heads, Geelong IT support" />
    <link rel="canonical" href="index.html" />
    <!-- /all in one seo pack -->
    <link href="wp-content/themes/itmadic/style.css" rel="stylesheet" type="text/css" /><link href="wp-content/themes/itmadic/css/banner_slider/style.css" rel="stylesheet" type="text/css" /><link href="wp-content/themes/itmadic/css/jquery.megamenu.css" rel="stylesheet" type="text/css" /><script src="../ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js" type="text/javascript"></script><script type="text/javascript" src="../ajax.googleapis.com/ajax/libs/jqueryui/1.5.3/jquery-ui.min.js" ></script><link rel="stylesheet" href="wp-content/themes/itmadic/colorbox/colorbox.css" /><script src="wp-content/themes/itmadic/colorbox/jquery.colorbox-min.js"></script><script type="text/javascript">    $(document).ready(function(){        $("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);                    $(".btn_book").colorbox({transition:"fade",width:400});                    $(".btn_request").colorbox({transition:"fade",width:400});    });</script><script src="wp-content/themes/itmadic/js/jquery.megamenu.js"></script><script type="text/javascript">  jQuery(function(){          var SelfLocation = window.location.href.split('?');            switch (SelfLocation[1]) {                case "defined_width":                    $(".MegaMenuLink").megamenu(".MegaMenuContent", {                        width: "850px"                    });                    break;                case "auto_width_right":                    $(".MegaMenuLink").megamenu(".MegaMenuContent", {                        justify: "right"                    });                    $('.MegaMenu').css("text-align", "right");                    break;                case "defined_width_right":                    $(".MegaMenuLink").megamenu(".MegaMenuContent", {                        justify: "right",                        width: "850px"                    });                    $('.MegaMenu').css("text-align", "right");                    break;                default:                    $(".MegaMenuLink").megamenu(".MegaMenuContent");                    break;            }      });</script><script type="text/javascript">      //Plugin start (function($)   {     var methods =       {         init : function( options )         {           return this.each(function()             {               var _this=$(this);                   _this.data('marquee',options);               var _li=$('>li',_this);                                      _this.wrap('<div class="slide_container"></div>')                        .height(_this.height())                       .hover(function(){if($(this).data('marquee').stop){$(this).stop(true,false);}},                               function(){if($(this).data('marquee').stop){$(this).marquee('slide');}})                         .parent()                        .css({position:'relative',overflow:'hidden','height':$('>li',_this).height()})                         .find('>ul')                        .css({width:screen.width*2,position:'absolute'});                              for(var i=0;i<Math.ceil((screen.width*3)/_this.width());++i)                   {                     _this.append(_li.clone());                   }                            _this.marquee('slide');});         },               slide:function()         {           var $this=this;           $this.animate({'left':$('>li',$this).width()*-1},                         $this.data('marquee').duration,                         'swing',                         function()                         {                           $this.css('left',0).append($('>li:first',$this));                           $this.delay($this.data('marquee').delay).marquee('slide');                                       }                        );                                      }       };        $.fn.marquee = function(m)     {       var settings={                     'delay':2000,                     'duration':900,                     'stop':true                    };              if(typeof m === 'object' || ! m)       {         if(m){         $.extend( settings, m );       }          return methods.init.apply( this, [settings] );       }       else       {         return methods[m].apply( this);       }     };   } )( jQuery );  //Plugin end  //call $(document).ready(function(){     $('.slide_new').marquee({delay:3000});       //$("li.page_item:last").addClass("last");   });   var chk_sec = 'invalid'var chk_sm_captcha = null;function chk_contactForm(){    if(document.getElementById('Name').value == 'Enter Name *'){        alert("Please enter name.");        document.getElementById('Name').focus();        return false;    }        if(document.getElementById('Email').value == 'Enter Email *'){        alert("Please enter email.");        document.getElementById('Email').focus();        return false;    }    var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;    var address = document.getElementById('Email').value;    if(reg.test(address) == false) {                 alert('Please enter valid email.');        document.getElementById('Email').focus();        return false;    }        if(document.getElementById('Phone').value == 'Enter Contact *' || isNaN(document.getElementById('Phone').value) == true){        alert("Please enter contact no.");        document.getElementById('Phone').focus();        return false;    }    if(document.getElementById('sec_code').value == 'Enter Code *'){        alert("Please enter code.");        document.getElementById('sec_code').focus();        return false;    }                    $s = jQuery.noConflict();        $s.ajax({        type:'POST',        url: "http://www.luxeit.com.au" + "/ajax",        data:$s('#requestfrm').serialize(),        dataType:"json",        success: function(response) {          if(response.error == "No")          {            alert("Please enter code same as image.");            return false;         }else if (response.error == "Yes"){                    alert("Thank you for using our services.");                                                requestfrm.reset();                                }        }        , error:function(response){alert(response);}    });return false;}function ContactUs(){    if(document.getElementById('author').value == 'Enter Name *'){        alert("Please enter name.");        document.getElementById('author').focus();        return false;    }        if(document.getElementById('email').value == 'Enter Email *'){        alert("Please enter email.");        document.getElementById('email').focus();        return false;    }    var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;    var address = document.getElementById('email').value;    if(reg.test(address) == false) {                 alert('Please enter valid email.');        document.getElementById('email').focus();        return false;    }        if(document.getElementById('subject').value == 'Enter Subject *'){        alert("Please enter subject.");        document.getElementById('subject').focus();        return false;    }    if(document.getElementById('text').value == 'Enter Message *'){        alert("Please enter message.");        document.getElementById('text').focus();        return false;    }            if(document.getElementById('sec_code').value == 'Enter Code *'){        alert("Please enter code.");        document.getElementById('sec_code').focus();        return false;    }        $s = jQuery.noConflict();        $s.ajax({        type:'POST',        url: "http://www.luxeit.com.au" + "/ajax-2",        data:$s('#ContactUs').serialize(),        dataType:"json",        success: function(response) {          if(response.error == "No")          {            alert("Please enter code same as image.");            return false         }else if (response.error == "Yes"){                    alert("Thank you for using our services.");                    ContactUs.reset();                                }        }        , error:function(response){alert(response);}    });return false;}</script></head><body class="home page page-id-145 page-template page-template-home-php single-author singular two-column right-sidebar"><div id="wrapper">  <div id="mainpage">            <!-- Header -->    <div id="header">      <div class="topelement">        <div class="phone"><img src="wp-content/themes/itmadic/images/phone.png"  alt="Phone" /></div>        <br class="clear" />        <div class="email"><a href="mailto:[email protected]">[email protected]</a></div>      </div>        <div class="logo" title="IT Support Ocean Grove"><a href="index.html"><img src="wp-content/themes/itmadic/images/logo.png" alt="IT support Melbourne" /></a></div>    </div>    <!-- Header End -->    <!-- Menu -->        <div id="nav">      <ul class="MegaMenu">      <li> <a href="index.html" class="MegaMenuLinkOff active" title="IT support Ocean Grove"><span class="active">Home</span></a></li>       <li><a href="about-us/index.html" class="MegaMenuLink " title="IT Support"><span class="">ABOUT US</span></a><div class="MegaMenuContent">        <table class="MegaMenuTable" style="z-index:99999999 !important;">          <tbody>            <tr>              <td>              <ul class="MegaMenuLists">                  <li><a href="clients/index.html" title="Clients">Clients</a></li>                  <li><a href="it-medic-career-opportunities/index.html" title="Employment">Employment</a></li>                  <li><a href="contact/index.html" title="Contact Us">Contact Us</a></li>                                  </ul></td>               </tr>          </tbody>        </table>      </div> </li>             <li> <a href="it-support/index.html" class="MegaMenuLink " title="Business IT Support"><span class="">IT SUPPORT </span></a><div class="MegaMenuContent">        <table class="MegaMenuTable" style="z-index:99999999 !important;">          <tbody>            <tr>              <td>              <ul class="MegaMenuLists">                  <li><a href="category/faqs/index.html" title="Clients">FAQs</a></li>                                                   </ul></td>               </tr>          </tbody>        </table>      </div></li>     <li> <a href="services/index.html" class="MegaMenuLink " title="Business IT Support Services"><span class="">SERVICES</span></a> <div class="MegaMenuContent">        <table class="MegaMenuTable">          <tbody>            <tr>              <td>              <ul class="MegaMenuLists">                  <li><a href="fixed-price-it-support/index.html" title="Fixed Price IT Support">Fixed Price IT Support</a></li>                  <li><a href="managed-services/index.html" title="Managed IT Services">Managed IT Services</a></li>                  <li><a href="it-medic-cloud-backup-online-managed-backup-service/index.html" title="Cloud Backup">Cloud Backup</a></li>                  <li><a href="services/index.html" title="Cloud Computing">Cloud Computing</a></li>                    <li><a href="it-medic-business-it-advice/index.html" title="IT Strategy and Advice">IT Strategy and Advice</a></li>        <li><a href="office_365_microsoft_online_experts/index.html" title="Office 365 - Microsoft Online Solutions">Office 365 - Microsoft Online Solutions</a></li>        <li><a href="it-office-moves-we-will-organise-your-office-move/index.html" title="Office Moves and Relocations">Office Moves and Relocations</a></li>        <li><a href="small-business-server-sbs/index.html" title="Small Business Server">Small Business Server Specialists</a></li>                  <li><a href="it-medic-website-hosting/index.html" class="no_border" title="Cloud Hosting">Web Hosting</a></li>                </ul></td>               </tr><script type="text/javascript">  var _gaq = _gaq || [];  _gaq.push(['_setAccount', 'UA-42925477-1']);  _gaq.push(['_trackPageview']);  (function() {    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);  })();</script>          </tbody>        </table>      </div></li>     <li> <a href="solutions/index.html" class="MegaMenuLinkOff " title="IT Support Solutions"><span class=""> SOLUTIONS </span></a></li>     <li> <a href="contact/index.html" class="MegaMenuLinkOff " title="Contact Us"><span class="">CONTACT</span></a></li>    <li class="noBg">  <a href="category/blog/index.html" class="MegaMenuLinkOff " title="IT BLOG"><span class="">IT BLOG</span></a></li>      </ul>    </div>        <!--<div id="nav">      <div class="main-menu">          <ul>                 <div class="menu-top-menu-container"><ul id="menu-top-menu" class="menu"><li id="menu-item-157" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-145 current_page_item menu-item-157"><a title="IT support Melbourne" href="http://www.luxeit.com.au/"class="select"><span>Home</span></a></li>
    <li id="menu-item-152" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-152"><a title="IT Support" href="http://www.luxeit.com.au/about-us/"><span>About Us</span></a></li>
    <li id="menu-item-151" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-151"><a title="Business IT Support" href="http://www.luxeit.com.au/it-support/"><span>It support</span></a></li>
    <li id="menu-item-150" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-150"><a title="Business IT Support Services" href="http://www.luxeit.com.au/services/"><span>services</span></a></li>
    <li id="menu-item-149" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-149"><a title="IT Support Solutions" href="http://www.luxeit.com.au/solutions/"><span>solutions</span></a></li>
    <li id="menu-item-148" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-148"><a title="Contact Us" href="http://www.luxeit.com.au/contact/"><span>contact</span></a></li>
    </ul></div>              <li class="last"><a href="http://www.luxeit.com.au/category/blog/" ><span>IT BLOG</span></a></li>              </ul>      </div>    </div>-->    <!-- Menu End -->    <!-- Banner -->        <div id="banner_container">      <div id="featured">                  <ul class="ui-tabs-nav">            <li class="ui-tabs-nav-item ui-tabs-selected" id="nav-fragment-1"> <a href="#fragment-1"> <img class="alignnone size-full wp-image-37" title="comp_support" src="wp-content/uploads/2012/12/comp_support1.png" alt="" width="68" height="68" /><span class="li_title">Cloud<br/>Backup</span></a></li><li class="ui-tabs-nav-item ui-tabs-selected" id="nav-fragment-2"> <a href="#fragment-2"> <img class="alignnone size-full wp-image-37" title="comp_support" src="wp-content/uploads/2012/12/comp_support1.png" alt="" width="68" height="68" /><span class="li_title">Fixed Price <br/>IT & Support</span></a></li><li class="ui-tabs-nav-item ui-tabs-selected" id="nav-fragment-3"> <a href="#fragment-3"> <img class="alignnone size-full wp-image-41" title="hardware" src="wp-content/uploads/2012/12/hardware1.png" alt="" width="68" height="68" /><span class="li_title">hardware<br/>sales</span></a></li>        </ul>        <div id="fragment-1" class="ui-tabs-panel ui-tabs-hide" style=""> <a href="it-medic-cloud-backup-online-managed-backup-service/index.html"><img class="alignnone size-full wp-image-38" title="Small Business Server" src="wp-content/uploads/2012/12/image21.jpg" alt="Small Business Server" width="715" height="278" /></a>          <div class="info">            <a href="wp-content/uploads/2012/12/comp_support1.png"></a><a href="small-business-server-sbs/index.html"></a>
    <h2>Too many people trying to do the right job ?</h2>
    Outsource your IT to one reliable place          </div>        </div><div id="fragment-2" class="ui-tabs-panel ui-tabs-hide" style=""> <a href="it-support/index.html"><img class="alignnone size-full wp-image-38" title="It Support Melbourne" src="wp-content/uploads/2012/12/image21.jpg" alt="It Support Ocean Grove" width="715" height="278" /></a>          <div class="info">            <a href="wp-content/uploads/2012/12/comp_support1.png"></a><a href="index.html"></a>
    <h2>Too many people trying to do the right job ?</h2>
    Outsource your IT to one reliable place          </div>        </div><div id="fragment-3" class="ui-tabs-panel ui-tabs-hide" style=""> <a href="#"><img class="alignnone size-full wp-image-42" title="Computer Support Ocen Grove" src="wp-content/uploads/2012/12/image31.jpg" alt="Computer Support Ocean Grove" width="716" height="278" /></a>          <div class="info">            <a href="wp-content/uploads/2012/12/hardware1.png"></a><a href="it-support/index.html"></a>
    <h2>Too many people trying to do the right job ?</h2>
    <p>Outsource your IT to one reliable place</p>
              </div>        </div>      </div>    </div>    <!-- Banner End -->
        <!-- Content Part -->
        <div id="main_container">
          <div class="curve_top"></div>
          <div class="curve_middle">
            <!--  Left Part Start  -->
            <div id="left_col">
              <div class="content_top"></div>
              <!--  Boxes Start  -->
              <div class="box1">
                  <h2 class="homebox"><img src="wp-content/themes/itmadic/images/bul.png" alt="IT Supports" />Cloud Backup</h2>
                  <img src="wp-content/uploads/2013/02/img3.png" width="213" height="155"  class="size-full wp-image-71 alignleft" /></div><div class="box1">
                  <h2 class="homebox"><img src="wp-content/themes/itmadic/images/bul.png" alt="IT Supports" />Small Business Server</h2>
                  <img src="wp-content/uploads/2012/12/img11.png" width="213" height="155"  class="size-full wp-image-71 alignleft" /></div><div class="box2">
                  <h2 class="homebox"><img src="wp-content/themes/itmadic/images/bul.png" alt="IT Supports" />Sonicwall Firewall</h2>
                  <img src="wp-content/uploads/2012/12/img21.png" width="213" height="155"  class="size-full wp-image-71 alignleft" /></div><div class="box-list">
                    <ul>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/list-icon1.png" alt="" /></div>
                        <a href="javascript:void(0);">Run Maleware Scans</a></li>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/list-icon2.png" alt="" /></div>
                        <a href="javascript:void(0);">Run Spyware Scans </a></li>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/list-icon3.png" alt="" /></div>
                        <a href="javascript:void(0);">Lock the computer down</a></li>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/list-icon4.png" alt="" /></div>
                        <a href="javascript:void(0);">Rollout new versions</a></li>
                    </ul><a href="services-2/index.html" class="btn-readmore-small"></a></div><div class="box-list" style="padding-left:35px;">
                    <ul>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/email_sync1.jpg" width="28" height="27" alt="" /></div>
                        <a href="javascript:void(0);">Email Synchronisation</a></li>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/email_web_access2.jpg" width="28" height="27"  alt="" /></div>
                        <a href="javascript:void(0);">Email Web Access </a></li>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/outlook_anywhere2.jpg" width="28" height="27"  alt="" /></div>
                        <a href="javascript:void(0);">Outlook Anywhere</a></li>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/remote_web_workplace1.jpg"  width="28" height="27"  alt="" /></div>
                        <a href="javascript:void(0);">Remote Web Workplace</a></li>
                    </ul><a href="small-business-server-sbs/index.html" class="btn-readmore-small"></a></div><div class="box-list" style="padding-left:35px;">
                    <ul>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/business1.jpg" alt="" width="28" height="27"  /></div>
                        <a href="javascript:void(0);">Small-Medium Businesses</a></li>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/wan1.jpg" alt="" width="28" height="27"  /></div>
                        <a href="javascript:void(0);">Multiple WAN connections</a></li>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/fast_utm_1.jpg" alt="" width="28" height="27" /></div>
                        <a href="javascript:void(0);">Fast UTM throughput</a></li>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/bandwidth2.jpg" alt="" width="28" height="27" /></div>
                        <a href="javascript:void(0);">Bandwidth managment</a></li>
                    </ul><a href="sonicwall-firewall/index.html" class="btn-readmore-small"></a></div>          <!--  Content Box Start  -->
    <!--          <div class="content-box" style="background: none;">
                  Who We Are Start 
                <div class="who-we">
                                  <h1>who we are ?</h1>
                  <p>LUXE IT&#8217;s objective is to enable your business to reach its goals quickly and cost-effectively using our versatile support services that range from managing your IT systems, offering help-desk services and developing strategic solutions for your individual needs.</p>
    <p>Our service strategy is &#8216;prevention is cheaper than cure&#8217; and as such our goal is to proactively keep your               <a href="who-we-are/">more &gt&gt</a>
                </div>
                  Who We Are End 
                  What Our Start 
                <div class="what-box">
                  <h1>NEWS FLASH</h1>
                  <div class="what-box1">
                      <p class="black-txt">"IT Medic is one of Victoria's leading IT consultancy companies, offering small and medium businesse...</p><a href="http://www.luxeit.com.au/new1">more &gt&gt</a><div style=" border-bottom: 1px dashed #999; margin:10px 0px 20px 0px"></div><p class="black-txt">LUXE IT technicians have steadfastly developed a reputation for delivering quality IT solutions for...</p><a href="http://www.luxeit.com.au/new2">more &gt&gt</a><div style=" border-bottom: 1px dashed #999; margin:10px 0px 20px 0px"></div>                  <div style="float:right;"><a href="http://www.luxeit.com.au/category/news/">View All</a></div>
                  </div>
                </div>
                  What Our End 
              </div>-->
              <!--  Content Box End  -->
            </div>
            <!--  Left Part End  -->
           <div id="right_col">
        <div class="right_box">
            <div class="block-freequote">
                            <form action="#" method="post" id="requestfrm">
                <div class="block-quote-top"> <span class="block-quote-ttle">REQUEST A CALLBACK</span> <br />
                    <div class="contact_text_1">
                        <input name="Name" id="Name" maxlength="25" type="text" onfocus="if (this.value=='Enter Name *') this.value = ''" onblur="if (this.value=='') this.value = 'Enter Name *'" class="textbox wdth190" value="Enter Name *"/>
                    </div>
                    <div class="contact_text_1">
                        <input name="Email" id="Email" maxlength="25" type="text" onfocus="if (this.value=='Enter Email *') this.value = ''" onblur="if (this.value=='') this.value = 'Enter Email *'" class="textbox wdth190" value="Enter Email *"/>
                    </div>
                    <div class="contact_text_1">
                        <input name="Phone" id="Phone" maxlength="25" type="text" onfocus="if (this.value=='Enter Contact No *') this.value = ''" onblur="if (this.value=='') this.value = 'Enter Contact No *'" class="textbox wdth190" value="Enter Contact No *"/>
                    </div>
                    <div class="contact_text_4">
                        <textarea name="comment" id="comment" cols="" rows="3" class="textarea wdth190" onfocus="if (this.value=='Enter Your Comment') this.value = ''" onblur="if (this.value=='') this.value = 'Enter Your Comment'" style="min-height: 60px; outline: medium none; overflow: auto; resize: none; width: 209px;">Enter Your Comment</textarea>
                    </div>
                    <div class="capcha">
                        <img src="wp-content/themes/itmadic/captcha.jpg" width="87" height="30" alt="Captcha" id="Captcha" name="Captcha"/>
                        <img src="wp-content/themes/itmadic/images/refresh.png" width="30" height="30" alt="Capcha" onclick="document.getElementById('Captcha').src='wp-content/themes/itmadic/captchad41d.jp g?'+Math.random();" style="cursor: pointer;" />
                    </div>
                    <div class="contact_text_3">
                        <input name="sec_code" id="sec_code" type="text" onfocus="if (this.value=='Enter Code *') this.value = ''" onblur="if (this.value=='') this.value = 'Enter Code *'" value="Enter Code *" class="textbox wdth100" maxlength="4" size="1"/>
                    </div>
                    <input name="Submit" type="button" class="btn-submit" onclick="return chk_contactForm()"/>
                </div>
                </form>
                <div class="block-quote-btm"></div>
                        </div>
        </div>
        <div style="padding: 5px;float: left;"></div>
    <!--    <div class="right_box"><a href="http://www.luxeit.com.au/special-deals/" class="btn_livechat" oncontextmenu="return false;"></a></div>
        <div class="right_box"><a href="http://www.luxeit.com.au/book-a-service-call/" class="btn_book" oncontextmenu="return false;"></a></div>
        <div class="right_box"><a href="http://www.luxeit.com.au/request-a-quote/" class="btn_request" oncontextmenu="return false;"></a></div>-->
    </div>      </div>
    <!--      <div class="curve_bottom"></div>-->
        </div>
        <!-- Content Part End -->
        <!-- Logo Slider Start -->
        <!-- Logo Slider End -->
      </div>
    <!--  <div class="clear"></div>-->
    </div>
    </div>
          <div class="curve_bottom"></div>
        </div>
        <!-- Content Part End -->
        <!-- Logo Slider Start -->
        <!-- Logo Slider End -->
      </div>
      <div class="clear"></div>
    </div>
        <!--  Footer Start  -->
    <div id="footer">
      <div class="footer_container">
        <div class="mid_body_box_bottom">
          <div class="marquee" id="mycrawler1" style="width: 990px;">
          <!--<img src="http://www.luxeit.com.au/wp-content/themes/itmadic/images/logo-1.jpg" alt="" /> <img src="http://www.luxeit.com.au/wp-content/themes/itmadic/images/logo-2.jpg" alt="" /> <img src="http://www.luxeit.com.au/wp-content/themes/itmadic/images/logo-3.jpg" alt="" /> <img src="http://www.luxeit.com.au/wp-content/themes/itmadic/images/logo-4.jpg" alt="" /> <img src="http://www.luxeit.com.au/wp-content/themes/itmadic/images/logo-5.jpg" alt="" /> <img src="http://www.luxeit.com.au/wp-content/themes/itmadic/images/logo-6.jpg" alt="" /> <img src="http://www.luxeit.com.au/wp-content/themes/itmadic/images/logo-7.jpg" alt="" /> <img src="http://www.luxeit.com.au/wp-content/themes/itmadic/images/logo-8.jpg" alt="" /> <img src="http://www.luxeit.com.au/wp-content/themes/itmadic/images/logo-9.jpg" alt="" /> -->
          <a href="wp-content/uploads/2012/12/logo-11.jpg"><img src="wp-content/uploads/2012/12/logo-11.jpg" alt="" title="logo-1" width="142" height="49" class="alignnone size-full wp-image-592" /></a><a href="wp-content/uploads/2012/12/logo-31.jpg"><img src="wp-content/uploads/2012/12/logo-31.jpg" alt="" title="logo-3" width="82" height="39" class="alignnone size-full wp-image-593" /></a><a href="wp-content/uploads/2012/12/logo-41.jpg"><img src="wp-content/uploads/2012/12/logo-41.jpg" alt="" title="logo-4" width="51" height="48" class="alignnone size-full wp-image-594" /></a><a href="wp-content/uploads/2012/12/logo-51.jpg"><img src="wp-content/uploads/2012/12/logo-51.jpg" alt="" title="logo-5" width="74" height="59" class="alignnone size-full wp-image-595" /></a><a href="wp-content/uploads/2012/12/logo-61.jpg"><img src="wp-content/uploads/2012/12/logo-61.jpg" alt="" title="logo-6" width="82" height="56" class="alignnone size-full wp-image-596" /></a><a href="wp-content/uploads/2012/12/logo-71.jpg"><img src="wp-content/uploads/2012/12/logo-71.jpg" alt="" title="logo-7" width="60" height="56" class="alignnone size-full wp-image-597" /></a><a href="wp-content/uploads/2012/12/logo-81.jpg"><img src="wp-content/uploads/2012/12/logo-81.jpg" alt="" title="logo-8" width="132" height="45" class="alignnone size-full wp-image-598" /></a><a href="wp-content/uploads/2012/12/logo-91.jpg"><img src="wp-content/uploads/2012/12/logo-91.jpg" alt="" title="logo-9" width="97" height="47" class="alignnone size-full wp-image-599" /></a>      </div>
        </div>
        <div class="cleaner"></div>
    <!--    <img src="http://www.luxeit.com.au/wp-content/themes/itmadic/images/div-2.png"  style="padding: 0 0 0 40px" />-->
        <!--  Navigation Start  -->
        <div class="navigaiton">
          <div class="cleaner"></div>
          <h3>Quick Links</h3>
          <ul class="navi-menu">
            <li><a href="about-us/index.html" title="About us">About us</a></li>
            <li><a href="it-support/index.html" title="IT Support">IT Support</a></li>
            <li><a href="services/index.html" title="Services">Services</a></li>
            <li><a href="solutions/index.html" title="Solutions">Solutions</a></li>
          </ul>
        </div>
        <div class="navigaiton">
          <div class="cleaner"></div>
          <h3>Our Company</h3>
          <ul class="navi-menu">
            <li><a href="clients/index.html" title="Clients">Clients</a></li>
            <li><a href="it-medic-career-opportunities/index.html" title="Employment">Employment</a></li>
            <li><a href="contact/index.html" title="Contact Us">Contact Us</a></li>
            <li><a href="category/faqs/index.html" title="FAQs">FAQs</a></li>
          </ul>
        </div>
        <div class="navigaiton">
          <div class="cleaner"></div>
          <h3>Our Services</h3>
          <ul class="navi-menu">
            <li><a href="managed-services/index.html" title="Managed IT Services">Managed IT Services</a></li>
            <li><a href="it-medic-cloud-backup-online-managed-backup-service/index.html" title="Cloud Backup">Cloud Backup</a></li>
            <li><a href="services/index.html" title="Cloud Computing">Cloud Computing</a></li>
            <li><a href="it-medic-business-it-advice/index.html">IT Strategy and Advice</a></li>
          </ul>
        </div>
        <!--  Navigation End  -->
        <!--  Contact Information Start  -->
        <!--  Contact Information End  -->
        <!--  Social Start  -->
        <div class="social">
          <h3>Social Media</h3>
          <ul class="social-link">
            <li><a href="#" class="facebook"></a>Join Us on Facebook</li>
            <div class="cleaner"></div>
            <br />
            <li><a href="#" class="twitter"></a>Follow Us on Twitter</li>
          </ul>
        </div>
        <!--  Social End  -->
        <!--  Footer Bottom Start  -->
        <div class="footer-bottom">
          <div class="copyright">© copyright 2013 LUXE IT Solutions </div>
          <div class="webdesign"><a href="http://www.luxeit.com.au/" target="_blank">Web Design</a> | <a href="http://http://www.luxeit.com.au" target="_blank" title="Web Design Melbourne">Web Design Ocean Grove</a> <a href="http://http://www.luxeit.com.au/" target="_blank"></a></div>
        </div>
        <!--  Footer Bottom End  -->
      </div>
    </div>
            <!--  Footer End  -->
    <script type="text/javascript">
    var addthis_config = {"data_track_clickback":false,"data_track_addressbar":false,"data_track_textcopy":false," ui_atversion":"300"};
    var addthis_product = 'wpp-3.0.5';
    </script><script type="text/javascript" src="../s7.addthis.com/js/300/addthis_widget.js#pubid=9a150961060f210039a7601a57828761">< /script><!--wp_footer-->
    </body>
    </html>

    Run your page through the validator here: http://validator.w3.org
    You have some structural defects in your code that should be taken care of. If it's still not working once you have the code cleaned, post back and we can take a closer look.

  • Serial receive - ignore \r\n CR LF ascii codes

    Hello,
    I am trying to read an array of characters including carriage return and line feed into one array into labview.  I receive the command then wait x miliseconds until all data has been received and then read all data in the buffer using the serial read function.  An example sequence of series of characters is as follows: 
    printf("RTCC time date\r\n35:6c:53\r\n0d/02/cb\r\n")
    I need to receive this exact set of characters and store them into one array in labview.  It appears that labview automatically breaks from the read routine when it receives the Carriage return or line feed code.  Which, when writing to an array only gives the characters up to the line feed, then overwrites them upon exiting and returning the receive the next set of chars up to the next line feed.  Which, in this case would require to have 3 separate arrays in order to store all of the data.  Which ends up looking like this:
    array1 "RTCC time date\r\n"
    array2 "35:6c:53\r\n"
    array3 "0d/02/cb\r\n"
    It seems like there should be a setting to disable the read function response to the \r\n, but I cannot find any.  For that matter, Can someone please guide to documentation that details this type of functionality using the VISA functions?  I have searched the help and it gives a very very superficial explanation.  I have found the VISA manual, but it only details C code implementation. 
    Attached is a VI that flows as explained. 
    Thanks 
    Solved!
    Go to Solution.

    All right, apparently I am a retard.  Last try.
    Attachments:
    deubg Receive data.vi ‏25 KB

  • Php file upload processing

    Hi I have been working with javascript and php to upload files. I am having problems with
    the backend of the file upload.
    So when the file is recieved in the backend.php . It comes like:
    $fileupload=$_POST['upload_file'];
    The above $fileupload is the url of the file:
    I am trying to extract name , type and size using:
    $name=$_FILE['$fileupload']['name'];
    $tmp_name=$_FILE['$fileupload']['tmp_name'];
    $size=$_FILE['$fileupload']['size'];
    But this seems not to work.
    echo $fileupload; //gives me the file url.
    but:
    echo $name or $tmp_name or $size
    does not work.
    Can any one help.

    Hi Rob
    Thanks so much for the replay. $name=$_FILES['photofield']['name'];
    does not work in this circumstance because I am recieving the file through the ajax code below:
    <script type="text/javascript">
       // JavaScript Document
    var phototitle;
    var photogenre;
    var photodesc;
    var photofield;
    function AjaxStuff(){
    phototitle = jQuery("#phototitle").attr("value");
    photogenre = jQuery("#photogenre").attr("value");
    photodesc = jQuery("#photodesc").attr("value");
    photofield = jQuery("#photofield").attr("value");
    jQuery.ajax({
      type: "POST",
      url: "Uploadfix.php",
      cache: false,
      dataType: "html",
      data: "phototitle=" + phototitle + "&photogenre=" + photogenre + "&photodesc=" + photodesc + "&photofield=" + photofield,
      success: function(response){
       // if sucessful; response will contain some stuff echo-ed from .php
      // alert("Here is your response: " + response);
       // Append this response to some <div> => let's append it to div with id "serverMsg"
       jQuery("#allresult").append(response);
       jQuery("#contentgrid").trigger("reloadGrid");});
    } // END OF FormAjaxStuff()
    </script>
    photofield is the file. Uploadfix.php is where the data is posted:
    Uploadfix.php
    $phototitle=$_POST['photofield];
    the for file:
    $photo=$_FILES['photofield']['name'];
    echo $photo; //Nothing comes out.
    echo $photofield; //The url for the file appears.

Maybe you are looking for

  • Disable Create Serial No. automatically Check box in MIGO

    Hi, I have a problem where in I need to disable Create Serial No. automatically check box in MIGO while posting GRN. And I could not do anything with the profile of the serial nr in t-code OIS2. You can give me some information that help in this ques

  • GL Account Creation Error

    Hi, The users are trying to create a GL Account but the system throws an error message, stating that the Cost Element already created for this GL Code. However, when we try to delete the Cost Element, the system gives the message, that the Cost Eleme

  • Returns and replacements!

    I bought a Nokia N86 a week last monday and the camera capture button was unresponsive. I called Customer care and was told to send the phone back using a label that they provided. 1. How long does it take for returned goods to be received and a repl

  • Burning Smart Albums to DVD

    Hi I've generated a few trial smart albums from my main library before making any serious use of them and the behaviour when burning one or more of them to a DVD seems very odd to me, in fact useless, and I wonder if someone can tell me what I'm doin

  • How to view multiple documents on Word

    Whenever I open up a new document on Word a separate window pops up. If I have 3 different word documents open, I have to shuffle through 3 different windows in order to find the right one. Since I work on different homework assignments simultaneousl