Datatemplates in JDE

Hi,
Is it possible to use datatemplates in the latest version of BI Publisher in JDE ? It seems that it is only possible to work with rtf templates and do some xml transformations.
Thanx in advance.
Peter

Hi Peter
The only way you can use them is to call them via a java API. If you have access to calling java then you could use data templates to generate the XML data.
You'll have to manage the data template files yourself - I dont believe JDE has support for DTs specifically.
Be aware thou, you are likely to be on your own ie no support from Oracle - not sure, worth checking thou.
Regards
Tim
http://blogs.oracle.com/xmlpublisher

Similar Messages

  • Error while creating DataTemplate based Report in BI publisher

    hi,
    i am trying to create dataTemplate in BI Publisher when i view the report in BI Publisher its gives a error Attribute "valueSet" required
    anyone please help me
    <dataTemplate name="SrBysrtype" description="ServiceRequestBySrtype" defaultPackage="sr" dataSourceRef="demo">
         <parameters>
              <parameter name="owner" dataType="number" defaultValue="57"/>
              <parameter name="srtype" dataType="character" defaultValue="Customer Call"/>
         </parameters>
         <dataQuery>
              <sqlStatement name="Q1">
                   <![CDATA[
    SELECT incident.Incident_Id IncidentId,
    incident.incident_date IncidentDate,
    incident.Incident_Number IncidentNumber,
    incident.Caller_Type CallerType,
    incident.Status_Flag Status,
    incident.Summary Summary,
    severity.name IncidentSeverity,
    urgency.name IncidentUrgency,
    itypes.name IncidentType
    FROM cs_incidents_all_b incident,
    cs_incident_severities_b severity,
    cs_incident_urgencies_b urgency,
    cs_incident_types_b itypes,
    cs_incident_statuses_b status
    WHERE severity.incident_severity_id= incident.incident_severity_id
    AND urgency.incident_urgency_id =incident.incident_urgency_id
    AND itypes.incident_type_id = incident.incident_type_id
    AND status.incident_status_id = incident.incident_status_id
    AND incident.incident_owner_id=nvl(:owner,incident.incident_owner_id)
    AND itypes.name=nvl(:srtype,itypes.name) ]]>
              </sqlStatement>
         </dataQuery>
         <dataStructure>
              <group name="G_SR" datatype="varchar2" source="Q1">
                   <element name="IncidentId" value="incident.Incident_ID"/>
                   <element name="IncidentDate" value="incident.incident_date"/>
                   <element name="IncidentNumber" value="incident.Incident_Number"/>
                   <element name="CallerType" value="incident.Caller_Type"/>
                   <element name="StatusFlag" value="incident.Status_Flag"/>
                   <element name="Summary" value=" incident.Summary"/>
                   <element name="IncidentSeverity" value="severity.name"/>
                   <element name="IncidentUrgency" value="urgency.name"/>
                   <element name="IncidentType" value="itypes.name"/>
              </group>
         </dataStructure>
    </dataTemplate>

    Hi,
    check in your Report definition if there's a parameter defined as Type MENU but without a corresponding LOV.
    Regards
    Rainer

  • Logical operator in datatemplate query

    Hi,
    I'm having trouble writing my queries in a datatemplate. The problem is, when I have to use the logical operators <>. More specific, my sql query has a less than condition, but when I try to save the datatemplate with my query, I get an error message saying that the datatemplate is invalid.
    It's obvious that the characters &lt; and &gt; will result in non well formed xml, but is there any solution to this?
    Thx in advance
    Kim
    Edited by: mulder82 on Mar 30, 2009 1:33 AM

    Hi,
    Can you post your data template please?
    < and > don't pose a problem for the xml structure because they should be inside a "CDATA" element.
    Like this:
    <dataTemplate name="dataTemp">
         <parameters>
              <parameter name="P_PARAM" dataType="character" defaultValue=""/>
              <parameter name="P_PYS_ID" dataType="character" defaultValue=""/>
         </parameters>
         <dataQuery>
              <sqlStatement name="Query1">
                   <![CDATA[
    SELECT name
    FROM dept
    WHERE dept_no > 10
    ]]>
              </sqlStatement>
         </dataQuery>
         <dataStructure>
              <group name="G_Dept" source="Query1">
                   <element name="dep_name" value="name"/>
    </group>
    </dataStructure>
    </dataTemplate>

  • Unable to Check in Business Services in JDE DEMO.

    Hi,
    We have ERP 8.97 JDE tool set installed on our local m/c. We are unable to check in the Business Services (BSSV) object (JP55HOL) in JDE DEMO. We also tried checking in the vanilla BSSV (J0000030) after we had chekced it out, but this also did not work out. We are getting the error: General Error in Method, Check-in. However we had no issues in checking in the regular JDE objects.
    Please help!!!
    -Shahid

    Demo E900 is a big mess, perhaps "Oracle Lab" packaged it this way.
    Do this:
    1- Create a project "Temp"
    2- Check out F986020 & F986030 (only specs available, no table exists in the data source) - if you try to see by UTB or databrowser
    3- Generate table & index in design (take every thing as default)
    4- Now try check-in your BSSVs.
    5 Goodluck

  • 7.9.6.1 Financial Analytics - JDE - Extract Dates question

    Hi all,
    Implementation of 7.9.6.1 Financial Analytics + Procurement and Spend Analytics
    OLTP: JDE E9
    OLAP DB: Oracle 11g
    We were trying to adjust the # of prune days for an incremental load, when we discovered the change was having no effect.
    Our situation - JDE*
    Looking at the parameters in DAC, we found that the incremental condition in the SDEs is:
    date >= *$$LAST_EXTRACT_JDEDATE*
    In DAC, this parameter expands to:
    TO_NUMBER(TO_CHAR(TO_DATE('@DAC_$$TGT_REFRESH_DATE'), 'DDD'))+(TO_NUMBER(TO_CHAR(TO_DATE('@DAC_$$TGT_REFRESH_DATE'), 'YYYY')) -1900) * 1000
    If one keeps digging,
    +$$TGT_REFRESH_DATE = @DAC_TARGET_REFRESH_TIMESTAMP in custom format, MM/DD/YYYY+
    Compared to EBS*
    Now, if I look at the *$$LAST_EXTRACT_DATE* parameter (used in EBS SDEs)
    It expands to:
    +@DAC_SOURCE_PRUNE_REFRESH_TIMESTAMP in custom format, MM/DD/YYYY+
    Conclusion and question*
    Obviously the Julian date conversion is required in $$LAST_EXTRACT_JDEDATE, but apparently the prune days are being considered in $$LAST_EXTRACT_DATE and not in $$LAST_EXTRACT_JDEDATE.
    An obvious fix is to use @DAC_SOURCE_PRUNE_REFRESH_TIMESTAMP in $$LAST_EXTRACT_JDEDATE, but I don't know if that would have any side effects. I'll test it.
    I'll raise a SR with Oracle, but wanted to check if you guys had seen this before.
    Thanks, regards.-
    Alex.-
    Edited by: Alejandro Rosales on Feb 22, 2011 5:57 PM

    Hi Alejandro,
    Maybe this has been updated/correct in 7.9.6.2. Later today I will be in the office and can check in a VM image.
    I'll update the thread as soon as soon as I have checked this out.
    Regards,
    Marco Siliakus

  • HTTP connectivity error while using Blackberry MDS and JDE 5.0.0

    Hello,
    I am using BB MDS simulator 4.1.2 and BB JDE 5.0.0 for testing sample Oracle ADF Mobile client apps that I have developed.
    My app tries to access webservices via HTTP.
    Here is where I am encountering a HTTP connectivity issue.
    1. For instance, while trying to test HTTP using Blackberry browser, I see the error : "Unknown host mobile.blackberry.com:80"
    2. The sample I tried to run to test webservices - accepts a word from the user and gets it translated in to a desired language, using a webservice provided on the internet.
    Here, I have tried to translate the word 'madam' from English to French.
    I have encountered a HTTP/1.0 400 Bad Request.
    Kindly have a look at the MDS Trace as below (related entries in bold) and suggest if I am missing something from the configuration perspective.
    PS : I have tried various options from the blackberry forums but they were not very helpful.
    <2010-05-24 17:48:16.000 IST>:[215]:<MDS-CS_MDS>:<DEBUG>:<LAYER = SCM, EVENT = Device connections: AVG latency (msecs)0>
    <2010-05-24 17:48:16.000 IST>:[216]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = RemovedReceivingQueue, DEVICEPIN:CONNECT
    IONID = 2100000a:771975383, ReceivingQueueSize = 0>
    <2010-05-24 17:48:16.343 IST>:[217]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = Notification, TAG = 36110347, STATE = DE
    LIVERED>
    <2010-05-24 17:48:19.046 IST>:[218]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = RemovedSendingQueue, DEVICEPIN = 2100000
    a>
    <2010-05-24 17:49:57.437 IST>:[219]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = Receiving, TAG = 371769629, DEVICEPIN =
    2100000a, VERSION = 16, CONNECTIONID = 771975384, SEQUENCE = 0, TYPE = CONNECTION-REQUEST, CONNECTIONHANDLER = httpc, PR
    OTOCOL = TCP, PARAMETERS = [www.webservicex.net:80], SIZE = 121>
    <2010-05-24 17:49:57.437 IST>:[220]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = CreatedReceivingQueue, DEVICEPIN:CONNECT
    IONID = 2100000a:771975384, ReceivingQueueSize = 1>
    <2010-05-24 17:49:57.437 IST>:[221]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = StartExecuting, TAG = 371769629, DEVICEP
    IN = 2100000a, VERSION = 16, CONNECTIONID = 771975384, SEQUENCE = 0, TYPE = CONNECTION-REQUEST, CONNECTIONHANDLER = http
    c, PROTOCOL = TCP, PARAMETERS = [www.webservicex.net:80], SIZE = 121>
    <2010-05-24 17:49:57.437 IST>:[222]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = EndExecuting, TAG = 371769629, DEVICEPIN
    = 2100000a, VERSION = 16, CONNECTIONID = 771975384, SEQUENCE = 0, TYPE = CONNECTION-REQUEST, CONNECTIONHANDLER = httpc,
    PROTOCOL = TCP, PARAMETERS = [www.webservicex.net:80], SIZE = 121>
    <2010-05-24 17:49:57.437 IST>:[223]:<MDS-CS_MDS>:<DEBUG>:<LAYER = SCM, EVENT = Available threads in DefaultJobPool = 9 r
    unning JobRunner: DefaultJobRunner-3>
    <2010-05-24 17:49:57.453 IST>:[224]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HTTP Thread: DefaultJobRunner-3 started>
    <2010-05-24 17:49:57.453 IST>:[225]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = ReceivedFromDevice, DEVI
    CEPIN = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION =>
    <2010-05-24 17:49:57.453 IST>:[225]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = ReceivedFromDevice, DEVI
    CEPIN = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = [Transmission Line Section]:>
    *<2010-05-24 17:49:57.453 IST>:[225]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = ReceivedFromDevice, DEVI*
    CEPIN = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = GET /TranslateService.asmx/Translate?LanguageMode=English
    TOFrench&Text=madam HTTP/1.1>
    <2010-05-24 17:49:57.453 IST>:[225]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = ReceivedFromDevice, DEVI
    CEPIN = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = [Headers Section]: 2 headers>
    <2010-05-24 17:49:57.453 IST>:[225]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = ReceivedFromDevice, DEVI
    CEPIN = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = x-rim-conttime:10000>
    <2010-05-24 17:49:57.453 IST>:[225]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = ReceivedFromDevice, DEVI
    CEPIN = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = Host:www.webservicex.net>
    <2010-05-24 17:49:57.453 IST>:[225]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = ReceivedFromDevice, DEVI
    CEPIN = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = [Parameters Section]: 2 parameters>
    *<2010-05-24 17:49:57.453 IST>:[225]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = ReceivedFromDevice, DEVI*
    CEPIN = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = LanguageMode=EnglishTOFrench>
    *<2010-05-24 17:49:57.453 IST>:[225]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = ReceivedFromDevice, DEVI*
    CEPIN = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = Text=madam>
    <2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION =>
    <2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = [Transmission Line Section]:>
    *<2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN*
    *= 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = GET /TranslateService.asmx/Translate?LanguageMode=EnglishTOFren*
    ch&Text=madam HTTP/1.1>
    <2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = [Headers Section]: 6 headers>
    <2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = Connection:close>
    <2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = Via:MDS_4.1.2.17>
    <2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = Accept:*/*>
    <2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = x-rim-original-accept:*/*>
    <2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = x-rim-conttime:10000>
    <2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = Host:www.webservicex.net>
    <2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = [Parameters Section]: 2 parameters>
    *<2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN*
    *= 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = LanguageMode=EnglishTOFrench>*
    *<2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN*
    *= 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = Text=madam>*
    <2010-05-24 17:49:57.515 IST>:[227]:<MDS-CS_MDS>:<DEBUG>:<LAYER = SCM, EVENT = Statistics save task started>
    <2010-05-24 17:49:57.625 IST>:[228]:<MDS-CS_MDS>:<DEBUG>:<LAYER = SCM, EVENT = Statistics save task finished -- number o
    f rows inserted:5>
    <2010-05-24 17:50:18.453 IST>:[229]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToDevice, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION =>
    <2010-05-24 17:50:18.453 IST>:[229]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToDevice, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = [Transmission Line Section]:>
    *<2010-05-24 17:50:18.453 IST>:[229]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToDevice, DEVICEPIN*
    *= 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = HTTP/1.0 400 Bad Request>*
    <2010-05-24 17:50:18.453 IST>:[229]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToDevice, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = [Headers Section]: 2 headers>
    <2010-05-24 17:50:18.453 IST>:[229]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToDevice, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = Content-Type:text/plain>
    <2010-05-24 17:50:18.453 IST>:[229]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToDevice, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = Content-Length:35>
    <2010-05-24 17:50:18.453 IST>:[229]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToDevice, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = [Parameters Section]: 0 parameters>
    <2010-05-24 17:50:18.468 IST>:[230]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = CreatedSendingQueue, DEVICEPIN = 2100000
    a>
    <2010-05-24 17:50:18.468 IST>:[231]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HTTP Thread: DefaultJobRunner-3 stopping>
    <2010-05-24 17:50:18.468 IST>:[234]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = Sending, TAG = 36110349, DEVICEPIN = 210
    0000a, VERSION = 16, CONNECTIONID = 771975384, SEQUENCE = 0, TYPE = DATA, SIZE = 48>
    <2010-05-24 17:50:18.468 IST>:[235]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HTTP Thread: DefaultJobRunner-3 stopped>
    <2010-05-24 17:50:18.484 IST>:[236]:<MDS-CS_MDS>:<DEBUG>:<LAYER = SCM, EVENT = Finished JobRunner: DefaultJobRunner-3, a
    vailable threads in DefaultJobPool = 10, time spent = 21047ms>
    <2010-05-24 17:50:18.500 IST>:[239]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = Sending, TAG = 36110350, DEVICEPIN = 210
    0000a, VERSION = 16, CONNECTIONID = 771975384, SEQUENCE = 1, TYPE = DISCONNECT-ORDER, SIZE = 0>
    <2010-05-24 17:50:18.500 IST>:[240]:<MDS-CS_MDS>:<DEBUG>:<LAYER = SCM, EVENT = Device connections: AVG latency (msecs)32>
    <2010-05-24 17:50:18.500 IST>:[241]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HTTP Thread: ConnectionsInputStreamesReader0-Def
    aultJobRunner-3 stopping>
    <2010-05-24 17:50:18.500 IST>:[242]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HTTP Thread: ConnectionsInputStreamesReader0-Def
    aultJobRunner-3 stopped>
    <2010-05-24 17:50:18.500 IST>:[243]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = RemovedReceivingQueue, DEVICEPIN:CONNECT
    IONID = 2100000a:771975384, ReceivingQueueSize = 0>
    <2010-05-24 17:50:18.531 IST>:[244]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = Notification, TAG = 36110349, STATE = DE
    LIVERED>
    <2010-05-24 17:50:18.562 IST>:[245]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = Notification, TAG = 36110350, STATE = DE
    LIVERED>
    <2010-05-24 17:50:19.046 IST>:[246]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = RemovedSendingQueue, DEVICEPIN = 2100000
    a>

    Hi, there:
    A couple of things to try and check:
    - Does your network connection goes through proxy server? If you are behind a proxy server, then you would need to set up proxy server in MDS by open the file <MDS simulator install>/config/rimpublic.property, go to the [HTTP Handler] section, and add the following line:
    application.handler.http.proxyEnabled = true
    application.handler.http.proxyHost=<your proxy server host name>
    application.handler.http.proxyPort=<your proxy server port>
    - Try BlackBerry MDS simulator that came with JDE 5.0. MDS 4.1.2 should still work with 5.0 device simulators, but it's worth a shot
    Can you hit the web service from the browser in your Blackberry simulator? Feel free to directly contact me at [email protected] - if necessary we can also pull in BlackBerry/RIM resources to help diagnose this.
    Thanks,
    Joe Huang

  • Consuming a sap web service via jde 4.5.7 (ecc 6.0)

    Hi all,
    I have a question here, if u could help me, i have to call a sap webeservice via jde , but before i test a jde example by calling a public web service which is not a sap web service , i used to  give  url  as:
    connThread.get("http://www.webservicex.net/globalweather.asmx/GetCitiesByCountry?CountryName="Morocco;deviceside=true";
    i was not obliged to set the apn parameters and it does work
    here as it's mentioned , there is the access point, getcities ...  the method  name and the parameter name and the parameter value
    "Morocco", but i m asking how did we precise the methods  of an rfc sap, and the name parmeter and his value.
    have u any idea to help me understand how we call sap rfc, method name, parmaeter name, cz i m a newbie to sap and bb.
    but now when i try to call an rfc sap , i give the link
      connThread.get("http://hca-ecc.hca.group:8000/sap/bc/srt/wsdl/sdef_Z_WS/wsdl11/ws_policy/document?sap-client=800;deviceside=true;apn=hca-ecc.hca.group;tunnelauthusername=forma02;tunnelauthpassword=hcaforma" );
    but it's always giving me transmission failed without any error that may help me when debugger run.
    Thakx in advance.

    Hello Merry,
    Have you tried searching 'blackberry' in SDN. I found following and many more links. It gives me impression that you may have to use MDS and also may be SAP Webdynpro technology for UI rendering.
    blackberry integration with Mobile Infraestructure
    There seems to be special site from blackberry for SAP integration (free registration).
    https://www.blackberry.com/CorpDevZone/download/SAP/sap.shtml
    Re: Steps to show data on actual Blackberry :) Urgent please....
    Hope this will give you some headway in resolving your issues.
    Regards,
    Vandana.

  • Mass Master data Upload from MS Excel and JDE into SAP ( ECC 6.0)

    Hi
    We are deciding the best method of uploading 2 million fixed assets Master data from Excel and JDE
    We are following Batch Input (RAALTD001) and Direct Input methods (RAALTD11)
    I am looking for some other efficient alternative for this upload
    Look forward ot hear form you experts !!
    Thanks
    Milind

    hi
    good
    both works not possible simultaneously.
    If you want to do it in two separate task than you can use the GUI_UPLOAD function module to fulfill your requirement.
    thanks
    mrutyun^

  • Unable to parse operation - BIP against JDE E1 with DAS

    Hi to all,
    I am in the following scenario:
    BI Publisher 10.1.3.4.1 integrated with JdEdwards E1 through DAS (Data Access Server).
    Then, using the connection that uses DAS, when I try tu use an outer join I get the following error:
    Unable to parse the operation [SELECT ..... WHERE AN8=AN8()]
    In the text editor where the query builder builds the query the '+' appears correctly...
    If I launch the query without the outer join then it works correctly!!
    This is quite urgent so any help would be appreciated.
    Many thanks in advance,
    Víctor.

    Hello Victor,
    you had the chance to fix the error?
    me doing the same,
    I'm also connected to a base JDE E1.
    my query is:
    Select     
    TO_DATE (substr(F0411.DGJ,2,6),'yydd') as DGJ,
    F0411.KCO as KCO,
         F0411.DOC as DOC,
         F0411.DCT as DCT,
         F0411.AN8 as AN8,
         F0411.PYE as PYE,
         F0411.SNTO as SNTO,
         F0411.AAP as AAP,
         F0411.AG as AG,
         F0411.SFX as SFX,
         F0101.ALPH as ALPH
    from     JDE.F0101 F0101,
         JDE.F0411 F0411
    where F0411.AN8=F0101.AN8
    and      F0411.DOC between :Doc_desde and :Doc_hasta
    and F0411.DGJ between TO_NUMBER(TO_CHAR(:Fecha_Desde, 'YYYYDDD' )) - 1900000
    and TO_NUMBER(TO_CHAR(:Fecha_Hasta, 'YYYYDDD' )) – 1900000
    error is:
    Unable to parse operation [select     
             TO_DATE(substr(DGJ,2,6),'yydd') as DGJ,
             F0411.KCO as KCO,
          F0411.DOC as DOC,
          F0411.DCT as DCT,
          F0411.AN8 as AN8,
          F0411.PYE as PYE,
          F0411.SNTO as SNTO,
          F0411.AAP as AAP,
          F0411.AG as AG,
          F0411.SFX as SFX,
          F0101.ALPH as ALPH
    from      JDE.F0101 F0101,
          JDE.F0411 F0411
    where   F0411.AN8=F0101.AN8
      and       F0411.DOC between ? and ?
      and    F0411.DGJ between TO_NUMBER(TO_CHAR(?, 'YYYYDDD' )) - 1900000
             AND               TO_NUMBER(TO_CHAR(?, 'YYYYDDD' )) - 1900000].
    why ??
    is the version of the drivers connecting ??
    thanks
    JC

  • Datatemplate query and publishing the output

    I'm troubleshooting performance problem in Oracle Apps r12 while running GL/XLA reports using the XML Publisher. The query which is defined in datatemplate takes less then a minute to complete while I execute it from PLSQL environment, however the entire job run as Concurrent process takes 30 minutes to complete. I suspect the majority of the time is spend formating an excel output in BI Publisher engine. To prove I look at the log file generated... it says the job started at 26-JAN-2011 11:47:10 and then...
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 36704774 on node AISSRV3 at 26-JAN-2011 11:48:12.
    Post-processing of request 36704774 completed at 26-JAN-2011 11:57:53.
    As you see it took about a minute from the start until the PUBLISH section started. Is the part of query execution from datatemplate included in PUBLISH section of the log or does it happen before.

    Please find my piece code below..
    **Function module to display the ALV output.
      CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'
           EXPORTING
                i_callback_program        = ws_repid
                i_callback_user_command   = 'F0009_USER_COMMAND'
                i_callback_pf_status_set  = 'f0008_set_pf_stat'
                is_layout                 = wa_layo
                it_fieldcat               = i_fieldcat[]
                is_variant                = wa_vari
                i_tabname_header          =  'I_VTTK_1'
                i_tabname_item            =  'I_HEADER'
                is_keyinfo                = ws_keyinfo
           TABLES
                t_outtab_header           = i_vttk_1
                t_outtab_item             = i_header
           EXCEPTIONS
                program_error             = 1
                OTHERS                    = 2.
    FORM f0009_user_command  USING ucomm LIKE sy-ucomm
                                   selfield TYPE slis_selfield. "#EC CALLED
    to handle the user commands if different from standard ALV
      CASE ucomm.
         WHEN 'REFRESH'.
    Here I am reselecting the data again to get the new changes done.
          PERFORM f0002_get_selection_data.
    Here the flag is getting set.
          selfield-refresh = 'X'.
      ENDCASE.
    ENDFORM.

  • JDE business services

    Hi,
    1.BPEL can invoke JDE Business Services(wsdl) but similarly, can JDE Business Services invoke BPEL web service(wsdl) ?
    Thanks
    Edited by: soauser on Aug 20, 2010 11:58 AM
    Edited by: soauser on Aug 20, 2010 11:59 AM
    Edited by: soauser on Aug 20, 2010 2:48 PM
    Edited by: soauser on Sep 2, 2010 7:57 AM

    Demo E900 is a big mess, perhaps "Oracle Lab" packaged it this way.
    Do this:
    1- Create a project "Temp"
    2- Check out F986020 & F986030 (only specs available, no table exists in the data source) - if you try to see by UTB or databrowser
    3- Generate table & index in design (take every thing as default)
    4- Now try check-in your BSSVs.
    5 Goodluck

  • Report on JDE can load

    Hi All
    i want to ask about this error message
    what the meaning of folowing
    NO DATA SELECTION INFORMATION FOUND
    Data selection information for this report has not been generated.
    COULD NOT LOAD REPORT
    Please use the latest Java generator to regenerate the report
    On websphere
    OS Windows
    JDE Enterprise One
    e 8.12 if i'm not wrong
    after i'm check out a report let say it R550001
    just looking around no change made get check in and release token
    find the report on web can't load when i'm click the submit button
    had the error message above like that
    What is that , why caused it? and how to prevent and how to repair ??
    Thanks

    Uhh, you are in the wrong forum. This is the JD Edwards World forum. There is a separate forum for JD Edwards Enterprise One stuff. Technically there is a very large difference between World and Enterprise One (World is a much simpler technical environment, so you have my sympathy in having to deal with One World/Enterprise One). So you are much more likely to get good responses by posting this in the correct forum. We World folks have no clue how Enterprise One works.
    John Dickey

  • JDE 8.10 Purchase Order Planning Message (R34A870)

    Hi,
    We have a JDE 8.10 customer currently implementing ASCP. When purchase orders are released from ASCP, can the JDE inbound process update existing purchase orders in JDE when there is qty/date change? Can it also handle cancellations? If updates and cancellations can be done, what attributes need to be setup in JDE for that? When we run the inbound processor now, only new purchase orders are being created without any updates to existing ones.
    Thanks,
    Venkat

    HI Venkat
    I have feeling that your integration with E1 to ASCP is through VP (Value Chain Planning). I would ask if you can open a service requestion with the supply chain planning group and we can further look into this issue.'
    Thanks
    Deven.

  • Urgent: RTF runs successfully in local, but no output on JDE

    Hello
    I'm having a problem with my RTF. The following codes below are in my RTF, my RTF outputs successfully when run locally. But if i upload the same RTF in JDE, it doesn't show any output.
    In the error log i get an error in the foreach_number loop.
    I had another RTF before with the variable@incontext:G1, and i had to remove the G1 to make it work. My output must be as follows: Original - Duplicate - Duplicate for each invoice number. (For each invoice number i must get Original - Dup - Dup, then it does the same for the next invoice no)
    <?for-each-group@section:/R56565/Phase_1___Build_Work_File_S1/Reference_Creapharm_S2_Group/On_Payment_Terms_S3;./Invoice_Number_ID27?>
    <?variable@incontext:G1;current-group()?>
    <?for-each@section:xdoxslt:foreach_number($_XDOCTX,1,$G1/Invoice_Copies_INVC_ID309,1)?>
    <?end for-each?>
    <?end for-each?>
    If i remove the $G1, it wont work and i will get no output. Can you please help me on that. Thank you very much.

    How have you narrrowed the error to this particular portion of the code :
    AND PC_SCHD_PYMT_DT IN (
    SELECT MIN (G.PC_SCHD_PYMT_DT)
    FROM PT_IL_PREM_COLL G
    WHERE G.PC_POL_SYS_ID = POL_SYS_ID
    AND G.PC_PAID_FLAG = (SELECT 'N' FROM DUAL)--'N'
    AND NVL (G.PC_FLEX_02, 'N') 'P'
    AND G.PC_SCHD_PYMT_DT <= TO_DATE('11-MAY-11','DD-MON-RR')) --ERROR INVALID NUMBERThe error occurs while the query is being executed, while some values are being evaluated as they are fetched.
    So, you also need to check other places where you have a VARCHAR2 for a NUMBER.
    See the very simple example by Tom Kyte at
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:45012348053
    Hemant K Chitale

  • How to Convert Normal XML date or Oracle date to JDE Julian Date

    We can do a simple mathematical step in XSLT :
    'xpath20:format-dateTime(xpath20:current-dateTime(),"[Y0001][d001]") - 1900000'
    Or in SQL :
    Select to_char(sysdate,'YYYYDDD')-1900000 from dual;
    Julian Date is: Year in 4 digits, YYYY, and Number of days in 3 digits, DDD
    JDE Julian Date is Julian Date -1900000 (ie it counts Julian date from 1900 Year)
    "[Y0001][d001]” returns date in Year in 4 digit + number of days in 3 digits. This is the Julian date.
    Subtracting 1900000 ( ie YR ’1900’ & DAY ‘000’) gives the required JDE Julian Date.
    Edited by: prakash.pankaj on Jul 8, 2011 2:13 PM
    Edited by: prakash.pankaj on Jul 8, 2011 4:02 PM
    Edited by: panks on Jul 20, 2011 3:43 PM

    Hi,
    getTime() (in Date) will give you that date in milliseconds since January 1, 1970 00:00:00 GMT.
    To my knowledege, this is the same as Unix date format.

Maybe you are looking for

  • Aperture keeps crashing on startup!

    I recently moved my library with all referenced master to another 2TB drive. After doing that I imported a dozen of weddings and that took all the night. After the import was done Aperture just crashes everytime on startup. I tried with both repairin

  • Large folio file size

    We are half way through a book that comprises 100 single page articles. However it is already nearly 500 MB and this isn't sustainable. Does the following affect the file size: Is the Folio file size affected by the number of individual articles, wou

  • Will I lose my music if I uninstall my itunes

    My itunes says it's corrupt or not working properly I keep trying to download itunes all over but I'm worried if I uninstall my itunes will I lose the music I have.

  • Reuse Sales Quotation in SAP Business One Addon

    I m designing an addon for SAP Business One using  VB .net 2005. I have created a menu for that Addon. Now i want to open the existing SALES QUOTATION from a sub menu of my new ADDON Menu. Please tell me if it is possible or not ? If it is possible t

  • Software exception (0xc001000e) in application on ...

    Hello, after installing the new version I have got following message (I am translating it form the Czech language):<br><br>software exception (0xc001000e) in application on place 0x7c812fd3<br><br>What can I do??? Is there any chance my skype will wo