Development of Query for MM-CAS link

Dear Experts,
I am an MM consultant, had to develop a querry which has input as Material number and for output I need some fields mentioned below
1. Substance ID
2. COMP CAS#
3. COMPONENT Description
4. COMPONENT ID
I have trying to trace the tables and fields but it seems there are many interlinked tables.
Any help in this will be more than welcome.
Regards,
Manish

Dear manish
first of all you need to relate the material number to a specification id. In most cases you need to take a look regarding so called "REAL_SUBs" in EH&S. Therefore material number is part of MARA; link is done via ESTMJ to ESTRH to find the REAL_SUB which is related to the material number.
Now you can have a number of identifiers linked to the REAL_SUB. These are handled in table ESTRi which is related to ESTRH. If you are asking now the quqestion of "component" you will get in "trouble".
Componenst are part of a number of potential data records in a lot of so called value assignments in EH&S.  Data could be stored in e.g. property "Standard composition". Now here once again links to futhere objects in EH&S will be found whcih might have a related CAS number etc.
Now it depends on your "exact question" so that the result is different (in the sense of effort etc.).
Therefore proposal from my side: try to find the REAL_SUB and check if a CAS number is available as identifier (need not to be the case but could be).
There are a number of "search possibilities" available in EH&S to perform the query the other way around. that means you specifcy a CAS number and check if a specification id does have this CAS number and then you use the "where used" function to get a list of other EH&S objects.
Clearly you could get a list of CAS numbers (if they are maintained) of components of a REAL_SUB as well.
As things are getting now more complex: start with the identificaiotn of the REAL_SUB or by using simply the CAS number try to find a specifciation id which dopes have assigned this CAS number (here you need to look in ESTRi and the check the relation to ESTRH).
Hope this helps a little bit
With best regards
C.B.
Edited by: Christoph Bergemann on Nov 22, 2011 8:54 PM
Edited by: Christoph Bergemann on Nov 22, 2011 8:54 PM
Edited by: Christoph Bergemann on Nov 22, 2011 8:54 PM

Similar Messages

  • Query for Opening Stock + Purchase Qty + Sales Qty

    Hi ,
    Can anyboday help me by how to develop a query for the following requirement. If any custom query is available please provide me .We are working on SBO 2007B PL 8. The required report structure is 
        ItemNo ***OpeningStock**** Purchase ********* Sales****
    (Batchwise)** Qty*** Value ****Qty** Value ***Qty***Value
    Thanks & Regards
    Srini

    Hi Srini,
    I found this on the forum, see if it helps you;
    select b.Itemcode,b.Item_Description,b.UOM, b.rate as Rate,b.Opening_Stock,b.Receipt,b.Issue, b.Material_Revalue,b.Closing_Stock,b.Closing_Value from (select *,(case closing_stock when 0 then 0 else(Closing_Value/Closing_Stock)end) as Rate from( SELECT T0.Itemcode as 'Itemcode' ,min(T0.Dscription) as 'Item_Description', max(T1.InvntryUom) as UOM, (isnull((Select sum(isnull(inqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.docdate<'[%0]' and O1.transtype in (58,59,20,16,67,-2)),0) - isnull((Select sum(isnull(outqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.docdate<'[%0]' and O1.transtype in (58,21,19,60,15,67,-2,13)),0)+ (isnull((Select sum(isnull(inqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.docdate>='[%0]' and O1.docdate<='[%1]' and O1.transtype in (-2)),0) - isnull((Select sum(isnull(outqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.docdate>='[%0]' and O1.docdate<='[%1]' and O1.transtype in (-2)),0)))as Opening_Stock, (isnull((Select sum(isnull(inqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.docdate>='[%0]' and O1.docdate<='[%1]' and O1.inqty>0 and O1.transtype in (20,18)),0) + isnull((Select sum(isnull(inqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.docdate>='[%0]' and O1.docdate<='[%1]' and O1.inqty>0 and O1.transtype in (67)),0) + isnull((Select sum(isnull(inqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.docdate>='[%0]' and O1.docdate<='[%1]' and O1.inqty>0 and O1.transtype in (58,59,16,14)),0)) as Receipt, (isnull((Select sum(isnull(outqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.docdate>='[%0]' and O1.docdate<='[%1]' and O1.outqty>0 and O1.transtype in (13,15)),0) + isnull((Select sum(isnull(outqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.docdate>='[%0]' and O1.docdate<='[%1]' and O1.outqty>0 and O1.transtype in (67)),0)+ isnull((Select sum(isnull(outqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.docdate>='[%0]' and O1.docdate<='[%1]' and O1.outqty>0 and O1.transtype in (58,60,21,19)),0)) as Issue, isnull((select sum(Transvalue) from OINM O1 where O1.itemcode=T1.itemcode and O1.docdate<='[%1]' and O1.transtype in (162)),0) as Material_Revalue, (isnull((Select sum(isnull(inqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.docdate<='[%1]' and O1.transtype in (58,59,20,16,14,19,67,-2)),0) - isnull((Select sum(isnull(outqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.docdate<='[%1]' and O1.transtype in (58,21,19,60,15,67,-2,13)),0))as Closing_Stock, isnull((select sum(Transvalue) from OINM O1 where O1.itemcode=T1.itemcode and O1.docdate<='[%1]' and O1.transtype in (58,18,-2,67,59,20,16,14,15,13,21,19,60,69,162)),0) as Closing_Value FROM OINM T0 INNER JOIN OITM T1 ON T0.ItemCode = T1.ItemCode INNER JOIN OITW T2 ON T1.ItemCode = T2.ItemCode INNER JOIN OITB B1 ON T1.ItmsGrpCod=B1.ItmsGrpCod where ((B1.ItmsGrpNam>='[%2]' and B1.ItmsGrpNam<='[%3]') or ('[%2]'='' and '[%3]'='')) GROUP BY T1.itemcode,T0.Itemcode )a Where (a.Opening_Stock + a.Receipt + a.Issue + a.Material_Revalue + a.Closing_Stock + a.Closing_Value) <> 0 )b 
    Thanks,
    Joseph

  • Query for Weekly Sales Report

    Dear Experts,
    I have developed the query for weekly sales report for the alert management to send out the report on every Monday as follow :
    SELECT T0.[CardCode], T0.[CardName], T0.[DocDate], T1.[ItemCode], T1.[Dscription], T1.[Quantity], T1.[LineTotal] FROM OINV T0  INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode WHERE T0.[DocDate] between GetDate()-8 and GetDate()-1
    The weekly report received on every Monday through email is without column total for the "Line Total".
    Can the Sum of column "Line Total" to be included in the query ?
    Thus, the auto send report on every Monday by alert management will display the total.
    Thanks in advance for all your kind assistance.
    Regards,
    Clara

    Ok you want it at the bottom.......
    then you must must try this if you are running query generator....
    Else a good option is Crystal Report.
    You need to only add Group Sum.......
    SELECT T0.CardCode, T0.CardName, T0.DocDate, T1.ItemCode, T1.Dscription, T1.Quantity, T1.LineTotal FROM OINV T0 INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode WHERE T0.DocDate between GetDate()-8 and GetDate()-1
    Union All
    Select '','',Null, '','Total',Null, Sum(T1.LineTotal) FROM OINV T0 INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode WHERE T0.DocDate between GetDate()-8 and GetDate()-1
    Regards,
    Rahul

  • New query for 'Manage Database' option in SQL Developer

    Dear all,
    I want to suggest a changed query for the 'Manage Database' option in SQL Developer (right-click on the connection), see the query below.
    This query has the following changes;
    - extra column with the Maximum disk space based on the datafiles (considering autoextend of datafiles); MAX_DATAFILES
    - the PERCENT_USED and PCT_USED are based on the MAX_DATAFILES, as this is really important (and not the difference between ALLOCATED and USED)
    - the results are shown in GB, as that is in my opinion more relevant in this time of data explosion
    - rename of the column FREE to UNUSED_ALLOCATED, as this column identifies how much of the Allocated space is not used
    I hope the query can replace the current one, to improve SQL Developer even more.
    Thanks for the nice tool SQL Developer!
    Kind regards,
    Siebe
    -- Manage Database - Changed Oracle SQL Developer query with regard to Usage of Tablespaces in GB (considering autoextend of datafiles)
    SELECT "TABLESPACE_NAME", "PERCENT_USED", "PCT_USED", "MAX_DATAFILES", "ALLOCATED", "USED", "UNUSED_ALLOCATED", "DATAFILES" FROM(
    select * from (
    SELECT a.tablespace_name,
    --'SQLDEV:GAUGE:0:100:0:0:'||nvl(ROUND(((c.bytes-nvl(b.bytes,0))/c.bytes)*100,2),0) percent_used,
    --ROUND(((c.bytes-nvl(b.bytes,0))/c.bytes)*100,2) PCT_USED,
    'SQLDEV:GAUGE:0:100:0:0:'||nvl(ROUND(((c.bytes-nvl(b.bytes,0))/c.maxbytes)*100,2),0) percent_used,
    ROUND(((c.bytes-nvl(b.bytes,0))/c.maxbytes)*100,2) PCT_USED,
    round(c.bytes/1024/1024/1024,2) allocated,
    round(c.bytes/1024/1024/1024-nvl(b.bytes,0)/1024/1024/1024,2) used,
    round(c.maxbytes/1024/1024/1024,2) max_datafiles,
    round(nvl(b.bytes,0)/1024/1024/1024,2) unused_allocated,
    c.datafiles
    FROM dba_tablespaces a,
    ( SELECT tablespace_name, SUM(bytes) bytes FROM dba_free_space GROUP BY tablespace_name ) b,
    ( select count(1) datafiles, SUM(bytes) bytes, SUM(DECODE(autoextensible, 'YES', maxbytes, bytes)) maxbytes, tablespace_name from dba_data_files GROUP BY tablespace_name ) c
    --( select count(1) datafiles, SUM(bytes) bytes, SUM(c.maxbytes) maxbytes, tablespace_name from dba_data_files GROUP BY tablespace_name ) c
    WHERE b.tablespace_name (+) = a.tablespace_name
    AND c.tablespace_name (+) = a.tablespace_name
    ORDER BY nvl(((c.bytes-nvl(b.bytes,0))/c.maxbytes),0) DESC
    ) --sub1 order by 1 asc
    )

    Very little technical information provided about the error.
    "+IO error.+" - this likely refers to the client attempting to use a socket handle and the call to the handle failing.
    +"The network adapter could not establish the connection.+" - this likely means that the IP address to connect to, could not be reached, or that the connection was not accepted on that port on the remote IP address. (typically hostname resolution errors would give a different error)
    The easiest way to test connectivity is using the ping command to bounce an ICMP echo off the remote IP.
    If that works, test access to remote port on that remote IP using the telnet command - this will check whether there is a service accepting connections on that port, and whether access to that port is allowed in case of firewalls en-route.

  • Query for the link of recordings

    A Korean company developed Moodle module by which teacher can
    create meetings and display meeting schedules within Moodle using
    xml webservices. They asked me whether there is an action to query
    for the links of recordings of meetings.
    Does anyone know?
    Thanks in advance.

    You can do so using the XML API. There is a .pdf here:
    http://www.adobe.com/devnet/breeze/
    Web Services
    Using the Adobe Connect Enterprise XML Web Services

  • Sap bw case study and reports development in realtime for me also.

    Sap bw case study and reports development in realtime for me also.
    forward me to kavi_kuil20022yahoo.co.in
    thanks in advance

    Hi,
    http://help.sap.com/bp%5Fbiv335/BI%5FEN/html/
    http://help.sap.com/bp_biv335/BI_EN/html/BW/FinancialAccounting.htm
    Regards,
    San!

  • SQL Developer SDK wiki(for extensions development) link broken

    Hi,
    I would like to develop an extension for Oracle SQL Developer. I searched around the web for extension development API but couldn't find any working links.
    The link http://wiki.oracle.com/page/SQL+Dev+SDK+Getting+Started
    in the forum sticky as well as
    the main extensions development page http://www.oracle.com/technetwork/developer-tools/sql-developer/extensions-083825.html#create
    is broken.
    Any help would be much appreciated. Thanks.

    Hi,
    Is there any wiki link that I can use for extension development?

  • Looking for 'My Support Cases' link

    Well, posting in this forum resulted in a technician showing up on a Sunday afternoon ... phone service restored. Thanks. However, in one of my postings Verizon says to check 'My Support Cases' link to communicate with them and then locks the post so I cannot respond to ask for more details about the link. I have looked all over the site and cannot find this 'My Support Cases' link. Has anyone else found it?
    Thanks ...

    I guess I must be dumb ... I only found the list of my postings and still find no "My Support Cases' link.   Another Verizon tech replied to one of my forum posting that I haven't checked or responded to some posting in that location ... then doesn't allow 'Reply' ib their posting.
    I still need to update the work order.  A Tech showed up on Sunday night and spent an hour trying to trace lines on the road ad restored service so we thought we were set.  But then during the week we started having issues again with noise, disconnect of calls in the middle of speaking with someone, not being able to make a call and then no dial tone ater that.  I tried to open another repair report on this site today but can't get past that automatic check the line action.  This is so frustrating.

  • How to incorporate a Document(link) for a query for documentation purposes

    Hello Everybody,
    we have on our project very complex queries, where the Queries need to be explained to the user, especially what it means when (s)he enters certain values in the popup and what then the rows and columns of the query then actually state.
    So we would like to have one link, preferably in the generic navigation block of the BEx and the Web. The user should be able to click on the link or icon and so the prepared documentation (pdf, doc or any other file type) opens. The documents could be linked by an administrator in the backend.
    We do not want to have that little paper icon in every cell of the query.
    We explored the functionality in RSA1/Documents, but are not satisfied with the options.
    Does anyone have an idea how to implement such a functionality?
    kind regards
    Marko

    Hi,
    1) create a word document choosing the tecnical name of the query as filename
    2) upload the document in rsa1
    3) in the web template use a javascript to create the link with the technical name of the query and writw the link to the page
    regards,
    Michael

  • Reg Query For Multiple Text Fields

    Hi all
    I am New to this forum..
    I am developing an application for generating reports.
    In my application i have multiple text fields.
    The user might enter any of the textfields or even enter all the fields.
    In those cases how to use the query when some fields are empty??

    Welcome to the forum.
    It always helps to post a small, simplified example of what it is you're trying to achieve.
    (When posting examples, put the {noformat}{noformat} tag before and after the example, so it will get posted formatted on this forum.)
    In those cases how to use the query when some fields are empty??If your textfields serve as parameters/bind variables for you query, then you could use NVL.
    Something like:select ...
    from some_table
    where col1 = nvl(p_col1, col1)
    and col2 = nvl(p_col2, col2)
    And how about wildcards (the '%' or '_' sign), by the way? Are they allowed as well?
    You also might want to read about this approach:
    http://www.oracle.com/technology/oramag/oracle/09-jul/o49asktom.html                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Error executing a query using a DB-Link

    Hi all,
    I'm trying to execute a query on a DB using a connection. I created a DB-LINK on the DB. executing the select:
    select sysdate from dual@lnk_db_prod;
    I get the following error:
    Error starting at line 1 in command:
    select sysdate from dual@lnk_db_prod
    Error at Command Line:1 Column:19
    Error report:
    SQL Error: ORA-01882: timezone region not found
    ORA-02063: preceding line from lnk_db_prod
    The error will be return executing any query on a db-link.
    It appens if I create a db-link using syntax referencing the SID and using the sintax with the complete connection string. Below the two example of db-link DDL commands:
    1.
    CREATE DATABASE LINK lnk_db_prod
    CONNECT TO prod IDENTIFIED BY prod
    USING 'DBPROD';
    2.
    create database link lnk_db_prod2
    connect to prod
    identified by prod
    using '(DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (PROTOCOL = TCP)
    (Host = 10.41.54.156)
    (Port = 1521)
    (CONNECT_DATA = (SID = DBPROD)
    Can you help me, please?
    bye,
    Ivan

    Hi,
    You would be better off posting / searching on other Oracle forums that deal more specifically with Application Servers. I googled "WebLogic set time_zone" and the first three hits were from our forums:
    Default TimeZone
    How to fix msg=ORA-01882: timezone region  not found
    http://kr.forums.oracle.com/forums/thread.jspa?messageID=9400587
    I hope one of the these is what you are looking for.
    Regards,
    Gary Graham
    SQL Developer Team

  • Formatted Search query for Vacation Accrued

    Hi Experts,
    I have a Client who needs to keep tract on the Vacation Accrued on the Employee Master Data. I have created this UDF on the Master Data, but I could not get the query for the Formatted Search right.
    This Formatted search on the UDF ( must look at the OHEM.startDate field and populate the following:
    If it is a still within year of the system date, it must populate 0,
    If it is > 1 year and < 3 years, it must populate 5,
    etc.
    Any help would be greatly appreciated.
    Marli

    Hi Experts,
    Here is what I did for the query mentioned above:
    {SELECT
    CASE
               WHEN (T0.startDate > GETDATE() -356)
                       THEN 0
               WHEN (T0.startDate > GETDATE() - 712)
                       THEN 5
    END
    As 'Vacation Accrued'
    FROM OHEM T0}
    The issue is that if I link this query to the UDF on the EMD, I get a list of 0 and 5 to choose from. I need to populate automatically.
    Thanks.
    Marli

  • Crystal Reports for Eclipse - Builds wrong query for Ingres

    An Ingres user tries to use Crystal Reports for Eclipse with Ingres database. I am attaching here-with the related Ingres forum posting (  http://community.ingres.com/forum/database-drivers-apis/2567-jdbc-crystal-reports-eclipse.html ). Based on further research it appears that the crystal reports engine generates a wrong SQL query for Ingres when the table fields are dragged and dropped from the Field Explorer view to a newly created crystal report. Examining the contents of the table from the Data Explorer view seems to work just fine. Any thoughts/pointers on this issue is greatly appreciated.
    Regards,
    Usha

    Please re-post if this is still an issue to the Java Development - Crystal Reports Forum or purchase a case and have a dedicated support engineer work with you directly

  • Constant DNS querying for 127.0.0.1

    Hello,
    I'm quite puzzled... I noticed a constant low bandwidth traffic on the WAN port of the router and tracked it back to the MacOS X (10.5.2) host constantly DNS querying for 127.0.0.1 (about every three seconds). I am using DHCP and the network configuration picks up the external DNS server.
    I thought this localhost information should be picked up directly from /etc/hosts (in my case)
    cat /etc/hosts
    # Host Database
    # localhost is used to configure the loopback interface
    # when the system is booting. Do not change this entry.
    127.0.0.1 localhost
    255.255.255.255 broadcasthost
    ::1 localhost
    fe80::1%lo0 localhost
    and there should be no need to ask for this reverse DNS name resolution to the external DNS server.
    do I really have to use dscl and create an entry for localhost to stop this DNS querying activity?
    andrea

    and tcpdump reports:
    tcpdump -A -n -i en0 port 53
    tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
    listening on en0, link-type EN10MB (Ethernet), capture size 96 bytes
    00:01:51.873347 IP 192.168.21.100.5353 > 192.168.21.1.53: 13522+[|domain]
    E..YO..........d.......5.EnB4............1.0.0.127
    dnsbugtest.1.0.0.127.in-addr.ar
    00:01:51.889664 IP 62.31.176.39.53 > 192.168.21.100.5353: 13522 NXDomain[|domain]
    E....A@.....>..'...d.5.....S4............1.0.0.127
    dnsbugtest.1.0.0.127.in-addr.ar
    00:01:54.873113 IP 192.168.21.100.5353 > 192.168.21.1.53: 13523+[|domain]
    E..Yd..........d.......5.EnA4............1.0.0.127
    dnsbugtest.1.0.0.127.in-addr.ar
    00:01:54.889388 IP 62.31.176.39.53 > 192.168.21.100.5353: 13523 NXDomain[|domain]
    E....B@.....>..'...d.5.....R4............1.0.0.127
    dnsbugtest.1.0.0.127.in-addr.ar
    00:01:57.872864 IP 192.168.21.100.5353 > 192.168.21.1.53: 13524+[|domain]
    [email protected]
    dnsbugtest.1.0.0.127.in-addr.ar
    00:01:57.888922 IP 62.31.176.39.53 > 192.168.21.100.5353: 13524 NXDomain[|domain]
    E....C@.....>..'...d.5.....Q4............1.0.0.127
    dnsbugtest.1.0.0.127.in-addr.ar
    00:02:00.873402 IP 192.168.21.100.5353 > 192.168.21.1.53: 13525+[|domain]
    E..Y)..........d.......5.En?4............1.0.0.127
    dnsbugtest.1.0.0.127.in-addr.ar
    00:02:00.889180 IP 62.31.176.39.53 > 192.168.21.100.5353: 13525 NXDomain[|domain]
    E....D@.....>..'...d.5.....P4............1.0.0.127
    dnsbugtest.1.0.0.127.in-addr.ar
    00:02:03.872666 IP 192.168.21.100.5353 > 192.168.21.1.53: 13526+[|domain]
    ..........d.......5.En>4............1.0.0.127
    dnsbugtest.1.0.0.127.in-addr.ar
    00:02:03.891466 IP 62.31.176.39.53 > 192.168.21.100.5353: 13526 NXDomain[|domain]
    E....E@.....>..'...d.5.....O4............1.0.0.127
    dnsbugtest.1.0.0.127.in-addr.ar
    00:02:06.872956 IP 192.168.21.100.5353 > 192.168.21.1.53: 13527+[|domain]
    E..Y.(.........d.......5.En=4............1.0.0.127
    dnsbugtest.1.0.0.127.in-addr.ar
    00:02:06.888972 IP 62.31.176.39.53 > 192.168.21.100.5353: 13527 NXDomain[|domain]
    E....F@.....>..'...d.5.....N4............1.0.0.127
    dnsbugtest.1.0.0.127.in-addr.ar
    00:02:09.872419 IP 192.168.21.100.5353 > 192.168.21.1.53: 13528+[|domain]
    E..Y!..........d.......5.En<4............1.0.0.127
    dnsbugtest.1.0.0.127.in-addr.ar
    00:02:09.890732 IP 62.31.176.39.53 > 192.168.21.100.5353: 13528 NXDomain[|domain]
    E....G@.....>..'...d.5.....M4............1.0.0.127
    dnsbugtest.1.0.0.127.in-addr.ar
    ^C
    14 packets captured
    60 packets received by filter
    0 packets dropped by kernel
    pretty clear that the 127.0.0.1 entry in /etc/hosts is unfortunately not used.
    localhost and 127.0.0.1 are part of the loopback interface (lo0) and a lookup from /etc/hosts should suffice! no reason at all to query a DNS service unless explicitly specified.

  • How to find and install the Portal Development Kit (PDK) for SAP Enterprise

    Hi ,
    I have the following question regarding thePortal Development Kit (PDK) for SAP Enterprise Portal 6.0. We have Enterprise Portal 6.0 up and running.
    1> How Do I find whether we already have this inported in the EP environment: I have admin and super admin role and trying to find '*java' in the Role. But didn't find one. Does that mean we don't have this imported already?
    2> I have tried to Find out the PDK( which is also a Business Content) in SDN in the Portal Business content link (https://www.sdn.sap.com/sdn/contentportfolio.sdn) , but haven't found. Where from I download this business content?
    3> What are the special steps that need to be taken to import this and make it working?
    Thanks
    Arunabha

    Hi Arunabha,
    1. Note that the search is case sensitive. Therefore you should search for java and Java.
    2. Download from: https://www.sdn.sap.com/sdn/downloaditem.sdn?res=/html/PDK60_download.htm
    3. Deploy with SDM: http://help.sap.com/saphelp_nw04/helpdata/en/22/a7663bb3808c1fe10000000a114084/content.htm
    Hope that helps,
    Yoav.

Maybe you are looking for

  • Recording 2 inputs at the same time in LE8

    I am using Logic Express 8 on snow leopard and a digidesign Mbox pro 2. I am trying to record my cello through two different inputs on the box, one of them a direct line from an FX pedal im running my cello pickup into, the other an audiotechnica AT2

  • Licence required for Business Package download ?

    Hi, I like to download the "Business Package for Employee Self-Service (mySAP ERP 2004)" for the integration to the SAP Enterprise Portal. I found it here: https://www.sdn.sap.com/irj/sdn/developerareas/contentportfolio But instead of a download link

  • Losing changes to library - iTunes Match.

    I have my library set up locally, and iTunes match on. Every time I make changes to my library (such as album/song ratings that affect smart playlists), I update IM but all my changes are lost every time and it reverts back to the library before the

  • InvalidResponseCodeException: Invalid Response Code: (401) Unauthorized

    Hi, We are creating a new role in ERM.We are at Approval stage. When we have clicked on APPROVAL option, it is giving error like, Unknown error occurred while performing operation (Service call exception; nested exception is: com.sap.engine.services.

  • Content to local storage

    I would like to request to move our ItunesU site for mnstate.edu moved to local storage. I would like to request separate public and private content. Can you let me know the correct procedure in doing both of these requests.