Complex values cannot be converted to ....

Hi;
I have an odd problem I can't seem to figure out....I wrote a couple of neat little functions to create boolean selects, populate them with the values from a database and "select" the correct one inthe html form.
<cffunction name="booleanSelect" access="public" output="yes" returntype="string"
            description="Creates a booleaen select dropdown" >
        <cfargument name="formvar" required="yes" type="string" />
        <cfargument name="ffalse" required="yes" type="string" />
        <cfargument name="ttrue" required="yes" type="string" />
        <cfscript>
            myvar=evaluate("form.#arguments.formvar#");
            if(myvar eq 0){sel = 'selected="selected"';}else{sel = '';}
            writeoutput('<option value="0" '&sel&' >'&arguments.ffalse&'</value>');           
            if(myvar eq 1){sel = 'selected="selected"';}else{sel = '';}
            writeoutput('<option value="1" '&sel&' >'&arguments.ttrue&'</value>');
        </cfscript>
    </cffunction>
can be called via:
<select name="status" id="status">
      <cfscript>booleanSelect('status','Disabled','Enabled');</cfscript>
</select>
and that all works [that's the fixed version]
What I don't understand is why this does not work, the following DOES work in an insert form but not an edit form. and in both cases the form field used to populate the formvar argument is populated and has a value...
<cffunction name="booleanSelect" access="public" output="yes" returntype="string"
               description="Creates a booleaen select dropdown" >
        <cfargument name="formvar" required="yes" type="string" />
        <cfargument name="ffalse" required="yes" type="string" />
        <cfargument name="ttrue" required="yes" type="string" />
        <cfscript>
            if(form[arguments.formvar] eq 0){sel = 'selected="selected"';}else{sel = '';}
            writeoutput('<option value="0" '&sel&' >'&ffalse&'</value>');
            if(form[arguments.formvar] eq 1){sel = 'selected="selected"';}else{sel = '';}
            writeoutput('<option value="1" '&sel&' >'&ttrue&'</value>');
        </cfscript>
    </cffunction>
basically, why do I have to evaluate the formvar argument in one case and not in the other? I think I might be missing something important here....
-sean

basically I have a table in a database with a bunch of boolean '1','0'columns.
I have a function that reads the database table and sets form variables based on the database column and it's default value for an insert action...
for an update action I have another function that reads the tables data and populates the form variables based on the value in the data column
- works very well, all I have to do is make sure my form fileds are named the same as in the database
so for the drop down boolean options I created a function to create the dropdown and select wother the default value or the column value baesd on whether it is an insert or update action... so:
<select name="status" id="status">
       <cfscript>booleanSelect('status','Disabled','Enabled');</cfscript>
</select>
where 'status' is the column name AND the form variable 'form.status' , 'Enabled' & 'Disabled' are just the labels to apply to '1' or '0' on output
at the top of the insert pages I create the default form variables:
    fieldsDefaults('_column_name_','_fields_to_ignore_');
which calls:
    <cffunction name="fieldsDefaults" access="public" output="yes" returntype="void"
                    description="creates default form fields froma database query" >
        <cfargument name="table" required="yes" type="string" />
        <cfargument name="ignorelist" required="no" type="string" default="" />
        <cfargument name="column" required="no" type="string" default="false" />
        <cfif arguments.column is not "false">
            <cfquery name="showcolumns" datasource="#application.dsn#">
                select #arguments.column# from #arguments.table#;
            </cfquery>
            <cfloop query="showcolumns">
                <cfparam name="form.#createVar(evaluate(arguments.column))#" default="" />
            </cfloop>       
        <cfelse>
            <cfquery name="showcolumns" datasource="#application.dsn#">
                show columns from #arguments.table#;
            </cfquery>
            <cfloop query="showcolumns">
                <cfif ListFindNoCase(field,ignorelist) eq 0>
                    <cfparam name="form.#field#" default="#default#" />
                </cfif>
            </cfloop>
        </cfif>
    </cffunction>
to create the <cfparam> form defaults...
now on to the edit.... calls this:
    <cffunction name="dataDefaults" access="public" output="yes" returntype="void"
                    description="creates default form fields froma database query" >
        <cfargument name="table" required="yes" type="string" />
        <cfargument name="id" required="yes" type="numeric" />
        <cfargument name="ignorelist" required="no" type="string" default="" />
        <cfargument name="column" required="no" type="string" default="false" />
            <cfquery name="getnames" datasource="#application.dsn#">
                show columns from #arguments.table#
            </cfquery>
            <cfquery name="getdata" datasource="#application.dsn#">
                select * from #arguments.table# where id = '#arguments.id#';
            </cfquery>
            <cfloop query="getnames">
                <cfif ListFindNoCase(field,ignorelist) eq 0>
                    <cfset form[#field#] = "#getdata[getnames.field]#" />
                </cfif>
            </cfloop>
    </cffunction>
which does close to the same thing, but instead populates the form variables with actual database data......
-sean

Similar Messages

  • Value cannot be converted to requested type

    hi.
    can anyone tell me why i get the following error:
    [sunm][Oracle JDBC Driver]Value can not be converted to requested type
    I get this error when i try to execute a SQL query like the one below:
    SELECT * FROM orders WHERE orders.date BETWEEN '20-SEP-05' AND '22-SEP-05'
    this is not the exact query i am trying to excute, but serves the purpose of this forum post.
    ideally, i'd like to use the "?" parameter instead of the dates written above. the application's user selects a StartDate and EndDate for his search. this should display a list of orders within that date range.
    i have tried using several date formats, as well as the TO_DATE() function. i always get this error when using the "?" parameter but it displays the correct records when i use an actual date.
    i also only get this error when working with dates. i can use the "?" parameter with no problems for any other table column.
    someone please help!!

    How is the user selecting a start and end date? By using the calendar? You might need to convert the calendar's date into an SQL friendly date. For instance, try this:
    somethingRowSet.setObject(1, (new java.sql.Timestamp(((java.util.Date)StartDate.getValue()).getTime()).toString()))You might also want to try turning on printStatements in the row set's properties. This will cause the row set to print out the parameters to the log file so you can then analyze what exactly the row set is doing.
    Hope this helps.
    -Jeff

  • IDOC to abap proxy- Receiver Service Cannot be converted into ALE logical

    Dear all,
    I have idoc to abap proxy  -
    R3 to SRM scenario.
    I am getting the error Receiver service cannot be converted to ale logical system.
    I have check the receiver bs SRM_BS , adapter specific attributes ... im getting the logical system ( this is not the problem)
    i am using receiver XI adapter
    with XI 3.0 as protocol
    and http destination with /sap/xi/engine?type = receiver
    i can see the data in the moni of receiver SRM system but it shows a red flag
    pls help

    Hi kiran,
    i have checked all the RFC destinations ... seems OK
    problem is in SRM moni .. sender service and sender interface are not visible.
    trace ::::
      <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Inbound Proxy
      -->
    - <SAP:Trace xmlns:SAP="http://sap.com/xi/XI/Message/30">
      <Trace level="1" type="B" name="CL_XMS_HTTP_HANDLER-HANDLE_REQUEST" />
    - <!--  ************************************
      -->
      <Trace level="1" type="T">XMB was called with URL /sap/xi/engine/?type=entry</Trace>
      <Trace level="1" type="T">COMMIT is done by XMB !</Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-ENTER_XMS" />
    - <!--  ************************************
      -->
      <Trace level="1" type="B" name="CL_XMS_MAIN-SET_START_PIPELINE" />
    - <!--  ************************************
      -->
      <Trace level="1" type="B" name="SXMBCONF-SXMB_GET_XMB_USE" />
      <Trace level="1" type="B" name="CL_XMS_TROUBLESHOOT-ENTER_PLSRV" />
      <Trace level="1" type="T">****************************************************</Trace>
      <Trace level="1" type="T">* *</Trace>
      <Trace level="1" type="T">* *</Trace>
      <Trace level="1" type="T">XMB entry processing</Trace>
      <Trace level="1" type="T">system-ID = SR5</Trace>
      <Trace level="1" type="T">client = 300</Trace>
      <Trace level="1" type="T">language = E</Trace>
      <Trace level="1" type="T">user = RFCADMIN_SR5</Trace>
      <Trace level="1" type="Timestamp">2008-06-01T16:27:03Z CET</Trace>
      <Trace level="1" type="T">* *</Trace>
      <Trace level="1" type="T">* *</Trace>
      <Trace level="1" type="T">****************************************************</Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_UC_EXECUTE" />
    - <!--  ************************************
      -->
      <Trace level="1" type="T">Message-GUID = DD2FF717DAE395F186DF001560A1C7CB</Trace>
      <Trace level="1" type="T">PLNAME = RECEIVER</Trace>
      <Trace level="1" type="T">QOS = EO</Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_PIPELINE_ASYNC" />
    - <!--  ************************************
      -->
      <Trace level="1" type="T">Get definition of external pipeline = RECEIVER</Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-LOOKUP_INTERNAL_PL_ID" />
      <Trace level="1" type="T">Get definition of internal pipeline = SAP_RECEIVER</Trace>
      <Trace level="1" type="T">Queue name : XBTR0003</Trace>
      <Trace level="1" type="T">Generated prefixed queue name = XBTR0003</Trace>
      <Trace level="1" type="T">Schedule message in qRFC environment</Trace>
      <Trace level="1" type="T">Setup qRFC Scheduler OK!</Trace>
      <Trace level="1" type="T">----
    </Trace>
      <Trace level="1" type="T">Going to persist message</Trace>
      <Trace level="1" type="T">NOTE: The following trace entries are always lacking</Trace>
      <Trace level="1" type="T">- Exit WRITE_MESSAGE_TO_PERSIST</Trace>
      <Trace level="1" type="T">- Exit CALL_PIPELINE_ASYNC</Trace>
      <Trace level="1" type="T">Async barrier reached. Bye-bye !</Trace>
      <Trace level="1" type="T">----
    </Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-WRITE_MESSAGE_TO_PERSIST" />
    - <!--  ************************************
      -->
      <Trace level="1" type="T">--start sender interface action determination</Trace>
      <Trace level="1" type="T">select interface *</Trace>
      <Trace level="1" type="T">select interface namespace</Trace>
      <Trace level="1" type="T">no interface found</Trace>
      <Trace level="1" type="T">--start receiver interface action determination</Trace>
      <Trace level="1" type="T">Loop 0000000001</Trace>
      <Trace level="1" type="T">select interface SupplierPortalTradingPartner_CreateOrChange_In*</Trace>
      <Trace level="1" type="T">select interface namespace http://sap.com/xi/SRM/SupplierEnablement</Trace>
      <Trace level="1" type="T">no interface found</Trace>
      <Trace level="1" type="T">--no sender or receiver interface definition found</Trace>
      <Trace level="1" type="T">Hence set action to DEL</Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-PERSIST_READ_MESSAGE" />
      <Trace level="1" type="T">Note: the following trace entry is written delayed (after read from persist)</Trace>
      <Trace level="1" type="B" name="SXMS_ASYNC_EXEC" />
    - <!--  ************************************
      -->
      <Trace level="1" type="T">----
    </Trace>
      <Trace level="1" type="T">Starting async processing with pipeline RECEIVER</Trace>
      <Trace level="1" type="T">system-ID = SR5</Trace>
      <Trace level="1" type="T">client = 300</Trace>
      <Trace level="1" type="T">language = E</Trace>
      <Trace level="1" type="T">user = RFCADMIN_SR5</Trace>
      <Trace level="1" type="Timestamp">2008-06-01T16:27:04Z CET</Trace>
      <Trace level="1" type="T">----
    </Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_PIPELINE_SYNC" />
    - <!--  ************************************
      -->
      <Trace level="1" type="T">Get definition of external pipeline RECEIVER</Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-LOOKUP_INTERNAL_PL_ID" />
      <Trace level="1" type="T">Corresponding internal pipeline SAP_RECEIVER</Trace>
      <Trace level="1" type="B" name="PLSRV_CALL_INBOUND_PROXY" />
    - <!--  ************************************
      -->
    - <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_PLSRV">
      <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_PLSRV_LOCAL" />
    - <!--  ************************************
      -->
      <Trace level="1" type="B" name="Inbound Framework" />
    - <!--  ************************************
      -->
    - <asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
    - <asx:values>
      <CX_ERROR href="#o3314" />
      </asx:values>
    - <asx:heap xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:abap="http://www.sap.com/abapxml/types/built-in" xmlns:cls="http://www.sap.com/abapxml/classes/global" xmlns:dic="http://www.sap.com/abapxml/types/dictionary">
    - <cls:CX_SY_NO_HANDLER id="o3314">
    - <CX_ROOT>
      <TEXTID>1F09B73915F6B645E10000000A11447B</TEXTID>
      <PREVIOUS href="#o3313" />
      <KERNEL_ERRID>UNCAUGHT_EXCEPTION</KERNEL_ERRID>
    - <INTERNAL_SOURCE_POS>
      <PROGID>496</PROGID>
      <CONTID>1564</CONTID>
      </INTERNAL_SOURCE_POS>
      </CX_ROOT>
      <CX_NO_CHECK />
    - <CX_SY_NO_HANDLER>
      <CLASSNAME>CX_BBPX1_STD_MESSAGE_FAULT</CLASSNAME>
      </CX_SY_NO_HANDLER>
      </cls:CX_SY_NO_HANDLER>
    - <cls:CX_BBPX1_STD_MESSAGE_FAULT id="o3313">
    - <CX_ROOT>
      <TEXTID>65B8FEB5F43CC949B7CD662AB888ED34</TEXTID>
      <PREVIOUS />
      <KERNEL_ERRID />
    - <INTERNAL_SOURCE_POS>
      <PROGID>496</PROGID>
      <CONTID>1738</CONTID>
      </INTERNAL_SOURCE_POS>
      </CX_ROOT>
      <CX_DYNAMIC_CHECK />
      <CX_AI_APPLICATION_FAULT />
    - <CX_BBPX1_STD_MESSAGE_FAULT>
      <AUTOMATIC_RETRY />
      <CONTROLLER />
      <NO_RETRY />
    - <STANDARD>
      <CONTROLLER />
      <FAULT_TEXT>An error occured within an XI interface: Exception occurredE:BBP_BUPA_SUPPLIER:089 -Unable to determine logical system of sender; check your data Programm: CX_BBP_BD_ERROR===============CP; Include: CX_BBP_BD_ERROR===============CM002; Line: 57</FAULT_TEXT>
      <FAULT_URL />
      <FAULT_DETAIL />
      </STANDARD>
      </CX_BBPX1_STD_MESSAGE_FAULT>
      </cls:CX_BBPX1_STD_MESSAGE_FAULT>
      </asx:heap>
      </asx:abap>
      </Trace>
      <Trace level="1" type="T">System Error at Receiver... => ROLLBACK WORK</Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-WRITE_MESSAGE_LOG_TO_PERSIST" />
      <Trace level="1" type="System_Error">Error exception return from pipeline processing!</Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-WRITE_MESSAGE_TO_PERSIST" />
    - <!--  ************************************
      -->
      </SAP:Trace>
    fault message says the sender is not having logical sys...but my sender sys is showing logical system in adapter specific attributes
    pls help 
    points will be awarded

  • How to cancel rounding value check when convert pr to po use me59n or me59

    hello every one,
            I have a requisition that,customer want to cancel rounding value check when converting purchase requisition to purchase order use me59n or me59,but they want keep the function of check rounding value when create purchase requisition as mrp run.
            does anyone happen to meet samiler question?Is there any way to solve it?
            thanks
    Edited by: p y on Aug 3, 2010 5:14 AM
    Edited by: p y on Aug 3, 2010 10:07 AM
    Edited by: p y on Aug 3, 2010 10:56 AM
    Edited by: p y on Aug 3, 2010 10:57 AM

    what do you think based on what SAP should know whether it has to do rounding or not?
    Why should SAP not round if a rounding rule is entered?
    when a human is converting the PR to a PO, then a warning message is issued, if the user then enters  the old quantity again, SAP accepts it.
    A background program cannot do such decisions, it has to rely on given master data.

  • File2idoc receiver service cannot be converted into ale/logical system

    hi
    i m working with file to idoc the file adapter is working fine bit\ut wen i checked in
    sx_monitor i found the red flag and it shows the error
    receiver service cannot be converted in to ale/logicalsystem

    Go to the Business System / Service you have maintained for your File.
    Double Click ,Business System --> Adapetr Specific Identifiers.
    Here, maintain the Logical System name of the Sender System. This logical system name should be the value for which the partner profile
    has been created in your SAP system in we20.
    The same should also be maintained for your Receievr Business System.
    Regards
    Bhavesh

  • Re:Contents L001 from field /BIC/NTrtc cannot be converted in type QUAN

    Hi ,
    When loading from Flat file I am getting the following error in the developement.
    Message no. RSAR198
    Diagnosis
    The value 'L001' from field /BIC/NTrtc cannot be converted into the DDIC data type QUAN of the InfoObject in data record 1. The field content could not be transferred into the communication structure format.
    System response
    The data to be loaded has a data error or field /BIC/NTrtc of the transfer structure is mapped to an unsuitable InfoObject.
    The conversion of the transfer structure into the communication structure was cancelled. The processing of data records with errors was continued with respect to the settings in the error handling of the InfoPackage (Tab Page: Update Parameters).
    Please suggest some the resolution.
    Thanks and Regards,
    Ravi.
    Assigning points is the way to say thanks in SDN.
    Edited by: Ravi Bw on Dec 21, 2007 1:45 PM
    Edited by: Ravi Bw on Dec 21, 2007 1:53 PM
    Edited by: Ravi Bw on Dec 21, 2007 2:41 PM

    can you please answer some one this is very imporant for me..
    Siri

  • "Value cannot be null" error when trying to edit or create Maintenance Plan in SQL Server 2008

    I have SQL Server 2008 installed on Windows Server 2008 64bit, every time I try to open or create a new Maintenance Plan I receive the error:
    Value cannot be null.
    Parameter name: component (System.Design)
    Program Location:
       at System.ComponentModel.Design.DesignerHost.System.ComponentModel.Design.IDesignerHost.GetDesigner(IComponent component)
       at Microsoft.DataTransformationServices.VsIntegration.DtsDesignerService.OpenDesigner(String connectionString, Object connection, String objectUrn)
       at Microsoft.SqlServer.Management.DatabaseMaintenance.MaintDesignerMenuHandler.Invoke()
    And in the Design view screen
    "Microsoft SQL Server Management Studio is unable to load this document: Could not load type 'Microsoft.SqlServer.Dts.runtime.Wrapper.IDTSPackageSigning100' from assembly 'Microsoft.SqlServer.DTSRunTimeWrap, Version=10.0.0.0, Culture=neutral'. 
    I have searched for a possible solution and have tried some suggestions of registering the msxml6.dll but and have installed VS2008 SP1 but I'm not in a position where I can do a full reinstall of SQL Server right now. Any help is appreciated. My SQL server
    environment information is below. 
    Microsoft SQL Server Management Studio
    10.0.1600.22 ((SQL_PreRelease).080709-1414 )
    Microsoft Analysis Services Client Tools
    2007.0100.1600.022 ((SQL_PreRelease).080709-1414 )
    Microsoft Data Access Components (MDAC)
    6.0.6002.18005 (lh_sp2rtm.090410-1830)
    Microsoft MSXML 3.0 4.0 5.0 6.0 
    Microsoft Internet Explorer 8.0.6001.18943
    Microsoft .NET Framework 2.0.50727.4206
    Operating System 6.0.6002

    I digged a little deeper and figured out it was a missing directory/file in %TEMP%. Seems some CleaningTool removes all files/directories in %Temp% and after that SSMS was not working any longer. The missing file is actually not needed, but the
    missing directory causes the "Value cannot be null" error.
    My missing file name was:
    C:\Users\<username>\AppData\Local\Temp\2\6vvdaozf.tmp
    But the file name changes on every startup.
    So my missing directory name was:
    C:\Users\<username>\AppData\Local\Temp\2
    After creating a empty directory with the name "2" in %TEMP% all went back to work fine for me.
    I'm not sure the directory name is every time the same, but you can discover your missing file with the process monitor from Sysinternal Tools and filters to "Process Name is ssms.exe" and "Path contains AppData\Local\Temp"
    Hope this helps other people to solve their issues too.
    Thank you!! When I run %temp% it takes me to "C:\Users\Admin ...~\AppData\Local\Temp\some random number". At first the random number was 3, after I logged off and back on it was 2. My temp variable in enviromental variables is correct. I looked on another machine
    running SQL2008 and temp is correct there. If I try to rename the numbered folder SSMS stops working. Any idea?

  • SOAP_EXCEPTION - Value cannot be null. Parameter name: s

    Hi All,
    I'm getting the following error whicle executing my soap scenaraio.
    "Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: SOAP: response message contains an error XIAdapter/PARSING/ADAPTER.SOAP_EXCEPTION - soap fault: Server was unable to process request. ---> Value cannot be null. Parameter name: s"
    Its IDOC to SOAP scenario.
    can some one tell me what might be missing. its not anything to with the data, as we tried extracting the output message from moni and using in the application and it works. we also tried sending a blank idoc and the error is same. so, conclusion is the parameter is not any data in the message but something to do with the soap message setting.
    any help will be greatly appreciated.

    Hi suraj,
    i tried opening the url in ie and manually uploading the payload. its all works perfect. error comes only when sent via XI.
    the paramets are:
    Receiver SOAP
    Transport protocol: HTTP
    Message protocol: SOAP 1.1
    Connection parameters
    Target URL: http://**..*.*/XIDynExchange.asmx
    no check box checked
    Security prameters
    not checked
    Conversion parameter
    no checkbox checked
    soap action: http://***.org/SendXMLMsgSA
    No advance setting done
    what might have gone wrong?
    Regards,
    Rashmi

  • Outlook Sync Error SOLVED - Multi-day repeating appointment cannot be converted for use on the Handheld...

    *UPDATE 1/23/2009 07:08 AM* This is a partial fix. I no longer think the Recurrence Range is the culprit. It seems the Time Zones features between Outlook & Palm are not cooperating. This explains why my 12 am events are syncing as 6 pm the day before; I live in GMT-6:00 so it's moving my events ahead by 6 hours. Another event I set for 1 pm in Outlook was changed to 7 am on my Treo. I am going to start over and recreate each event, this time setting the Time Zones, which I hadn't done before. I tested it out and it worked with a single event... let's see how long it lasts. I've also found that using 'No Time' on my Treo is not compatible with Outlook. It's better to set a time with 0 minutes duration.
    *UPDATE 1/23/2009 04:11 AM* This is a partial fix. My monthly and yearly problematic recurring events are now showing up at 6 pm the day before on my Treo, though my Outlook calendar is fine. I think this has to do with the Recurrence Range Start/End in Outlook, which is set automatically. If only there were a way to change this... 
    After a WHOLE LOTTA trial-and-error (like 3 days worth), I think I finally solved my OLERR:14-001 issue!
    Problem: Syncing Palm Treo 755p calendar with Outlook 2007
    Error Message (simplified):
    HotSync session completed with messages on [date] [time]
    HotSync session started on [date] [time], and completed in [0] seconds
    Outlook Calendar synchronization completed with messages
    Duration: [0] seconds
    Outlook Calendar
    The multi-day repeating appointment titled [event] beginning [date] [time] cannot be converted for use on the Handheld. Please divide the appointment up into single-days and re-synchronize.
     OLERR:14-0001
    - Desktop overwrite HH Sync
    Note: You will likely have several of these ‘Multi-day’ instances in your hotsync log (I had 58). You may want to change Calendar in hotsync to "Desktop overwrites Handheld" after you get this error, to avoid erasing events while you are fixing this issue. Otherwise, you may have to restore them from a backup copy (if you have one) and start over. You can switch back once you’re through.
    Solution: First, I tried this Palm KB Article: http://kb.palm.com/SRVS/NUA/launchKB.asp?c=31167. After this didn’t work for me… I did trial-and-error. I believe the problem is that each recurring event, which you set up as ‘All-day’, must be changed to have a duration of 0 minutes from within Outlook. I was able to change some events directly, but I found that some of the records had corrupted, and would just revert. My fool-proof solution was to recreate EVERY problematic event (yes, one-by-one) using the following steps:
    Open Outlook
    Go to your default calendar, where your events are synced
    In the top menu choose ‘View’ > ‘Current View’ > ‘Recurring Appointments’
    Open a ‘New Appointment’
    Enter subject and other options, such as Categorize, Importance, Time Zones, or Reminder
    Make sure starting and ending date & time are the EXACT same
    Select ‘Recurrence’ & choose your pattern
    I did not choose ‘No end date’ (hence the Palm article), but rather ‘End by:’ and typed in 2031, then pressed tab to auto-generate a suitable end date. I chose 2031 because that is last year my Treo’s calendar goes to. Click OK
    Repeat for every event in your error log, until you get a clean "Desktop overwrites Handheld" hotsync (Outlook should be closed when you sync)
    Switch Calendar in hotsync back to "Synchronize"
    Even though I still get the message OLERR14:001, my syncs are successful. Now I will give my Treo time to see if the issue returns later. Until then, happy Outlook syncing and good luck!
    Post relates to: Treo 755p (Sprint)
    Message Edited by akeaw3000 on 01-23-2009 04:11 AM
    Message Edited by akeaw3000 on 01-23-2009 07:08 AM

    hello,
    if all of your data is on the phone you can change the sync action to handhled overwrites desktop
    how to:
    open palm desktop software
    on the top left click on 'hotsync' and then 'custom'
    on the calendar conduit
    highlight it and click on 'change'
    then choose 'handhled overwrites desktop'
    hope this will help you
    Post relates to: Palm TX

  • Error occurred in deployment step 'add solution' value cannot be null Parameter name: g

    Hi!
    I have a SharePoint Server 2013 with latest updates. Worflow Manager 1.0 installed and configured correctly. The server has a website, site temblate is Reacods Center. This site is default. On the site I created a blank Document library "TestLib"
     If I create workflow in SharePoint Designer 2013, workflow works normally. Workflow set Title of element to "MyCustomTitle" and Write to History string "Done!".
    If I create Empty Solution in Visual Studio 2013, insert into solution Workflow and make same actions, my solution at deployment step fails with error:
    "error occurred in deployment step 'add solution' value cannot be null Parameter name: g"
    Please, help me to resolve this problem?
    Thanks!

    Hi,
    What if stop this service, then start it again, perform an iisreset? It will make the change applied to the whole farm.
    Also, you can check the ULS logs to see if there is any unexpected error occurs when deploying this solution.
    About how to check the ULS logs:
    http://blogs.technet.com/b/fesiro/archive/2013/11/11/sharepoint-logging-and-troubleshooting-using-ulsviewer.aspx
    Thanks
    Patrick Liang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • [Crystal Report] Value cannot be null. Parameter name: o

    Hi,
    I have a stock in warehouse report where the parameter is to select warehouse code.
    I used the SAP token, Warehouse@SELECT * FROM OWHS
    I linked the parameter to the report via the Select Expert: OWHS.WhsCode is equal to {?Warehouse@SELECT * FROM OWHS}
    When I preview in SAP B1, i get the error prompt: Value cannot be null. Parameter name: o
    Can someone point me to the right direction to get this work?
    Thanks.

    Creating dynamic parameter will lead to another problem as well. Kindly refer
    Re: Crystal Report Dynamic Parameter for SAP B1 version 8.8
    That's why I have to use the SAP token. The problem is I can't seem to preview the report in SAP B1 after linking the parameter to my report via select expert.

  • BAdI error : type of EXIT_REF1 cannot be converted to the type of EXIT_REF

    Hi all,
    The below was the posted earlier for BAdI. Ihave followed all the steps. And i have written the below code. Syntactically it is not showing any errors, but when i am activating i am getting error
    like " The type of EXIT_REF1 cannot be converted to the type of EXIT_REF". where i am doing the mistake..??
    1) execute Tcode SE18.
    2) Specify a definition Name : ZBADI_SPFLI
    3) Press create
    4) Choose the attribute tab. Specify short desc for badi.. and specify the type :
    multiple use.
    5) Choose the interface tab
    6) Specify interface name: ZIF_EX_BADI_SPFLI and save.
    7) Dbl clk on interface name to start class builder . specify a method name (name,
    level, desc).
    Method level desc
    Linese;ection instance methos some desc
    8) place the cursor on the method name desc its parameters to define the interface.
    Parameter type refe field desc
    I_carrid import spfli-carrid some
    I_connid import spefi-connid some
    9) save , check and activate…adapter class proposed by system is
    ZCL_IM_IM_LINESEL is genereated.
    IMPLEMENTATION OF BADI DEFINITION
    1) EXECUTE tcode se18.choose menuitem create from the implementation menubar.
    2) Specify aname for implementation ZIM_LINESEL
    3) Specify short desc.
    4) Choose interface tab. System proposes a name fo the implementation class.
    ZCL_IM_IMLINESEL which is already generarted.
    5) Specify short desc for method
    6) Dbl clk on method to insert code..(check the code in “AAA”).
    7) Save , check and activate the code.
    REPORT ZBADI_TEST .
    tables: spfli.
    data: wa_spfli type spfli,
    it_spfli type table of spfli with key carrid connid.
    *Initialise the object of the interface.
    data: exit_ref type ref to ZCL_IM_IM_LINESEL,
    exit_ref1 type ref to ZIF_EX_BADISPFLI1.
    selection-screen begin of block b1.
    select-options: s_carr for spfli-carrid.
    selection-screen end of block b1.
    start-of-selection.
    select * from spfli into corresponding fields of table it_spfli
    where carrid in s_carr.
    end-of-selection.
    loop at it_spfli into wa_spfli.
    write:/ wa_spfli-carrid,
    wa_spfli-connid,
    wa_spfli-cityfrom,
    wa_spfli-deptime,
    wa_spfli-arrtime.
    hide: wa_spfli-carrid, wa_spfli-connid.
    endloop.
    at line-selection.
    check not wa_spfli-carrid is initial.
    create object exit_ref.
    exit_ref1 = exit_ref.   "" The type of EXIT_REF1 cannot be converted to the type of EXIT_REF"
    call method exit_ref1->lineselection
    EXPORTING
    i_carrid = wa_spfli-carrid
    i_connid = wa_spfli-connid.
    clear wa_spfli.
    Thanks in advance
    krupali.

    Hi,
    Both are of different types
    data: exit_ref type ref to ZCL_IM_IM_LINESEL,
    exit_ref1 type ref to ZIF_EX_BADISPFLI1.
    Assiging one type another type is not allowed.
    Rhea.

  • Receiver service ??? cannot be converted into an ALE logical system

    Hi,
    I am hoping for some help with an Idoc issue in XI version 3.0.  The scenario is like this:
    Flat file->File adapter->XI->Idoc adapter->R/3
    I have configured a scenario in one system like this that works fine.  But in the current system I am getting the error message "Receiver service ??? cannot be converted into an ALE logical system" from the Idoc adapter.
    As it is XI 3.0, I have set the Agency and Scheme in the destination communication channel to <Service>, ALE#LS and in the destination party, I have created a alternative identifier <Service>, ALE#LS, SYSCLNT200.
    I have configured an ALE logical system name in the SLD.
    I have cleared the SLD cache in the integration builder.
    The ALE logical system name was not in the SLD when the message first appeared, but I thought clearing the cache would fix that.  I have not tried deleting the service and re creating it.  That is my next step....if all else fails.
    Not sure what else I haven't tried.
    Can anyone offer any advice?

    Thanks Sam Raju for the reply.
    On your questions:
    1. I checked IDX1 - port for the receiving R/3 is defined as SAPIR1_300 (port: SAPIR1 and Client: 300) and it is mapped to RFC destination of IR1300.
    2. Checked RFC destination IR1300 - it is setup as R/3 connection and checked test connection and remote login and both are working fine
    3. Checked IDX5 - did find one message (status is successful) corresponding to the file I am sending into R/3 and this entry is an Outbound entry.
    Question: Should there be two entries here in IDX5 - one for inbound and the other for outbound?
    May be I am doing something wrong here in setting up the interface mapping and endpoints. Anyway when I check the IDOCOutbound in the Soap Header, I see the following:
      <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Response
      -->
    - <SAP:IDocOutbound xmlns:SAP="http://sap.com/exchange/MessageFormat/">
      <SAP:TABNAM>EDI_DC40</SAP:TABNAM>
      <SAP:MANDT>100</SAP:MANDT>
      <SAP:DOCNUM>0000000000008002</SAP:DOCNUM>
      <SAP:DIRECT>2</SAP:DIRECT>
      <SAP:IDOCTYP>FLIGHT_SAVEREPLICA01</SAP:IDOCTYP>
      <SAP:MESTYP>FLIGHT_SAVEREPLICA</SAP:MESTYP>
      <SAP:SNDPOR>SAPBXI</SAP:SNDPOR>
      <SAP:SNDPRN>PRISM</SAP:SNDPRN>  
      <SAP:SNDPRT>LS</SAP:SNDPRT>
      <SAP:RCVPOR>SAPIR1</SAP:RCVPOR>
      <SAP:RCVPRN>IR1CLNT300</SAP:RCVPRN>
      <SAP:RCVPRT>LS</SAP:RCVPRT>
      </SAP:IDocOutbound>
    Do you see anything wrong or missing here. SNDPOR is XI port, SNDPRN is the source partner (file) and RCV... information is all the receiving R/3.
    I am suspecting that something is missing either here or in the endpoint setup.
    Also, in the TechnicalRouting I have this:
    - <SAP:address version="20">
      <SAP:systemKey>IR1CLNT300</SAP:systemKey>
      <SAP:endpointType>IDOC</SAP:endpointType>
      <SAP:url>IDOC://SAPIR1?RFCDEST=IR1300&DOCREL=&VERSION=3&SAPREL=46C</SAP:url>
      </SAP:address>
    Any issues you see here in url?
    Also, when I look on the XI server, I do not see these files deposited anywhere- so they are going somewhere (as the status in IDX5 is successful)!
    Do I need to activate any queues or triggers anywhere.
    Can you please offer advice and help us out.
    Thanks again.
    Srini
    [email protected]

  • Change the Required Field " Fieldname value cannot not be null" error.

    Does anyone know how to change the error message on a Table based form for a required field? By default it gives:
    <Fieldname> value cannot be null
    Do I need a field type validation?

    I got the screen working ok, now when I do a "Reset" on the screen I get a syntax error.
    Line: 10
    Char: 1
    Error: Syntax error
    Code: 0
    URL: https://www.testmasterease.com/portal/pls/portal/PORTAL.wwa_app_module.show?sessionid=9073
    The first 10 lines of HTML are:
    <HTML dir=LTR>
    <HEAD>
    <TITLE>FORM NEW USER ADMIN REQUEST</TITLE>
    </HEAD>
    <BODY BGCOLOR="#FFFFFF" TEXT="#444444" LINK="#444455" VLINK="#554455" ALINK="#666644">
    <SCRIPT TYPE="text/javascript">
    <SCRIPT TYPE="text/javascript">
    function show_context_help(h) {
    newWindow = window.open(h,"Help", "menubar=1,toolbar=1,scrollbars=1,resizable=1,width=700, height=500");
    </SCRIPT>
    </SCRIPT>
    I did not purposly put the show_context_help() in the form. Is there away to remove it?

  • Error in Mail configuration - parameters cannot be converted.

    Hello All,
    I have configured the mail configuration in 4.6d as per the notes 455127, 99965.
    but when i try to send the test mail i got the error
    Cannot process message in node, parameters cannot be converted ...
    Can any one please help me....
    the trace in SCOT is as follows.
    SO_OBJECT_SEND                      Recipient in queue flagged
    SO_OBJECT_SEND                      Structure: SOSCO
    SO_OBJECT_SEND                      Status written for this recipient
    SO_OBJECT_SEND                      Structure: SOST
    SO_OBJECT_SEND                      Queue updated
    SO_OBJECT_SEND                      Status updated
    SO_OBJECT_ID_FOR_SEND_GET           Object ID returned
    SX_OBJECTS_SEND                     Document type: M. Send attribute class: 0. No. of recipients: 1
    SX_OBJECTS_SEND                     Call of SX_PERFORM_RFCSEND with MAIL M RI-BEHEER
    SO_CONVERTED_VERSIONS_GET           Versions returned
    SX_PERFORM_RFCSEND                  Nicht unterstützte Formate: ALI OBJ OTF SCR URL
    SX_OUTGOING_VERSION_BUILD           Read contents of document RAW35000000000132
    SO_OBJECT_DATA_FOR_SEND_GET         Object transferred
    SO_OBJECT_PREPARE_FOR_SEND          Object prepared for transmission
    SX_SEND_DATA                        Structure: SXRECINFI1
    SX_SEND_DATA                        Structure: SXEXTRECI1
    SX_SEND_DATA                        Structure: SXPCKLSTI1
    SX_SEND_DATA                        Structure: SXDOCCHGI1
    SX_PERFORM_RFCSEND                  After call of function SX_OBJECT_RECEIVE Returncode: 8
    SX_PERFORM_RFCSEND                  Structure: SXEXTRECI1
    SX_GENERATE_NDR                     Cannot process message in node, parameters cannot be converted

    Hi,
    The following errors in the trace file:                           
    After call of function SX_OBJECT_RECEIVE ReturnCode: 8           
    Cannot process message in node, parameters cannot be converted   
    So the problem is caused by incorrect IMG configuration:
    The SX_OBJECT_RECEIVE Returncode: 8 error message is caused by an incorrectly entered path in the RFC IMG connection (SM59) or by not calling MLUNXSND via a script.
    The problem is that the mailgw.ini file not being present in /usr/sap/<SID>/SYS/exe/run/mlunxsnd or the <system_directory>/SYS/profile directory. MLUNXSND will check these two directories for a file call exactly mailgw.ini. If MLUNXSND does not find the file the error above is displayed.
    I would recommend that you create a shell script per OSS Note 99965 and set the GWCONFIG parameter to point to maligw.ini.
    Michael

Maybe you are looking for

  • Creation of Material Master for a material with Material Type NLAG

    Hello Sirs,      I have to create a material which will be consumed directly. I would use the material type NLAG (Non stock material). If I create a material with this material type, will it contain an Accounting view where in I can maintain the pric

  • How to connect to airport extreme

    How do I connect to my airport extreme? I need to add a second router to extend the range.

  • Migration issues..

    while migrating sqlserver 2005 to oracle 10g R 10.2.0.1.0 using sql developer 1.2.1, i got problems while data movement.(OS is Windows XP) 1) if a field content in source db having ( ' ) charecter, ex: 5' , Jon's., it cant insert into oracle table. t

  • Problems enabling perfdump

    We tried enabling perfdump, following the instructions in the iPlanet Web Server 4.1 Performance Tuning Guide, but it didn't work. We modified obj.conf and added a new object with ppath=<document root>/.perf, and Service="service-dump" inside. We the

  • Safari crashing when I open tab?

    Everytime I try to open a tab in Safari, the browser begins to open up the normal "top sites" page it always does when you open up a new tab, but then the whole brower crashes about a second later.  I'm really annoyed because I like Safari much bette