Phtmlb:ganttChart without svg

Hi all,
Is there any way to implement a click-enable Gantt Char,
without forcing the users to install the sgv viewer?
Maybe another tag, that generates the same kind of object?
Thanks and Best Regards,
Paulo Ruivo

Hi all,
Is there any way to implement a click-enable Gantt Char,
without forcing the users to install the sgv viewer?
Maybe another tag, that generates the same kind of object?
Thanks and Best Regards,
Paulo Ruivo

Similar Messages

  • phtmlb:ganttchart. and "click to activate"

    ok, i get the reason. the security context of the IE blocks objects from being enabled automatic. i know of several ways to use javascript to load the controls from an external page that is then included in the main page.
    i use this to render things like OWC controls and the like without having to worry about the "click to activate".
    is there a way to get this working for the <phtmlb:ganttchart>. its beyond application breaking that you have to activate the control, and every click in the control reloads the page hence you have to reactivate the control over and over. very frustrating for the users if your making an interactive calender control.
    is there a way of fixing this that you found?

    oh well. decided i did want the ganttchart rendered with the svg graphics so did a reimplementation of the phtmlb:ganntchart solution, correcting the issues with the click to activate and few other nice things i wanted to include.
    if anyone wants to se how :
    origianl :
    CONCATENATE '<embed src="' dataurl '" height="'
                  chartheight
                  'px" width="'
                  chartwidth
                  'px" type="image/svg+xml" pluginspage="http://www.adobe.com/svg/viewer/install/">'
                  '</embed>'
             INTO html.
    me->print_string( html ).
    Interaction parameters
    iparameters = 'Test'.
      concatenate '<input type="hidden" name="'
                  iparameters_name
                  '" value="'
                  iparameters
                  '">'
             into html.
      me->print_string( html ).
    modified :
    CONCATENATE '<embed src="' dataurl '" height="'
                  chartheight
                  'px" width="'
                  chartwidth
                  'px" type="image/svg+xml" pluginspage="http://www.adobe.com/svg/viewer/install/">'
                  '</embed>'
             INTO html.
    me->print_string( html ).
    Interaction parameters
    iparameters = 'Test'.
      concatenate '<input type="hidden" name="'
                  iparameters_name
                  '" value="'
                  iparameters
                  '">'
             into html.
      me->print_string( html ).
      concatenate '<input type="hidden" name="url" value="' dataurl '">' into html.
      me->print_string( html ).
    CONCATENATE '<DIV><script src="gantt.js?url=' dataurl '&width=' chartwidth ' &height=' chartheight '">' '</script></DIV>' into html.
      me->print_string( html ).
    basically i removed the rendering of the object in the page, and passed the parameters to a js page that will do the rendering for me,
    gantt.js simply contains this in essense.
    document.write('<embed src="<%=dataurl %>" height="<%=chartheight%>px" width="<%=chartwidth%>px" type="image/svg+xml" pluginspage="http://www.adobe.com/svg/viewer/install/">');
    document.write('</embed>');
    so render the object in the external file, include it in the reimpemented phtmlb extension and voila you got a ganttchart that works without the click to activate problem.

  • Width of phtmlb:ganttChart

    I just inserted a phtmlb:ganttChart into my WebAS application. Cool stuff.
    Now, I wonder how to set the width of the chart.
    In my case, the chart is inserted into a table, which has width="100%". If the time frame that is shown in the chart is too big to fit on my screen, then everything that does not fit on the screen is cut off and no scrollbars are shown. The same happens is the height of the chart gets too big for my screen (too many rows). Then, the rows at the bottom are cut off as well.

    Hi Singh,
    here is the code i used. hope it's helpful.
      <table width="100%" cellpadding="1" cellspacing="0" border="0">
        <tr>
          <td>
            <xhtmlb:overflowContainer id     = "ovfGanttMilestones"
                                      mode   = "SCROLL_WITH_REPOSITION"
                                      width  = "99%"
                                      height = "400px" >
            <phtmlb:ganttChart  id               = "ganttMilestonesGraphic"
                                background       = "GRID"
                                displayWeekends  = "HIGH_LIGHTED"
                                rangeStartDate   = "<%= controller->mv_start_date_gantt%>"
                                rangeEndDate     = "<%= controller->mv_end_date_gantt%>"
                                rangeRows        = "<%= LINES( lt_milestones ) + 1%>"
                                rangeType        = "<%= controller->mv_range_type%>"
                                onRangeDown      = "ganttRangeDown"
                                onRangeUp        = "ganttRangeUp"
                                validate         = "true" >
    <%-- make header columns  --%>
            <% IF lt_milestones IS NOT INITIAL. %>
            <phtmlb:ganttChartHierarchy row   = "1"  collapsed = "FALSE" />
            <% ENDIF. %>
            <phtmlb:ganttChartTextColumn title = "Nr" width="4"/>
              <phtmlb:ganttChartText   row              = "1"
                                       text             = " "
                                       bold             = "true"
                                       indentationLevel = "0"   />
            <% LOOP AT lt_milestones ASSIGNING <fs>. %>
                <phtmlb:ganttChartText row              = "<%= sy-tabix + 1 %>"
                                       text             = "<%=<fs>-mlstn%>"
                                       indentationLevel = "1"   />
            <% ENDLOOP.%>
            <%-- text column 2--%>
            <phtmlb:ganttChartTextColumn title = "Start" width="11"/>
              <phtmlb:ganttChartText   row              = "1"
                                       text             = "Milestones"
                                       bold             = "true"
                                       />
            <% LOOP AT lt_milestones ASSIGNING <fs>. %>
                <phtmlb:ganttChartText row              = "<%= sy-tabix + 1 %>"
                                       text             = "<%= <fs>-mlstxt%>"
                                       />
            <% ENDLOOP.%>
            <%-- text column 3--%>
            <phtmlb:ganttChartTextColumn title = "End" width="11"/>
              <phtmlb:ganttChartText   row              = "1"
                                       text             = " "
                                       bold             = "true"
                                       />
            <% LOOP AT lt_milestones ASSIGNING <fs>. %>
                <phtmlb:ganttChartText row              = "<%= sy-tabix + 1 %>"
                                       text             = "<%=<fs>-mlstxt_end%>"
                                       />
            <% ENDLOOP.%>
    <%-- now show ganttChart-Elements for milestones --%>
            <% LOOP AT lt_special_milestones ASSIGNING <fs>. %>
              <% IF <fs>-mlst_datum_end IS INITIAL. %>
                  <phtmlb:ganttChartActivity row       = "<%= sy-tabix + 1 %>"
                                             startDate = "<%= <fs>-mlst_datum %>"
                                             endDate   = "<%= <fs>-mlst_datum %>"
                                             text      = "<%= <fs>-mlstxt %>"
                                             type      = "MILESTONE"
                                             color     = "GROUP1" />
              <% ELSE.%>
                  <phtmlb:ganttChartActivity row       = "<%= sy-tabix + 1 %>"
                                             startDate = "<%= <fs>-mlst_datum %>"
                                             endDate   = "<%= <fs>-mlst_datum_end %>"
                                             text      = "<%= <fs>-mlstxt %>"
                                             type      = "DEFAULT"
                                             color     = "GROUP1" />
              <% ENDIF. %>
            <% ENDLOOP.%>
            </phtmlb:ganttChart>
            </xhtmlb:overflowContainer>
          </td>
        </tr>
        <tr>

  • Retrieve ICM url

    hi, is there a way to retrieve the url of an ICM cached object, if you 'lost it'.
    background. activex controls are blocked in IE these days preventing then to run without user 'click to activate and use this control'. that ruins most of the interaction you can get from controls specially if the page has to be reloaded as the control will then have to be reactivated each time.
    this is specific for the phtmlb:ganttChart rendering that this happens.
    however there might be an easy fix. during the rendering of the control it puts the svg graphic file in the ICM cache, then renders it on the current page like this :
    <embed src="/sap/bc/bsp/sap/sbspext_phtmlb/238084D3CD28DA4687A0FD58332F4374.svg" height="
          298
          px" width="
          657
          px" type="image/svg+xml" pluginspage="http://www.adobe.com/svg/viewer/install/"></embed>
    what i would do, would be to grab that svg file, put it into a js script and then embed that on my page instead. that would eliminate the click to active issue (known workaroudn that works on any type of active x control).
    so ... how do i get a hold of the url that is in the ICM cache. i can se its there with the monitor, is there any way to retireve it, something that binds it to my current IE session or something.
    anyone got any suggestions?

    recoded the phtmlb extension to fit my needs. no need to read out the ICM path anymore.
    there is another post showing how that was done.
    Message was edited by: Christian Hasselbalch

  • Images should grow or shrink when the user chooses a larger or smaller font size in ADE.

    Hi All,
    I use percentage values (in "width" attribute within "img" element) for image that should grow or shrink when the user
    chooses a larger or smaller font size. The adjustment affects not only the size of the text but also images but the images
    are getting distorted or blurred when user chooses larger font size in Adobe Digital Editions.
    Can anyone, please guide me; how to get non-distorted and non-blur images in epub package?
    If I directly use images, without svg format i.e. png or jpg files, then images get overlapped on body-text in two column display in ADE.
    OR
    if I directly use jpg or png with width attribute varying in percentage value then image shrinks and grows as user chooses smaller and larger font size but the problem of distorted image remains as it is
    <div class="media-group"><img src="images/pa0000016g26001.png or jpg" alt="Image" width="60 or 70%" /></div>
    Attached is the package (Book.epub) which has test cases.
    ========================================================
    Please find below sample coding used in attached epub package;
    In XHTML:
    <div class="media-group"><img src="images/pa0000016g26001.svg" alt="Image" width="100%" /></div>
    In SVG:
    <?xml version="1.0" encoding="utf-8"?>
    <!-- Generator: Adobe Illustrator 12.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 51448)  -->
    <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
    <!ENTITY ns_svg "http://www.w3.org/2000/svg">
    <!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
    ]>
    <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
    width="386px" height="554px" viewBox="0 0 386 554" enable-background="new 0 0 386 554" xml:space="preserve">
    <image overflow="visible" width="772" height="1108" xlink:href="pa0000016g26001.png"  transform="matrix(0.50 0 0 0.50 0 0)">
    </image>
    </svg>
    ========================================================
    Cheers
    Vikas

    Hi DenisonDoc,
    There is no option right now to set properties globally primarily for Text fields. You may make sure fields doesn't contain anything.
    Select all the text filed from the form and right click any of the selected field make sure all of them are selected choose properties --> Appearance there you can choose Font Size and Font type.
    - End users cant change size and type of font. It is up to designer.
    Regards,
    Ajlan Huda.

  • How to add Visual Composer to CE 7.1 trial

    Hi,
    after having installed CE 7.1 (english, Windows OS) and assigning VisualComposerUser role to my admin, i tried to have a look at the visual composer http://hostName:50000/VC
    Problem is: only an empty page is displayed - grmph! After searching SDN i noticed, that Guided Procedures and Visual Composer (from my point of view the most interesting parts) are not included in download.
    Any idea on how to get these CE packages for preview?
    Thx a lot.
    ingo
    Edited by: Ingo Bischofs on Sep 16, 2008 2:46 PM

    Mmmh...without SVG Viewer it's hard to get it up and running :/
    sorry for bothering the community

  • ADE/ACS ePub cover problem

    Hi,
    I'm having a problem when packaging an ePub in Content Server.
    When loaded directly into Digital Editions, it displays normally, however when I add it to Content Server and get it with the DRM applied, it doesn't display the cover image (neither the thumbnail) and mentions the following in Item Info:
    "The document appears to have minor errors that might cause it to be displayed incorrectly."
    The ePub was converted from MOBI to EPUB with Calibre. I've tried with and without SVG cover and both doesn't work. It uses a cover.jpg file provided by the author as the cover image.
    Is there a way to debug it in Digital Editions or even in Content Server (I receive no messages claiming validation problems)? Has anyone had this problem already?
    Thanks in advance!

    To clarify, we are a small not-for-profit publisher, and we are interested in distributing our titles in epub format. Generally speaking, the cover preview is embedded in an a particular directory inside the epub file. Most book readers will recognize the cover preview and render it correctly. Unfortunately, as of the most recent update, iBooks has stopped doing so. Does anyone know why, or how to fix our files so that they render correctly in iBooks, as well as other book readers?

  • Layering JDBC themes on an SVG without redrawing image

    Is there a way via Javascript or other means to add dynamic JDBC themes to an SVG, within a JSP, without having to refresh/redraw the page and subsequent SVG everytime? Thank you in advance...

    The only way to get Firefox to offer to save the SVG image would be to force a content type that Firefox doesn't recognize as supported natively.
    *Mason: https://addons.mozilla.org/firefox/addon/mason/

  • Yepnope still works, Interactive SVG does not without it | EA 2014.1.1

    Hi all,
    I'm trying to create an interactive map of the US using Edge Commons interactive SVG. I've been reading that yepnope is deprecated and doesn't work in the new version of EA 2014.1.1 but it seems to still work for me and appears to be the only way I can interact with an SVG. I have added both jquery-1.11.2.min.js and EdgeCommons.SVG.js in the scripts panel but can't seem to get it to work without using the yepnope function. Can anyone help me with this? I'm running a Mac OSX 10.10.2.
    Here's a link to the EA file.
    Dropbox - default.zip
    Thanks in advance for all your help!
    Kenny

    Hi all,
    I'm trying to create an interactive map of the US using Edge Commons interactive SVG. I've been reading that yepnope is deprecated and doesn't work in the new version of EA 2014.1.1 but it seems to still work for me and appears to be the only way I can interact with an SVG. I have added both jquery-1.11.2.min.js and EdgeCommons.SVG.js in the scripts panel but can't seem to get it to work without using the yepnope function. Can anyone help me with this? I'm running a Mac OSX 10.10.2.
    Here's a link to the EA file.
    Dropbox - default.zip
    Thanks in advance for all your help!
    Kenny

  • How to save an SVG file without opening it in a browser tab first?

    Sometimes I have to download very large SVG files. These files are generated dinamically by a web server, when I select some options in a web form. Thus, there is no link to click: an action on the web page causes Firefox to spawn a new tab and try to open the SVG file inside it. The file can be very large, and Firefox can get stuck in trying to display it, before I can right-click on the image and select "save as" to get the file I'm interested in.
    I would like that, upon requesting an SVG web resource, Firefox ask me how I want to deal with the resource: displaying it online, opening with an external application, or saving it - exactly in the same fashion as with PDF files.
    Thank you!

    The only way to get Firefox to offer to save the SVG image would be to force a content type that Firefox doesn't recognize as supported natively.
    *Mason: https://addons.mozilla.org/firefox/addon/mason/

  • SVG without MIDlet.

    Hi everybody.
    I need to create an application with an svg user interface.
    For my purposes i found uncomfortable the "mobile emulating" environment in the execution.
    I need to create panels of different dimensions and containing "easily clickable" buttons and "easily writable" text fields. In few words i need a Swing-like UI but managed with svg graphic components.
    Is there a way for it?
    Thank you.

    Thanks for your answer!
    Do you know how to convert the glow effect to blends? (stack semi-transparent fill objects) Maybe i should convert to raster and vector again?
    Similar to the bitmap image but in vectors
    Sorry my english

  • Placing SVG in InDesign CS3

    Is it true that it is no longer possible to place SVG as an image in InDesign CS3 ? When I try to place several SVG files these are interpreted (and placed) as text files, not graphics !
    Is there an update or special filter installer to do this as before ?

    Can you tell me with which version of Indesign you managed to get that working, I've been lookin to place SVG as image files into my InDesign without any success.
    I had to make a SVG2EPS Converter to be able to do so. But it is far more heavier in terms of disk space.

  • SVG saved in Illustrator won't show up on Chrome and is blowing up on Safari

    Hello. First time here, so bear with me in case I'm doing something wrong.
    So, I have to create almost 500 maps for this wine store website. They want the maps to be SVG files, because their website is responsive, so SVG would be the format that goes along with every platform without losing quality.
    I was saving all the directly from Illustrator, but when I opened up those SVGs, the objects were completely out of the artboard. So I exported all the artboards in EPS format and used a batch action script to open each one and save as SVG.
    That seemed to work. But when I took the files for them to upload in their website using Magento, the images weren't showing in Chrome and were blown up in Safari, completely oversized in relation to the original artboard size. This all happened in iOS, if it's of any importance.
    Now, I don't understand nothing about coding or anything, so I was wondering if there's something I could do in Illustrator to prevent this from happening.
    Here's the entire code for one of the files as an example, in case anyone wanna take a look:
    <?xml version="1.0" encoding="utf-8"?>
    <!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
    <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
    <!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/">
    <!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/">
    <!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/">
    <!ENTITY ns_vars "http://ns.adobe.com/Variables/1.0/">
    <!ENTITY ns_imrep "http://ns.adobe.com/ImageReplacement/1.0/">
    <!ENTITY ns_sfw "http://ns.adobe.com/SaveForWeb/1.0/">
    <!ENTITY ns_custom "http://ns.adobe.com/GenericCustomNamespace/1.0/">
    <!ENTITY ns_adobe_xpath "http://ns.adobe.com/XPath/1.0/">
    ]>
    <svg version="1.1" id="Layer_1" xmlns:x="&ns_extend;" xmlns:i="&ns_ai;" xmlns:graph="&ns_graphs;"
    xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-6910.8 -7404 215 165"
    enable-background="new -6910.8 -7404 215 165" xml:space="preserve">
    <metadata>
    <sfw xmlns="&ns_sfw;">
    <slices></slices>
    <sliceSourceBounds height="149.6" width="197.6" bottomLeftOrigin="true" x="-6904.6" y="8324.7"></sliceSourceBounds>
    </sfw>
    </metadata>
    <circle fill="#A5E32A" fill-opacity="0.2" cx="-6866.1" cy="-7283.2" r="38"/>
    <polygon fill="#FFFFFF" stroke="#A5E32A" stroke-width="0.5" points="-6891.1,-7281.1 -6889.5,-7281.1 -6887.2,-7282.8
    -6885,-7283.4 -6883.1,-7283.4 -6879.6,-7283.4 -6878.8,-7283.2 -6878,-7282.7 -6877.3,-7282.1 -6874.2,-7281.7 -6870.5,-7280.9
    -6870.2,-7280.4 -6869.6,-7279 -6869.6,-7278.1 -6869,-7277.8 -6867.3,-7276.1 -6866.6,-7275 -6866,-7272.1 -6865,-7270.7
    -6863.6,-7269.8 -6862.9,-7269.6 -6862.7,-7270.2 -6861.7,-7271.4 -6859.9,-7274 -6858.4,-7275.5 -6857.7,-7275.8 -6857.6,-7275
    -6857.7,-7274.5 -6857.9,-7273.5 -6858.2,-7272.2 -6858.3,-7271.5 -6859.1,-7271 -6859.8,-7270.9 -6860,-7270.2 -6860.6,-7269.4
    -6860.6,-7268.6 -6861.4,-7266.5 -6861.1,-7266 -6860.3,-7265.9 -6859.1,-7265.7 -6857.4,-7265.7 -6856.7,-7266.3 -6856.8,-7267.1
    -6857.7,-7268.1 -6858.3,-7268.3 -6858.6,-7268.8 -6859.2,-7269.1 -6858.4,-7269.2 -6857.4,-7269.4 -6856.5,-7269.9
    -6855.7,-7270.6 -6855.3,-7271.2 -6854.6,-7270.4 -6855,-7269.9 -6855.4,-7269.2 -6855.8,-7268.6 -6856,-7266.6 -6855.7,-7266.5
    -6854.6,-7266.7 -6853.9,-7267.1 -6853,-7265.7 -6852.4,-7265.1 -6851.6,-7264 -6851.3,-7263.3 -6851.6,-7261.9 -6851.4,-7261.4
    -6850.7,-7260.4 -6850.6,-7259.5 -6850.2,-7258.4 -6849.3,-7257.1 -6848.7,-7256.2 -6847.5,-7255.9 -6846.8,-7255.8
    -6846.8,-7306.3 -6891.2,-7306.5 "/>
    <g>
    <path fill="#A5E32A" d="M-6814.9-7277.7c-0.1-1-0.6-1.3-1.1-1.3c-0.7,0-1,0.4-1,1.2c0,2,4.2,3,4.2,6.2c0,2-1.3,3-3.2,3
    c-1.9,0-3-1.5-3.1-3.3l1.9-0.3c0.1,1.2,0.6,1.8,1.2,1.8c0.7,0,1.2-0.4,1.2-1.1c0-2.4-4.2-3-4.2-6.4c0-1.9,1.2-3,3.2-3
    c1.7,0,2.7,1.2,2.8,2.9L-6814.9-7277.7z"/>
    <path fill="#A5E32A" d="M-6811.3-7277.8c0-1.7,1-3,3.1-3s3.1,1.4,3.1,3v6.1c0,1.7-1,3-3.1,3s-3.1-1.4-3.1-3V-7277.8z
    M-6809.2-7271.7c0,0.9,0.3,1.3,1.1,1.3s1.1-0.4,1.1-1.3v-6c0-0.9-0.3-1.3-1.1-1.3s-1.1,0.4-1.1,1.3V-7271.7z"/>
    <path fill="#A5E32A" d="M-6803-7280.7h2v9c0,0.9,0.3,1.3,1.1,1.3c0.7,0,1.1-0.4,1.1-1.3v-9h2v8.9c0,2-1.2,3.2-3.1,3.2
    s-3.1-1.1-3.1-3.2V-7280.7z"/>
    <path fill="#A5E32A" d="M-6793.6-7278.9h-2v-1.8h6v1.8h-2v10.1h-2V-7278.9z"/>
    <path fill="#A5E32A" d="M-6788.4-7268.8v-11.9h2v4.8h2.2v-4.8h2v11.9h-2v-5.3h-2.2v5.3H-6788.4z"/>
    </g>
    <g>
    <path fill="#A5E32A" d="M-6818.5-7253h-2l2.2-11.9h2.5l2.2,11.9h-2l-0.4-2.6h-2.2L-6818.5-7253z M-6817.9-7257.4h1.6l-0.8-5.1h0
    L-6817.9-7257.4z"/>
    <path fill="#A5E32A" d="M-6812.4-7264.9h2v9c0,0.9,0.3,1.3,1.1,1.3c0.7,0,1.1-0.4,1.1-1.3v-9h2v8.9c0,2-1.2,3.2-3.1,3.2
    s-3.1-1.1-3.1-3.2V-7264.9z"/>
    <path fill="#A5E32A" d="M-6800.4-7262c-0.1-1-0.6-1.3-1.1-1.3c-0.7,0-1,0.4-1,1.2c0,2,4.2,3,4.2,6.2c0,2-1.3,3-3.2,3
    c-1.9,0-3-1.5-3.1-3.3l1.9-0.3c0.1,1.2,0.6,1.8,1.2,1.8c0.7,0,1.2-0.4,1.2-1.1c0-2.4-4.2-3-4.2-6.4c0-1.9,1.2-3,3.2-3
    c1.7,0,2.7,1.2,2.8,2.9L-6800.4-7262z"/>
    <path fill="#A5E32A" d="M-6795.6-7263.1h-2v-1.8h6v1.8h-2v10.1h-2V-7263.1z"/>
    <path fill="#A5E32A" d="M-6788.4-7253h-2v-11.9h2.9c2.3,0,3.5,1,3.5,3.5c0,1.9-0.7,2.7-1.4,3l1.7,5.4h-2.1l-1.5-4.9
    c-0.3,0-0.7,0-1.1,0V-7253z M-6788.4-7259.6h0.7c1.1,0,1.5-0.4,1.5-1.8c0-1.4-0.4-1.8-1.5-1.8h-0.7V-7259.6z"/>
    <path fill="#A5E32A" d="M-6781-7253h-2l2.2-11.9h2.5l2.2,11.9h-2l-0.4-2.6h-2.2L-6781-7253z M-6780.3-7257.4h1.6l-0.8-5.1h0
    L-6780.3-7257.4z"/>
    <path fill="#A5E32A" d="M-6774.9-7253v-11.9h2v10.1h3.2v1.8H-6774.9z"/>
    <path fill="#A5E32A" d="M-6768.2-7253v-11.9h2v11.9H-6768.2z"/>
    <path fill="#A5E32A" d="M-6762.7-7253h-2l2.2-11.9h2.5l2.2,11.9h-2l-0.4-2.6h-2.2L-6762.7-7253z M-6762-7257.4h1.6l-0.8-5.1h0
    L-6762-7257.4z"/>
    </g>
    <path fill="#A5E32A" d="M-6812.6-7361.3l2.4-0.2l0.8-1l1.3-1.5l0.9-2.4l0.8-1.6l-0.4-1.1l0.5-2.3l2.4-2.1l1.6,2.3l0.5-0.5l-0.1-0.8
    l-0.6-1.4l0.5-0.6l0.6-0.4l1.1,0.4h0.8l0.7-0.9v-0.9l0.4-1.4l1.1-2l2.6-2.4l0.8-0.5h1h0.5l0.5-0.1l0.5-0.9l0.6-0.1l0.9,0.4l0.9,0.6
    l0.5,0.6l0.6,0.5l0.5,0.8l0.5,0.4l0.9,0.6h0.9l0.9-0.3l1.1-0.6l0.3-1.6l1-1.6l1.3-2l0.1-1.4l1.1-1.1l1.4-0.3l1.6-0.4l1.5-0.5
    l1.9-0.8l-0.4-0.6l-1-0.1l-0.6-0.6l-0.4-0.6l0.3-0.5l0.7-0.3h0.8l0.6,0.4l2.3,1l1.8,0.4l1.7,0.5l1.1,1.1l0.6-0.4l0.9,0.1l1.4,1
    l0.4-1.5l0.5-0.6l1-0.5l1.3-0.4l1-0.6l0.7-1l0.8,0.8l-0.4,0.8l-0.8,0.5l-0.4,0.5v0.8l0.7,0.3l0.9,0.6l0.4,0.5v0.9l-1.3,1.9l-0.9,1
    h-1.8l0.8,1.1l-0.3,1.1l-1.5,2.4l7.5,4.5l3.4,1.8l1.9,2.1l2.4,1.3l1.5-1.3l1.5-1.5l0.2-1.3l0.6-1.1l0.2-2l0.1-2.9l-0.4-2.5l0.6-1.8
    l-0.3-0.6l1-1.4l-0.1-1.4l1.6-2.4l0.1-2.1l1.5-1.2l3.4,9.1l-0.4,1.5l0.4,1.2l1.1,0.8l1,0.4l1,0.2l0.6,0.5l0.9,0.4l0.5,0.3l0.9,1.4
    l-0.4,1.9l0.2,2.5l1.6,2.4l1,1l-0.5,1.6l-0.6,1.3l0.9,1.4l1,1.6l3.4,2.8l1.1,0.9l0.4,0.5l1.1,0.1l0.7,1.1l-0.4,1.1l0.9,2l0.5,1
    l0.3,3l0.5,0.3l1.3-1l0.5,0.9h1.5l-0.3,2.6l0.8,1l1.3,1.4l1.6,1.6l0.6,1.4l0.6,1.6l0.6,0.7l1.4-2.3l0.6,1.6l-0.6,1.8l-0.4,1.4
    l0.1,1.4v1.9l0.1,1.4l-0.3,1.1l0.3,1.9l0.1,1.9l-0.9,1.4l-0.7,0.5l0.1,2l-0.4,0.9l-1.4,3l-1.9,3.4l-0.3,1.4l-0.9,0.5l-2.1,1.6
    l-1.6,2l-1,1.8l-1.4,2.4l-1.6,3l-0.8,0.8l-0.6,0.4l-0.4,3.1l-0.8,1l-0.5,0.6l-1.1,0.3l-3.1-0.1l-1.8,0.5l-0.5,0.5l-1.2,0.4l-0.6,0.4
    l-0.6,1.2l-0.5,1.1l-1.8-1.5l-1.3-1.1l-0.9-0.4h-1l-1.5,0.5l-3.1-0.8l-1.9-0.4l-0.8-0.5l-1.1-0.1l-2-0.3l-0.4-0.6l-0.8-1.9l-0.4-1.2
    l-0.6-0.8l0.2-1l-0.1-0.9l-0.8-1.1l-1-1.4l-0.6-0.5l-1.4,0.5l0.6-2l0.3-0.8c0,0,0.5-0.6,0.1-0.8c-0.4-0.1-1-0.4-1-0.4l-1.1,0.9
    l-0.5,0.7l-0.5,0.3l1,0.8l0.5,1.4l-0.4,0.5h-1h-1.6l-0.9-0.6l0.5-0.9l0.6-0.5l-0.5-0.5v-0.5l0.1-0.6l1.1,0.1l0.8-1l0.1-2l0.6-1.5
    l-0.6-0.6l-1.3,1l-0.9,1.1l-1,1.3l-1.4,2.1l-1-0.8l-0.8-0.8l-0.9-2.6l-0.8-1.6l-2.1-1.4l-0.4-1.5l-1.7-0.9l-1.9-0.4l-1.3-0.1l-1-0.8
    l-1.5-1l-2.1,0.1h-2.4l-1.5,0.2l-1.3,0.5l-0.9,0.6l-0.6,0.9h-2.4l-1.1,0.1l-2.5,0.6l-1.3,0.6l-1.6,0.6l-1.6,1l-0.9,1.1l-1.5,1.6
    l-1,1.8l-6.1,0.9l-2.5,0.1l-1.6,0.1l-1.3,0.9l-2.1,2.3l-1.1,0.9l-2.1,0.3l-1.6,1l-1.1-0.2l-0.4-0.5l-0.6,0.6l-0.6-1.1l-1-0.6
    l-1.4-0.8l-0.8-1.3v-0.9l0.8-0.5l0.8-1.9l0.2-2.4l-0.6-2l-0.3-0.9l-1.6-1.5l-0.6-2l-1.3-2.6l-0.5-1.8l-0.5-1.9l-1.1-1.5l-1.1-0.5
    l-0.5-1.7l-1.4-1.9l-2-2.1l-0.8-1l0.5-0.6l0.6,1l0.6-1l1.3,0.6l0.5-0.4l-1.8-2.5l-0.5-1.1l-0.5-0.9v-1l0.4-1.5v-1.3l-0.3-2.3
    l0.3-1.5l0.5-1.3l0.7,1l0.9-0.7l2.1-1.6l1.4-1.5l1.3-1.3l1.4-1.3l1.1-0.5l0.8,0.4l1.1,0.2l3.3-2.1l2.5-1.9L-6812.6-7361.3z"/>
    <polygon fill="#A5E32A" points="-6780.8,-7393.4 -6778.3,-7391.5 -6777.7,-7392 -6777,-7392.7 -6777.2,-7393.5 -6779,-7393.9 "/>
    <polygon fill="#A5E32A" points="-6781.3,-7392.6 -6781.8,-7391.7 -6781.1,-7391.6 -6780.3,-7390.6 -6780.1,-7391.9 "/>
    <polygon fill="#A6CE39" stroke="#A6CE39" stroke-width="0.1973" points="-6738.7,-7291.9 -6735.5,-7290.1 -6733.9,-7290.1
    -6730.8,-7290.4 -6729.8,-7290.9 -6729,-7288.1 -6729.8,-7287 -6730.8,-7285.5 -6731,-7284.4 -6731.7,-7282 -6732.4,-7282.6
    -6733.2,-7282.4 -6734.5,-7281.5 -6735.4,-7281.2 -6736.8,-7282.7 -6738.4,-7285.6 -6738.9,-7288 "/>
    <path fill="#A5E32A" d="M-6812.6-7361.3l2.4-0.2l0.8-1l1.3-1.5l0.9-2.4l0.8-1.6l-0.4-1.1l0.5-2.3l2.4-2.1l1.6,2.3l0.5-0.5l-0.1-0.8
    l-0.6-1.4l0.5-0.6l0.6-0.4l1.1,0.4h0.8l0.7-0.9v-0.9l0.4-1.4l1.1-2l2.6-2.4l0.8-0.5h1h0.5l0.5-0.1l0.5-0.9l0.6-0.1l0.9,0.4l0.9,0.6
    l0.5,0.6l0.6,0.5l0.5,0.8l0.5,0.4l0.9,0.6h0.9l0.9-0.3l1.1-0.6l0.3-1.6l1-1.6l1.3-2l0.1-1.4l1.1-1.1l1.4-0.3l1.6-0.4l1.5-0.5
    l1.9-0.8l-0.4-0.6l-1-0.1l-0.6-0.6l-0.4-0.6l0.3-0.5l0.7-0.3h0.8l0.6,0.4l2.3,1l1.8,0.4l1.7,0.5l1.1,1.1l0.6-0.4l0.9,0.1l1.4,1
    l0.4-1.5l0.5-0.6l1-0.5l1.3-0.4l1-0.6l0.7-1l0.8,0.8l-0.4,0.8l-0.8,0.5l-0.4,0.5v0.8l0.7,0.3l0.9,0.6l0.4,0.5v0.9l-1.3,1.9l-0.9,1
    h-1.8l0.8,1.1l-0.3,1.1l-1.5,2.4l7.5,4.5l3.4,1.8l1.9,2.1l2.4,1.3l1.5-1.3l1.5-1.5l0.2-1.3l0.6-1.1l0.2-2l0.1-2.9l-0.4-2.5l0.6-1.8
    l-0.3-0.6l1-1.4l-0.1-1.4l1.6-2.4l0.1-2.1l1.5-1.2l3.4,9.1l-0.4,1.5l0.4,1.2l1.1,0.8l1,0.4l1,0.2l0.6,0.5l0.9,0.4l0.5,0.3l0.9,1.4
    l-0.4,1.9l0.2,2.5l1.6,2.4l1,1l-0.5,1.6l-0.6,1.3l0.9,1.4l1,1.6l3.4,2.8l1.1,0.9l0.4,0.5l1.1,0.1l0.7,1.1l-0.4,1.1l0.9,2l0.5,1
    l0.3,3l0.5,0.3l1.3-1l0.5,0.9h1.5l-0.3,2.6l0.8,1l1.3,1.4l1.6,1.6l0.6,1.4l0.6,1.6l0.6,0.7l1.4-2.3l0.6,1.6l-0.6,1.8l-0.4,1.4
    l0.1,1.4v1.9l0.1,1.4l-0.3,1.1l0.3,1.9l0.1,1.9l-0.9,1.4l-0.7,0.5l0.1,2l-0.4,0.9l-1.4,3l-1.9,3.4l-0.3,1.4l-0.9,0.5l-2.1,1.6
    l-1.6,2l-1,1.8l-1.4,2.4l-1.6,3l-0.8,0.8l-0.6,0.4l-0.4,3.1l-0.8,1l-0.5,0.6l-1.1,0.3l-3.1-0.1l-1.8,0.5l-0.5,0.5l-1.2,0.4l-0.6,0.4
    l-0.6,1.2l-0.5,1.1l-1.8-1.5l-1.3-1.1l-0.9-0.4h-1l-1.5,0.5l-3.1-0.8l-1.9-0.4l-0.8-0.5l-1.1-0.1l-2-0.3l-0.4-0.6l-0.8-1.9l-0.4-1.2
    l-0.6-0.8l0.2-1l-0.1-0.9l-0.8-1.1l-1-1.4l-0.6-0.5l-1.4,0.5l0.6-2l0.3-0.8c0,0,0.5-0.6,0.1-0.8c-0.4-0.1-1-0.4-1-0.4l-1.1,0.9
    l-0.5,0.7l-0.5,0.3l1,0.8l0.5,1.4l-0.4,0.5h-1h-1.6l-0.9-0.6l0.5-0.9l0.6-0.5l-0.5-0.5v-0.5l0.1-0.6l1.1,0.1l0.8-1l0.1-2l0.6-1.5
    l-0.6-0.6l-1.3,1l-0.9,1.1l-1,1.3l-1.4,2.1l-1-0.8l-0.8-0.8l-0.9-2.6l-0.8-1.6l-2.1-1.4l-0.4-1.5l-1.7-0.9l-1.9-0.4l-1.3-0.1l-1-0.8
    l-1.5-1l-2.1,0.1h-2.4l-1.5,0.2l-1.3,0.5l-0.9,0.6l-0.6,0.9h-2.4l-1.1,0.1l-2.5,0.6l-1.3,0.6l-1.6,0.6l-1.6,1l-0.9,1.1l-1.5,1.6
    l-1,1.8l-6.1,0.9l-2.5,0.1l-1.6,0.1l-1.3,0.9l-2.1,2.3l-1.1,0.9l-2.1,0.3l-1.6,1l-1.1-0.2l-0.4-0.5l-0.6,0.6l-0.6-1.1l-1-0.6
    l-1.4-0.8l-0.8-1.3v-0.9l0.8-0.5l0.8-1.9l0.2-2.4l-0.6-2l-0.3-0.9l-1.6-1.5l-0.6-2l-1.3-2.6l-0.5-1.8l-0.5-1.9l-1.1-1.5l-1.1-0.5
    l-0.5-1.7l-1.4-1.9l-2-2.1l-0.8-1l0.5-0.6l0.6,1l0.6-1l1.3,0.6l0.5-0.4l-1.8-2.5l-0.5-1.1l-0.5-0.9v-1l0.4-1.5v-1.3l-0.3-2.3
    l0.3-1.5l0.5-1.3l0.7,1l0.9-0.7l2.1-1.6l1.4-1.5l1.3-1.3l1.4-1.3l1.1-0.5l0.8,0.4l1.1,0.2l3.3-2.1l2.5-1.9L-6812.6-7361.3z"/>
    <polygon fill="#A5E32A" points="-6780.8,-7393.4 -6778.3,-7391.5 -6777.7,-7392 -6777,-7392.7 -6777.2,-7393.5 -6779,-7393.9 "/>
    <polygon fill="#A5E32A" points="-6781.3,-7392.6 -6781.8,-7391.7 -6781.1,-7391.6 -6780.3,-7390.6 -6780.1,-7391.9 "/>
    <polygon fill="#A5E32A" points="-6738.7,-7291.9 -6735.5,-7290.1 -6733.9,-7290.1 -6730.8,-7290.4 -6729.8,-7290.9 -6729,-7288.1
    -6729.8,-7287 -6730.8,-7285.5 -6731,-7284.4 -6731.7,-7282 -6732.4,-7282.6 -6733.2,-7282.4 -6734.5,-7281.5 -6735.4,-7281.2
    -6736.8,-7282.7 -6738.4,-7285.6 -6738.9,-7288 "/>
    <path fill="#A5E32A" fill-opacity="0.2" d="M-6734.8-7323.3c0,16.6-13.5,30.1-30.1,30.1c-16.6,0-30.1-13.5-30.1-30.1
    c0-16.6,13.5-30.1,30.1-30.1C-6748.3-7353.4-6734.8-7339.9-6734.8-7323.3z"/>
    <g>
    <path fill="#FFFFFF" d="M-6798.2-7355.1h-2.1l2.4-12.8h2.7l2.4,12.8h-2.1l-0.4-2.8h-2.4L-6798.2-7355.1z M-6797.5-7359.8h1.8
    l-0.9-5.5h0L-6797.5-7359.8z"/>
    <path fill="#FFFFFF" d="M-6791.6-7367.9h2.2v9.7c0,0.9,0.4,1.4,1.2,1.4c0.8,0,1.2-0.5,1.2-1.4v-9.7h2.2v9.6c0,2.2-1.3,3.4-3.4,3.4
    s-3.4-1.2-3.4-3.4V-7367.9z"/>
    <path fill="#FFFFFF" d="M-6778.7-7364.7c-0.1-1.1-0.7-1.4-1.2-1.4c-0.7,0-1.1,0.5-1.1,1.3c0,2.2,4.5,3.2,4.5,6.7
    c0,2.1-1.4,3.3-3.5,3.3c-2,0-3.2-1.6-3.3-3.6l2.1-0.3c0.1,1.3,0.6,1.9,1.3,1.9c0.8,0,1.3-0.4,1.3-1.2c0-2.5-4.5-3.2-4.5-6.9
    c0-2,1.2-3.2,3.4-3.2c1.8,0,2.9,1.3,3.1,3.1L-6778.7-7364.7z"/>
    <path fill="#FFFFFF" d="M-6773.6-7366h-2.1v-1.9h6.5v1.9h-2.1v10.9h-2.2V-7366z"/>
    <path fill="#FFFFFF" d="M-6765.8-7355.1h-2.2v-12.8h3.1c2.5,0,3.7,1,3.7,3.8c0,2.1-0.8,2.9-1.5,3.2l1.9,5.8h-2.2l-1.6-5.3
    c-0.3,0-0.7,0.1-1.1,0.1V-7355.1z M-6765.8-7362.1h0.8c1.2,0,1.6-0.4,1.6-2c0-1.5-0.4-2-1.6-2h-0.8V-7362.1z"/>
    <path fill="#FFFFFF" d="M-6757.8-7355.1h-2.1l2.4-12.8h2.7l2.4,12.8h-2.1l-0.4-2.8h-2.4L-6757.8-7355.1z M-6757.1-7359.8h1.8
    l-0.9-5.5h0L-6757.1-7359.8z"/>
    <path fill="#FFFFFF" d="M-6751.3-7355.1v-12.8h2.2v10.9h3.5v1.9H-6751.3z"/>
    <path fill="#FFFFFF" d="M-6744-7355.1v-12.8h2.2v12.8H-6744z"/>
    <path fill="#FFFFFF" d="M-6738.1-7355.1h-2.1l2.4-12.8h2.7l2.4,12.8h-2.1l-0.4-2.8h-2.4L-6738.1-7355.1z M-6737.4-7359.8h1.8
    l-0.9-5.5h0L-6737.4-7359.8z"/>
    </g>
    <line fill="none" stroke="#C0F90D" x1="-6831.7" y1="-7299.6" x2="-6793.4" y2="-7312.4"/>
    <polygon fill="#FFFFFF" stroke="#A5E32A" stroke-width="0.5" points="-6784.8,-7321.5 -6783.4,-7321.5 -6781.4,-7323
    -6779.6,-7323.4 -6778,-7323.4 -6775.1,-7323.5 -6774.4,-7323.3 -6773.7,-7322.8 -6773.1,-7322.3 -6770.5,-7322 -6767.4,-7321.3
    -6767.1,-7320.9 -6766.7,-7319.7 -6766.7,-7319 -6766.1,-7318.7 -6764.7,-7317.3 -6764.1,-7316.3 -6763.6,-7313.9 -6762.7,-7312.8
    -6761.6,-7312 -6761,-7311.8 -6760.8,-7312.3 -6760,-7313.3 -6758.5,-7315.5 -6757.2,-7316.8 -6756.6,-7317 -6756.5,-7316.4
    -6756.6,-7316 -6756.8,-7315.1 -6757,-7314 -6757.2,-7313.4 -6757.8,-7313 -6758.4,-7312.9 -6758.5,-7312.3 -6759.1,-7311.6
    -6759,-7310.9 -6759.7,-7309.2 -6759.5,-7308.8 -6758.8,-7308.7 -6757.8,-7308.6 -6756.4,-7308.6 -6755.8,-7309.1 -6755.9,-7309.7
    -6756.6,-7310.6 -6757.1,-7310.8 -6757.4,-7311.1 -6757.9,-7311.5 -6757.2,-7311.5 -6756.4,-7311.7 -6755.7,-7312.1 -6755,-7312.6
    -6754.6,-7313.2 -6754,-7312.5 -6754.4,-7312.1 -6754.7,-7311.5 -6755,-7310.9 -6755.2,-7309.3 -6754.9,-7309.3 -6754,-7309.4
    -6753.4,-7309.8 -6752.7,-7308.5 -6752.2,-7308 -6751.5,-7307.1 -6751.2,-7306.6 -6751.5,-7305.4 -6751.4,-7304.9 -6750.8,-7304.1
    -6750.7,-7303.3 -6750.3,-7302.4 -6749.5,-7301.3 -6749.1,-7300.6 -6748.1,-7300.3 -6747.5,-7300.2 -6747.5,-7342.7
    -6784.8,-7342.9 "/>
    <circle fill="none" stroke="#C0F90D" cx="-6866.1" cy="-7283.2" r="38"/>
    <path fill="none" stroke="#C0F90D" d="M-6734.8-7323.3c0,16.6-13.5,30.1-30.1,30.1c-16.6,0-30.1-13.5-30.1-30.1
    c0-16.6,13.5-30.1,30.1-30.1C-6748.3-7353.4-6734.8-7339.9-6734.8-7323.3z"/>
    </svg>
    Thanks in advance.

    Homer...this very same thing has happened to me today. Have you found a solution yet?

  • How do I transfer a .psd file to illustrator that can then be placed in Muse as a .svg with transparent background?

    I just wrote all this up in another thread.  I did not realize at the time that the last post was in 2014, so I'm giving it a go here.
    I am currently trying to create an .svg using Photoshop .psd file (with layers in tact).  I'm new to these products so it may be obvious to others that the above intention was to eventually place the .svg in some sort of website creation software such as Muse.  Which is precisely what I am attempting. However, I am getting a white background once I place or copy and paste into Muse.  My starting .psd has a transparent background without any hidden layers causing this problem.  To test this I placed the .psd file into Muse and it still has a transparent background.  However when opening or placing this file into illustrator, it picks up a white background. If I do exactly as described above, I still get the same result.  So far I have tried:
    1) Simple copy and paste from Photoshop .svg to illustrator to Muse.  Result - white background.
    2) Placing the .psd in illustrator, then placing the .svg file in muse.  Result - white background.
    4) I have also tried the every combination of 1 and 2. - Result - white background.
    3) I have now created a path in Photoshop from the text layer to yet again attempt the above methods.  Result - white background.
    I'm including an image of the object I am trying to place with transparent background, but I have both a flattened rasterized version, a version complete with layers and a third (.svg) with the corresponding objects.  I am completely new to Illustrator as of today so any help would be greatly appreciated.  Thanks.
    Link to .psd file "Welcome text"

    I was having some difficulties getting the correct dimensions of one of my objects, I eventually solved this problem without using svg.  It was pretty simple when I stopped trying to over complicate things.  I just linked the object to a near by object in photoshop, merged and placed it all as one.  It looks great now.  Thanks for your reply.  You are correct, SVG was not the answer.

  • Is it possible to export Vector Smart Objects as vector SVG files from Photoshop CC 2014?

    I have Vector Smart Objects copied from Illustrator and pasted into Photoshop. I would like to export them as vector SVG files (using Generator or Extract Assets). I can add the .svg extension to the layer and actually export an SVG just fine. The problem is any SVG I have exported have all been raster images. It defeats the purpose of having that as an option as far as I'm concerned.
    I remember watching and listening to keynotes and other speakers at Adobe MAX 2014 who said it was so powerful and amazing to create SVG files from Photoshop. If we're still exporting raster SVG files from Photoshop...that's not very impressive or exciting--especially since this era of modern web development benefits greatly from using vector SVG files.
    I understand that Shape Layers can be exported as vector SVG files but that seems very limiting. I also realize that users can create some impressive vectors in Photoshop, but that is not optimal. Illustrator is a better tool for creating vectors and I normally use Photoshop and Illustrator side-by-side. I know that vector SVG files can be exported from Illustrator but that isn't as user friendly and convenient as utilizing Photoshop > Generator > Reflow.
    My idea was to create my assets in Illustrator, paste them into Photoshop as Vector Smart Objects, set up my layout, and then use the Generator/Reflow method or Extract Assets to get a new web design started.
    Maybe I misunderstood what the speakers at Adobe MAX had said. Perhaps it's just user error and I'm just missing something simple (it happens).
    Photoshop CC 2014 notes the following under Help > System Info:
    Adobe Photoshop Version: 2014.2.2 20141204.r.310 2014/12/04:23:59:59 CL 994532  x64
    Operating System: Windows 8.1 64-bit
    Any help or suggestions would be greatly appreciated! Thank you in advance for your time.

    Not quite the same, but have a look at the new Libraries feature that came with 2014.2.2  I just tried it, and dragging a vector object into a library I created in Photoshop, was there in Illustrator.  This happens without having to close and reopen Illustrator.  Just use the drop down at the top of the Libraries panel (in Illustrator) to find your custom, or job specific library.

Maybe you are looking for

  • Problem with formatting the saved text to hard disk

    I use a modified code from Macromedia for saving the content of a text filed on hard disk. See code at the end. The code works fine and a text file is saved in the given location on the hard disk. The problem is that all of the content of the text fi

  • Query Variable

    Hi friends, I have a query, i need to make 0Region as a selection option for which i have to create a variable. I have created a variable but my problem is it is taking only single value, how can i change that to hold multiple values. Cany anybody he

  • Org Management - man power report

    I am new to HR ABAP. I have to develop a report on man power. The requirements are as below. Give the no. of employees in each department. Reports are produced at all levels i.e line manager, senior manager , director and company. For instance when a

  • Request for code window - more...

    I was wondering if it would be possible to include a way to find the path of a symbol element like we have it in Flash. Flash Target Path Screen:

  • User defined query parameter in QLD

    Hi All, i am using query generator in SAP to print some records of user defined query. precisely, the details about sales employees are to be printed. now the columns which exist in the database (ie. sales employee code, name, cardcode) etc can be gi