How can find what are the customers are created in my earlier version.

Hi all,I am trying to find out how can I check the  what are the customers are created in my earlier version of sap (i.e 4.7B)
My client  Upgrade d the 5.0 in 2007. Now my client asking, list of WDs which are created in the 4.7B.

Hi,
You know when the SAP went live with the new version.
In t.code SE16, enter table name KNA1.
In the field created on put value of new SAP version go-live date and select a < symbol by double clicking the field. Then click on execute button, the system will provide the customer master created before the new version go-live date.
Regards,

Similar Messages

  • How to find what are all the rules and events are monitoring for specific server in SCOM 2007

    how to find what are all the rules and events are monitoring for specific server in SCOM 2007.
    I need to know what are all the events, services, and rules are monitored for the specific server.
    Kindly help me friends.

    how to find what are all the rules and events are monitoring for specific server in SCOM 2007.
    I need to know what are all the events, services, and rules are monitored for the specific server.
    Kindly help me friends.
    Thanks for the question Sandoss. This is something that we all come across at sometime.
    Thanks & regards, Sumit Agrawal
    The lack of this feature is an inexcusable oversight for an enterprise management product.  They have some serious lightweights making design decisions on the SCOM team. 5 thumbs down. 
    BTW the answer is probably LOTS of stuff. Literally 100's of workflows are running on any server. 
    The following OpsMgr DB query will list all running monitors on a server. Change the name of @srv. I think this works pretty well.  I'd like some feedback if something is missing.
    DECLARE @srv varchar(30)
    SET @srv = 'your name here'
    SELECT mon.displayName as monitor, bme.FullName,bme.DisplayName as object,
    case
        when s.HealthState = 1 then 'healthy'
        when s.HealthState = 2 then 'Warning'
        when s.HealthState = 3 then 'Critical'
        else 'N/A'
    end as Health
    FROM state AS s WITH (NOLOCK)
    left join BaseManagedEntity as bme WITH (NOLOCK) on s.basemanagedentityid = bme.basemanagedentityid
    left join dbo.MonitorView Mon WITH (NOLOCK) on Mon.ID = s.monitorid
    where
    bme.FullName like '%' + @srv + '%'
    and s.HealthState <> 0
    and mon.IsInternalRollupMonitor = 0
    and mon.IsExternalRollupMonitor = 0
    order by bme.DisplayName, mon.displayName

  • How to Find what are tables and "Table Name" in particular "Data File"

    hi Team,
    I have one database that database 300 gb size , this database having 6 ndf files ,
    here How to Find  what are the tables and  "Table Name"  in particular "Data File"[.ndf]

    Hi,
    In addition to Prashanth’s suggestion, you can also use the following Transact-SQL statements to get more detailed information including  all objects and indexes per Filegroup / Partition and allocated data size of databases.
    The script can work with Microsoft SQL Server 2005 and higher version in all Editions. For more details, please review this article:
    List all Objects and Indexes per Filegroup / Partition.
    -- List all Objects and Indexes
    -- per Filegroup / Partition and Allocation Type
    -- including the allocated data size
    SELECT DS.name AS DataSpaceName
    ,AU.type_desc AS AllocationDesc
    ,AU.total_pages / 128 AS TotalSizeMB
    ,AU.used_pages / 128 AS UsedSizeMB
    ,AU.data_pages / 128 AS DataSizeMB
    ,SCH.name AS SchemaName
    ,OBJ.type_desc AS ObjectType
    ,OBJ.name AS ObjectName
    ,IDX.type_desc AS IndexType
    ,IDX.name AS IndexName
    FROM sys.data_spaces AS DS
    INNER JOIN sys.allocation_units AS AU
    ON DS.data_space_id = AU.data_space_id
    INNER JOIN sys.partitions AS PA
    ON (AU.type IN (1, 3)
    AND AU.container_id = PA.hobt_id)
    OR
    (AU.type = 2
    AND AU.container_id = PA.partition_id)
    INNER JOIN sys.objects AS OBJ
    ON PA.object_id = OBJ.object_id
    INNER JOIN sys.schemas AS SCH
    ON OBJ.schema_id = SCH.schema_id
    LEFT JOIN sys.indexes AS IDX
    ON PA.object_id = IDX.object_id
    AND PA.index_id = IDX.index_id
    WHERE OBJ.type_desc='USER_TABLE'-- add this WHERE clause to display the information of user tables
    ORDER BY DS.name
    ,SCH.name
    ,OBJ.name
    ,IDX.name
    Thanks,
    Lydia Zhang

  • How can I rotate view of a pdf file, like in earlier versions?

      How can I rotate view of a pdf file, like in earlier versions?

    Adobe Reader Touch (Windows Store app with "Modern" UI) for Windows 8 is a relatively new product, which was introduced in December 2012.  Adobe Reader XI, X, or older is a completely separate product - a traditional desktop app with classic UI.  The desktop version has been available in the market for 20 years (!!) and it does not share any common components with Adobe Reader Touch.
    Adobe Reader Touch does not support page (view) rotation yet.
    For Windows 8, you can download and install Adobe Reader XI from the link below.
    http://get.adobe.com/reader/enterprise/
    For Windows RT, you can use Microsoft Reader (built-in PDF viewer), instead.

  • How to find what are triggers are present in the database?

    Hi All
    Can any one tell me how to find what all triggers present in the database.
    Thanks in Advance

    Hi All
    Can any one tell me how to find what all triggers
    present in the database.
    Thanks in AdvanceYou should visit Pythia, the Oracle of Delphi, near Thermopile in Greece. She might be able to give you an answer. Pythia was an early leader in executive decision support systems and is not to be confused with the Oracle Corp. of Redmond, CA. Pythia also has a group of helpful colleagues in Toronto. Rumor is that they're also making predictions by inhaling laurel vapors. SQL, as you know, stands for "Said Quixotically on Laurel".

  • How can I give me the access to create a developer key in the market?

    Hi!
    I'm new in the basis area and I don't have access to create a developer key. A consultant need a developer key.
    How can I give me the access in the market place to create it?
    Thanks!

    Hi
    You need to get the access key from SAP.
    Refer to the procedure of obtaining access keys from SAP in BASIS.
    Security
    Regards,
    Raj

  • How to find what are  the  support-teams map with particular componant type

    hi experts,
    i am new in solution manager.. My requirement is when creating the support message in crmd_order t-code i have to give the componant type in transaction data after that in fast entry screen i have to assign support team for that componant type .. here i have to give only valid support team which are map with particular componant type .. when save the support message here i have to check that support team is map with that particular componant type (i.e that support team is belong to that componant type ) .. thats what i have to do in abap development .. so how to find the what are all the support teams mapped with particular componant type .. whether it is stored in any table or ?.. Please give solutions ..
    Regards,
    Kumar..

    Hi Kumaresan-
    I'm not sure I fully understand your requirement but I will try to help out. If you are trying to determine / associate the relevant support team according to which component they are responsible for, this might help.
    The determination of the support team is maintained by configuring rule 13200137 in transaction PFAC_RESPO.
    Click on the Responsibilities Tab
    Create your responsibility based on your support team requirements
    Assign the appropriate Support Team, this data will be taken from the settings you have maintained when creating your org chart in ppoma_crm
    Highlight a responsibility and click Change
    In this table you will see an entry for SAP Component, this is where you identify which support team will be determined based on component

  • How to find what are the columns actually used in BMM

    Hi All,
    Is there any way(Utility) in RPD to find out whether the columns present in physical layer are used in BMM layer? One option is to Rt click on physical layer tables and do 'Query related logical column'. This will not allow me to export the result into CSV or any file.
    Is there any beeter way?
    Thanks,
    Anilesh

    Anilesh,
    Try with BI Administrator - Tools -- > Utilities --> Repository Documentation --> execute give your file name (rep_doc.csv)
    Thanks -

  • How to find what  are the select  statements fired on a particular schema

    Hi Guys,
    I have a development box schema whose username and the password is shared across many users who are doing the developement.
    I wnat to know what are the select statement fired on it during a particular time interval.
    Thanks,
    Prafulla

    with dba user
    BEGIN
    DBMS_FGA.ADD_POLICY(object_schema => 'schemaname',
    object_name => 'CALLS',
    policy_name => 'CALLS_AUDIT',
    statement_types => 'SELECT'
    …enable => TRUE);
    END;
    then all select are viewed on table dba_fga_audit_trail
    Edited by: Adigozalov Gurban on Dec 3, 2010 11:05 AM

  • How to find what port the admin server is running

    how can I find out what port the admin server is running on a server?
    thanks,

    Hi
    Go to your domain root folder/config and open config.xml file in any editor. Search for the name of the admin server which is typically like AdminServer and under this tag see if you have a tag by name <listen-port>. If yes, then you should see the port number. If not, it means it is running at default port of 7001.
    If you have admin access, i hope when you login you will be giving url like http://adminhost:adminport/console. Now this adminport is the port on which admin server is running. If not, then check config.xml file.
    Thanks
    Ravi Jegga

  • How to find what is the patch no for my BI java  ?

    Note 1330884 recommends to apply the BI Java patch Support Package 18 Patch 50 for SAP NetWeaver 7.0 BI Java to your BI system.
    Two questions
    1) I want to know how to find the patch no for my installation ?
    2) where is the information for bi java ?  Below is the component info from my BI system. I dont see any BI JAVA component here ?
    thank you.
    I got the below from : http://<system>:<port>/monitoring/ComponentInfo
    Software Components 
    Vendor  Name  Version  Provider  Location  Applied 
    sap.com  ADSSAP  7.00 SP18 (1000.7.00.18.0.20081123153837)  SAP AG  SAP AG  20090515173903 
    sap.com  BASETABLES  7.00 SP18 (1000.7.00.18.0.20081123154558)  SAP AG  SAP AG  20090515171425 
    sap.com  BI-BASE-S  7.00 SP18 (1000.7.00.18.12.20090129073318)  SAP AG  SAP AG  20090518112357 
    sap.com  BI-IBC  7.00 SP18 (1000.7.00.18.0.20081124051700)  SAP AG  SAP AG  20090515180641 
    sap.com  BI-REPPLAN  7.00 SP18 (1000.7.00.18.0.20081125103147)  SAP AG  MAIN_APL70P18_C  20090515180729 
    sap.com  BI-WDALV  7.00 SP18 (1000.7.00.18.0.20081125103146)  SAP AG  MAIN_APL70P18_C  20090515180651 
    sap.com  BI_MMR  7.00 SP18 (1000.7.00.18.0.20081123154631)  SAP AG  SAP AG  20090515173946 
    sap.com  BI_UDI  7.00 SP18 (1000.7.00.18.0.20081123154646)  SAP AG  SAP AG  20090515174042 
    sap.com  BIWEBAPP  7.00 SP18 (1000.7.00.18.12.20090129073354)  SAP AG  SAP AG  20090518112351 
    sap.com  BP_BIADMIN  60.1 SP5 (1000.60.1.5.0.20060118134900)  SAP AG  SAP AG  20090720155956 
    sap.com  CAF  7.00 SP18 (1000.7.00.18.0.20081125143229)  SAP AG  MAIN_APL70P18_C  20090515174948 
    sap.com  CAF-KM  7.00 SP18 (1000.7.00.18.0.20081125132429)  SAP AG  MAIN_APL70P18_C  20090515181229 
    sap.com  CAF-UM  7.00 SP18 (1000.7.00.18.0.20081125143246)  SAP AG  MAIN_APL70P18_C  20090515174049 
    sap.com  CORE-TOOLS  7.00 SP18 (1000.7.00.18.0.20081123154839)  SAP AG  SAP AG  20090515171444 
    sap.com  EP-PSERV  7.00 SP18 (1000.7.00.18.0.20081217162400)  SAP AG  SAP AG  20090515180804 
    sap.com  EP-WDC  7.00 SP18 (1000.7.00.18.0.20081113110900)  SAP AG  SAP AG  20090515180833 
    sap.com  EPBC  7.00 SP18 (1000.7.00.18.0.20081123205100)  SAP AG  SAP AG  20090515174158 
    sap.com  EPBC2  7.00 SP18 (1000.7.00.18.0.20081123205100)  SAP AG  SAP AG  20090515180835 
    sap.com  JLOGVIEW  7.00 SP18 (1000.7.00.18.0.20081123152100)  SAP AG  SAP AG  20090515171508 
    sap.com  JSPM  7.00 SP18 (1000.7.00.18.0.20081123152100)  SAP AG  SAP AG  20090515110509 
    sap.com  KM-KW_JIKS  7.00 SP18 (1000.7.00.18.0.20081123155108)  SAP AG  SAP AG  20090515174202 
    sap.com  KMC-BC  7.00 SP18 (1000.7.00.18.0.20081124023400)  SAP AG  SAP AG  20090515180855 
    sap.com  KMC-CM  7.00 SP18 (1000.7.00.18.0.20081124045000)  SAP AG  SAP AG  20090515180911 
    sap.com  KMC-COLL  7.00 SP18 (1000.7.00.18.0.20081124050800)  SAP AG  SAP AG  20090515180926 
    sap.com  LM-PORTAL  7.00 SP18 (1000.7.00.18.0.20081125133231)  SAP AG  MAIN_APL70P18_C  20090515180928 
    sap.com  LM-TOOLS  7.00 SP18 (1000.7.00.18.0.20081218100553)  SAP AG  MAIN_APL70P18_C  20090515175236 
    sap.com  NET-PDK  7.00 SP18 (1000.7.00.18.0.20081124003300)  SAP AG  SAP AG  20090515180432 
    sap.com  RTC  7.00 SP18 (1000.7.00.18.0.20081124050800)  SAP AG  SAP AG  20090515180434 
    sap.com  RTC-STREAM  7.00 SP18 (1000.7.00.18.0.20081124050800)  SAP AG  SAP AG  20090515180930 
    sap.com  SAP-EU  7.00 SP18 (1000.7.00.18.0.20081125133807)  SAP AG  MAIN_APL70P18_C  20090515181146 
    sap.com  SAP-JEE  7.00 SP18 (1000.7.00.18.0.20081123155510)  SAP AG  SAP AG  20090515171540 
    sap.com  SAP-JEECOR  7.00 SP18 (1000.7.00.18.1.20090120111509)  SAP AG  SAP AG  20090518112033 
    sap.com  SAP_JTECHF  7.00 SP18 (1000.7.00.18.1.20090120111547)  SAP AG  SAP AG  20090518112036 
    sap.com  SAP_JTECHS  7.00 SP18 (1000.7.00.18.1.20090120111716)  SAP AG  SAP AG  20090518112429 
    sap.com  UMEADMIN  7.00 SP18 (1000.7.00.18.0.20081125103148)  SAP AG  MAIN_APL70P18_C  20090515175248 
    sap.com  UWLJWF  7.00 SP18 (1000.7.00.18.0.20081124030000)  SAP AG  SAP AG  20090515180944 
    sap.com  VCBASE  7.00 SP18 (1000.7.00.18.0.20081124020700)  SAP AG  SAP AG  20090515181246 
    sap.com  VCFLEX  7.00 SP18 (1000.7.00.18.0.20081124020700)  SAP AG  SAP AG  20090515181231 
    sap.com  VCFRAMEWORK  7.00 SP18 (1000.7.00.18.0.20081124020700)  SAP AG  SAP AG  20090515181234 
    sap.com  VCKITBI  7.00 SP18 (1000.7.00.18.0.20081124020700)  SAP AG  SAP AG  20090515181248 
    sap.com  VCKITGP  7.00 SP18 (1000.7.00.18.0.20081124020700)  SAP AG  SAP AG  20090515181250 
    sap.com  VCKITXX  7.00 SP18 (1000.7.00.18.0.20081124020700)  SAP AG  SAP AG  20090515181252 
    sap.com  WDEXTENSIONS  7.00 SP18 (1000.7.00.18.0.20081125134217)  SAP AG  MAIN_APL70P18_C  20090515181322

    Manoj,
    Thank you. I can see in jspm (release.splevel.PATCHlevel). But which component is the BI JAVA ? I done see any component by that name in jspm !!!
    I can see a sap.com/SAP_JAVASL. Is this the one ?
    Anil , Royi,
    I know I am on netweaver 7 and sp 18. I want to know PATCH NO. Pasted above is the component info. Where is the java PATCH information ?
    Does   ADSSAP  7.00 SP18 (1000.7.00.18.0.20081123153837  mean
    release 7
    sp 18
    patch 0
    thank you.

  • How can i test if the frame is created

    hi,
    i am using ADFBC Swing.
    i have created an MDI Frame and 2 internals frames.
    in the MDI frame i put a button and i want when i press it i do a test.
    if the internal frame1 is created i unload it and i create the 2.
    else if the second is created i do nothing
    thanks

    nothing.
    All sales are final

  • How to find what are all web services depolyed?

    Hi all,
    I am taraka working as BA. I have theoretical knowledge on how web services work. I asked to test web services using SOAP UI.
    I have a URL and soap message. But some time I am getting webservice names and not complete urls.
    I would like to find out list of web services exposed at given url.
    Is there any way to find it?
    Please let me know.
    Thank you in advance..
    Regards,
    Taraka

    Usually you would get the webservice urls from the developers?
    Some appservers can give you a list e.g on jboss you can check hostName:port/jbossws

  • Why can't iMovie 09 open a project created in an earlier version of iMovie?

    I recently bought a new (intel) iMac with iMovie 09 to replace our old (PowerPC) iMac G5. I had created several movie projects in iMovie on the old iMac, but these are apparently unreadable on the new one. I presume this may have something to do with the switch to intel - but is there any way I can import the files?
    The files contain slideshows of still photos with music and some video mixed in - and I'd like to update them with newer material, so importing the entire file as a quicktime movie or something like that would not really help...

    Tomasso36 wrote:
    I recently bought a new (intel) iMac with iMovie 09 to replace our old (PowerPC) iMac G5. I had created several movie projects in iMovie on the old iMac, but these are apparently unreadable on the new one. I presume this may have something to do with the switch to intel - but is there any way I can import the files?
    The files contain slideshows of still photos with music and some video mixed in - and I'd like to update them with newer material, so importing the entire file as a quicktime movie or something like that would not really help...
    YOU SAY - AppleMan1958: iMovie will import video from old projects, but not photos.
    Perhaps - but how? I cannot open project from 08, have read many forum posts from others with the same goal ...that have been unable to import/open previous projects. Please share some tips (or secrets!) that can help.

  • I just upgraded from Express to Pro.  When I open a project in Finder and neither Express nor Pro are running, it always opens in Express.  "Open With ..." says Express is the default.  How can I make Pro the default instead?

    I just upgraded from Logic Express to Pro.  When I open a project in Finder and neither Express nor Pro are running, it always opens in Express. I now want projects to open in Pro.  "Open With ..." says Express is the default.  How can I make Pro the default instead?

    Well, when I've done things like that it always sems like a good idea to keep an application that you know the file will definitely open in...

Maybe you are looking for

  • Is there an adpater that will output to 2 screens with 1 thunderbolt port?

    So I have a couple extra DVI/VGA monitors that I want to use for my girlfriend's Macbook Air (Mid 2013). She wants the extra screens so she can do her work easier. I've searched around for answers and most of the questions/answers are too simplistic

  • AcroPDF ActiveX print functions are not working with Adobe Reader 9.2 / Actobat Reader 9.3

    AcroPDF ActiveX print functions are not working with Reader 9.2/9.3. Tried ActiveX print functions like printPages(), printAll(), printWithDialog(), none of them is working. Tried on platforms: XP 32 bit and Win7 32 bit. These print functions all wor

  • Page display

    I did a web site in Dreamweaver.( http://www.s--p--c.com/ ) I uploaded it and everthing works correctly except all the pages reduce to about a quarter of the correct size and place themselves in the top left portion of the screen. This doesn't happen

  • Mass processing for SOP

    Hi, I am able create sale plan through MC87 transaction by selecting the create sale plan through forecasting, when total consumption values are maintained in the material. But I want this to be done by MASS processing function. In other words I want

  • Changing Artist/Genre/Song Name in "Get Info"

    I am very maticulous about my music organization, and only maybe half the time am I able to change the Genre/Song Name/Or Artist anyone else have this problem? how do I fix it ?