• fujiapple
  • NEWBIE
  • 0 Points
  • Member since 2011

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 1
    Replies

Hello,


I have enabled the multi currencies in our org.
(main currency is JPY, second currency is USD)

 

And I have setup my currency in profile as USD.

Let say I entered USD 5,000 in [Amount] currency field,
after I saved the data, by default it will look like this :

[Amount]= JPY 5,000.00 (USD 5,000.00)

 

My question is, does anyboby know how to hide JPY display here?
Instead of above display, if possible I want to make it look like this :
[Amount]= USD 5,000.00

 

Thanks for your help.

Hi I 'm new to Apex.

What I want want to do is

Every time a new Merchandise record is created I need to create a detail test record with certain fields filled out.

 

Relationship:
Merchandise = Master
Test  = Detail

 

I had create below code but error occured:

 

Trigger CreateNewTestRec on Merchandise__c (after insert){

    list<test__c> AddNR = new list<test__c>();
    
    for(Merchandise__c m : Trigger.new){
        test__c TE = new test__c(
        Merchandise__c = m.Name);
    AddNR.add(TE);
    }
    insert AddNR;
}

 

Error: Invalid Data.
Review all error messages below to correct your data.
Apex trigger CreateNewTestRec caused an unexpected exception, contact your administrator: CreateNewTestRec: execution of AfterInsert caused by: System.StringException: Invalid id: test: Trigger.CreateNewTestRec: line 7, column 26

 

Anybody able to help me?

Thanks in advance

From help it mentioned that :

 

Is there a size limit for reports?


The salesforce.com report function limits the number of records displayed in a report to the first 2000 records of a report.

It is still possible to see all of the results for a report with more than 2000 records by exporting the report to Excel. Once the report has been exported to Excel you will be able to view all of the 2000+ records returned by the report.

There's a limit of 500 selectable columns.

There's also a limit on the number of columns that can appear in a matrix that limits the total matrix size to 10,000 cells. So if you have 1 row, it can be 1000 wide (there's an upper limit), but if you have 5000 rows, you can only have 2 summary values horizontally.

-----------------------

I dont really understant the last sentence which i made it red color especially the bold area.

Dont you think  "1 row, it can be 10000 wide"  is correct? i think one 0 is missing.

Correct my understanding if I am wrong. TQ

Hi I 'm new to Apex.

What I want want to do is

Every time a new Merchandise record is created I need to create a detail test record with certain fields filled out.

 

Relationship:
Merchandise = Master
Test  = Detail

 

I had create below code but error occured:

 

Trigger CreateNewTestRec on Merchandise__c (after insert){

    list<test__c> AddNR = new list<test__c>();
    
    for(Merchandise__c m : Trigger.new){
        test__c TE = new test__c(
        Merchandise__c = m.Name);
    AddNR.add(TE);
    }
    insert AddNR;
}

 

Error: Invalid Data.
Review all error messages below to correct your data.
Apex trigger CreateNewTestRec caused an unexpected exception, contact your administrator: CreateNewTestRec: execution of AfterInsert caused by: System.StringException: Invalid id: test: Trigger.CreateNewTestRec: line 7, column 26

 

Anybody able to help me?

Thanks in advance