HTMLB iterator - listbox behaving different than dropdownlistbox

So, my turn for a question again:
I've read through a lot of material, all the BSP blogs (each at least once, some of them over and over again ...), searched the forum to the best I could, but I'm still facing this problem:
In my iterator, the listbox just won't display ...
Now, using the dropdownlistbox everything works fine (like in blog 213 from Brian), but changing to listbox comes up with that empty cell ...
Is there some different behaviour between these two elements that I should not know about?
Have any of you used a listbox (not dropdown) in an iterator successfully? If so, examples would be appreciated!
Best regards,
Max

I have it working now.  My problem was at first that I forgot to give the ListBox a pointer to my table that holds the values.  Then while debugging I actually fixed that problem but set the listbox size to 1.  Both of these options caused an error in the Runtime_IS_Valid method and stopped all rendering.  And here I was thinking there was a problem in the output HTML. 
I finally found it when I set a breakpoint in the DO_AT_BEGINNING method of both my listbox and my dropdown listbox.  I never hit the breakpoint in the listbox.  So after debugging all the way through to the IFUR=>D2~Render method I finally found it.  The following code does work for me now in the Render_Cell_Start method of my Iterator class:
        data listbox type ref to cl_htmlb_listbox.
        create object listbox.
        listbox->id = p_cell_id.
        GET REFERENCE OF me->i_model->iusers_values INTO listbox->table.
        listbox->nameofkeycolumn = 'key'.
        listbox->nameofvaluecolumn = 'value'.
*       listbox->onselect = 'OnUpdateUserClick'.
        listbox->selection = get_column_value( 'BNAME' ).
        listbox->width = '100%'.
        listbox->size = '2'.
        p_replacement_bee = listbox.
        p_style = 'font-size:0.9em'.
That just goes to show you that when something is not rendering at all, you should start with a breakpoint in the Runtime_Is_Valid method.

Similar Messages

  • OWSM 11g in EM behaving different than documentation

    Hi everyone,
    I'm trying to get OWSM 11g working so I just installed Soa suite 11gR1(11.1.1.2.0). All I need is to attach a predefined policy to an existing web service which exists incide an EJB in an EAR application. I'm following the instructions from http://download.oracle.com/docs/cd/E12839_01/web.1111/b32511/attaching.htm#CEGDGIHD , in the session "Viewing the Policies That are Attached to a Web Service". Unfortunately I'm expecting different screens than those shown in the Manual. In the documentation the figure 8.1 shows the tabs Operations / Policies / Chart / Configuration, but in my case the same screen shows only the operations Tab, making it impossible to attach the policies I need. Here's what I see at my environment: http://img203.imageshack.us/img203/751/erroowsm.png . I don't know if I missed something but it still not works as the documentation says (figure 8.1). Please, any help will be appretiated !
    Thanks,

    Rajesh wrote:
    Is it going above 1GB ?No, current memory utilization is 503MB, but it keeps increasing. Support specialist told me it is OK for agents with large number of targets to utilize up to 1GB of memory even if I told him I have only 11 targets on this host. I do not think 11 targets is "large number" and I do not want to wait until agent will use 1GB of memory.
    You can also check MOS note :
    How To Effectively Investigate & Diagnose Grid Control Agent High Memory Utilization Issues? [ID 1092466.1]I have read this note and did not find solution for my problem and that is why I contacted Oracle Support. I think this agent is leaking memory, but Support specialist suggests reinstalling this agent on other host.
    I do not think he understands problem and that is why I looking for other opinions.

  • 3.1 IRR download CSV behaves different than 3.0.1 CSV download

    I am generating some links dynamically in the select statements for some of my reports (i.e. select decode(REGULAR_EXPRESSION_KEY,
    null,'-NO RE-',
    "a href="f?p=&APP_ID.:2:... )
    Note: I changed the example a bit so that it would display and not be interpreted...
    The download to CSV in my 3.0.1 automatically stripped this HTML out of the download to CSV.
    The CSV Download in the Interactive Reports of 3.1 did not strip the html. All of this HTML is downloaded into the CSV file.
    Is there a way to get this 3.1 Interactive download to CSV to behave the same way it worked with the 3.0.1 download to CSV?
    Thanks,
    Steve

    Hi Gurus,
    I updated one of my small apex application to use interactive report, but I also encountered this kind of
    'cannot export to CSV' problem, it is so bad, we need to export to Excel all the time! I have to give up my upgrading and remade it with classic report, though many cool stuffs with interactive report, pitty!
    Ok, I will try to use your method to work around this problem, that may give me some kind of hope.
    Hope you can improve this much more in the later release.
    Anyway, 3.1 is very cool though, but also if you can more simply the Blob founction .
    Peter

  • XPath expressions in aggreation functions behave different than I expect

    Hi,
    I'm having the following very simple schema:
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="a" type="AType" />
    <xs:complexType name="AType">
    <xs:sequence>
    <xs:element name="b" type="BType" />
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="BType">
    <xs:sequence>
    <xs:element name="c" type="CType" minOccurs="1" maxOccurs="unbounded" />
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="CType">
    <xs:all minOccurs="0">
    <xs:element name="d1" type="xs:double" />
    <xs:element name="d2" type="xs:double" />
    <xs:element name="d3" type="xs:double" />
    <xs:element name="d4" type="xs:double" />
    <xs:element name="d5" type="xs:double" />
    <xs:element name="d6" type="xs:double" />
    </xs:all>
    </xs:complexType>
    </xs:schema>
    Which I loaded using the following code:
    declare
    l_bfile bfile;
    begin
    l_bfile := bfilename('DIR_TEMP', 'simple.xsd');
    dbms_lob.open(l_bfile);
    dbms_xmlschema.registerschema('http://localhost/simple.xsd',l_bfile);
    dbms_lob.close(l_bfile);
    end;
    Then I created the table "simple" as follows:
    CREATE TABLE simple OF XMLTYPE XMLSchema "http://localhost/simple.xsd" ELEMENT "a";
    And I loaded the following XML document:
    <?xml version="1.0"?><a>< b>
    <c><d1>0</d1></c>
    <c><d1>1</d1></c>
    <c><d1>2</d1></c>
    <c><d1>3</d1></c>
    <c><d1>4</d1></c>
    <c><d1>5</d1></c>
    <c><d1>6</d1></c>
    <c><d1>7</d1></c>
    <c><d1>8</d1></c>
    <c><d1>9</d1></c>
    </b></a>
    Which was loaded by the following code:
    DECLARE
    file bfile;
    charContent clob := ' ';
    targetFile bfile;
    charset_id number := 0;
    src_offset number := 1;
    dst_offset number := 1;
    lang_ctx number := DBMS_LOB.default_lang_ctx;
    warning number;
    BEGIN
    DBMS_OUTPUT.enable(10000);
    file := bfilename('DIR_TEMP','simple.xml');
    targetFile := file;
    DBMS_LOB.fileopen(targetFile,DBMS_LOB.file_readonly);
    DBMS_LOB.loadclobfromfile(charContent,targetFile,DBMS_LOB.getLength(targetFile),src_offset, dst_offset, charset_id, lang_ctx, warning);
    DBMS_LOB.fileclose(targetfile);
    INSERT INTO simple VALUES (xmltype(charContent));
    END;
    The function to be executed is the avg of d1. The solution if of course 4.5.
    The following queries give the correct answer:
    SELECT XMLQuery('for $i in /a return avg($i//d1)' PASSING OBJECT_VALUE RETURNING CONTENT) FROM simple;
    SELECT XMLQuery('for $i in /a return avg(//d1)' PASSING OBJECT_VALUE RETURNING CONTENT) FROM simple;
    SELECT XMLQuery('for $i in /a let $t := //d1 return avg($t)' PASSING OBJECT_VALUE RETURNING CONTENT) FROM simple;
    However, when I execute any of the following expressions, they return nothing (or to be exact: an empty row):
    SELECT XMLQuery('for $i in /a return avg($i/b/c/d1)' PASSING OBJECT_VALUE RETURNING CONTENT) FROM simple;
    SELECT XMLQuery('for $i in /a return avg($i//c/d1)' PASSING OBJECT_VALUE RETURNING CONTENT) FROM simple;
    SELECT XMLQuery('for $i in /a return avg(//c/d1)' PASSING OBJECT_VALUE RETURNING CONTENT) FROM simple;
    SELECT XMLQuery('for $i in /a let $t := //c/d1 return avg($t)' PASSING OBJECT_VALUE RETURNING CONTENT) FROM simple;
    I'm expecting that avg($i//c/d1) selects all d1 elements contained in a c element within the context of $i and return the average of those d1s. However, it doesn't seem to do so.
    When I remove the "avg" in the last query:
    SELECT XMLQuery('for $i in /a let $t := //c/d1 return $t' PASSING OBJECT_VALUE RETURNING CONTENT) FROM simple;
    it does return a list of all d1 elements, as I expect. However the aggragation function doesn't return the value as expected. I've tested with more aggregation functions (eg. min, max) and all are having the same effects.
    Can anyone explain me what I'm missing here, or point me to some documentation which explains it?
    I'm running:
    SQL*Plus: Release 10.2.0.3.0 - Production
    on
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Production
    With the Partitioning, OLAP and Data Mining options
    null
    Message was edited by:
    Tijink

    Did you also try to create the XMLSchema and the table and run the queries against that?Still, no difference for me:
    michaels>  declare
       l_clob   clob
          := '<?xml version="1.0" encoding="ISO-8859-1" ?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="a" type="AType" />
    <xs:complexType name="AType">
    <xs:sequence>
    <xs:element name="b" type="BType" />
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="BType">
    <xs:sequence>
    <xs:element name="c" type="CType" minOccurs="1" maxOccurs="unbounded" />
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="CType">
    <xs:all minOccurs="0">
    <xs:element name="d1" type="xs:double" />
    <xs:element name="d2" type="xs:double" />
    <xs:element name="d3" type="xs:double" />
    <xs:element name="d4" type="xs:double" />
    <xs:element name="d5" type="xs:double" />
    <xs:element name="d6" type="xs:double" />
    </xs:all>
    </xs:complexType>
    </xs:schema>';
    begin
       dbms_xmlschema.registerschema (schemaurl      => 'http://localhost/simple.xsd',
                                      schemadoc      => l_clob,
                                      gentypes       => false
    end;
    PL/SQL procedure successfully completed.
    michaels>  create table simple of xmltype xmlschema "http://localhost/simple.xsd" element "a"
    Table created.
    michaels>  insert into simple
         values (xmltype
                    ('<?xml version="1.0"?><a><b>
                <c><d1>0</d1></c>
                <c><d1>1</d1></c>
                <c><d1>2</d1></c>
                <c><d1>3</d1></c>
                <c><d1>4</d1></c>
                <c><d1>5</d1></c>
                <c><d1>6</d1></c>
                <c><d1>7</d1></c>
                <c><d1>8</d1></c>
                <c><d1>9</d1></c></b></a>'
    1 row created.
    michaels>  select xmlquery('for $i in /a return avg($i//d1)' passing  object_value returning content).getnumberval() res from simple
    union all
    select xmlquery('for $i in /a return avg(//d1)' passing  object_value returning content).getnumberval() res from simple
    union all
    select xmlquery('for $i in /a let $t := //d1 return avg($t)' passing  object_value returning content).getnumberval() res from simple
    union all
    select xmlquery('for $i in /a return avg($i/b/c/d1)' passing  object_value returning content).getnumberval() res from simple
    union all
    select xmlquery('for $i in /a return avg($i//c/d1)' passing  object_value returning content).getnumberval() res from simple
    union all
    select xmlquery('for $i in /a return avg(//c/d1)' passing  object_value returning content).getnumberval() res from simple
    union all
    select xmlquery('for $i in /a  let $t := //c/d1 return avg($t)' passing  object_value returning content).getnumberval() res from simple
           RES
           4,5
           4,5
           4,5
           4,5
           4,5
           4,5
           4,5
    7 rows selected.

  • Smart Objects in CS5 behave differently than in CS4?

    I've just upgraded from CS4 to CS5, and I've noticed, what is to me, a BIG change in the way Smart Objects work.
    Imagine this simplified hypothetical scenario...
    I create a document in Illustrator, with two layers.
    On one layer would be a 800x600 solid rectangle. On another layer I'd put a small 50x50 circle.
    The import thing here is that the circle would be positioned roughly in the top-left corner in relation to the rectangle.
    I'd select both objects, go over to Photoshop, create a new 800x600 document, and paste what I've just copied into the document as a Smart Object.
    Photoshop would treat both Illustrator layers as one Smart Object of course, and they would get pasted together, and they would look exactly how they did in Illustrator - that being the circle positioned in the top left corner of the rectangle.
    Now I decide I want to hide the solid rectangle in my Smart Object, but I want to keep the circle exactly as it is now in the Photoshop document.
    So I simply double-click to edit the original Illustrator file, and then I hide the layer with the rectangle on it, save the file, close it, and go back to Photoshop.
    In CS4, the file would update to show the changes I had made, so the rectangle would disappear and only the circle would remain - and importantly, the circle would maintain its position. It would stay in the top-left corner of my Photoshop document (the rectangle still exists in the original Illustrator file, but the layer it's on is simply hidden).
    However, when I do this exact same process in CS5, when I update the Smart Object after hiding the rectangle layer in Illustrator, the Smart Object seems to ignore the rectangle that is hidden in the file, and the solitary circle that remains gets totally shifted into the centre of the 800x600 Photoshop file. So it is now no longer in the top-left corner where it was before.
    This is causing me HUGE problems, because I have painstakingly positioned many many various objects in my Illustrator files which then get shifted out of place whenever I make an adjustment!
    Is there any way to get CS5 to treat Smart Objects in the same way that CS4 did before it?

    Regards your comments above, yes I am aware of that discrepancy, but I very carefully make sure not to change the size or position of the largest object. In other words, when ALL objects on ALL layers are selected, I make sure that the OVERALL X/Y co-ordinates AND X/Y dimensions do not change between adjustments of various isolated objects.
    (I actually deliberately keep a "spare" oversized rectangle on a bottom layer to maintain overall size, and it's this layer that I normally switch off in my final Smart Object.)

  • Any idea why the sissor cut tool would behave differently than it has. It makes the cut several seconds in advance of my marker-now. Previously it was precise. Thx..

    The sissor tool is making arbitrary cuts, in areas I have not specified. I have  used this tool alot. Has previously worked as desired.
    Any idea what might be controling it to act this way?
    Thank you.

    Hi
    Snap value set to something like Bar/Beat?
    CCT

  • After release the release version different than debug version ????

    Hello guys,
    I am having a HUGE issue with my release build version of my application, when i run my application through eclipse it runs perfectly, however after making a release build of the application and running it behaves different than the version run from eclipse ???????? has anyone ever had this problem before and if so what can you do to prevent this behavior. thank you for any advice on this issue

    Hello,
    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    More information about reinstalling Firefox can be found [https://support.mozilla.org/en-US/kb/troubleshoot-and-diagnose-firefox-problems?esab=a&s=troubleshooting&r=3&as=s#w_5-reinstall-firefox here].
    <b>WARNING:</b> Do not run Firefox's uninstaller or use a third party remover as part of this process, because that could permanently delete your Firefox data, including but not limited to, extensions, cache, cookies, bookmarks, personal settings and saved passwords. <u>These cannot be recovered unless they have been backed up to an external device!</u>
    Please report back to see if this helped you!
    Thank you.

  • Multiple idocs in Single Job behaves differently (RBDAPP01)

    Hi,
    How to debug the background Job for Program RBDAPP01 which already posted the Idocs in 53 status from 64.
    I wanted to analyze why multiple idocs in same job behave differently than the single idoc in a job. In case of multiple idocs in a single job i put packet size 1, but no help.
    Thanks,
    Asit Purbey.

    I found the solution, so closing this Post.

  • 'Play Full Screen' looks different than 'play'  (makes timing errors)

    In iMovie, 'Play Full Screen' behaves differently than 'Play'  Makes timing errors, cuts off the beginning of commentaries, etc.

    You can't disable tap/zoom scaling. What happens if you add a margin and disable thumbnail?
    Can you convert them to a Keynote presentation (Hype?)?
    One option would be to reduce the original video dimensions and add a frame/mask around it before adding into a book, that way when it is expanded, it sits at a smaller size. Bunch of work, maybe, so unless you have higher rez video, that may be your best option.

  • Insert Stmt behaving differently within a PL/SQL block than independently

    I have an INSERT INTO statement that is behaving different within a PL/SQL block than it does if ran as an independent SQL query. When executed within a PL/SQL block the INSERT statement does insert rows, but only less than 50% of the rows returned by the SELECT statement used by the INSERT. There are no constraints and the only check on the destination table is a NOT NULL for supplier_id column.
    BEGIN
        INSERT INTO suppliers (supplier_id, supplier_name)
        SELECT account_no, name FROM customers WHERE city = 'Newark';
    END;Can anyone help me with this?
    Thanks

    Thought this sounded familiar:
    INSERT INTO statement that is behaving different within a PL/SQL block

  • HTML Tag formatting is behaving differently in CC than CS6?

    Why is HTML Tag formatting is behaving differently in CC than it did in CS6, even though the settings are set the same?!??!
    I've double-checked the tag settings - they are absolutely the same between both versions, but when I use APPLY formatting to a page in CC, it completely mangles the tags formatting on ANY html file...
    What's going on?  Any way to get CC to act properly like it does in CS6??

    Can you provide code examples of what you mean by mangled?
    It could be that your code contains errors which DW is attempting to reconcile. 
    CSS - http://jigsaw.w3.org/css-validator/
    HTML - http://validator.w3.org/
    JavaScript - http://www.jslint.com/
    PHP -  http://phpcodechecker.com/
    Or perhaps your code format is not set-up the same in both apps.  Edit >  Tag Libraries.
    Nancy O.

  • Pdf duplication in Preview for Mac behaving differently

    When duplicating a PDF in Preview for Mac, a new image window would open that I could click on to select, then rename and save elsewhere. Just recently, seems like in the last few days, Preview now behaves differently. Now when I select duplicate, a duplicate document is created in the same window but shows as a thumbnail in the sidebar. This is confusing as it appears that Preview is trying to create a duplicate of the document at the end of the original. I don't appear to have received any updates from Apple that would account for this sudden change in behaviour (shows Preview last modified 18th November). I don't appear to be able to change this in Preview's Preferences. Can I revert Preview to the previous behaviour? (I'm using latest version of Preview in Yosemite on a 24" iMac).

    I always find that Preview can garble certain graphic elements or even slightly alter the over-all color of the PDF. However, I also find it is a lot quicker to deal with PDFs, especially when it comes to printing. Sometimes I get a PDF that I send to print on our Canon copier and I end up canceling the print job after 10-15 minutes because it's still processing. I open that same PDF in Preview and it prints in less than a minute. The same can be said of InDesign so on certain jobs I end up exporting as a PDF and printing from Preview. This might say a lot about Adobe's Printing Engine... (sorry, off-topic)

  • PS1 String behaving differently - how to get only "/"?

    Hi there, let me first start with the 4 lines of code I use for my PS1 string (in bash)
    boBlack="\[\033[1;30m\]"
    boGreen="\[\033[1;32m\]"
    boCyanOnBlack="\[\033[1;36;40m\]"
    export PS1="$boCyanOnBlack"'${PWD%*/}'"$boBlack/$boGreen"
    Now what does this do?
    It will make a coloured string as part of my current working dir. (Prompt)
    Example:
    If i go to
    cd /home/shevegen
    then my prompt will look like:
    /home/shevegen/
    (I like the trailing / because I can copy/paste easier with it. )
    Now, the problem is when i am doing this:
    cd /
    then I am in /
    and while in konsole it works, in VTE this does not work.
    Does anyone know why this string behaves differently in
    VTE and Konsole? VTE for example does not show any
    / when you are in
    the / root dir
    PS: Anyone has a hint or knows why in VTE and in gnome-terminal this does
    not work?
    Last edited by shevegen (2007-03-19 12:10:39)

    Hi Dennis,
    thanks for your suggestion, unfortunately I already tried that and it didn't work. I have created several unique styles. Problem is, I need two diferent styles in *one paragraph* - one style for the "heading", which is consistent to the APA manual not an own paragraph (sorry, not my idea...), and another style for the following text. As my example above shows, the heading is followed by usual text and I may not press return after the heading and switch to a new paragraph..
    It has to look exactly like this:
    +heading in italics.+ Now heading is followed by usual text without changing the paragraph or starting a new line. Blurb blurb blurb whatsoever blurb blurb. The text goes on an on and an on you see.
    I can't format the heading differently than the text (because if I try, the whole paragraph is formatted this way) and so I can't add just the heading to the TOC. Do you see what my problem is? Got any other suggestion?

  • Why does "Link Media" behave differently when used as a keyboard shortcut vs when right clicked???

    Not sure whether anyone else is encountering this, but the "Link Media" command behaves differently when right clicked as opposed to when used as a keyboard shortcut.
    When you right click to select that option for an offline file, you get only the corresponding disconnected source media. But when you execute "Link Media" via a keyboard shortcut, PP brings up a huge list of all other offline media. Why does it only do that when you use the keyboard shortcut for "Link Media" but not when you right click "Link Media".
    I'd like to get the Link Media command to behave via the keyboard shortcut the same way it behaves when right clicked. I don't want to have to deal with relinking a hundred other files, but just the single offline file I'm working on.

    Among the alternatives not mentioned... Using a TiVo DVR, rather than the X1; a Roamio Plus or Pro would solve both the concern over the quality of the DVR, as well as providing the MoCA bridge capability the poster so desperately wanted the X1 DVR to provide. (Although the TiVo's support only MoCA 1.1.) Just get a third-party MoCA adapter for the distant location. Why the hang-up on having a device provided by Comcast? This seems especially ironic given the opinions expressed regarding payments over time to Comcast. If a MoCA 2.0 bridge was the requirement, they don't exist outside providers. So couldn't the poster have simply requested a replacement XB3 from the local office and configured it down to only providing MoCA bridging -- and perhaps as a wireless access point? Comcast would bill him the monthly rate for the extra device, but such is the state of MoCA 2.0. Much of the OP sounds like frustration over devices providing capabilities the poster *thinks* they should have.

  • Fonts behave different in Photoshop in comparison with Illustrator

    I have a problem: it seems that some fonts behave different in Photoshop CS than in Illustrator CS on my Windows XP. Where Illustrator opens a vector (Ill) EPS file correct Photoshop shows me wrong characters sometimes: for example: an é becomes a wrong character: Capital O with a stroke through it. Frutiger was used.
    My question is: where does Photoshop behave different reading fonts in comparison with Illustrator?

    Perhaps you forgot to embed the font?
    Here comes an example, using characters  with accents.
    The font is GillSans-Schoolbook. The font or subset is embedded.
    The file extension TXT should be replaced by EPS after downloading.
    The EPS doesn't contain a preview image.
    The file is correctly handled by
    Photoshop CS2 (opened)
    InDesign CS2 (placed)
    Illustrator CS2 (opened)
    PSAlter (PostScript interpreter by Quite)
    All characters with accents are missing in
    Word 2007 (insert graphic)
    http://www.fho-emden.de/~hoffmann/buffel-7-sRGB-Dokument.txt
    Best regards --Gernot Hoffmann

Maybe you are looking for

  • Documents won't open on mac from IPAD using pages?

      I det an error message that says I need to upgrade but i have the latest version.  If I create or edit the file on my mac it works fine on my iphone or ipad but then I cannot open it again on my mac?  Extremely frustrating, can anyone help?

  • Install BootCamp windows 8 on external Boot Disk

    I have no internal hard disk, for other reasons. I need to install Windows 8 on an external hard disk, which is partitioned, and I boot from one partition (and the drive is GUID). My windows 8 is in the form of an iso, and I cannot burn it to a disk,

  • Characteristic base authorization in DMS

    Hi Friends, I need a characteristic base authorization in DMS. User should be able to maintain/change a value of char for which he is authorized. I tried a auth object in classification  C_CABN_GRP but that is not working in DMS.It only works in tcod

  • Problem sending FCP sequence to Compressor

    I'm a beginner at using Compressor. I had the following problems while completing the Motion 2 DVD tutorial that shipped with the Final Cut Studio Suite: 1. Upon exporting the sequence to Compressor, FCP gave a duplicate file name warning. 2. Compres

  • Material With Different Makes

    Guys , The client where our Implementation is going on , has material like motors , pumps etc. of different makes like Siemens, Kirloskar etc. in his stock. What I would like to know , should we maintain Material Master  for different makes. If I do