How to use Xqueries in OSB 10gR3 ?

Hi,
I have some trouble with OSB 10gR3 Xqueries.
I try to extract (in a "FLWOR" loop ) the indexed i = 2 or i = 3 corresponding customer.
I used 2 Xqueries to achieve it but I'm stuck. Can anyone help ?
Thanks
Query 1
$body/sdf:updateCustomersResponse/sdf:ResponseData/sdf:customer[$index]
Query 2
$body/sdf:updateCustomersResponse/sdf:ResponseData/sdf:customer[2]
Here is the input body used:
<SOAP-ENV:Body      
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     <ns:updateCustomersResponse      
     xmlns:ns="http://www.example.org/abc">
     <ns:ResponseData>
     <ns:customer>
     <ns:fax>00990001</ns:fax>
     <ns:tel>00991001</ns:tel>
     </ns:customer>
     <ns:customer>
     <ns:fax>00990002</ns:fax>
     <ns:tel>0099100100</ns:tel>
     </ns:customer>
     <ns:customer>
     <ns:fax>00990003</ns:fax>
     <ns:tel>00991222</ns:tel>
     </ns:customer>
     </ns:ResponseData>
</ns:updateCustomersResponse>
</SOAP-ENV:Body>
When I use Query2
$body/sdf:updateCustomersResponse/sdf:ResponseData/sdf:customer[2]
I get the 2nd customer. It's correct.
     <ns:customer      
     xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
     xmlns:ns="http://www.example.org/abc"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     <ns:fax>00990002</ns:fax>
     <ns:tel>0099100100</ns:tel>
     </ns:customer>
But I need to do parse all the customers (here 3)
So I started to use such a query:     
$body/sdf:updateCustomersResponse/sdf:ResponseData/sdf:customer[$index]
In the OSB test console I define the value for $index as equal to 2 (no XML checked)
But the Xquery returns all 3 customers and not the indexed one (e.g the first or the third)
What is wrong ?
Is there any clear example in the Oracle documentation to define the "Dynamic Xquery" ?(if this helps ?)
<ns:customer      
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ns="http://www.example.org/abc"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     <ns:fax>00990001</ns:fax>
     <ns:tel>00991001</ns:tel>
     </ns:customer>
     <ns:customer      
     xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
     xmlns:ns="http://www.example.org/abc"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     <ns:fax>00990002</ns:fax>
     <ns:tel>0099100100</ns:tel>
     </ns:customer>
     <ns:customer      
     xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
     xmlns:ns="http://www.example.org/abc"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     <ns:fax>00990003</ns:fax>
     <ns:tel>00991222</ns:tel>
     </ns:customer>

What do you want to do with each seperate customer record?
Do you want to loop them in the osb flow itself, or from within a xquery (for each)
if you want to do it from the flow itself youi use the flow control > for each
For each variable 'mycustomer' in ./sdf:updateCustomersResponse/sdf:ResponseData/sdf:customer of variable 'body'
indexed by variable 'mycustomer_i' with total count in variable 'customer_count'
in an assign you can then use something like $mycustomer/ns:fax
that's how it would look like in osb flow itself.
Edited by: Eric Elzinga (IT-Eye) on Jan 12, 2010 9:05 AM

Similar Messages

  • How to use caching in OSB

    Hi all,
    I am very new to the OSB. I have got one requirement in which I should create a cache
    to store the result for a certain period of time. The result would be a collection of employees
    which comes by invoking a webserivce service. We have a webservice which returns the employees
    based on the search criteria. If someone want the same list of employees we are hitting the web service again
    instead of that we are planning to cache the result of the search criteria and use them if the same request
    comes, rather than invoking the web service every time. For that, Is there anything available in OSB ?? if so how
    can I make use of it.. Kindly come up with your help please.
    Thanks & Regards,
    Phanindra.

    my the business service might return more than 10,000 records can I still go with the in built cache? or will it lead to performance issue?If you have enough memory resource available and following the best practices, you won't have any performance issue. It is highly scalable. Please refer -
    http://tomhofte.blogspot.com/2010/06/coherence-in-oracle-fusion-middleware.html
    http://blogs.oracle.com/MarkSmith/entry/osb_and_coherence_integration_1
    Regards,
    Anuj

  • How to use typeswitch in osb xquery ?

    Hi all,
    I couldnt understand the syntax of the x query type switch used in osb.Can anybody kindly explain it or give links to examples.
    typeswitch (())
    case $case-var as element(*) return ()
    default ()
    1) what should be given inside the typeswitch (()) ?
    2) what should be given as this variable $case-var ?
    3) what is the meaning of sequence type element(*) ?
    4) Is the typeswitch in x query used to avoid multiple nested if or is it something else ?
    Thank you.
    Edited by: Arun Vikram on Jul 18, 2010 11:47 PM
    Edited by: Arun Vikram on Jul 19, 2010 12:00 AM

    Hi Arun,
    See the section "2.11 Operations on Datatypes" of below doc -
    http://www.w3.org/TR/2001/WD-xquery-20010607/
    typeswitch is explained with an example in this section. typeswitch is similar concept as "switch" in Java.
    1) what should be given inside the typeswitch (()) ?The expression whose dynamic type is being tested.
    2) what should be given as this variable $case-var ?Each CASE clause specifies the name of a type, which must be a subtype of the static type of the operand expression, followed by a RETURN expression.
    3) what is the meaning of sequence type element(*) ?Any XML node
    4) Is the typeswitch in x query used to avoid multiple nested if or is it something else ?As said,The typeswitch expression of XQuery allows users to write queries that are sensitive to dynamic type, yes it helps to avoid multiple nested if to fulfill this use case.
    Regards,
    Anuj
    Edited by: Anuj Dwivedi, TCS on Jul 19, 2010 12:32 PM

  • How To Use OSB's For Each to do this example?

    Hi All Friend:
    My XML From Assign . it SOAP Response Body variable is : RequestBussiNo. The Document is :
    <soap:Body xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <DownloadBusinessNOResponse xmlns="http://www.taiji.com.cn/">
    <DownloadBusinessNOResult>
    <BusinessNO>
    <string>150100110262188</string>
    <string>150100110280225</string>
    <string>150100110284768</string>
    </BusinessNO>
    <ArraySize>3</ArraySize>
    <Result>true</Result>
    <ReturnCode>0000-Interface execute successed!</ReturnCode>
    </DownloadBusinessNOResult>
    </DownloadBusinessNOResponse>
    </soap:Body>
    I Don't Know How to Use For Each Function to each this Document Get the "string" tag text;
    my friend Please help me. thanks.

    Check the below thread and let us know if it helps
    Re: OSB:for-each action working procedure with a sample.
    Re: Assign activity erros with XPath query string returns multiple nodes.
    Regards,
    Ramesh

  • How to use WebCenter Spaces 11g 2.0 Services in WebCenter Interaction 10gR3

    Hi,
    Can someone explain how to use WebCenter 11g Web 2.0 Services in WebCenter Interaction 10gR3. I have installed Webcenter 11g Spaces. I also have Webcenter Interaction 10gR3 installed. Wanted to find out how can I make use of 11g web 2.0 services i.e. wiki,blog,discussions etc. in WCI 10gR3. How can I configure those services in 10gR3.
    As reading oracle notes it says there is a seemless integration of Web 2.0 11g Services in WCI 10gR3 but can't find any steps, tutorials or examples on how to do that. Any help is appreciated.
    Thanks.

    guest0012 wrote:
    As reading oracle notes it says there is a seamless integration of Web 2.0 11g Services in WCI 10gR3 but can't find any steps, tutorials or examples on how to do that.Nothing like that seamless integration with zero documentation:)

  • OSB 10gr3 XQuery with CDATA - how to best do this?

    Hi There,
    I am writing an XQuery function to transform from one schema to another. My target schema has an attribute that is a string (xs:string), but the related protocol uses is for embedding another XML schema. Therefore I would like to treat the embedded value as an XML document using the CDATA command. I have tried using fn:concat and fn-bea:serialize but they do not work. There was an older thread :
    Returning CDATA using XQuery in ALSB
    in which the fn:inline is suggested, but this is not a valid function in the OSB10gR3 version.
    Can somebody provide me with an idea about how to use CDATA in an xquery ? Here is an example of the non-working fn:concat implementation:
    <ns0:abcRequest>
    <ns0:abcRequest>
    {fn:concat("<![CDATA[") }
    { $abcMessage/@* , $abcMessage/node() }
    {fn:concat("]]>") }
    </ns0:abcRequest>
    <ns0:abcEgmId>{ xs:string( $abcEgmId ) }</ns0:abcEgmId>
    <ns0:abcHostId>{ xs:int( $abcHostId ) }</ns0:abcHostId>
    </ns0:abcRequest>
    Any ideas for OSB 10g R3 would be much appreciated.
    Thanks,
    David.

    Hi Anuj,
    The serialize function does not escape the contents properly. It converts ">" to "Ambersand-G-T-Semicolon" (I had to spell them out since this forum had converted the characters back to the greater than symbol). I need to have the embedded CDATA and XML document untouched for subsequent processing on the side of the SOAP Provider (which I have no control over).
    So I want to achieve:
    <xmlElement>
    <innerElement><![CDATA[<myEmbeddedXML><nextedElement>....</myEmbeddedXML></nextedElement>]]>
    </xmlElement>
    Does this make sense ?
    Thanks,
    David.
    Edited by: user10313579 on Oct 27, 2010 9:30 PM

  • Using 64 bit JRockit with OSB 10gR3

    Is it a good idea to use 64 bit JRockit JVM with OSB 10gR3?
    As per my knowledge OSB 10gR3 uses 32bit JVM. Our production environment is 64 bit Linux box having 32GB memory. But we are not appropriately able to use it if we are using 2 bit JVM (like -Xmx in JVM cannot be equal or more than 4GB). I am planning to use 64 bit JRockit JVM to run Weblogic servers
    Is there any known issues or I am simply missing something?

    Hello Calvin,
    I found the supported configs docs for OSB 10gR3 here:
    http://download.oracle.com/docs/cd/E13196_01/platform/suppconfigs/configs_al10gr3/osb10gr3/overview.html#1128234
    The 64-bit JRockit does seem to be supported on Oracle and Red Hat Linux, so it should work just fine.
    Henrik

  • Query regarding the tutorial for Oracle Service Bus (OSB 10gR3)

    Hi,
    I am working on a tutorial of Oracle Service Bus (OSB 10gR3).
    I have created the proxy service and the Business Service, using Oracle Service Bus console.
    The details are as follows:
    Proxy service: LoanGateway
    Business service1: A value of 4.9 or less causes the message to be routed to the ManagerLoanReview business service.
    Business service2: A value of 5.0 or greater causes the message to be routed to the NormalLoan business service.
    When i send the request message, so that it gets routed from proxy service to one of the business service than it gives following error.
    Request Document
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Header xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    </soap:Header>
    <soapenv:Body>
    <exam:processLoanApp xmlns:exam="http://example.org">
    <loanRequest xsi:type="java:LoanStruct" xmlns:java="java:normal.client" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <!--Optional:-->
    <java:Name>Smith</java:Name>
    <!--Optional:-->
    <java:SSN>1234567</java:SSN>
    <!--Optional:-->
    <java:Rate>4.1</java:Rate>
    <!--Optional:-->
    <java:Amount>9000000</java:Amount>
    <!--Optional:-->
    <java:NumOfYear>10</java:NumOfYear>
    <!--Optional:-->
    <java:Notes>Manager Loan Application Review Service</java:Notes>
    </loanRequest>
    </exam:processLoanApp>
    </soapenv:Body>
    </soapenv:Envelope>
    Response Document
    The invocation resulted in an error: .
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Body>
    <soapenv:Fault>
    <faultcode>soapenv:Server</faultcode>
    <faultstring>
    BEA-380002: Tried all: '1' addresses, but could not connect over HTTP to server: 'localhost', port: '7021'
    </faultstring>
    <detail>
    <con:fault xmlns:con="http://www.bea.com/wli/sb/context">
    <con:errorCode>BEA-380002</con:errorCode>
    <con:reason>
    Tried all: '1' addresses, but could not connect over HTTP to server: 'localhost', port: '7021'
    </con:reason>
    <con:location>
    <con:node>RouteNode1</con:node>
    <con:path>request-pipeline</con:path>
    </con:location>
    </con:fault>
    </detail>
    </soapenv:Fault>
    </soapenv:Body>
    </soapenv:Envelope>
    Response Metadata
    <con:metadata xmlns:con="http://www.bea.com/wli/sb/test/config">
    <tran:headers xsi:type="http:HttpResponseHeaders" xmlns:http="http://www.bea.com/wli/sb/transports/http" xmlns:tran="http://www.bea.com/wli/sb/transports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <http:Content-Type>text/xml; charset=utf-8</http:Content-Type>
    </tran:headers>
    <tran:response-code xmlns:tran="http://www.bea.com/wli/sb/transports">1</tran:response-code>
    <tran:encoding xmlns:tran="http://www.bea.com/wli/sb/transports">utf-8</tran:encoding>
    </con:metadata>

    I have the same problem and I'm not able to telnet localhost on port 7021. How can I change this port number I think that port must be 7001, it is correct?Examples server domain is pre-configured for port 7021. The samples domain will have the examples properly deployed in this domain out of box. You dont need to change any thing in {BEA_HOME}\osb_10.3\samples\domains\servicebus\config.
    I doubt this has to do something with firewall . Check the last statement in the log after starting the domain.
    <May 19, 2009 8:50:09 AM IST> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 10.177.242.25:7001 for protocols iiop, t3, ldap, snmp, http.>
    <May 19, 2009 8:50:09 AM IST> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on 127.0.0.1:7001 for protocols iiop, t3, ldap, snmp, http.>
    <May 19, 2009 8:50:09 AM IST> <Notice> <WebLogicServer> <BEA-000331> <Started WebLogic Admin Server "AdminServer" for domain "base_domain" running in Development Mode>
    <May 19, 2009 8:50:09 AM IST> <Warning> <Server> <BEA-002611> <Hostname "mneelapu", maps to multiple IP addresses: 10.177.242.25, 127.0.0.1>
    <May 19, 2009 8:50:09 AM IST> <Warning> <Server> <BEA-002611> <Hostname "XYZ-v411-10-177-242-25.oracle.com", maps to multiple IP addresses: 10.177.242.25, 127.0.0.1>
    <May 19, 2009 8:50:09 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <May 19, 2009 8:50:09 AM IST> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    What are you seeing in your log file?
    Edited by: mneelapu on May 19, 2009 9:58 AM

  • Dynamic Routing in OSB 10gR3

    Hello All,
    I am trying to do a POC of our use-case and wanted to use the Dynamic Routing feature of OSB 10gR3 -
    - Create a Proxy which will accept service_id, version, operation and generic input request
    - Proxy should do lookup in the Routing Table (XQuery Resource) and based on the service_id as key will provide the service endpoint as -
    <ctx:route>
    <ctx:service isProxy="true"> {$routingtable/row[logical/text()=$body/ServiceRequest/ServiceId/text()]/physical/text()}</ctx:service>
    <ctx:operation>{$body/ServiceRequest/OperationName/text()}</ctx:operation>
    </ctx:route>
    - Proxy should also carry out the transformation from generic input request to specific as per the operation.
    - Proxy should then be able to call the other proxy services (as per endpoint in the routing table) and the specified operation.
    Questions -
    Is this possible in OSB 10gR3? What service type (WSDL, AnySOAP, AnyXML, messaging) should the generic proxy be? Any alternative to this approach.
    So far, I have used ALSB/OSB for simple use-cases and this is more complex so I am seeking information and feedback on this use-case and how to move forward with this use-case.
    Thanks,

    Thanks mneelapu.
    I started this use-case on baby-steps and I tried use the dynamic routing to call the operation on a proxy services
    Generic Proxy (using dynamic routing) -----> Proxy ---> Business <----WSDL (Target Service)
    Here are the steps in my code -
    (1) Created the Proxy ---> Business <----WSDL (Target Service) and tested using the test console.. all works fine.
    (2) Created Generic proxy (Messaging Type with xml as input) and I am passing the xml as
    <ServiceRequest>
    <ServiceId>TestWS</ServiceId>
    <OperationName>getStatus</OperationName>
    </ServiceRequest>
    (3) Created the pipeline pair and in the request pipeline added the stage and -
    - assign the Routing Table (as XQuery Resource) to the $routingtable varible
    (Routing Table XML looks like - <routing><row><logical>TestWS</logical><physical>/TestSB/TestPS_1</physical></row></routing>)
    - assign the XQuery expression
    <ctx:route>
    <ctx:service isProxy="true"> {$routingtable/row[logical/text()=$body/ServiceRequest/ServiceId]/physical/text()}</ctx:service>
    <ctx:operation>{$body/ServiceRequest/OperationName}</ctx:operation>
    </ctx:route>
    to $routeresult variable
    (4) Added the Route Node with dyanmic routing action added the $routeresult in the expression.
    I am getting BEA-382612 (Error preparing message for dispatch). I followed the steps as mentioned on e-docs, what am I missing here?
    -J
    Thanks,

  • Holding Request within OSB 10gR3

    I have a requirement where OSB 10gR3 needs to hold on to the soap request (from the consumer) under certain conditions and send to the target service (via Business Service) only when the conditions matche. I am just wondering what is the best/optimal way to achieve this within OSB 10gR3 - JMS, DB, File, any other.. but all will require some degree of coding (Java callouts).
    Appreciate any inputs or experience people have encountered in the field.
    Thx.

    Hisaak,
    You are correct. This is more of a BPEL use-case rather than OSB. I am trying to use the JMS persistence for storing the request and when an external event arrives in another JMS Queue, I have a Proxy (JMS) listens for the event and read all the request from the JMS queue and send to the target service.
    Eduardo,
    Thanks for mentioning this. The consumers will be calling this service asynchronously (as they can't wait (and block) for the condition to be true to receive the response). Once OSB received the request from the consumers it is OSB's resposnsibility to send it successfully to target service or send notifications (emails) in case of failure. Since OSB is stateless and as I mentioned this use-case is more on the stateful side, some persistence needs to happen on the OSB as Hisaak mentioned in this earlier post.
    Thanks for your input, feedback and ideas. Lets see how the design for this use-case using OSB evolve at my organization.
    Thx

  • OSB 10gR3 + Oracle 10gR3 BPEL

    Hello
    Is anyone using a combination of OSB 10gR3 + Oracle 10gR3 BPEL and if so, how are you getting on with it?
    Hannah

    You can use OSB 10gR3 + Oracle 10gR3 BPEL together, but each of them must be installed in his own directory. OSB is running on Java 1.6, while BPEL is running in Java 1.5. Out of the box, BPEL is runing on the Oracle Application Server (OC4J), it can run under Weblogic, but this is WLS 9.2
    Marc
    http://orasoa.blogspot.com

  • Create user namespace in OSB 10gR3

    In OSB 10gR3 we can only create user namespace in a stage, but another stage can not use this specified namespace.
    can we create a global namespace for everystate like system namespace? and how?
    Thx

    Solved it,
    The problem was with the rule not the call.
    global.firstname is correct

  • Need help in creating a sample application using Oracle I\PM 10gR3.

    I am a new to Oracle I\PM 10gR3 and I need a guide to create a sample
    application using Filer and a sample Process.
    I have searched the net and was unable to find any documents. If any body has
    any kind of guide to create an application please let me know.
    Waiting for a response.

    Please see Kenichi Unnai in his blog "How to use UWL API for NetWeaver BPM Tasks"
    How to use UWL API for NetWeaver BPM Tasks
    The .sca-file can be found on the sap service marketplace, afterwards you need to import the .sca-file, add the SC to your "MyComponents" and then you can select your necessary DC's.

  • EJB Transport in OSB 10gR3

    Hi All,
    I need help on EJB transport in OSB 10gR3.
    In our scenario, a proxy will poll a location for any incoming file (xml). Once any file comes, proxy service will pick that file and pass it to the business service which will call an EJB deployed on weblogic 8.15 and pass incoming file to EJB by calling it's one operation.
    My questions are -
    1. Which kind of argument can be passed to EJB in above case (means can we pass the incoming xml as String or we have to pass it as the type of root node in xml)
    2. Is there any documentation which describes the implementation of above scenario in OSB?
    Thanks & Regards,
    Anuj Dwivedi

    Bala,
    the OSB Gives The JNDI Provider "ormi" does not exist.
    Reference to a non-existing instance: ForeignJNDIProvider System/JNDI Providers/ormi Have you configured Foreign JNDI http://e-docs.bea.com/wls/docs103/ConsoleHelp/taskhelp/jndi/ManageForeignJNDI.html
    Are you aware of this note http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/ejbTransport/ejbtransport.html#wp1074283
    "Although it is possible to use a WebLogic Server foreign JNDI Provider, Oracle recommends that you do not. "
    Involve your Oracle Sales Representative/Support Representative to suggest this enhancement to OSB for supporting ORMI in OSB jndi provider. If you are licensed customer it becomes your right to make your suggestion known to Oracle and if you are not licensed customer then you got a valuable bargain chip :) . In either case talk to you Oracle representative to know official recommended approach from Oracle and also if enhancement can implemented or not.
    Meanwhile I would suggest using IIOP/IIOPs which is supported by OSB to access EJB on your Oracle Application Server.
    http://download-uk.oracle.com/docs/cd/B31017_01/web.1013/b28958/jndi.htm
    http://download-uk.oracle.com/docs/cd/B31017_01/web.1013/b28958/jndi.htm#i1084614
    Manoj

  • Writing a file using ssh in OSB 11g

    Hi
    OSB 11G
    Once I fetch from DB, i am able to write a flat file(delimiter with pipe) using Messaging Service and MFL.
    Now, my requirement is to write using SSH .
    Can anyone let me know how do I configure it in my Business Service?
    Thanks
    Edited by: soauser on Jul 12, 2011 9:08 AM

    OSB supports SSH File Transfer Protocol (SFTP) using SSH version 2 with SFTP transport -
    section "26.5 SFTP Transport" at http://download.oracle.com/docs/cd/E17904_01/doc.1111/e15866/http_poller.htm#i1085854
    If existing options are not sufficient, you may also create custom transport using transport SDK and use that in OSB -
    http://download.oracle.com/docs/cd/E17904_01/doc.1111/e15866/part_tsdk.htm#sthref954
    Regards,
    Anuj

Maybe you are looking for

  • Flash player for tablets with windows

    Hello.I would like to know if flash player can be installed on Windows tablets and if it's completely compatible . Thank you in advance.

  • Theme 1_Standard layout does not match desktop screenshot layout

    I am trying to implement this layout to my Robohelp Project, but I get the IPad layout instead of the previewed Desktop layout that is in the screenshot. All other Desktop layouts work fine with me this one does not work with me. It is the first one

  • How to disable Withholding Tax in Form Setting

    Hi,   How to disable Withholding Tax in Form Setting  for A/P or A/R  service invoice document. Thank you. sridhar

  • Position objects on path

    HI Is there any way to find a specific point on a curved path, that is not an anchor point? I want to position an object on a path, but I need to know the Y of any given X on that path. Thanks Math

  • Cannot change desktop background picture to my own photos

    Hi, in desktop & screen saver I cannot change the desktop background image to any of my own (iphoto) pictures, it shows the list of the images and thumbnails but will only change the pic to the 'Apple' ones (nature,plants,black & white, abstract), if