Reg : How to get the company address in Crystal Report

Dear members,
I am stuck up with problem in Crystal Report in my project. I want to get the company address in the Crystal Report. How can i get the company address in the crystal report. Hope i will get help in this regard.
Thank you.
Regards,
Venkatesh Rajagopalan

Hi Dear
  plz send me  what is your methad to applay,
so i am sending u code   for company address
all company information  contain the OADM table ,
so applay the select query  ang get the data form table
this ia sample code ........
  SAPbobsCOM.Recordset oRecordset = (SAPbobsCOM.Recordset)ICreon_SBOAddOn.SBOCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset);
                string GetComp = "select * from OADM ";
                oRecordset.DoQuery(GetComp);
                strCompName = oRecordset.Fields.Item("CompnyName").Value.ToString().Trim();
   Use this code  u will find the company name
  and after  that pass this valu a parameter
oRPT.SetParametervalue ("CompanyName", strCompanyName)
  so pass the strCompanyName  as a parameter in the  cdrystel report.
hope  help this code ,
if u have any problem so plz send me  question in form,
if u r  satisfied my answer so pl give me rewards point,

Similar Messages

  • How to get the ard file of crystal reports

    Hi all,
    I have downloaded crystal reports from sap market place but i dont have .ard file for that how to transfer that reports into sap. How to get the ard file please help me out.
    Thanks & Regards,
    Murtuza Ahmed.

    When you click on your SAPCrystalSetup.exe and select the path to your add-on folder it will install the files and your ard file will be situated in your add-on folder.  Then you can start SAP up and install it from SAP. 
    So if your SAP install is in your local drive your ard file for crystal reports should be here C:\Program Files\SAP\SAP Business One\AddOns\SAP_CR
    Hope this helps.

  • Where/How to get the Virtual KPIs in Crystal Reports?

    hellooo!
    We are developing SSM7 reports using Crystal.
    And we have this example scenario:
    1. Two NONKPI variables defined via Cube Builder:
        NONKPI381_ACT/TAR  Net Sales         100000           
        NONKPI382_ACT/TAR  Expenses          80000
    2. Virtual KPI
        KPI380_ACT/TAR (Net Income Contribution) = (NONKPI381_ACT/TAR - NONKPI382_ACT/TAR)
    No issue in PAS and standard front-end reports as they show the KPI380 = 20000 (and other calculations) perfectly.
    However, we need a specific report showing an Objective and it's associated KPIs (e.g. KPI380*) and Initiatives. Apparently, the main FACT table CPMS_EA_DATA does not contain values for KPI380. I browsed all the CPMS tables but to no avail, I have not seen any relationships to at least calculate KPI380. Could somebody please give me some advise?
    Cheers and Thanks,
    Ron Almonte

    Hi there!
    If you are trying to read data directly from CPMS tables, then you won't find any measure data there. That data is stored in the Application Server... The CPMS_EA_DATA values there are only used as a datasource for the application server, those values are not used directly for the scorecard calculations.
    I would advise you to consider the upgrade to version 7.5. With this version you are able to use either Web Services or ODBO to connect SAP BusinessObjects Strategy Management to other SAP BusinessObjects tools.
    This way you will be able to easily access, for example, the details on the 'Context', 'Perspective', 'Objective', 'KPI' and 'Initiative', and to the respective measures 'Trend Status value', 'Status Value', 'Actual', 'Target' and 'Score'. You are also able to access more detailed information on the PAS model for any measure, so that you can build your reports on Web or CrystalI, your Dashboards on Xcelsius, etc, etc...
    I have used the ODBO provider (available starting with 7.5 SP2) to create a Universe, and then with QaaWS I was able to make that data available for Crystal, which made it very easy to built a report without any coding
    Hope this helps!
    Best regards,
    Ricardo Vieira
    Edited by: Ricardo Vieira on Oct 15, 2009 10:21 AM

  • How to get the Delivery address for PO

    I have a problem.
    I am working on a SAP Script , which is for PO(Zmedruck_po) , which is a copy of
    MEDRUCK.
    I am asked to print the delivery adress in a window .
    The scenario is like this .
    In ME23N , under item details , there is a tab called DELIVERY ADDRESS
    this has option to enter the adress details or a delivery number in the  address text box .
    If the address number is present i have to print that address , else i have to print the address which is entered in the delivery address tab.
    If the delivey address number is there i have no problem in printing it ,But if address number is not there ,I need to know how to get the delivery address,
    is it the plant address, company code address ... ?
    I debuged ,but could not find out.
    Can anyone help please .

    Hi,
    try using the below method:
    Goto TWLAD table with storage location (EKPO-LGORT) as key to get address number (ADDRNUMBER).  then goto ADRC table to get the address of the delivery
    Regards
    Shiva

  • How to get the MAC address of the additional 10G NIC with ILO command line

    how to get the MAC address of the additional 10G NIC with ILO command line?
    thanks.
    This question was solved.
    View Solution.

    Hi Bruce,
    Out from what I can find on this network card is it not possible to get the mac address without a OS. I would recommend you to get/burn a Linux/Ubuntu live CD/DVD and run a Ifconfig in there.
    Hope it helps you.
    Best regards
    Zincas
    I work on behalf of HP

  • SAP Cloud For Customer How to Get the IP Address of Tenant

    Hi Experts,
    I need to know how to get the IP Address of our cloud Tenant ?
    Can anyone know please tell me the process.
    Many Thanks
    Mithun

    Hi Mithun,
    In my understanding there SAP will not share IP address of tenant. If this is really urgent you should discuss to SAP Partner coach or any other representative. SAP network team will not directly communicate with you, this will require numerous approval inside SAP itself.
    Thanks
    Sunil Maurya

  • How to get the IP address of a new stream?

    Can anyone tell me how to get the IP address from which a newly detected RTP stream is being sent, especially when a NewReceiveStreamEvent is posted? Or, is it possible to do so?
    Thanks in advance.

    My RTPConnector follows the example from the JMF home page here: http://java.sun.com/products/java-media/jmf/2.1.1/solutions/RTPConnector.html
    I have not done any measurement regarding the performance of my RTPConnector implementation compare to that of the default but I did find some way to deal with the bursty nature of the default RTP transmission which caused some problem with 3rd party apps that don't handle jitter well. I created a 20ms timer that acts as a gatekeeper that allows the transmitter to send RTP packets. Unfortunately Java timers aren't very precise.
    I also improved upon (I think I did anyway) the efficiency of the default (IBM) ULaw encoder as discussed here: http://forum.java.sun.com/thread.jspa?threadID=597011
    My problems with performance issues were mainly in the speed at which processors and players are created and realized on slower PC's.

  • How to get  the actual data in ALV report

    I am doing some upgradation work   in that i am using Submit  & And return and  also i am using some function modules like LIST FROM MEMORY , LIST TO TXT wnd WRITE LIST , it gives output in normal list format , But i need to print in ALV report .
    With the use of set table for 1st display i got the  ALV report   but not with actual data, (some junk value is showing) , So can any 1 suggest me how to get  the  actual data in ALV report, With the use of  Any Function Module or with Coding,
    with regards,

    Hi Saravana
    I am sure you must be getting the values in tables of table parameters from every FM.
    consolidate the values from tables of all FMs in one table and built ALV for that table only.
    I hope this way you can show the actual data in ALV.
    thanks
    Lalit

  • How to get the original version of Web report in BW ?

    Hello Friends ,
    I have transported one Web report from BW development to BW Production System.
    But unfortunately , the desired result not me met .
    So I have been asked to keep the original version of the Web report.
    As the new version of Web report has replaced the previous one ,
    So could anybody tell me how to get the original version of Web report in BW ?
    Many thanks in advance !!!!!!!!

    Hi,
    You can use the Transaction STMS choose the option "Import Overview" . In the GOTO tab select "History" and choose "Import History".
    Here you can find the history of requests imported to the prod system.
    Regards,
    K.Manikandan.

  • How to get the total pages in ALV report?

    Hi guys,
    Since I used page breaks can somebody please help me on how to get the total pages in ALV report?sincerely please...thanks guys.

    automatic display total page.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e8a1d690-0201-0010-b7ad-d9719a415907
    r

  • How to view the History of a Crystal Reports iView in EP6?

    How to view the History of a Crystal Reports iView in EP6?
    Our Crystal reports are viewed via Crystal Enterprise and are both BW and non-BW Crystal reports.
    I have looked at the three supplied iViews from Business Objects (alert, folder and thumbnail) but I have only been able to access the last instance or run on demand a CR.
    Our users would prefer to see a listing of the past runs of the report and choose which report to view.  What parameters need set in the EP6 iView to see the history of a report?

    Hi Heather,
    it is correct that there is no sample iView that shows the History of Crystal Reports that are stored in Crystal Enterprise but there a sample codes on our web site and there are sample codes as part of the SDK documentation that show how to call the history and you should be able to take the code and create your own Java or ASP iView based on that.
    the link to our developer library :
    http://www.businessobjects.com/products/dev_zone/default.asp?intcmp=products12
    hope this helps
    Ingo

  • How to get the IP address of smtp server?

    For A record in DNS, we can use Java API InetAddress.getHostAddress() to get the IP address.
    But for mx record, how to get the IPaddress?

    If you know the hostname of the MX record (eg. mail.somehost.com), you can still use the InetAddress.getByName(hostname).getAddress()
    If you don't know the specific host name you can do a DNS lookup directly:
            String host="somehost.com";
            DirContext ictx = new InitialDirContext();
            Attributes attrs = ictx.getAttributes("dns:/" + host, new String[]{"MX"});This will give you a javax.naming.directory.Attributes object from which you can...
    Attribute att = attrs.get ("MX");This will give you all the MX records for the domain. To get the IP address of the MX hosts, you need to parse the record String returned. Usually something like:
    somehost.com       MX preference = 10, mail exchanger = mail.somehost.comParse out the mail.somehost.com and use:
        String mailhost = <Parse MX record here>
        InetAddress host = InetAddress.getByName(mailhost);

  • How to get the memory address of an array (pointer in C)?

    I am writing an application that exchanges data with a PXI device via DMA.  Basically I will provide it a memory address and a direction, and it transfers the data.  I would like to give it the memory location of an array in LabVIEW, but I do not know how to get the memory location without doing a DLL call to C code that returns the pointer.  Is there an easy way to do this in LabVIEW?  Any help is much appreciated.

    A similar question was asked recently regarding strings. You cannot pass pointers in LabVIEW as you do in C. You can pass an array to a DLL, but that means you would need to write a wrapper DLL. Be sure to read the section in the LabVIEW Help on calling code from text-based languages and also take a look at the "Call DLL" example that ships with LabVIEW  - it contains many examples of how to deal with various datatypes.

  • How to get the IP address of the Client machine???

    Hi All,
    I am trying to get the IP address of the Client machine and using the code
    SELECT SYS_CONTEXT('USERENV','IP_ADDRESS') FROM DUAL;
    but this query only return server ip address but i want Client machine IP .
    How can I get that. Please help.

    SowmyRaj wrote:
    Hi All,
    I am trying to get the IP address of the Client machine and using the code
    SELECT SYS_CONTEXT('USERENV','IP_ADDRESS') FROM DUAL;
    but this query only return server ip address but i want Client machine IP .
    How can I get that. Please help.Which client's IP addess?
    SYS_CONTEXT('USERENV','IP_ADDRESS') should give you the IP address of the machine from which the client is connected. So you are running sqlplus from Server?
    To check other session's information, you can check V$SESSION view.

  • How to get the ip address of ur customers

    ok this may be easy for u great brains-
    i am developing a web site and would be taking space and bandwidth from freeservers.com. Now the problem is that I can cater only to the North American market, and this site would be useless to non Americans/ Canadians, so I wish to block my site from ip addresses not originating from North America, to save my bandwidth.
    Please Help !!!

    The problem is not getting the IP address, but figuring out where it originates. The only way I have seen this done is to do a trace route to that IP. (type tracert airchina.com.cn at a command prompt. I'm assuming they are hosted in China).
    The IP's between you and they are routers and switches. One or two of them are going to be the monster switches routing traffic in and out of a country. These are the ones you are going to be interested in. You will need to build (or buy) a database of these. If the trace route goes through an international switch, you can assume it's in a different country.
    Now, this would be simple if there were only one or two switches in or out of a country. I have no statistics, but I bet the US has thousands.
    Next, I seem to remember that trace route use thes ICMP protocol. There is no support for ICMP in Java.
    Finally, you might be able to find a company who provides this service (or a foriegn DNS blocking service). Read $$$$.

Maybe you are looking for

  • Question about metadata filtering and document sets

    Hello, I have a question about the metadata filtering when using document sets. When i use the metadata filter for example for "Installatie: P00001" it shows. But i wan't to show only the document set and not all the documents. Is this possible OOTB?

  • Display problem when reading Traditional Chinese in Crystal Report 2008

    Hi All, I have tried to connect MS SQL 6.5 to build up a report. However, I encounter a problem when read Traditional Chinese. all chinese characters turn into adnormal characters. I wonder it is problem of SQL Server or some setting that I may not k

  • Audio Sync , 2 camera shoot: Need Project Advice

    Hi Friends, Question for you from a newbie who will be shooting my first "major" project tonight: I'll be shooting a 6 minute video with two mini DV cameras, each at different fixed angles. The subjects are talking heads. In addition, I will be recor

  • Where can i get info abt deadlocks

    Hi , I want to get some info abt dead locks and when it happen.I have one scenario where 4-5 process writing to the same table at the same time.I want to find out how the process is gng to effect if i ncrease parallel processes. Thanks Anand

  • Best way to move data

    I purchased a new 17" imac for my wife. I need to move her data which consists of old emails through outlook, word files, print shop files etc. Not too much more. But in order for her to feel comfortable with the switch to mac she needs to hvae every