Syntacx for xslt with relational operator

hi
can any one tell me what is the exact syntax for using logical AND operator with <xsl:if>
i am using like this:
<xsl:if $test="xyz='abc' & ct>1>
i am getting errors.
please help me with the exact one
thanks

Amazingly, the logical AND operator in XPath is "and". Like this:<xsl:if $test="xyz='abc' and ct&gt;1>I will leave you to guess what the logical OR operator is.

Similar Messages

  • One file maximum for uploads with Safari, Opera, FireFox and Chrome to OneDive

    Some Windows 7 users have complained to they can only mark one file maximum for uploading with Safari, Opera, FireFox and Chrome to OneDive

    Hi,
    You mean that you access OneDrive via web browser?
    From my tests, everything is normal and it seems there is no setting in browser to configure this number.
    if I misunderstand this issue, please give us more information on it.
    Alex Zhao
    TechNet Community Support

  • BP Selection by Role- Problem with relation operator

    Hai Experts,
    I am using  sandbox system. I am trying to search Business Partner by role, when I give the role as BUP002(Prospect) and enter, the system is throwing a message that "BP Role BUP00 does not exist" and i have checked the relation operator which will be available next to the BP Role(when we input the role as BUP002), the relation has been set it as " Role=BUP00" , because we do not have any role with BUP00,hence the system is throwing that message. Now i need your help where do we set that relation may be in configuration or customization.Kindly provide me the exact path and way to do it.
    Thanks and Regards,
    Teja

    Hi Teja,
    Please check the SPRO settings, just follow the path below
    SPRO->Click SAP Reference IMG->Customer Relationship Management->Master data->Business Partner-> Basic settings->Assign template for content managment folder to BP roles,
    Just check it, here there is a view that u need to maintain.
    Just check it I am not so sure about, as I dont have a local system in which I can try it. So check it and let me know if it is working fine.
    Have a grat day ahead.
    Thanks and Regards,
    Antony Thomas

  • Concat strings for use with ternay operator

    Hi,
    depending on a boolean i want to output an welcome message for a user logged in or "login failed".
    problem: ternary operator only acceps one expression for each argument.
    so, this is ok:
    <t:outputText  value="#{login.loggedIn ? bundle.loginWelcome  : bundle.loginFailed}" />but i want to output the username also, like:
    <t:outputText  value="#{login.loggedIn ? bundle.loginWelcome login.user : bundle.loginFailed}" />but this throws this:
    ERROR - Servlet.service() for servlet jsp threw exception
    javax.faces.el.ReferenceSyntaxException: Invalid expression: '${login.loggedIn ? (bundle.loginWelcome login.username) : bundle.loginFailed}'
    Caused by: org.apache.commons.el.parser.ParseException: Encountered "? ( bundle . loginWelcome login" at line 1, column 18.
    Was expecting one of:
    ...is there a way to concat strings in EL?
    thx

    Why don't you create a method on the managed bean that do that for you?

  • DialPlan string for SPA122 with @sip-operator;uid/usr= ; pwd=

    Hello!
    Look this document:
    ADMINISTRATION
    GUIDE
    Cisco SPA100 Series Phone Adapters
    SPA112 and SPA122
    http://www.cisco.com/en/US/docs/voice_ip_comm/csbpvga/spa100-200/admin_guide/SPA100_AG_OL-25117.pdf
    Pages 95-96:
    Example 1:
    *1xxxxxxxxxx<:@fwdnat.pulver.com:5082;uid=jsmith;pwd=xy z
    Example 2:
    *1xxxxxxxxxx<:@fwd.pulver.com;nat;uid=jsmith;pwd=xyz
    At first, I think, after that must be >
    But it's not work.
    Are You sure that SPA122 with actual soft/firmware - works correctly with @net uid= pwd= in DialPlan?
    Read this http://www.cisco.com/en/US/docs/voice_ip_comm/csbpvga/spa100-200/admin_guide/spa232d_ag_78-20305.pdf
    ADMINISTRATION
    GUIDE
    Cisco SPA232D Mobility Enhanced Phone Adapter
    Pages 116,207.
    Examples like before but also:
    <8,:1408>xxxxxxx<:@pstn.cisco.com:5061;usr=joe;pwd=joe_pwd;nat>
    Here You see not only uid but also usr.
    In other pdf for family like SPA122 device You also see uid or usr.
    So uid= or usr= for SPA122?
    Possible there must be ="..." like in some examples for some ATA-family manuals? Or without " " ?
    So What string with @ and pwd in DialPlan is right for SPA122?
    Or when You made firmware were it works correctly like engaged in documentation for SPA122?

    Hi Name,
    Thanks for letting us know about the errors in the ATA guides. The SPA1xx and SPA232D share the same/similar dialplan rules as the PAP2T, SPA2102, and SPA3012. It looks like an example was added that was not properly reviewed so I'll file a CDETS for each document and get the dialplan strings corrected.
    A better description of the dialplan starts on page 43 in the Digit Sequences section of the http://www.cisco.com/en/US/docs/voice_ip_comm/csbpvga/spa100-200/admin_guide/SPA100_AG_OL-25117.pdf guide.
    To address the issues here:
    SPA112 and SPA122
    http://www.cisco.com/en/US/docs/voice_ip_comm/csbpvga/spa100-200/admin_guide/SPA100_AG_OL-25117.pdf
    Pages 95-96:
    Example 1:
    *1xxxxxxxxxx<:@fwdnat.pulver.com:5082;uid=jsmith;pwd=xy z
    Example 2:
    *1xxxxxxxxxx<:@fwd.pulver.com;nat;uid=jsmith;pwd=xyz
       Should be:
    Example 1:
    [comment: I believe that in the example, the author is trying to show that ";" is used as a delimeter between sequence elements but omitted to show the parenthesis around the dialplan and only showed one sequence so no "|" (pipe symbol) is shown. The author also appears to have forgotten the closing angle bracket ">" around the substitution sequence so I've corrected below.
    See page 43 of the SPA1xx admin guide that you'd linked to for more details.]
    (*1xxxxxxxxxx<:@fwdnat.pulver.com:5082;uid=jsmith;pwd=xyz>)  [note: space is removed between y and z in xyz in the password]
    The example is trying to show that if the user dials any number starting with "*", followed by "1" and any 10 other numbers, the entire dialed sequence is replaced with @fwdnat.pulver.com:5082;uid=jsmith;pwd=xyz [note: I'll test this and report back later]
    Example 2:
    similar comments and corrections as above
    Thanks,
    Patrick---

  • Passing Relational operator along with input

    Hi friends
    I have a procedure
    get_emp_list(p_sal in varchar2
    p_out out sys_refcursor)
    as
    begin
    open p_out
    for
    select * from emp
    where sal (=,<,>) p_sal;
    end;
    Friends pls help me in writing the query,
    The input will be like <1000 or >1000 or =1000.
    Relational operator will be passed as a input in p_sal
    I have to take the output based on the input values.
    Pls give me any tips
    Rajesh

    or more accurately as per your requirements...
    procedure get_emp_list(p_sal in varchar2, p_out out sys_refcursor) as
    begin
      open p_out for
        select * from emp
        where (substr(p_sal,1,1) = '=' and sal = to_number(substr(p_sal,2)))
        or    (substr(p_sal,1,1) = '<' and sal < to_number(substr(p_sal,2)))
        or    (substr(p_sal,1,1) = '>' and sal > to_number(substr(p_sal,2)));
    end;However this assumes the operator will only be a single character so you'll have to alter accordingly if you want to deal with <=, >= etc.

  • How do I access "Firefox is NOT compatible with this application. For best performance, please use Internet Explorer 5.0 and above...." web sites; when I try to download any alternate browser, then a warning that alternate is "imcompatable with your opera

    How do I access websites that warn: "Firefox is NOT compatible with this application. For best performance, please use Internet Explorer 5.0 and above...."? When I try to download any alternate browser, all I get is another warning that the alternate is "not compatible with your operating system." Is Firefox preventing this? The site listed below is a job application site. I've had this same problem with other job application sites also.
    == URL of affected sites ==
    https://storefront.kenexa.com/lithia/cc/Home.ss

    There should be a User Agent Switcher menu item under Tools, which gives you the browser names you can impersonate.
    The menu item name changes to the browser UA you are presently using.
    There is also a User Agent Switcher button, you can add it using View -> Toolbars -> Customize, and dragging the button to your toolbar.
    See http://chrispederick.com/work/user-agent-switcher/features/ and http://chrispederick.com/work/user-agent-switcher/help/
    You can just start trying IE versions (or the versions it says on the site) until it lets you in.

  • How to use tree tables with CRUD operation for begineers ADF 11g

    This is Friday night call for help.
    This is only few sample ressources on the web for tree table and only one with CRUD operation.
    I used this one http://jobinesh.blogspot.com/2010/05/crud-operations-on-tree-table.html because this is the only one that address CRUD.
    And it is shaky. Deletion works fine but insertion not very well. This is working using custom code provided below.
    Depending if the user selection in the tree, the code insert from the master node to the children node.
    Any other options because it is not working well.
    Also where Oracle describes how to use the row, rowset, itorator API? This is really hard to understand like almost if we should not use it.
    then if not how can I insert in tree with two nodes and insert in the parent or children depending the users selection.
    Lately I 'been posting questions on this forum with no response. This hurts. I understand developers cannot spend their time on this but People from Oracle, please help. We pay licenses...
    public void createChildren(RowIterator ri, Key selectedNodeKey) {
    final String deptViewDefName = "model.DepartmentsView";
    final String empViewDefName = "model.EmployeesView";
    if (ri != null && selectedNodeKey != null) {
    Row last = ri.last();
    Key lastRowKey = last.getKey();
    // if the select row is not the last row in the row iterator...
    Row[] found = ri.findByKey(selectedNodeKey, 1);
    if (found != null && found.length == 1) {
    Row foundRow = found[0];
    String nodeDefname =
    foundRow.getStructureDef().getDefFullName();
    if (nodeDefname.equals(deptViewDefName)) {
    RowSet parents =
    (RowSet)foundRow.getAttribute("EmployeesView");
    Row childrow = parents.createRow();
    parents.insertRow(childrow);
    } else {
    RowSet parents =
    (RowSet)foundRow.getAttribute("EmployeesView");
    Row childrow = parents.createRow();
    childrow.setAttribute("DepartmentId",
    foundRow.getAttribute("DepartmentId"));
    parents.insertRow(childrow);
    } else {
    System.out.println("Node not Found for " + selectedNodeKey);
    }

    I am looking for a sample that describe how to design a jsf page with a tree table.
    So you have Department and employees. In the tree first comes Department and if you click the node you see the employees assigned to this department.
    I need to be able to insert a new department or a new employee from the tree table by clicking on a insert button in the panel collection toolbar depending on user selection in the tree.
    I got part of it working but not good enough.
    By problem is the get insertion working
    I have a createChildren method in my AM implementation that get in input a RowIterator and selected node key.
    To goal is to create new records depending of the user selection and the input parameters get populated by the binding like this:
    #{backing_treeSampleBean.selectedNodeRowIterator} #{backing_TreeSampleBean.selectedNodeRowkey} via method binding with parameters.
    Is it the right approach?
    First to be able to insert a parent record, I select nothing in the tree and ri and selectedNodeKey comes to null
    we run this code
    ViewObjectImpl vo = getSchHolidaySchedExceptionsView1();
    //ViewObjectImpl vo = getDepartmentsView1();
    Row foundRow = vo.first();
    Row childrow = vo.createRow();
    vo.insertRow(childrow);
    A new blank entry appears in the parent node and we enter a value.
    The the problem starts when we want to add a child to this parent.
    We select the created parent and press the insert button, this code get executed
    if (nodeDefname.equals(deptViewDefName))
    //list of the children of the parent and create an new row
    RowSet childRows = (RowSet)foundRow.getAttribute("SchHolidayExceptionDatesView");
    Row childrow = childRows.createRow();
    childRows.insertRow(childrow);
    But the new entry does not appear, it is almost like it would be created for a different parent because this is a mandatory field that is not feel in yet and the interface complaints of a missing value. It is created somewhere just not a the right place... This is my guess.
    Do you see something wrong with the code?
    The full code og my create children method is there below
    I am using jdeveloper 11.1.1.3.0 any issues with tree table to know about with this version?
    Thanks for your help
    public void createChildren(RowIterator ri, Key selectedNodeKey) {
    final String deptViewDefName = "com.bcferries.app.pdfroutesched.model.SchHolidaySchedExceptionsView";
    final String empViewDefName = "com.bcferries.app.pdfroutesched.model.SchHolidayExceptionDatesView";
    if (ri != null && selectedNodeKey != null) {
    // last row
    Row last = ri.last();
    Key lastRowKey = last.getKey();
    // if the select row is not the last row in the row iterator...
    Row[] found = ri.findByKey(selectedNodeKey, 1);
    if (found != null && found.length == 1) {
    // foundRow is the row selected
    Row foundRow = found[0];
    // The row selected can be the parent node or the child node
    String nodeDefname = foundRow.getStructureDef().getDefFullName();
    // if parent row
    if (nodeDefname.equals(deptViewDefName))
    //list of the children of the parent and create an new row
    //works but we try to resolve the creation of a parent
    RowSet childRows = (RowSet)foundRow.getAttribute("SchHolidayExceptionDatesView");
    Row childrow = childRows.createRow();
    //childrow.setAttribute("HolidayDate", new java.util.Date().getDate());
    System.out.println("insert child row from master");
    childRows.insertRow(childrow);
    } else
    //RowSet ParentRow = (RowSet)foundRow.getAttribute("SchHolidaySchedExceptionsView");
    //RowSet childRows = (RowSet)ParentRow.first().getAttribute("SchHolidayExceptionDatesView");
    Row childrow = ri.createRow();
    System.out.println("insert child row from child ");
    } else {
    System.out.println("Node not Found for " + selectedNodeKey);
    } else {
    System.out.println(" param null try creating for first row : " +
    ri + " * " + selectedNodeKey);
    ViewObjectImpl vo = getSchHolidaySchedExceptionsView1();
    Row foundRow = vo.first();
    Row childrow = vo.createRow();
    vo.insertRow(childrow);
    }

  • View for active Incidents related to WI (Problem) with status (Active) works but can't be changed.

    Hi,
    I wanted to create a view of Incidents which are linked to a Problem (any problem).
    I did a quick test using the Incident (advanced) class, selected to display Incidents with status Active and [Work Item] Is Related To Work Item and status for Problem with the status Active.
    At this first test I didn't bother to select any specific columns to display but just went with the pre-selected ( Description, Display Name, Display Name) and it worked. 
    I got a list of expected Incidents in the view but having the Description column made it quite useless.
    So, when I try to select the columns I find useful it will not update and it returns a No items found message instead.
    (image removed due to limitations)
    It is of course possible to group by one of the Display Name fields and collapse to get a more workable view but it still lacks a lot of good information. One would like to include ID, title, Created date,
    date modified, Display Name for Affected User and Assigned to user, and a few others.
    I was just a bit stumped as to why this fails when changing the columns on a view that obviously is possible to create.
    Thanks in advance,
    Daniel

    Consider using the Advanced View Editor( or
    the free edition), since it has much more robust criteria and column editing capabilities. 

  • 'Genius' related question for anyone with over 1.2TB of music?

    Anyone out there with a iTunes library with over 1.2TB of music?
    Reason I ask, is that I've not been able to solve a problem in updating Genuis - I'm getting the error - 'Genius results can't be updated right now. There is not enough memory available ~ Please try again later.' or the 'unknown 4002 error'.  The steps I've taken to try and correct sometime back can be found in https://discussions.apple.com/message/12584815#12584815 and also shown here in sequence below. 
    I keep thinking this will be fixed with the next version iTunes but so far with the latest, things still the same.  So looking to see if anyone with a similar size library is having similar problems and it just a limitation of the program or it's something specific on my end that I can fix.
    Appreciate...
    Up to this weekend I've had not issues with Genius. Worked beautifully and updated last Sunday as I have been doing every week since Apple added Genius. Yesterday I added a few albums and went to update and now getting the error of 'Genius results can't be updated right now. There is not enough memory available ~ Please try again later.' Now my library is well over >200,000 songs and only added 6 albums this time. Music sits on a external 2TB drive ~100GB free and my MacBook Pro has over 60GB open. Running latest Mac OSX and latest iTunes. Nothing new installed or changed since last Genius update.
    To the points raised in this thread.
    1. I've been updated weekly with a Library with over 200K songs till now with no problem. Majority is what I've ripped from my albums & CDs.
    2. Deleted the albums recently added since last successful update - same result.
    3. Connected directly to the network bypassing router as suggested here - same result.
    4. Reinstalled iTunes program - same result.
    5. Repaired permissions - same result.
    Problem remains. Welcome any additional thoughts.
    Question for anyone with a music library
    https://discussions.apple.com/message/12584815#12584815
    Ok, tried all the suggestions here yet the problem remains.
    In addition what I posted above -
    1) Dumped the cookies in user/library/cookies folder
    2) Deleted the apple cookies found under Safari Preferences "Show Cookies"
    3) Repaired disk permissions
    4) Deleted iTunes Library Genius.itdb file
    5) Reinstalled iTunes (with the new 10.1 version)
    6) Restarted computer
    7) Rebuilt iTunes Library folder http://support.apple.com/kb/ht1451
    8) Deleted all iTunes dead tracks
    http://dougscripts.com/itunes/scripts/ss.php?sp=removedeadsuper
    9) Increased internet access speed
    10) Removed all open "[" and '}' brackets from songs, albums & artists
    10) Rebuilt my entire library from scratch!
    Is there anyone out there with over 200K songs that can update their Genius? One thing I noted is the genuis.itdb file is just over 2GB. I'm wondering if there is a maximum size on this based on the error I'm getting. Any thought or know info on this?
    Ok, think I may have found something here with this. I backed out all the music added prior to this problem occurring and ran the Genius update. All worked fine. I then started adding the music back little by little (running the update each time) until the problem returned. When the problem came back I ruled out the specific music added by backing that bit out, verified all was ok and added a different batch back in.
    Bottom-line it appears that when my library exceeds exactly 1.208TB the problem appears. Interestingly enough it does not appear to be related to the number of songs, the size of the genius.itdb file (in fact when it was working the file was at 2.25GB - larger than what I reported before). It specifically seems to be related to the size of the overall library - when I have it for example at 1.2079 all is ok, 1.2081 it fails with this error.
    I did try moving the library and related files to the external drive but same result. abavetta, I think your suggestion of this script may be a workaround for now - although from what I read, is this not the same that you can do anyway with iTunes by holding the alt/option key open start up? In fact I do have two libraries now - one with the 2TB drive which I use at home and another for 2x500GB disks I carry with me when i travel. I just reported the same back to Apple but doubt if any immediate solution will come for this. Too bad as one of the great things about having such a large library is the mixes you can generate via Genius. Anyway, such is life and will just live with this for now. I also just found this program called Tangerine! http://www.potionfactory.com/tangerine/ which creates playlists like Genius - although through a different technique I might also take a look at.

    Just to let all know that may be having a similar problem, what I found by accident to fix this problem.
    Reset all my Home Folder permissions using the resetpassword method from the startup utility in Lion.  Then turned off/on to reset Genius and cleaned out the cache folder for good measure.  Finally after more than a year without, have Genius up and running again.

  • Receiving Error : Please set the Receivables system options for this operating unit and ensure that the MO: Operating Unit profile option is correctly set with an operating unit that is set up in Receivables. while trying to create a new Customer.

    Hi All,
    We have set up a new Operating Unit in Oracle Apps. Now when I am trying to create a new Customer in that Operating Unit, I am receiving following error:
    ERROR MESSAGE:-Please set the Receivables system options for this operating unit and ensure that the MO: Operating Unit profile option is correctly set with an operating unit that is set up in Receivables.
    We do have MO: Operating Unit and MO: Default Operating Unit set properly at Responsibility level for the Responsibility through which I am accessing this form.
    Your help is appreciated!
    Thanks in advance,
    SKA

    You can refer this thread and check your MO operating unit is set or not https://community.oracle.com/message/3937028 thanks

  • Case with where clause - ORA-00920: Invalid relational operator

    Hi All, when I try to run the query below, I get the following error...
    ORA-00920: invalid relational operator
    00920. 00000 -  "invalid relational operator"
    *Cause:   
    *Action:
    Error at Line: 16 Column: 5
    Does anyone know what's wrong with my query? thanks in advance.
    SELECT concat (year,period)
    FROM DD_ACTUALS_FACT
    WHERE CASE Period
    WHEN 'JAN' THEN '01'
    WHEN 'FEB' THEN '02'
    WHEN 'MAR' THEN '03'
    WHEN 'APR' THEN '04'
    WHEN 'MAY' THEN '05'
    WHEN 'JUN' THEN '06'
    WHEN 'JUL' THEN '07'
    WHEN 'AUG' THEN '08'
    WHEN 'SEP' THEN '09'
    WHEN 'OCT' THEN '10'
    WHEN 'NOV' THEN '11'
    WHEN 'DEC' THEN '12'
    END as "MonthNo"
    ORDER BY CONCAT (year,"MonthNo") DESC

    The problem is the as "MonthNo" - you can't give an "AS" alias to an expression in a where clause.
    You have not actually given any condition, just a set of translations from period into a number.
    You also haven't said what you're trying to do.
    Perhaps you want:
    SELECT concat (year,period)
    FROM DD_ACTUALS_FACT
    WHERE something
    ORDER BY CONCAT (year, CASE Period
    WHEN 'JAN' THEN '01'
    WHEN 'FEB' THEN '02'
    WHEN 'MAR' THEN '03'
    WHEN 'APR' THEN '04'
    WHEN 'MAY' THEN '05'
    WHEN 'JUN' THEN '06'
    WHEN 'JUL' THEN '07'
    WHEN 'AUG' THEN '08'
    WHEN 'SEP' THEN '09'
    WHEN 'OCT' THEN '10'
    WHEN 'NOV' THEN '11'
    WHEN 'DEC' THEN '12'
    END  ) DESC

  • Reports for two costing Area With one operating concern

    Hi,
    What are the reports I can get if I am having two different costing area for my comapnies with same operating concern
    Thanks in advance for your input
    CHEERS

    Thanks Sreekanth ,
    I want to what are the reports that will be generated. And what cannot be done if we have two controlling area instead of one.
    CHEERS

  • Dynamic routing for a Business Service with multiple operations

    I have two business services with multiple operations. Business service A (bsA) has operations OpA1 and OpA2. Business service B (bsB) has operations OpB1 and OpB2.
    Depending on incoming Proxy message and operation, I have to do one of the following
    1. If someValue = A and operation= Op1 then invoke operation opA1 of bsA
    2. If someValue = B and operation= Op1 then invoke operation opB1 of bsB
    3. If someValue = C and operation= Op1 then invoke operation opA1 of bsA AND* operation opB1 of bsB and return aggregate data of both invocations
    1. If someValue = A and operation= Op2 then invoke operation opA2 of bsA
    2. If someValue = B and operation= Op2 then invoke operation opB2 of bsB
    3. If someValue = C and operation= Op2 then invoke operation opA2 of bsA AND* operation opB2 of bsB and return aggregate data of both invocations
    Using a dynamic route node or dynamic routing options, I am able to achieve cases 1, 2, 4, and 5.
    But for cases 3 & 6, I can not use a route node. When I use a Service call out instead, then I am forced to create a Operational branch but that does not seem like the best design since for every new operation added to the business services, I have to add a new branch to the Operational branch and redo all the functionality for that branch.
    Basically, I am looking to achieve the functionality of the Route node ( no need to specify the operation ).
    Any thoughts/ideas on what the best design would be?
    thanks

    For cases 3 & 6, why don't you route to another proxy service where you can simple do two service callouts, merge output data somehow and return them to the first proxy?
    If you look for "special route feature", that could possibly call two services for a single message, I'm afraid you won't succeed.

  • I purchased photoshop CS5 for my windows vista operating system. I purchased a canon 7 D some yrs ago no problem. I purchased canon 7D mk 11 in december 2014. The supplied software will not work with vista. Photoshop CS5 will not accept canon7D mk11. Can

    I purchased Photoshop CS5 for my windows vista operating system. I purchased a canon 7 D some yrs ago no problem. I purchased canon 7D mk 11 in December 2014. The supplied software will not work with vista. Photoshop CS5 will not accept canon7D mk11. Can someone please tell me how i process canon 7D mk11 photos ?????. (is it possible to bypass camera raw and open the photo straight into CS5 without using camera raw first. if so how do i do that. if not how do i process pictures).
    Thank you.
    Brian in the UK.

    Photoshop by itself cannot process raw image data. That is why the Camera Raw plug-in was developed. You could try the DNG converter and convert your images to the DNG format and then the Camera Raw that you have would be able to open them. I can't recommend Lightroom because you are using Vista, and Lightroom 5 cannot be used with that operating system. It may be time for you to get a new computer and upgrade your software.

Maybe you are looking for

  • Recovery disk Creator & data partition won't work - Satellite L300

    My niece asked me to re-install her Toshiba Satellite L300 laptop, because the windows installation is rather buggy. She didn't have a recovery disk. Using Toshiba's Recovery Disk Creator I tried creating a recovery disk. However, the program wouldn'

  • File to File Scenario without Mapping

    Hi Gurus' I have a requirement in my current project. the source system (mdm) is sending around 7 files and these files have to be picked from the source location path by PI file adapters and these should be sent to BW(receiver) for generating the re

  • Dynamic language translation with XML publisher/XLIFF

    Greetings all - We are on an Oracle 11i.5.8 global environment. There is a need for some of the countries to print their bank checks in their local language. Even with pre-printed stationary etc., the existing challenge is to dynamically print the am

  • Edit documents in Oracle Database, Sharepoint Like, WebDAV?

    Hello out there! I have a web application written in Java (JSP/Struts/Oracle ADF). The application runs on Oracle Application Server 10g, as well as an Oracle 10g database. I will probably be migrating to WebLogic in the near future. In my database,

  • Kindle Fire HD support

    I picked up a Kindle Fire HD today and found that one of my apps is not working on the device I have found no documentation that indicates that there are any problems with older apps and the Kindle Fire HD, and Gold Level support has provided no help