Is it possible to populate the extendedData field for URL subtype using LAPI for 9.0.0.1. I am using CreateObjectEx function. I need to populated some values in extendedData field which we will use for special application purposes. when I am creating a URL subtype with extendedData, the URL is added correctly in the DTREE but the extendedData field appears to be NULL always.Please help me out.regards,Abhishek Pandeyhere is the piece of code

/ for URLRequest.setAssocNotSet();Request.add( "Comment", "URL Comment" );Request.add( "TargetURL", "
http://www.primecontract.com" );extendedData.setAssocNotSet();extendedData.add("Type", "AFP TASK");extendedData.add("Name", "Review Application For Payment");extendedData.add("DueDate", "None");extendedData.add("Priority", "Medium");extendedData.add("Status", "Outstanding");extendedData.add("From", "Lisa Ann");extendedData.add("Location","
http://www.yahoo.com");node_in.add( "Request", Request );node_in.add( "extendedData", extendedData);if ( documents.CreateObjectEx( pVolumeID, pNodeID, documents.VERSIONOBJECTTYPE, documents.URLSUBTYPE, "AFP Task URL", node_in, objInfo ) == 0 ){System.out.println( "\nURL Created Using CreateObjectEx" );nodeID = objInfo.toInteger( "ID" );nodeVol = objInfo.toInteger( "VolumeID" );//documents.DeleteObject( nodeVol, nodeID );}