Differnent names

Hi Experts
I see different names for the table and fields in Crystal reports other than what they are in the dataasource.
Please help
Thanks in advance
AG

Hi
Are you using salesforce to create reports?
In Crystal Reports, a table name and the name of fields might be different from what you see in saleforce.com, if the object name and label name of this object are different. Crystal Reports uses the object name.
while salesforce.com uses the label name for display.If the field name and label name of the field are different. Crystal Reports used the field name, while salesforce.com uses the label name for display.
If you want to see exact field-name information in
saleforce.com, select u201Cshow descriptionu201D or u201Cshow bothu201D from File>Options>Database.
Hope this helps!!
Regards
Sourashree

Similar Messages

  • Materialized view and Table

    Dear Friends,
    One quick question ..
    If the table name and materialized view name is same does truncating the data from table truncates materialized view too ?
    Thanks/

    CREATE TABLE "ABBREVIATION"
    "ABBREVIATIONID" VARCHAR2(36 BYTE),
    "ABBREVIATIONCODE" VARCHAR2(30 BYTE),
    "ABBREVIATIONTEXT" VARCHAR2(128 BYTE),
    "CREATIONDATE" DATE,
    "CREATEDBYLOGINID" VARCHAR2(36 BYTE),
    "LASTMODIFIEDDATE" DATE,
    "LASTMODIFIEDBYLOGINID" VARCHAR2(36 BYTE),
    CONSTRAINT "PK_ABBREVIATION1" PRIMARY KEY ("ABBREVIATIONID") TABLESPACE "KUMAR" ENABLE
    CREATE MATERIALIZED VIEW "ABBREVIATION" ("ABBREVIATIONID", "ABBREVIATIONCODE", "ABBREVIATIONTEXT", "CREATIONDATE", "CREATEDBYLOGINID", "LASTMODIFIEDDATE", "LASTMODIFIEDBYLOGINID") TABLESPACE "KUMAR" NEVER REFRESH
    AS
    SELECT "ABBREVIATION"."ABBREVIATIONID" "ABBREVIATIONID",
    "ABBREVIATION"."ABBREVIATIONCODE" "ABBREVIATIONCODE",
    "ABBREVIATION"."ABBREVIATIONTEXT" "ABBREVIATIONTEXT",
    "ABBREVIATION"."CREATIONDATE" "CREATIONDATE",
    "ABBREVIATION"."CREATEDBYLOGINID" "CREATEDBYLOGINID",
    "ABBREVIATION"."LASTMODIFIEDDATE" "LASTMODIFIEDDATE",
    "ABBREVIATION"."LASTMODIFIEDBYLOGINID" "LASTMODIFIEDBYLOGINID"
    FROM "ABBREVIATION" "ABBREVIATION";
    If I create a mv with a differnent name than that of a table does the truncation of data in table results in truncation of MV too ?

  • What will I see when doing site survey with WRT and WRE?

    I have just successfully setup with security, my WRE54G to my WRT54GS.  It wasnt easy, lots of resets and disabling of security, but I didnt have to set a statis IP (which I am happy about)
    However, now that I am searching for a connection on my laptop (wirelessly) I see to available networks but both are with the same name (the name of my original wireless network).
    Is this right?  If so, this gets confusing as I am not sure which I am connecting too.
    Then if I change from one to another, I have to enter in the passphrase, which gets annoying.
    Is there anyway to have a differnent name of my Wireless network vs the Wireless Expander?

    The RE, as I understand it, just extends the router signal that it is connected to. That is why it is imperative that the setup be EXACTLY the same. In my case, I stupidly put some capital letters in my SSID but didn't put them in when I setup the RE. Took me the longest time to figure that out....That you see two "networks" on site survey is OK. That you can connect to them differently is weird and that you have to enter the security passphrase suggests that you really haven't been successful in setup. So, Dibbler's advice is correct. Make sure the router and RE settings are the same and the firmware is upgraded.
    I can't tell what device I am connected to and I really don't care. I just know that the place I was connecting from prior to the RE was far from the router and I would get the "limited connection" warning and no internet. With the RE and closer to my laptop, I always get "excellent" signal and an internet connection. I assume I'm connecting to the RE but it is seamless.
    Also, make sure you the supply the MAC address of the router if the RE is v.1. Got that from the full user guide at the Linksys WRE54g product page.
    If you really want different SSIDs I think you need to get a bridged access point.
    Message Edited by Luckydog on 06-20-2007 06:11 AM
    Message Edited by Luckydog on 06-20-2007 06:15 AM

  • Qosmio G40-10E: How to conenct to the sky LAN broadband

    I know nothing about computers.
    I'm buying the G40-10E and geting sky broadband and they say you need a spare ethernet on the computer.
    All I can find is RJ11 and RJ45 is this the ethernet in a differnent name.
    If i cant link it to broadband this laptop ill save my money.

    Hi
    Dont worry dude.
    The Qosmio G40 supports all ports which are important to establish the sky broadband.
    The RJ45 is the Ethernet port; known as Lan port ;)
    You can connect the sky broadband modem to this port using the simply LAN cable ;)
    Hoe I could clarify this ;)

  • How can I have two fields with the same name if it makes sense?

    Hello, folks :)
    I have a pretty hard time figuring out how I can have two text fields with the same binding name.
    The whole problem is that when I need two fields with the same binding name they are still differnent coz they have the same name but differnt indices.
    I should make a form filled at runtime by merging a pdf form file and an fdf file data file. And I have no choice to do it differently. And my form file needs some data like customerName, companyName twice in one form. But there's only one possible buinding name indexed zero.
    How can I create a field with absolutely the same name or is it just impossible due to possible name conflicts? And is there a workaround to this problem? I just need one piece of data repeated in different places.
    Thanks for your replies :)
    P.S. if u think that the problem is not clear enough let me know. I'll supply you with more details. But the general process can not be changed.
    One pdf should be mergred with an fdf with as the result of their merge a new filled and flattened form. I have no control over fdfs their are generated by Oracle and I can not fill the form using XML files coz this process should be integrated in a working application.

    I just thought about a really ugly workaround with a server-side script adding values to fdf files but it's a bit of work and tests and personally i think it's a bad idea :-(

  • Changing rows into different column names

    Hi,
    i need to tranpose the rows into differnent column names
    my sample data :
    id , val
    1 3
    1 4
    1 5
    into
    id , val1, val2 , val3 , val4 ... valn ..
    1 3 4 5
    from askTom's i see that it's tranpose into a single column using the ref cursor ?
    how can i do made it into different column names ?
    kindly advise
    tks & rdgs

    For example, lets say that you want to order your columns from least value to greatest and that you'll never have more than three values per id. Then you can use the analytic function row_number() like this to create a pivot value.
    select id, val,
           row_number() over (partition by id order by val) as rn
      from your_table;And so your pivot query ends up looking like this.
    select id,
           max(case when rn=1 then val end) AS val1,
           max(case when rn=2 then val end) AS val2,
           max(case when rn=3 then val end) AS val3
      from (
    select id, val,
           row_number() over (partition by id order by val) as rn
      from your_table
    group by id;But notice that I started out by making up answers to Justin's questions. You'll have to supply the real answers.

  • Wat is the use of "DATA var-name LIKE SY-INDEX" statement

    Hi to all,
           is there any use of "DATA <var-name> LIKE SY-INDEX"  statement in ABAP, do the variable <var-name> be changed with that of SY-INDEX when we declare like this.
             Could u give me a fast response,
                                            Thank you,
                                                 Srinivasa Rao k.

    hi check this example..
    data: v_index type sy-index value 10 .
    do 15 times .
    if sy-index = v_index .
    write:/ 'the system index is 10 '.
    exit.
    endif.
    enddo.
    the main use of the index is used in the hr programs..
    the user wants the emp salary and previous months   salary then you need to use the index .
    if the table had 10 records .then you need to catch the record of  index1(current) and index 2(for previous month)..
    select pernr ansal  from pa0008 into table it_pa0008 where pernr in s_pernr and begda in s_begda .
    loop at it_pa0008.
    case sytabix.
    when 1 .
    it_final-cursal =  it_pa0008-ansal.
    when 2 .
    it_final-prevsal =  it_pa0008-ansal.
    endcase .
    endloop.
    regards,
    venkat.

  • Company Name not getting Displayed in the incoming screen

    I changed my blackberry from earlier 0S 7 to Z10 two days ago, but to my surprise it is not displaying company name in the incoming call screen. I have more than 20 people whose name is repeating and not able to identify, how come this feature is not available in the new model, what is solution ?

    @ is a default value as per ALV internal process. This is used in icons .
    I think this is causing the confusion.
    Check in the fieldcat if there is any adjsutment to be made to handle this.
    Br,
    Vijay

  • Trying to delete file from trash but get this: The operation can't be completed because the item "File name" is in use. All other files delete except this one. Please help

    Trying to delete file from trash but get this: The operation can’t be completed because the item “File name” is in use. All other files delete except this one. Please help

    Maybe some help here:
    http://osxdaily.com/2012/07/19/force-empty-trash-in-mac-os-x-when-file-is-locked -or-in-use//

  • When I login I get a message "aosnotifyd wants to use your confidential information stored in "my name" in your keychain." How do I know if it is safe to allow this? Can anyone advise please?

    Every time I login I get the message "aosnotifyd wants to use your confidential information stored in "my name" in your keychain." How do I know if it is safe to allow this? Can anyone advise please?

    My immediate reaction is to deny.
    Have you downloaded or installed any application that may relate to the abbreviation AOS? It may not necessarily be the application's name, could be the developer or distributor.
    As it's occuring at log-in, go to System Preferences > Accounts > your account > Login Items and look for a related item. If there's one there, right-click (or ctrl click) on it and select Reveal in Finder. That will show you where the originator of the item is on your system and should give you more of a clue as to what it is.
    I'd remove the item from login items anyway (highlight and click the minus sign at the bottom of the window). There shouldn't be anything trying to use your keychain info to notify anyone.

  • Each time I try to synch photos from my Windows 7 PC to my iPad2, iTunes stops working, and the error report says Problem Event Name:     APPCRASH   Application Name:     iTunes.exe   Application Version:     10.3.1.55   Application Timestamp:     4deec35

    Each time I try to synch photos from my Windows7 PC to my iPad2, iTunes stops working and the error message is:
    Problem Event Name:                          APPCRASH
      Application Name:                             iTunes.exe
      Application Version:                           10.3.1.55
      Application Timestamp:                    4deec351
      Fault Module Name:                          ntdll.dll
      Fault Module Version:                        6.1.7601.17514
      Fault Module Timestamp:                 4ce7ba58
      Exception Code:                                  c0000005
      Exception Offset:                                0002e3fb
      OS Version:                                          6.1.7601.2.1.0.768.3
      Locale ID:                                             1033
      Additional Information 1:                  0a9e
      Additional Information 2:                  0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:                  0a9e
      Additional Information 4:                  0a9e372d3b4ad19135b953a78882e789
    I reloaded iTunes 10 (64 bit) successfully, but the problem remains the same.
    Any suggestions?

    I looked in the folder from which I want to synch photos, but there is no such thing as an "ipod photo cache" in that folder, or sub-folders, as suggested in the link which you were nice enough to provide.
    I have also tried removing photos from my iPad2 Photos App, and "iTunes has stopped working" shows up  again as soon as I click on the "Synch photos from" button.

  • Hi Apple support, my name is Derek Turner and I have been hacked through a friend's email account and I wish to know if 1. I can clean my email list of names and account with software and 2. How is it possible to delete emails that are still coming back

    Hi! My name is Derek Turner and I have been hacked through a friend's email message to me which I opened unsuspecting any danger.  Initially, he sent me an 'attention' or warning email with a link which I tried to open but it could not be opened, so I left it not knowing what it was all about at the time.  Later, I received another email from him (probably the hacker) and opened a 'not very pleasant' web site.  It did not twig with me at the time as I am a bit new to this type of thing but when I mentioned it to my wife she immediately said that I had been 'hacked'.  By this time it was too late, and it infected all my email addresses!  I would be grateful if you may know if there is software that I can use to clean up my email account and if there is anything for iPad minis that can prevent this happening in future? (Malware, Firewall?).  I am also getting emails back that relate to the hacker and I cannot 'delete' them from my iPad, only on my PC!  Any suggestions?
    Thank you for your time regarding this matter,
    Derek Turner,( a very new iPad mini user!)

    Hi,
    I don't think that can be solved by any advice the regular posters could post here.
    I would go back to Apple and explain the situation (again).
    I would also consider closing the account (Apple rarely seem to do this as accounts are never deleted but just closed).
    I understand this may cause issues for things purchased in iTunes and the App Store which my include Restoring the OS at some point.
    8:20 pm      Tuesday; September 16, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Supress Vendor name in std report S_ALR_87012103 - Vendors: Items

    Hi ,
    I am using report 'S_ALR_87012103 - Vendors: Items -> List of Vendor Line Items' to list the vendor open items and in the output the vendor name with address is displayed, I want to supress name and address so that when I download to excel it will easier for me to change the columns.
    Than

    Try using FBL1N instead of this report, which does not show address.
    Regards,
    SDNer

  • Report handling names with a single quote

    Report 10gR2
    I have created a report and most of the functionality that i want is working as expected.
    I have a report where i am letting user enter their first name on one field and last name on another field in the parameter screen ( thats how it's stored in the database)
    If they enter any name with an aphostrophe , say D'Costa ( either first name or last name)
    then i get the below error
    REP-50003: Bad parameter: pfaction=http://.........
    I am using like keyword as seen below in the afterparam trigger and passing the parameter :p_where_last_name to the main sql query
         :p_where_last_name := ' AND UPPER( :last_name) LIKE (' ||''''||'%'||UPPER(:last_name)||'%'||''''||')' ;
    Whats the best approach to handle this issue
    Also is there a way to capture this error
    ' REP-50003: Bad parameter: pfaction=http://.........
    ' and display a message, if so where and how, please advise.
    thanks.
    Edited by: Forms_Reports_Beginner on Aug 13, 2009 1:52 PM

    I am not using form , it's just done in report, that is i am not calling the report from a form , just from a menu.
    :last_name is a report_paramter that i created on the report.
    you're right the first assignmnt is
    AND UPPER( db column) LIKE
    I have a paramter form on the report with a field last name and I am letting the user enter last name there which gets stored in the :last_name
    Edited by: Forms_Reports_Beginner on Aug 14, 2009 7:29 AM
    Edited by: Forms_Reports_Beginner on Aug 14, 2009 7:32 AM
    Rodolfo,
    your solution works,
    :p_where_clause := ' AND UPPER( db_column ) LIKE (' ||''''||'%'||UPPER(Replace(:p_2,chr(39), chr(39)||chr(39)))||'%'||''''||')' ;
    but i dont quite understand how this is working
    Replace(:p_2,chr(39), chr(39)||chr(39))
    i have never used chr
    Edited by: Forms_Reports_Beginner on Aug 14, 2009 7:35 AM

  • Follow up - DNS (internal domain has same name as external website)

    Hi,
    I am following up with on previous blog entry about resolving an domain internal name to an external website found here:
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/4d97325b-ff3a-4f46-ba6e-dc3f4ff978e1/dns-internal-domain-has-same-name-as-external-website
    On October 30, 2014
    HayashiTech provided a response suggesting the use of netsh interface portproxy on the DC's to resolve this issue. There has been no feedback to this suggestion and I am very curious what opinions are out there for this suggestion as it appears to be the
    best option provided yet.
    Thank you in advance as well for all the great guidance I have found provided by Ace and his followers.

    Interesting question. I've not seen that solution before, but having done a test on my lab setup it certainly seems to work as expected. Eg, using :
    netsh interface portproxy add v4tov4 listenport=80 listenaddress=dc1.abc.com connectport=80 connectaddress=www.abc.com
    on my DC where I've setup a working external domain name with the www record pointing to the website, and the non-www record pointing to the DC, requests to the non-www address are successfully being redirected to the www address (after confirming it didn't
    happen prior to adding the portproxy).
    So on the face of it that does look like a workable solution. I haven't used it myself in anger obviously, but the two downsides I can think of immediately to this solution are :
    1) This operates as a proxy, so unlike the IIS method that Ace mentioned where it would tell the client to go to the www address instead (so the client connects direct), this method keeps your DC acting as a middle man, eg all communications to that address
    go through your DC rather than direct from the client to the website. Depending on what they're doing on the website this may or may not be an issue for you.
    2) Since the client is continuing to connect to the DC throughout, if you ever did need the have something on the DC responding to port 80 then you could have issues. That said, according to
    https://technet.microsoft.com/en-us/library/cc731068(v=ws.10).aspx the portproxy listenaddress can be a FQDN rather than IP, so that could mitigate any issues there.

Maybe you are looking for

  • I am unable to import pictures from my iphone to my computer.  Can anyone help?

    I am unable to import pics. 

  • Failed to open the connection - database vendor code 17

    I'm upgrading a VB.net Windows Forms application from 1.1 to 4.0.  In the reporting form, the list of reports you can choose are pulled from a folder where the .rpt files reside.  Once the user chooses a report and executes it, vb code populates the

  • Fix Authorization check in  BAPI_ACC_DOCUMENT_POST

    Hello, We have  developed a z upload using BAPI: BAPI_ACC_DOCUMENT_POST  for AP/AR/GL/EFT upload from excel file. Now all the user have access to AP/AR/GL/EFT upload. Is there any way we can build authorization within upload program......what authori

  • Electric Guitar for Recording

    Hi, I'm using Logic Express Actually. I'm using very cheap guitar for Recording...that's EG112 yamaha electric guitar and RBX170 with me and my recording!!:D Erm...is it really important to get a high range Guitar for recording??like Taylor,Fender,Ib

  • Why is WCDMA shown in logs when I have GSM

    Been trying to troubleshoot issues on my iphone 5 myself since calling apple or seeing a genius didnt help. For two days on oct 1 and oct 2 a lil more than halfway down in my awdd diagnostic logs its shows sys_mode: SYS_MODE_WCDMA. My question is if