How can I find that an URL link is tored in which transparent table in SAP?

I have a requirment that, I have to display a MSDS( Material Safety Data Sheet ) for every material, that is a line item in any particular sales order.
How can I find that in which table this URL link is getting stored, such that I can retrieve this URL for this particular material.

is this document attached to sales order using GOS (generic object services)
Regards
Raja

Similar Messages

  • I have a friend who is not very savvy with computers. He works on a PC. (There may be versions for pc OS versions) I use a Mac-your website will not show the PC pages to me. How can I find the proper URL to embed in a button?

    I have a friend who is not very savvy with computers. He works on a PC. (There may be versions for pc OS versions) I use a Mac-your website will not show the PC pages to me. How can I find the proper URL to embed in a button?

    Try going to the following
    Tools->Web Developer-> Page Source.
    You can also access this by way of keyboard shortcut Ctrl + U
    The View Page Source option is also available via the right-click menu by just right-clicking inside the page window & it will be the penultimate menu item.

  • How can i find that which page is opened in other browser window

    How can i find that which page is opened in other browser window
    Can i restrict opening of a new instance of browser by end user.
    Thanks in advance.

    you can use Javascript functions/varibles.
    In any page you can insert a special form like this:
    <form name="myNameWindow">
    <input type="hidden" name="myName" value="Ivan_pag01">
    </form>
    and in the other reading that value.
    Obviusly you have to save a reference in a variable of the other window.
    This is possible only if:
    1) other page is in the same browser window but in an other frame
    2) you have generated the other page via an "window.open" function (or your page is generated from it via that function)
    -- Ivan

  • HT4972 i already follow the instruction that u told, but all my apps gone and i need to re-install it. how can i find that backup, and backup my phone?

    i already follow the instruction that u told, but all my apps gone and i need to re-install it. how can i find that backup, and backup my phone?

    Who is "u", and how could the rest of us know what "instructions" you followed or how you backed up your phone??

  • How can i find all included pictures in the Online-Library which are not in a album?

    Hi
    I use Adobe Photoshop Elements 13 with (Revel). My question ist how can i find all included pictures in the Online-Library which are not in a album? I would like only to have pictures in Library which are included in a online album.

    Hi there,
    I'm afraid I don't quite understand your question. All images are in your Library and only those you specifically select from that Library would be in an Album. What platform are you using? Revel Mac, Elements, web browser, etc?
    Here is a link with some helpful information:
    FAQ: File Basics: How do I Upload, Download, Share, and Delete files in Revel?
    Thank you,
    Glenyse

  • How can I find the schemas used in a database?  Any system table contains?

    How can I find the schemas used in a database? 
    Any system table contains?
    I would like to know sql statement (dictionary object name) which tells the all schema s in a database like dba_users.

    Hello,
    this SQL should help:
    db2 "select schemaname from syscat.schemata"

  • HT1349 How can I find out my apple care register under my which email account

    How can i find out my apple care register under my which email account?

    settings->itunes & app store the appleID is listed
    same with settings->iCloud

  • How can I find T61 15-inch link from lenovo products list?

    From lenovo Canada website, I know you have a special deal in thinkpad. I have seen a thinkpad 15-inch in your store list last weekend, but I can't find it now. Please tell me how can I find it if I want to purchase it on-line. Thanks!
    Btw, I live in the Toronto. Could you tell me where I can find a Thinkpad store in Toronto?

    Hi,
    The best way to locate the direct link to a catalog or product is to access your site via BC admin. 
    - http://shopatjem.businesscatalyst.com/Admin (eCommerce > Catalog)
    From here you'll be able to grab the URL and place it to your menu.
    Hope this helps!
    -Sidney

  • How can i find that how much tablespace is filled,how much is free.

    Dear All,
    How can i find how much tablespace is filled and how much is free.
    How much datafile is filled and how much is free.
    Thanks in advance
    Mahi

    maybe you like this:
    test: SQL>select FILE_NAME,F_CNT,FILE_SIZE,FREE,USED,PCT_USED
      2    from (
      3    select
      4        substr(decode( grouping(b.file_name),  1, decode( grouping(b.tablespace_name),  1, rpad('  TOTAL:',49,'=')||' ',  rpad('  SubTotal tablespace '||b.tablespace_name||':',49,'.')||' '),   b.file_name ),1,50) file_name,
      5        decode( grouping(b.file_name),  1, count(b.file_id), null) F_CNT, sum(round(Kbytes_alloc/1024,2)) file_size,
      6        sum(round((kbytes_alloc-nvl(kbytes_free,0))/1024,2)) used,
      7        round(sum((kbytes_alloc-nvl(kbytes_free,0)))/sum(Kbytes_alloc)*100,2)  pct_used,
      8        sum(round(nvl(kbytes_free,0)/1024,2)) free ,
      9        grouping(b.file_name) as grp_file
    10    from
    11      ( select sum(bytes)/1024 Kbytes_free,
    12                max(bytes)/1024 largest,
    13                tablespace_name,
    14                file_id
    15            from     sys.dba_free_space
    16              group by tablespace_name, file_id) a,
    17      ( select sum(bytes)/1024 Kbytes_alloc, tablespace_name,
    18               file_id, file_name, count(*) over (partition by tablespace_name) nbtbsfile, count(distinct tablespace_name) over () nbtbs
    19           from     sys.dba_data_files
    20              group by tablespace_name, file_id, file_name ) b
    21   where a.tablespace_name (+) = b.tablespace_name
    22     and   a.file_id(+) = b.file_id
    23      group by rollup(b.tablespace_name,file_name)
    24      );
    FILE_NAME                                          F_CNT FILE_SIZE(MB) FREE(MB) USED(MB) PCT_USED(%)
    /u01/oracle/test/mydatabase/abc.dbf                                750      204      546       72.82
      SubTotal tablespace PLS:.......................      1           750      204      546       72.82
    /u01/oracle/test/mydatabase/test01.dbf                               2        2        0        3.13
      SubTotal tablespace TEST:......................      1             2        2        0        3.13
    /u01/oracle/test/mydatabase/users01.dbf                             16       12        4       24.22
      SubTotal tablespace USERS:.....................      1            16       12        4       24.22
    /u01/oracle/test/mydatabase/sysaux01.dbf                           440      107      333       75.67
      SubTotal tablespace SYSAUX:....................      1           440      107      333       75.67
    /u01/oracle/test/mydatabase/system01.dbf                           564      112      452       80.14
      SubTotal tablespace SYSTEM:....................      1           564      112      452       80.14
    /u01/oracle/test/mydatabase/example01.dbf                          128       65       63       49.41
      SubTotal tablespace EXAMPLE:...................      1           128       65       63       49.41
    /u01/oracle/test/mydatabase/users0101.dbf                        3,064        0    3,064         100
    /u01/oracle/test/mydatabase/users0102.dbf                        4,088    3,360      728       17.82
      SubTotal tablespace users01:...................      2         7,152    3,360    3,792       53.03
    /u01/oracle/test/mydatabase/test_tts01.dbf                           5        5        0         2.5
      SubTotal tablespace TEST_TTS:..................      1             5        5        0         2.5
    /u01/oracle/test/mydatabase/undotbs01.dbf                        2,048    2,021       27        1.32
      SubTotal tablespace UNDOTBS1:..................      1         2,048    2,021       27        1.32
    /u01/oracle/test/mydatabase/tsbigfile.dbf                            2        2        0        6.25
      SubTotal tablespace TSBIGFILE:.................      1             2        2        0        6.25
      TOTAL:=========================================     11        11,107    5,889    5,218       46.98
    22 rows selected.

  • How can  i find that a phone is iphone 4 or 4s?

    how can i recongnize a phone is iphone 4 or 4s ?

    Appearance-wise...
    On the left side of an iPhone 4s, there's a line above the volume buttons while on an iPhone 4, there's no line.

  • How can I find the correct URL

    I am new and having a problem trying to use Jconnect with the sybase database on my PC. I got an exception as follows after run in JBuilder for the connection code like this:
    Connection conn = DriverManager.getConnection("jdbc:sybase:Tds:localhost:7878", userid, password);
    ====================
    java.sql.SQLException: JZ006: Caught IOException: java.net.ConnectException: Connection refused: connect
         at com.sybase.jdbc2.jdbc.ErrorMessage.raiseError(ErrorMessage.java:448)
         at com.sybase.jdbc2.tds.Tds.handleIOE(Tds.java:2804)
         at com.sybase.jdbc2.tds.Tds.login(Tds.java:338)
         at com.sybase.jdbc2.jdbc.SybConnection.tryLogin(SybConnection.java:213)
         at com.sybase.jdbc2.jdbc.SybConnection.regularConnect(SybConnection.java:190)
         at com.sybase.jdbc2.jdbc.SybConnection.<init>(SybConnection.java:169)
         at com.sybase.jdbc2.jdbc.SybConnection.<init>(SybConnection.java:122)
         at com.sybase.jdbc2.jdbc.SybDriver.connect(SybDriver.java:175)
         at java.sql.DriverManager.getConnection(DriverManager.java:512)
         at java.sql.DriverManager.getConnection(DriverManager.java:171)
         at dbtest.DBConnect.main(DBConnect.java:56)
    ===========================
    I think the main issue here is the port on my localhost, how to define or get the correct the port???
    Thanks
    czh123

    What port is the listener attached to? When you installed Sybase, what port did you tell it to use? Is the listener up and running?
    Try telnet into that host and port:
    telnet 127.0.0.1 7878
    If you can't telnet in, your app won't be able to connect, either.

  • Can I upgrade from snow leopard 10.6.8 to mountain lion? Not sure how old my MacBook is. How can I find that information?

    Can I upgrade from snow leopard 10.6.8 to mountain lion on my MacBook?

    Choose About this Mac from the Apple menu, click on More Info, and compare the model identifier with MacBook5,1, which is the earliest MacBook that can run Mountain Lion and newer.
    A MacBook older than that which has a Core 2 Duo(not Core Duo) or better CPU and at least 2GB of RAM can run Lion 10.7, which is available by clicking here. Neither Mountain Lion nor Lion support PowerPC software such as Microsoft Office 2004.
    (122866)

  • An audiobook I purchased keeps referring to "my PDF" that apparently came with the download. How can I find that?

    In Bossypants, Tina Fey as the author and presenter, refers several times to pictures and tells the listener to refer to "your PDF" to see the picture she is talking about. I've never heard of that, but think it is really cool that audiobook purchases can still get pictures that are in the hardcopy. Please help! Thanks.

    You can but not for free. You can purchase replacements from Apple:
    Apple Store Customer Service at 1-800-676-2775 or visit online Help for more information.
    To contact product and tech support visit online support site.
    You can also purchase the Snow Leopard DVD for $29.00 at a local Apple retailer or from the Online Store.

  • How can I find an emergency alert that I lost before I got to read?

    Last night I got an emergency alert. I didn't have my glasses on and as I reached for the phone, I lost the message. How can I find that message? Thanks.

    Hi Mamarazzi002,
    Thanks for using Apple Support Communities.  You can view missed alerts using Notification Center:
    iOS: Understanding notifications
    http://support.apple.com/kb/HT3576
    By default Notification Center will show you Today view, which gives you a summary of what you need to know about for the day and a peek at tomorrow. The new All and Missed views let you see all your alerts or just those you haven't addressed in the last 24 hours. Swipe right while on Today view to see the All view. Swipe right while on All view to see Missed view.
    Cheers,
    - Ari

  • How can i organise that my website has an icon before the name when someone puts it on his bar or tab?

    I am a small publisher that wants to improve his website.
    How can I organise that an icon links to my website name when you put it on a bar/tab?

    IMP_ATGordon wrote:
    ... there's just a blank space where the .flv should be. (This also happens on computers running XP and Mac OSX.)
    To clarify, it's the problem of inconsistency that persists. That is, the application displays fine on some XP computers, but not on others.

Maybe you are looking for