• Junior007
  • NEWBIE
  • 0 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 7
    Questions
  • 10
    Replies

 

Hi,

Is der any way to import data from MS Access to standard objects,Plz let me no.....

 

 

Regards,

Subramanya

Hi,

 

In Quotes i have button to create a new Order(which is my custom object) i want to display all Quote  Details including Quote Line Items in  the custom(Order) object, How to deal with it.

 

Any help would be appreciated

 

Hi,

 

In Quotes i have button to create a new Order(which is my custom object) i want to display all Quote  Details including Quote Line Items in  the custom(Order) object, How to deal with it.

 

Any help would be appreciated

 

Hi,
 
am getting this exception while converting Leads to Accounts
 
Error: System.DmlException: Insert failed. First exception on row 0; first error: REQUIRED_FIELD_MISSING, Required fields are missing: [Test]: [Test] (System Code), why am getting this.
 
 
Regards,
Subramanya.

Hi,

    Using Data Loader from command prompt to automate the process of importing Account data,

    i want to do some validations i,e wheather that account number is already there or not,

    how to do that

 

    any help would be appreciated

 

 

Regards,

Subramanya 

Hi,

      Using import wizard to upload data from a csv file to Account and Contact,

I want to Automate this Process so that it will take data from csv file periodically,

new to salesforce any help would be appreciated.

 

 

 

Regards,

Subramanya.

Passing ID to other Page to display Google maps but not able to display maps , Any help would be appreciated

Here's my Code

 

<apex:page standardController="Account">

<script src="https://maps.google.com/maps?file=api">
</script>

<script type="text/javascript">

var map = null;
var geocoder = null;

var address = "{!Account.BillingStreet}, {!Account.BillingPostalCode} {!Account.BillingCity}, {!Account.BillingState}, {!Account.BillingCountry}";

function initialize() {
if(GBrowserIsCompatible())
{
map = new GMap2(document.getElementById("MyMap"));
map.addControl(new GMapTypeControl());
map.addControl(new GLargeMapControl3D());

geocoder = new GClientGeocoder();
geocoder.getLatLng(
address,
function(point) {
if (!point) {
document.getElementById("MyMap").innerHTML = address + " not found";
} else {
map.setCenter(point, 13);
var marker = new GMarker(point);
map.addOverlay(marker);
marker.bindInfoWindowHtml("Account Name : <b><i> {!Account.Name} </i></b>
Address : "+address);
}
}
);
}
}
</script>
<div id="MyMap" style="width:100%;height:300px"></div>
<script>
initialize() ;
</script>

</apex:page>

 

 

Hi,

Is der any way to import data from MS Access to standard objects,Plz let me no.....

 

 

Regards,

Subramanya

Hi All

 

         How to convert the Lead to PersonAccount?

 

Thanks

-----------

VenkatSforce

Hi,

 

In Quotes i have button to create a new Order(which is my custom object) i want to display all Quote  Details including Quote Line Items in  the custom(Order) object, How to deal with it.

 

Any help would be appreciated

 

Hi,
 
am getting this exception while converting Leads to Accounts
 
Error: System.DmlException: Insert failed. First exception on row 0; first error: REQUIRED_FIELD_MISSING, Required fields are missing: [Test]: [Test] (System Code), why am getting this.
 
 
Regards,
Subramanya.

Hi,

      Using import wizard to upload data from a csv file to Account and Contact,

I want to Automate this Process so that it will take data from csv file periodically,

new to salesforce any help would be appreciated.

 

 

 

Regards,

Subramanya.

Passing ID to other Page to display Google maps but not able to display maps , Any help would be appreciated

Here's my Code

 

<apex:page standardController="Account">

<script src="https://maps.google.com/maps?file=api">
</script>

<script type="text/javascript">

var map = null;
var geocoder = null;

var address = "{!Account.BillingStreet}, {!Account.BillingPostalCode} {!Account.BillingCity}, {!Account.BillingState}, {!Account.BillingCountry}";

function initialize() {
if(GBrowserIsCompatible())
{
map = new GMap2(document.getElementById("MyMap"));
map.addControl(new GMapTypeControl());
map.addControl(new GLargeMapControl3D());

geocoder = new GClientGeocoder();
geocoder.getLatLng(
address,
function(point) {
if (!point) {
document.getElementById("MyMap").innerHTML = address + " not found";
} else {
map.setCenter(point, 13);
var marker = new GMarker(point);
map.addOverlay(marker);
marker.bindInfoWindowHtml("Account Name : <b><i> {!Account.Name} </i></b>
Address : "+address);
}
}
);
}
}
</script>
<div id="MyMap" style="width:100%;height:300px"></div>
<script>
initialize() ;
</script>

</apex:page>

 

Hi,

 

Iam  new to Apex.I have  custom objects Order and Order Line Items (master detail).The order line items appears as a related list under the Order object.

 

Whenever an order is created from the quote,the quoteline items should be inserted as order line items ....This functionality is just like how the opportunity products are inserted as quote line items whenever a new quote is created from the opportunity.

 

Is it possible to do this using a trigger?

 

If yes ,can i please have some pointers to any sample trigger code that does this kind of insert from a related list of the master object to the related list of the detail object

 

Thanks!