URL adapter/OraMobile and links/servicePath problem

i have an application running on Oracle Mobile which uses the oramobile URL adapter(i think) - i just point a URL which generates simpleResult mobile xml.
however, using the URL adapter on P2G and pointing to the same URL does NOT work. all my menuitem or anchor links are broken!
for example:
<SimpleMenuItem target="login.cfm?did=9">
this works on oramobile and it connects to the next deck (on webphone). generated code looks like:
<SimpleMenuItem target="?PAservicepath=%2FUser+Home%2FN%2FNP%2FNpang%2FApplications%2FeRegistry+Mobile&#38;OMPMobileRef=login.cfm&#38;did=9">login</SimpleMenuItem>
with P2G, the path is unchanged, with just login.cfm... i have set the PAservicepath, forced absolute URLs, etc. but nothing seem to qualify the path.
help...

Hello,
In NWA, check if the 'SLDAccess' property of the CPA service is set to "false". If yes, set it to "true".
Ensure you use FQHN and that in your SLD you have all the six components registered:
Domain
Integration Server
Integration Repository
Integration Directory
RWB
Adapter Engine
If one of them are missing, please apply note #764176.
As a last resource, you may check MANUALLY the steps from link:
http://help.sap.com/saphelp_nwpi71/helpdata/EN/45/2e4c1b16bb4aa8e10000000a11466f/frameset.htm
(This is for 7.1, you may find at help.com the link for your version, if it's not 7.1)
Regards,
Caio Cagnani

Similar Messages

  • XI JMS Adapter encoding and codepage (MDMP) problem

    Hi
    I have a scenario where i convert an IDoc into a target structure and post it onto a Websphere MQ queue using JMS adapter. The SAP system which sends the idoc is a non/unicode system and i can receive data which can either danish, polish etc. Within XI the mapping works fine and the data is transferred to the MQ series queue. But when the third party system tries to get the message from the queue it says it downloads the message and is unable to convert the downloaded message due to invalid content (special danish, polish characters). Also the CCSID and encoding expected is 1252 and 546 respectively, but whenever i send message to the queue the CCSID is 1252 but encoding is 273.
    Any idea as to why the above is happening, and how can it be corrected.
    Also if anybody had faced any issues with respect to code page problems and resolved it with JMS as either sender or receiver, please share the same with me as well.
    I am repeating that my SAP system is non-unicode (MDMP) system.
    thanks
    Sameer
    Message was edited by:
            Sameer Shadab

    Sameer,
    I guess u can ask the third party to set CodedCharSet in GetMessageOptions. Actually my MQ knowledge is around 4 yrs old but I remember we had similar problem when we were pushing messages on remote queue of MQ on AS-400. I hope they resolved by setting this value.
    Regards
    Rajeev

  • CSS SSL and link modification problem

    Hi all
    We have a problem using our CSS to offload SSL for a site. The offload works for the first connection, but the web application seems to be rewriting relative links as absolute links.
    For example, a user hits the site at https://www.mydomain.com. The CSS is configured to terminate the SSL traffic, and then send HTTP to the internal web server on TCP/81.
    What we're seeing in the client's browser is that all links are being returned as http://www.mydomain.com:81/... instead of https://www.mydomain.com/...
    Any idea of how we can do this without messing around with the web server too much? I.e. is there a way on the CSS to do link translation?
    Thanks

    If the link are indeed hardcoded like this, there is nothing the CSS can do.
    Bad server design.
    If the server is returning a redirect to http://... the CSS can intercept it and rewrite it to https.
    Please verify if there is a redirect.
    Gilles.

  • Currency and Linked documents problem.

    Hello all,
    I am using the sdk to import documents form one database to another. I have a currency problem when I try to create an AR Invoice based on a Sales Order already in the target database.
    We are running SBO 2005 sp1 pl45
    The Sales order document currency set up like this:
    Header : CAD
    Line 0 : USD
    Line 1 : USD
    Line 5 : USD
    When I create an AR Invoices using the SDK based, I set the currency the same way as for the sales orders. The SDK add the document without errors.
    However, there are always one or more lines that switch to CAD currency.
    Header : CAD
    Line 0 : USD
    Line 1 : CAD
    Line 5 : USD
    I have check the database to make sure the currency field and DocCur field where set to the proper value in the order table.
    This is a simplified version of my code. I am having the same behavior as my application. I also tried to remove the itemcode and currency info without success.
    I have also checked that:
    - The currency exists in the database and the exchange rate is up do date.
    - The Customer, Series and Tax Code are correct.
                   oDoc = oComp.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices)
                    oDoc.CardCode = "C10003"
                    oDoc.DocType = SAPbobsCOM.BoDocumentTypes.dDocument_Items
                    oDoc.Series = 2
                    oDoc.DocCurrency = "CAD"
                    oDoc.Lines.ItemCode = "GC0001"
                    oDoc.Lines.BaseEntry = 3
                    oDoc.Lines.BaseLine = 0
                    oDoc.Lines.BaseType = 17
                    oDoc.Lines.UnitPrice = 580
                    oDoc.Lines.Currency = "USD"
                    oDoc.Lines.Quantity = 9
                    oDoc.Lines.TaxCode = "TAXNO"
                    oDoc.Lines.Add()
                    oDoc.Lines.BaseEntry = 3
                    oDoc.Lines.BaseLine = 1
                    oDoc.Lines.BaseType = 17
                    oDoc.Lines.ItemCode = "GC0002"
                    oDoc.Lines.UnitPrice = 1233.58
                    oDoc.Lines.Currency = "USD"
                    oDoc.Lines.Quantity = 9
                    oDoc.Lines.TaxCode = "TAXNO"
                    oDoc.Lines.Add()
                    oDoc.Lines.BaseEntry = 3
                    oDoc.Lines.BaseLine = 2
                    oDoc.Lines.BaseType = 17
                    oDoc.Lines.ItemCode = "WH0001"
                    oDoc.Lines.UnitPrice = 447.01
                    oDoc.Lines.Currency = "USD"
                    oDoc.Lines.Quantity = 9
                    oDoc.Lines.TaxCode = "TAXNO"
                    oDoc.Lines.Add()
                    oDoc.Lines.BaseEntry = 3
                    oDoc.Lines.BaseLine = 3
                    oDoc.Lines.BaseType = 17
                    oDoc.Lines.ItemCode = "WH0001"
                    oDoc.Lines.UnitPrice = 997.5
                    oDoc.Lines.Currency = "USD"
                    oDoc.Lines.Quantity = 9
                    oDoc.Lines.TaxCode = "TAXNO"
                    oDoc.Lines.Add()
                    oDoc.Lines.BaseEntry = 3
                    oDoc.Lines.BaseLine = 4
                    oDoc.Lines.BaseType = 17
                    oDoc.Lines.ItemCode = "WH0001"
                    oDoc.Lines.UnitPrice = 276.15
                    oDoc.Lines.Currency = "USD"
                    oDoc.Lines.Quantity = 9
                    oDoc.Lines.TaxCode = "TAXNO"
                    oDoc.Lines.Add()
                    oDoc.Lines.BaseEntry = 3
                    oDoc.Lines.BaseLine = 5
                    oDoc.Lines.BaseType = 17
                    oDoc.Lines.ItemCode = "TM9999"
                    oDoc.Lines.UnitPrice = 205
                    oDoc.Lines.Currency = "USD"
                    oDoc.Lines.Quantity = 9
                    oDoc.Lines.TaxCode = "TAXNO"
                    If oDoc.Add <> 0 Then
                        MessageBox.Show("Error " + oComp.GetLastErrorDescription())
                    Else
                        MessageBox.Show("Good")
                    End If
    Thank you for your help.
    Simon
    Edited by: Simon Lizotte on Jul 29, 2008 10:35 PM

    HI Simon,
    For me it is works perfect.
    I do not know about the taxno tax group, and your localization, but on my 2007APL38 works fine.
    I have used the demo database  SBODEMO_HU, and added an order and invoice from order, and it is works (without TaxCode).
    generally if you inherit a document, you need you the quantity (less or equal then basic) have to be check and the price modified.
    here is my, i have a BP in multi currency = C20007, and items from A00002 to A00005 in the code at the
    If oDoc.Add <> 0 Then there is less than and more than sign, but here is not visible...
    Sub addSalesOrder()
            Dim oDoc As SAPbobsCOM.Documents = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
            oDoc.CardCode = "C20007"
            oDoc.DocType = BoDocumentTypes.dDocument_Items
            oDoc.DocDueDate = Today
            oDoc.DocCurrency = "CAD"
            oDoc.Lines.ItemCode = "A00002"
            oDoc.Lines.Quantity = 9
            oDoc.Lines.UnitPrice = 100
            oDoc.Lines.Currency = "USD"
            oDoc.Lines.Add()
            oDoc.Lines.ItemCode = "A00003"
            oDoc.Lines.Quantity = 9
            oDoc.Lines.UnitPrice = 100
            oDoc.Lines.Currency = "USD"
            oDoc.Lines.Add()
            oDoc.Lines.ItemCode = "A00004"
            oDoc.Lines.Quantity = 9
            oDoc.Lines.UnitPrice = 100
            oDoc.Lines.Currency = "USD"
            oDoc.Lines.Add()
            oDoc.Lines.ItemCode = "A00005"
            oDoc.Lines.Quantity = 9
            oDoc.Lines.UnitPrice = 100
            oDoc.Lines.Currency = "USD"
            If oDoc.Add <> 0 Then
                MsgBox("Erreur " + oCompany.GetLastErrorDescription())
            Else
                Dim newCode As String = oCompany.GetNewObjectKey()
                MsgBox(newCode)
                AddInvoice(newCode)
            End If
        End Sub
        Private Sub AddInvoice(ByVal e As Integer)
            Dim oDoc As SAPbobsCOM.Documents = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices)
            oDoc.CardCode = "C20007"
            oDoc.DocType = SAPbobsCOM.BoDocumentTypes.dDocument_Items
            oDoc.DocDate = Today
            oDoc.DocDueDate = Today
            oDoc.DocCurrency = "CAD"
            oDoc.Lines.BaseEntry = e
            oDoc.Lines.BaseLine = 0
            oDoc.Lines.BaseType = 17
            oDoc.Lines.Quantity = 9
            oDoc.Lines.UnitPrice = 580
            oDoc.Lines.Currency = "USD"
            oDoc.Lines.Add()
            oDoc.Lines.BaseEntry = e
            oDoc.Lines.BaseLine = 1
            oDoc.Lines.BaseType = 17
            oDoc.Lines.Quantity = 9
            oDoc.Lines.UnitPrice = 1233.58
            oDoc.Lines.Currency = "USD"
            oDoc.Lines.Add()
            oDoc.Lines.BaseEntry = e
            oDoc.Lines.BaseLine = 2
            oDoc.Lines.BaseType = 17
            oDoc.Lines.Quantity = 9
            oDoc.Lines.UnitPrice = 447.01
            oDoc.Lines.Currency = "USD"
            oDoc.Lines.Add()
            oDoc.Lines.BaseEntry = e
            oDoc.Lines.BaseLine = 3
            oDoc.Lines.BaseType = 17
            oDoc.Lines.Quantity = 9
            oDoc.Lines.UnitPrice = 997.5
            oDoc.Lines.Currency = "USD"
            If oDoc.Add <> 0 Then
                MsgBox("Erreur " + oCompany.GetLastErrorDescription())
            Else
                MsgBox("Good")
            End If
        End Sub
    Regards,
    J.
    Edited by: Janos  Nagy on Jul 30, 2008 5:02 PM

  • Hyper link of public image(hyperlink or image) can not be saved on windows server 2012 and sharepoint 2010 problem

    hyper link of public image(hyperlink or image) can not be saved on windows server 2012 and sharepoint 2010 problem, is this a bug?
    thanks for any reply.
    Rosone

    It is not a bug, you might be using IE in Windows server 2012 and and browser might be restricting your site actions to respond properly.
    Check this in a different browser or access site in a differ OS.
    Adnan Amin MCT, SharePoint Architect | If you find this post useful kindly please mark it as an answer.

  • I am using my Ipad on a remote craftshow site and am having problems with battery lasting 8 hrs. Can I use a 12v rv battery to recharge it or atleast maintain the charg over longer periods of time? I have a dc adapter. thanks

    I am using my Ipad on a remote craftshow site and am having problems with battery lasting 8 hrs. Can I use a 12v rv battery to recharge it or at least maintain the charge over longer periods of time? I have a dc adapter. thanks

    You should be able to use the battery if you get a car type charger which recharges mobile devices.
    The full size iPads use a 10-12W charger, whereas the mini uses a 5W charger. Many car chargers only supply 5W. But at 5W, the car charger should give you some extra time on your iPad. It would be best to use a 10-12W car charger.
     Cheers, Tom

  • Hi my name Abukar I had an old apple ID and I had problem with signing it so I decided to make a new apple ID with a new email address, so how can I link with two apple IDs and how can I get back all my previous apps that I purchased before, I cloud stuff

    Hi my name Abukar I had an old apple ID and I had problem with signing it so I decided to make a new apple ID with a new email address, so how can I link with two apple IDs and how can I get back all my previous apps that I purchased before, I cloud stuff

    It is not possible to do that.
    Allan

  • Font problem in import and link

    I'm using RH8 and have a problem with a Word doc I linked.In a numbered list, NumberList2, the font reverts to Times New Roman from Arial 10pt. I attach a pic. I've tried reapplying the style, linking again and again and it's very stubborn. Is there a fix?

    Hi
    If this is a Linked Word Document, Try going to File>Project Settings >Next and Click on Edit for Word Document conversion Settings, and
    Select Edit and it would prompt you with all avauilable tags along with their Appearance, Example in Word and Robohelp.
    Check your tag in the List and Select "Source " in Drop Down of RoboHelp Style.
    And try to Select that and observe if the Appearnace or Style is imporved.
    Alternately, if you want you can import the Word Doccument and its assocaiated CSS file would be imported too and you can make changes directly to CSS and reapply them.
    Thanks,
    Anjaneai Srivastava

  • The iPad does not ship unless he closed  ITunes does not recognize or computer  If he shipped fully closed device  I bought a charger and bought Link and the same problem persists  IPad without Jelbrak

    The iPad does not ship unless he closed
    ITunes does not recognize or computer
    If he shipped fully closed device
    I bought a charger and bought Link and the same problem persists
    IPad without Jelbrak

    What do you mean 'does not ship unless he closed' ? What are you trying to do with your iPad, and what happens when you do it ?
    If your computer's iTunes isn't recognising the iPad then do you have the latest version of iTunes installed on your computer ?
    device not showing in iTunes on a PC : http://support.apple.com/kb/TS1538
    on a Mac : http://support.apple.com/kb/TS1591

  • Problems with RH 9Printed Documentation not displaying some popups, drop-downs, and links

    I generate a Word document for reviewers. PrintedDoc properties include: Retain hyperlinks; Include drop-down text; Include expanding text.
    Sometimes the Word 2010 document includes hyperlinks, sometimes it doesn't.
    Popups typically don't work in the Word document.
    Drop-down and expanding text appear intermittently in the Word document.
    Has anyone experienced this and have a solution?
    Thanks.
    Carol

    I have never known hyperlinks to fail except in two situations.
    The target topic is not in the printed document. Obviously it cannot link to something that is not there.
    The hyperlink is a popup.
    Not sure what you mean by popups not working in a printed document. If you mean the links to them break, then see above. Known issue.
    I'm not sure why you are having the dropdown and expanding text problem as I have not known that to be an issue either. Is it always the same dropdowns that fail? Have you compared a good dropdown and a bad dropdown?
    Take a look at Printed Documentation on my site.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Email and Link Problems on newly uploaded site??

    Hey Everyone,
    Just finished loading up the first cut of my site at http://web.mac.com/wakestuff and i have a few problems with my email and links page.
    In iWeb, the email and links are fine and they're there - in the page online, they're just question marks in a blue square. . . . any ideas why??
    Many thanks for any info to clear this up - the site officially launches on monday so i need a little bit of a quick fix and im all out of ideas!

    Take a look at your pages names. Example:
    http://web.mac.com/wakestuff/iWeb/WakeStuff.co.uk/%20%20Email%20%26%20Links.html
    %20 stands for a space.
    Your page name has several spaces at the beginning, which is screwing up the links to the images in the corresponding folder. To be honest, I am surprised that page is the only one you are having difficulty with.
    Here is a thread where someone had the same problem:
    http://discussions.apple.com/thread.jspa?messageID=3893957&#3893957

  • Shortcuts and links fail to work and the message "There was a problem sending the command to the program." appears.

    Not long after I upgraded to FF4, my shortcuts and links stopped behaving normally. When I (double) clicked on either I got the message "There was a problem sending the command to the program." This problem doesn't seem to occur with IE9. I am running Windows 7.

    In my case, i have solved this by double clicking on the downloaded file directly from the download window

  • Terredo Tunneling adapter driver and Ralink PCI Adapter driver problem

    Have HP A-I-O,  running Windows 8 and getting errors ref. Terredo Tunneling Adapter driver and Ralink PCI Adapter driver problem.  Occassionally lose internet or wireless mouse and kebouad.  Troubleshooting reloaded drivers for both but did NOT resolve the problem.
    Any ideas?  Wouold Refresh work? If so, should I just load Windows 8.1?

    Sysherman, welcome to the forum.
    When requesting help you should always include the make/model (i.e. p6-xxxx) of the computer and/or monitor. This information is necessary for us to review the specifications of them.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Interface Controller and Link to URL

    Hi Experts,
    Could some give me the step by step process(PDF's suggested) for the Interface controller and Link to URL.
    Regards.

    hi,
    The application of downloading data from table to excel sheet
    will give a very good idea and the solution to ur problm
    Exporting Context Data into Excel Using the Web Dynpro
    Binary Cache
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/edc2f3c2-0401-0010-8898-acd5b6a94353
    Regards
    Nikhil Tapkir

  • Have been running version 4 for a week without problems. Today, downloaded MS live security update, and have had problems since. when I click on a favorite site, it takes 20 to 40 seconds before the page load's and the same if I click a link on the page.

    been running version 4 for a week without problems. Today, downloaded MS live security update, and have had problems since. when I click on a favorite site, it takes 20 to 40 seconds before the page load's.'''bold text'''

    http://portableapps.com/apps/internet/firefox_portable/localization#legacy36

Maybe you are looking for

  • Windows Vista Ultimate Password

    I have a HP Pavillion Vista Ultimate, Windows. I finally got past the admistrative code,,....and now I am tring to sign in to Windows and the programs I have on my laptop,...unforunately I, apparently keep putting the wrong password in. Once I finall

  • Regexp_replace - too heavy?

    I've got code for extracting numbers from varchar2 column: with t1 as ( select 1 as acode, '100,00' as avalue from dual union all select 2 as acode, '100.00' as avalue from dual union all select 3 as acode, '100.00%' as avalue from dual union all sel

  • Some sent items missing in Mac Mail

    Hi I have an issue where some of my sent items do not get saved to the Sent Items folder. The email account in question is a work Exchange Server 2003 one and I have it set up as an IMAP account. I have the correct sent items folder configured so tha

  • OBR - Finer control using soacomposer

    Hi I'm developing a SOA 11g/ BPM project , some use cases are using Rules as engine (Decision Tables) My question is about Dictionaries access control , we will have more than on project and the user will edit then using SOA Composer. Using SOA Compo

  • Removing items form the 'open with' context menu

    hi there, i have adobe cs2 suite installed. that's why i have at least 20 different options to open image-files (jpgs, pngs, ...) with. where can i remove some options that i'll never need in my whole life!? regards, eric.