How to I find the 5 star rating system for Dreamweaver cc

I installed it, it says it's installed, but I can't find where it installed its self.  Where do I find it to install in my pages
Thanks

Oh geez. you mean comes as a download file and not an install like phone gap. That just doesn't make sense to me. If it's an addon, it should add on.
thanks

Similar Messages

  • How do I find the image name and media_link for an ubuntu image in the Gallery?

    I am trying to create VM using Python API.  
    I have a custom Linux image:
    image_name = 'cloudN-Azure-20150205-os-2015-02-05'
    media_link = 'https://portalvhds10ssz63zgvb9g.blob.core.windows.net/vhds/cloudN-Azure-20150205-os-2015-02-05.vhd'
    When I used this image to create VM, it failed.
    I would like to use the ubuntu 1204 image in the Gallery.
    How do I specify the image_name and media_link in my Python code?  Basically, where and how do I find the image name and media_link for an image in the Azure image Gallery?
    Thanks in advance...

    hi sir,
    Did you try to use "List OS Image"? we can get the property form the results:
    result = sms.list_os_images()
    for image in result:
    print('Name: ' + image.name)
    print('Label: ' + image.label)
    print('OS: ' + image.os)
    print('Category: ' + image.category)
    print('Description: ' + image.description)
    print('Location: ' + image.location)
    print('Affinity group: ' + image.affinity_group)
    print('Media link: ' + image.media_link)
    print('')
    Please try it. Any questions or it doesn't work, please let me know.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How do i find the passkey to my bluetooth for my iPod because i want to pair it with my ps3

    How do i find the passkey to my bluetooth for my iPod because i want to pair it with my ps3

    For what purpose? If the PS3 can act like a Bluetooth speaker than just pair it, no passcode required. The iPod does not have many Bluetooth profiles. However, also see:
    iOS: Third-party Bluetooth headsets, headphones, and keyboards
    iOS: Supported Bluetooth profiles

  • How can we find the list of user exits for a transaction

    hi all
    iam new in user exits please send the basic details
    how can we find the list of user exit for a perticular transaction and how can we determine that a particulr user exit is used for a field
    regards
    jagadish

    hi,
    check the below links for userexits
    http://help.sap.com/saphelp_46c/helpdata/en/64/72369adc56d11195100060b03c6b76/frameset.htm
    FAQ's
    http://http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.ficoexpertonline.com/downloads/User%20ExitsWPedit.doc
    http://www.easymarketplace.de/userexit.php
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    1. what is the defference between enhancement and user-exits?
    http://www.sap-img.com/abap/difference-between-badi-and-user-exits.htm
    Re: difference between user exits & customer exits
    Some Questions ! Plz help...
    http://searchsap.techtarget.com/expert/KnowledgebaseAnswer/0,289625,sid21_gci1190924_tax299358,00.html?bucket=ETA
    2. Difference between CMOD and SMOD?
    http://www.sap-img.com/abap/what-is-the-difference-between-smod-and-cmod.htm
    http://www.sap-img.com/abap.htm
    http://sap.ittoolbox.com/groups/technical-functional/sap-r3-dev/diff-between-cmod-and-smod-236095
    http://sap.ittoolbox.com/groups/technical-functional/sap-r3-dev/diff-between-cmod-and-smod-236107
    check these links..
    http://www.sapgenie.com/abap/tips_and_tricks.htm
    http://www.sap-img.com/abap/field-exits-smod-cmod-questions-and-answers.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    passing selet-option variable to subrouine...
    Finding the user-exits of a SAP transaction code
    Finding the user-exits of a SAP transaction code
    Enter the transaction code in which you are looking for the user-exit
    and it will list you the list of user-exits in the transaction code.
    Also a drill down is possible which will help you to branch to SMOD.
    Written by : SAP Basis, ABAP Programming and Other IMG Stuff
                 http://www.sap-img.com/*
    report zuserexit no standard page heading.
    tables : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
             tables : tstct.
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    parameters : p_tcode like tstc-tcode obligatory.
    select single * from tstc where tcode eq p_tcode.
    if sy-subrc eq 0.
       select single * from tadir where pgmid = 'R3TR'
                        and object = 'PROG'
                        and obj_name = tstc-pgmna.
       move : tadir-devclass to v_devclass.
          if sy-subrc ne 0.
             select single * from trdir where name = tstc-pgmna.
             if trdir-subc eq 'F'.
                select single * from tfdir where pname = tstc-pgmna.
                select single * from enlfdir where funcname =
                tfdir-funcname.
                select single * from tadir where pgmid = 'R3TR'
                                   and object = 'FUGR'
                                   and obj_name eq enlfdir-area.
                move : tadir-devclass to v_devclass.
              endif.
           endif.
           select * from tadir into table jtab
                         where pgmid = 'R3TR'
                           and object = 'SMOD'
                           and devclass = v_devclass.
            select single * from tstct where sprsl eq sy-langu and
                                             tcode eq p_tcode.
            format color col_positive intensified off.
            write:/(19) 'Transaction Code - ',
                 20(20) p_tcode,
                 45(50) tstct-ttext.
                        skip.
            if not jtab[] is initial.
               write:/(95) sy-uline.
               format color col_heading intensified on.
               write:/1 sy-vline,
                      2 'Exit Name',
                     21 sy-vline ,
                     22 'Description',
                     95 sy-vline.
               write:/(95) sy-uline.
               loop at jtab.
                  select single * from modsapt
                         where sprsl = sy-langu and
                                name = jtab-obj_name.
                       format color col_normal intensified off.
                       write:/1 sy-vline,
                              2 jtab-obj_name hotspot on,
                             21 sy-vline ,
                             22 modsapt-modtext,
                             95 sy-vline.
               endloop.
               write:/(95) sy-uline.
               describe table jtab.
               skip.
               format color col_total intensified on.
               write:/ 'No of Exits:' , sy-tfill.
            else.
               format color col_negative intensified on.
               write:/(95) 'No User Exit exists'.
            endif.
          else.
              format color col_negative intensified on.
              write:/(95) 'Transaction Code Does Not Exist'.
          endif.
    at line-selection.
       get cursor field field1.
       check field1(4) eq 'JTAB'.
       set parameter id 'MON' field sy-lisel+1(10).
       call transaction 'SMOD' and skip first   screen.
    *---End of Program
    if u want to find the function exit
    then check the below code
    REPORT ZV_FIND_EXIT NO STANDARD PAGE HEADING.
    TABLES : TSTC, TADIR, MODSAPT, MODACT, TRDIR, TFDIR, ENLFDIR.
    TABLES : TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE OBLIGATORY.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR WHERE FUNCNAME =
    TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'SMOD'
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT WHERE SPRSL EQ SY-LANGU AND
    TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(95) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Exit Name',
    21 SY-VLINE ,
    22 'Description',
    95 SY-VLINE.
    WRITE:/(95) SY-ULINE.
    LOOP AT JTAB.
    SELECT SINGLE * FROM MODSAPT
    WHERE SPRSL = SY-LANGU AND
    NAME = JTAB-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    WRITE:/1 SY-VLINE,
    2 JTAB-OBJ_NAME HOTSPOT ON,
    21 SY-VLINE ,
    22 MODSAPT-MODTEXT,
    95 SY-VLINE.
    ENDLOOP.
    WRITE:/(95) SY-ULINE.
    DESCRIBE TABLE JTAB.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No of Exits:' , SY-TFILL.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'No User Exit exists'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'Transaction Code Does Not Exist'.
    ENDIF.
    AT LINE-SELECTION.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(4) EQ 'JTAB'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    or
    1. in se11, goto table MODSAP
    View table contents
    2. in Type field, enter 'E' (for function exit)
    3. For that tcode, u should know the program name.
    eg. SAPLLMOB
    4. then type SAPLLMOB and execute
    or
    REPORT z34331_user_exit .
    TABLES : tstc, "SAP Transaction Codes
    tadir, "Directory of Repository Objects
    modsapt, "SAP Enhancements - Short Texts
    modact, "Modifications
    trdir, "System table TRDIR
    tfdir, "Function Module
    enlfdir, "Additional Attributes for Function Modules
    tstct. "Transaction Code Texts
    DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
    DATA : field1(30).
    DATA : v_devclass LIKE tadir-devclass.
    SELECTION-SCREEN BEGIN OF BLOCK a01 WITH FRAME TITLE text-001.
    SELECTION-SCREEN SKIP.
    PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN END OF BLOCK a01.
    START-OF-SELECTION.
    Validate Transaction Code
    SELECT SINGLE * FROM tstc
    WHERE tcode EQ p_tcode.
    Find Repository Objects for transaction code
    IF sy-subrc EQ 0.
    SELECT SINGLE * FROM tadir
    WHERE pgmid = 'R3TR'
    AND object = 'PROG'
    AND obj_name = tstc-pgmna.
    MOVE : tadir-devclass TO v_devclass.
    IF sy-subrc NE 0.
    SELECT SINGLE * FROM trdir
    WHERE name = tstc-pgmna.
    IF trdir-subc EQ 'F'.
    SELECT SINGLE * FROM tfdir
    WHERE pname = tstc-pgmna.
    SELECT SINGLE * FROM enlfdir
    WHERE funcname = tfdir-funcname.
    SELECT SINGLE * FROM tadir
    WHERE pgmid = 'R3TR'
    AND object = 'FUGR'
    AND obj_name = enlfdir-area.
    MOVE : tadir-devclass TO v_devclass.
    ENDIF.
    ENDIF.
    Find SAP Modifactions
    SELECT * FROM tadir
    INTO TABLE jtab
    WHERE pgmid = 'R3TR'
    AND object = 'SMOD'
    AND devclass = v_devclass.
    SELECT SINGLE * FROM tstct
    WHERE sprsl EQ sy-langu
    AND tcode EQ p_tcode.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    SKIP.
    IF NOT jtab[] IS INITIAL.
    WRITE:/(95) sy-uline.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 sy-vline,
    2 'Exit Name',
    21 sy-vline ,
    22 'Description',
    95 sy-vline.
    WRITE:/(95) sy-uline.
    LOOP AT jtab.
    SELECT SINGLE * FROM modsapt
    WHERE sprsl = sy-langu AND
    name = jtab-obj_name.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    WRITE:/1 sy-vline,
    2 jtab-obj_name HOTSPOT ON,
    21 sy-vline ,
    22 modsapt-modtext,
    95 sy-vline.
    ENDLOOP.
    WRITE:/(95) sy-uline.
    DESCRIBE TABLE jtab.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No of Exits:' , sy-tfill.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'No User Exit exists'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'Transaction Code Does Not Exist'.
    ENDIF.
    Take the user to SMOD for the Exit that was selected.
    AT LINE-SELECTION.
    GET CURSOR FIELD field1.
    CHECK field1(4) EQ 'JTAB'.
    SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    Regards,
    Naveen

  • How do you find the phone's mac address for Droid RAZR Maxx HD?

    how do you find the phone's mac address for Droid RAZR Maxx HD?

    Ann154 wrote:
    WalrusM wrote:
    how do you find the phone's mac address for Droid RAZR Maxx HD?
    It is listed under the advanced options for the WiFi settings or About Phone > Status within the phone's settings
    Motorolas list them under About Phone > Status.
    Edit:  Oh, snap!  It is listed in both places.     Nevermind!  Please excuse! 

  • How do i find the wifi network and password for iphone 4s

    how do i find the wifi network name and passwordfor iphone 4s?

    Well Netgear will not know your password. The factory default user name for netgear is usually admin and the factory default is password is password.  Go to an internet browser and in the url windo type in 192.168.0.1 and if I am right a login window will appear.  Try the factory defaults.

  • Where do I find the "Number of Qualifying Systems for Right To Copy? I qualified for a free upgrade of montain lion.

    I was filling the form to get a free upgrade for the mountain lion. I qualified for that because I bought it in the time stipulated. When they asked me about the number of qualifying systems for right to copy I don't know what to write.

    That's for organizations with group licenses. If you are applying as an individual, you can ignore that field.

  • How effective is the five star rating system?

    I'm all for rating buyers and sellers on eBay so that one can distinguish the good buyers and sellers from those that are perhaps a little less professional.  However, I've had sellers ask me to leave a 5 star rating across the board, as they claim anything less is considered a negative rating.  Most sellers write thank you on the items they send but in many cases that's the only communication that you've had with them.  What does that warrant on the rating system to provide honest feedback?  When the description on an item doesn't really tell you anything other than say "old stamp".  How do you rate that?  It is an old stamp; so looked at one way the description is very accurate but it's not really telling you anything about the item..   I may be a bit naive here but I've never seen a list of the criteria used to determine "very accurate", "very fast", "very satisfied" or "very quickly".  For the rating system to accurately reflect how good or poor the buyers and sellers are it needs to be objective.  That is to say that buyers and sellers must have a generally agreed upon statement of what constitutes the categories from 1 to 5.  After all one person's "very fast" (it shipped within a week) could be another person's "very slow".  Subjective ratings are open to interpretation and all one sees is the feedback comment and the ratings not how the person determined the ratings.  I think this is a discussion that would help to improve the feedback system and make it a more accurate reflection of how both buyers and sellers do business in this arena.

    It seems now that Ebay let now the sellers decide when it is ok to receive an item  Not exactly. EBay removes Seller Protection if the seller does not ship within seven days. Which has been the policy for many years. The delivery time is mostly due to the shipping service (China Post, USPS, Canada Post) although if an overseas seller uses Surface Shipping, he should understand that it will be on the high seas for six weeks to three months.The 'expected delivery time' is given by the shipping service not by the seller. Paypal is now allowing buyers to open disputes for up to 180 days**, in part as a reaction to unhappy buyers who have been hornswoggled into waiting past the former 45 day deadline for delivery. So really, there is now more power in the hands of the buyer. In my opinion, and I have lots of opinions. no buyer should wait more than 30 days for a delivery.Normal delivery from Europe* is 10 to 15 days.From Canada or the USA 15 to 20 days.From Asia 20 to 30 days. After that contact the seller and if neither tracking information nor a refund arrives within 24 hours, open a Dispute.    *European sellers use Air Mail as default. Asian sellers, especially those using Free Shipping, use Surface as a default. **(Or just don't ship at all and then promise a replacement which never arrives, but by then the Dispute period of 45 days has passed.)

  • How do you find the "iT 1.tmp" file for iTunes?

    Hello,
    I am currently having problem with my iTunes library. A couple of days ago, very randomly, most of my music and movies disappeared from my iTunes library. I had recently updated iTunes, but it was a week after the update that this happened. All of my music and movies that I had added through importing CDs or copying from a hard drive were no longer in my library, and all of the music I had purchased from iTunes had the iCloud symbol next to them, and needed to be re-downloaded to actually have them on my computer. My iPod also didn't recognise it as the same library, asking if I wanted to remove all music on it before syncing.
    The strange thing is that all of my music and movies are still in the same place; they're in the iTunes media file and everything is there, it just doesn't appear on my library. After a bit of searching I found out that others had had the same problem, and it was apparently fixed by deleting the "iTunes library.itl" file and renaming the "iT 1.tmp" file with "iTunes library.itl". The only problem is that I can't find "iT 1.tmp" anywhere.
    If anybody could help that would be amazing, as I have lost 3000 songs and I have no idea why. It would also be much too time consuming to import everything again.
    Thanks

    Hi Jonesy0309,
    I'm sorry to hear about the issues you have been having with iTunes. I also apologize, but I'm a bit unclear on the directions you were following regarding your iTunes library. If you are trying to recreate your iTunes Library file, you may find the steps outlined in the following article helpful:
    iTunes: How to re-create your iTunes library and playlists - Apple Support
    Regards,
    - Brenden

  • How can i find the list of backend systems connected to portal?

    Hi Gurus,
    How can find the back end systems that are connected to portal?
    Please give a clear note on this .......
    Thanks in Advance,
    Dharani

    Hi,
    you can read the following about the system landscape.
    http://help.sap.com/saphelp_nw70/helpdata/en/0d/17df3d2cae445ae10000000a11405a/frameset.htm
    You can verify the JCO connection too.
    Go to http://portal.domain.com:50x00
    Web Dynpro -> Content Administrator -> Maintain JCo Destinations
    Brad

  • How can I find the serial number from CS4 for my mac? I remembered it being on the box, but now I can't find it, and they website I thought to have registered it to doesn't recognize the e-mail I would have used then I got it.

    I don't know if this is the right place to ask this, but the website recommend I ask here. I bought the CS4 when I bought my macbook pro in when I was in college. I remember there being 2 serial numbers, so I could install to one other computer. That macbook pro finally died, and now I have a new mac which I am trying to re-install the creative suite on, only I can't find the serial number.  The two stickers on the back of the CS4 box (which i thought were the serial numbers) don't look like that they're asking for, and the website listed on the inside of the box for me to register to doesn't recognize my e-mail (which hasn't changed since buying CS4).  Any idea where I could find the serial number?

    To locate the serial number:
    http://helpx.adobe.com/x-productkb/global/find-serial-number.html

  • How do I find the code behind these variables for 0COSTELMNT?

    0N_COEL
    0N_ANPER
    0N_ANMAT
    0N_ANDEP
    0N_ANTRV
    0N_ANITC
    I have already looked in RSVAREXIT* and  RREX_VARIABLE_EXIT.

    If I right-click "CE" on the left-most panel (InfoProvider), I get the following options:
    Display, New Variable, Cut, Copy, Where-used
    If I right-click "0N_COEL" on the left-most panel (InfoProvider), I get the following options:
    Restrict, Save-as, Cut, Copy, Remove
    If I select-values and right-click I get:
    Exclude Selections, Save Selections, Upload Selections, Download Selections

  • How do I find the codec used for a .mov file?

    I have a .mov file from 2001 that I can't play. How do I find the correct codec to use for this. Is there somewhere in the file itself some kind of reference to the codec used? I've installed pretty much everything I could find in terms of codecs. I don't care whether on mac or windows. Just need the right codec.
    Thorbjørn Vynne

    Still no luck
    If anybody out there wanna give it a try please download this clip
    http://mhp.tv2nord-digital.dk/fileadmin/resources/thor/dv-00.27.04.11-V180.mov
    If you can play it please please let me know with which codec.... I have a whole bunch of files with this codec I need to use
    Best regards
    Thorbjørn

  • How do I find the date and time stamp on pictures?

    How do I find the date and time stamp for my pictures?

    The Photos app will not do this but other apps will. iPhoto has an icon that when tapped with the photo open will show the EXIF information you are looking for. iPhoto is not free but you can purchase it in the App Store.
    There may be other photo apps that provide this information as well.
    PhotoForge2 will show the EXIF data as well as the GPS data if it is available.

  • Photos/Fotos: One of the most important selection features the is "Star" rating. How on earth can you stop supporting this feature ???

    One of the most important selection features the is "Star" rating.
    How on earth can Apple stop supporting this feature ???
    My iPhoto lib contains >100´000 photos. All of them are rated with stars. Dependent on the rating I distribute the photos on >20 apple devices in our family.
    Many friends of mine do the same.
    It´s time for a severe request to Apple to take over that feature from iPhoto to Photos. They should start to learn, that people that liked their previously released software have spent hundreds of hours to adapt their data with that software to their needs. I´m using Mac´s since 1984. Might be that I start thinking about using different systems if they continue to through away my efforts from the past...
    If you dislike Apples latest moves and like this feature too you need to provide feedback to them on the following web page: www.apple.com/feedback
    Horst

    Remember that star ratings are not part of standard metadata.

Maybe you are looking for

  • Problem Importing CD to iTunes

    I am trying to import a CD into iTunes.  Everything appears OK (orange goes to green for all the tracks) but when I open iTunes only half the tracks are present.  What is wrong?  Thanks

  • Captions Not Showing in List View Though They are There

    Ever since I've been using Aperture I've had issues with Captions not showing in List View. The caption is there and shows in the Info Panel but does not show in the List View. I close Aperture, reopen, and it appears in List View. Frustrating when t

  • Will not print black ink after installing new HP cartridge

    HP Officejet 4620, Windows 7....installed new HP black ink cartridge and now it will not print black at all. I followed all online tips in the help section, even cleaned the vents on the cartridge itself but only prints blank page. No error messages

  • I am not able to access the email, I do not know what the password is and cannot seem to get it reset.

    the image keeps telling me Login Failed Login to server mail.portnel.com failed. with options of Retry / Enter New Password / Cancel I really need this fixed as I am looking for work and this is my main email

  • CS11 enhancment

    Hi expert i have requirement where i need to create a extra column in the line of component requirement as (total stock available for that component ). for the same i thought to pick the data from MMBE, but its not working. Could someone give me prop