ASCP Plan Is Not Able To Read Global Forecast For Options Published By Demantra

ASCP plan is not able to read global forecast for options published by Demantra
ASCP plan is not able to read global forecast for options published by Demantra. Only Model Forecast is being read into ASCP plan. 
1) We are publishing global forecast from Demantra at CTO/Zone/Week level and it is getting published properly to ASCP denorm table. 
2)There is no forecast explosion being done in ascp (plan option explode forecast is not checked) 
3)The sourcing rule is set at zone level for the model saying source from an organization (org code 11) 
4) The profile: msc:-Organization containing generic BOM for global forecasting is set to 22 which is a reference org 
5) Now when we run the plan the model forecast goes to org 11  but the option forecasts do not go properly 
6) We have just one line created for the option (production forecast) with a wrong quantity
7) Demantra has forecasts for both Model and options

Looking at the error message "The Network Adapter could not establish the connection" , It appears hostname and port may be incorrect. Review the targets.xml under E:\oracle\product\10.2.0\db_1\SAP_solman_SDB\emd and
emoms.properties under E:\oracle\product\10.2.0\db_1\SAP_solman_SDB\config folder to make sure host ( sap_solman) and port (1527) are correct.
As far as setting the environment variables goes, you can go to control panel -> system -> advanced -> environment variables and set the ORACLE_HOME and ORACLE_SID
-Ramesh

Similar Messages

  • Proxy-Not able to read from socket for browser IE only for authorized sites

    Hi,
    I have implemented proxy server using socket connection. For Mozila it works properly, but not for IE.
    First it asks for proxy authentication, after providing the username and password for proxy in mozila its asks authentication for the authorized sites and its working properly. But in IE it just ask for proxy authorization and gives error as "you are not authorised to view this page" internally when I went through the code only first time its able to read the request and gives the response, but for the authorized site it wont ask for the username and password. After some time it throws the "Socket connection: reset" exception.
    Creates the connection:-
                   while(running){
                        try{
                             clientSocket = serverSocket.accept();
                                    }catch(SocketException se){
                                            se.printStackTrace();
                                   try{     
                             new HttpClientConnectionHandler(sockCon);
                        } catch(IOException se) {
                                             se.printStackTrace();
                                   }Sends requests and gets the response:-
    boolean continueSession = true;
              try{
                SCConnectionManager.increementConnCount();
              while (continueSession){
                        continueSession=false;
                    HttpHeader request = rqHandler.getRequest();
                        String con = request.getHeaderValue ("Connection");
                   boolean clientPersistentConnection = false;
                        String pcon = request.getHeaderValue ("Proxy-Connection");
                        System.out.println("request = "+request.toString());
                        if( ( request.getHTTPVersion().equalsIgnoreCase("HTTP/1.1")
                                            && !( pcon.equalsIgnoreCase("close") ) )
                                  || ( request.getHTTPVersion().equalsIgnoreCase("HTTP/1.0")
                                    && ( pcon.equalsIgnoreCase("Keep-Alive") ) ) ){
                                  //tempComment     debug("CLIENT Keeping connection true !!!!!! ");
                             clientPersistentConnection = true;
                    resHandler.Handle(request);     // Returns boolean ...can check its value...
                             if ( clientPersistentConnection == true && resHandler.connectionPersistent == true ) {
                                       //tempComment    
                                  debug("SERVER Keeping connection true !!!!!! ");
                                  continueSession=true;
                                  if ( resHandler.surfAsServer == true ) {
                                       client.setTimeout( persistentConnectionClientReadTimeout );
                             debug("CONTINUING CLIENT CONNECTION "+continueSession);
                   System.out.println("out of while loop continue sess = "+continueSession);
              }catch(IOException ioe){
                   log(ioe);     
                   if(qlc.qsm.log.Logger.debugOut) {
                        ioe.printStackTrace();
              } finally {
                   synchronized( this ) {
                        int connCount = SCConnectionManager.decreementConnCount();
                    SCConnectionManager.updateLastRequestTime();
                   close();
         }It does not come out of above while loop.

    Sorry, while copy the code one line was missing.
    code is:-
    while(running){
                        try{
                             clientSocket = serverSocket.accept();
                              } catch (SocketException se) {
                              se.printStackTrace();
                             continue;
                        }catch(IOException se){
                                       continue;
                        try{
                                       SocketConnection sockCon=new SocketConnection(clientSocket);
                                        new HttpClientConnectionHandler(sockCon);
                                   } catch(IOException se) {                         
                             se.printStackTrace();
                                             if ( clientSocket != null ) {
                                  try {
                                       clientSocket.close();
                                  } catch ( Exception exc ){
                                       clientSocket = null;
                                  decrementHttpCount();
                                  }

  • I am not able to read the xslt table column value.

    Hi,
    I have the scenario like this.
    I have two irpt pages  first.irpt and  second.irpt and saperate xslt tables for each page  and common js file for two pages.
    when I click on first.irpt   page xslt table row that opens  the  second.irpt as a popup window then I click on the column in second.irpt xslt row  after that  column value should be inserted  in to first.irpt  xslt table column.
    In above I have done everything except I am not able to update the first.irpt  xslt table column as Even I am not able to read that value.
    For your reference:
    /* This function will be called when we select the row in first.irpt xslt table here SelectBatch_b.irpt means second.irpt
    function getBatch(row)
    var id=row;
    var material=document.getElementById('Material_'+row).value;
    var location=document.getElementById('StoreLoc_'+row).value;
    var plant=1000;
    var strUrl = "SelectBatch_b.irpt";
    strUrl = "?plant="plant"&""location="location"&""material="material;
         window.open (strUrl,"mywindow");
    /*This function will be called when we select the row in second.irpt (SelectBatch_b.irpt)
    function getBatchID(row)
    var Batch=document.getElementById('Batch_'+row).value;  // reading second.irpt xslt table column value
    document.getElementById('Batchc1').value=Batch;  // reading first.irpt xslt table column value and inserting.
    window.close();  // here I am getting error like object expected.
    Please help me in this .
    Edited by: rajkumar12345 on Feb 29, 2012 1:45 PM

    Hi Rajkumar,
    Please find below the method to pass the variable back and forth in .irpt page.
    First Page:
    var Toaccessinchildpage = "value";
    function getBatch(row)
    var id=row;
    var material=document.getElementById('Material_'+row).value;
    var location=document.getElementById('StoreLoc_'+row).value;
    var plant=1000;
    var strUrl = "SelectBatch_b.irpt";
    strUrl += "?plant="plant"&"+"location="location"&"+"material="+material;
    window.open (strUrl,"mywindow");
    function populate(strBatch)
         document.getElementById('Batchc1').value=strBatch;
    Second Page:
    function getBatchID(row)
    var Batch=document.getElementById('Batch_'+row).value;
    window.opener.populate(Batch);
    window.close();
    You have to call parent page function from child page.
    No need to use common js.
    If you want to access variable from parent page use
    window.opener.<variable name>.
    Example
    window.opener.Toaccessinchildpage
    You have to declare that variable as global variable in Parent page js file.
    Refer First page code.
    Regards,
    Selva

  • Not able to read the wsdl file from server Premature EOF encounter

    Hi All,
    I am facing issue while accessing a web Service from server. Here is the clear view about it.
    I created a simple SyncBpel process in a composite and deployed in to the server and it is working fine. Later i created a new Asyn bpel process in a composite and in the external reference i dragged a web Service and imported the wsdl url from server of the SyncBpel and wired the Asynbpel process to webserive .
    Now here i am facing peculiar behavior which i am not able to trace it out.
    1) For the first time when i import the url of syncBpel from the server i am not facing any error and it is working fine as expected but when i close the Jdeveloper and open it i am not able to user the web Service and it is saying as "Not able to read the wsdl file from server Premature EOF encounter"
    2)When i close and open the Jdeveloper i can see the url of the wsdl which imported in webserver is changing from http://stcfmw03.satyam.com:8021/soa-infra/services/Tarak/synchronousBpel/bpelsync_client_ep?WSDL to http://stcfmw03.satyam.com:8021/soa-infra/services/Tarak/synchronousBpel/BPELsync.wsdl
    3)when I open and see the url http://stcfmw03.satyam.com:8021/soa-infra/services/Tarak/synchronousBpel/bpelsync_client_ep?WSDL I can see the soap address as *<soap:address location="http://stcfmw03.satyam.com:8021/soa-infra/services/Tarak/synchronousBpel!1.0*soa_5cfb8416-c106-40a2-a53b-9054bbe04b9c/bpelsync_client_ep"/>*
    I don’t understand why the soap end contains “*soa_5cfb8416-c106-40a2-a53b-9054bbe04b9c” and this kind of url for soap address is coming to all the bpel process which I am deploying in the server.
    I checked the in Jdeveloper where webproxy is uncheck and the server is also up but still I am facing issue of reading the error.
    Can someone please help in resolving the issue.
    I am using SOA 11g 11.1.1.5 and Jdeveloper 11.1.1.5
    Many thanks.
    Tarak
    Edited by: user11896572 on Jan 17, 2012 5:22 PM

    Hi,
    Setting default from the jdeveloper -
    During composite deployment from Jdeveloper (wizard driven), you will be given an option to choose the version of the composite and there will also be an option for you to choose if the composite needs to be deployed as default.
    Setting default from the em console -
    After deploying a composite, login to the em console and click on the composite that you want to set as default, and you will find a tab - "Set as Default". please note that this tab will not be seen, if the composite is already set as default.
    Refer -
    http://docs.oracle.com/cd/E12839_01/integration.1111/e10226/soacompapp_mang.htm
    8.2 Managing the State of Deployed SOA Composite Applications
    Thanks

  • OIM 11G-prepop adapters not able to read from User form

    When I try to auto provision ldap account for users after creation of OIM record using GTC, the ldap provisioning doesnt happen. Basically the prepop adapters not able to read from Xel user form. I am stuck with this issue for a while now .
    I tried remapping..ect etc..ntng helped.
    None of the process form fields are getting prepopulated, when I hard coded avlue in prepop adapters for all the reqd fields in process form, proviosioning gets completed successfully.
    Pls. help me with this.
    Thanks.
    ~VSN
    I get the below errorr:
    <BEA-000000> <Class/Method: tcAdapterExecuter/executeRuleGenerators encounter some problems: java.lang.Exception: Error retrieving user info: User Login
    java.lang.Exception: java.lang.Exception: Error retrieving user info: User Login
    at java.lang.Throwable.<init>(Throwable.java:67)
    at com.thortech.xl.dataobj.rulegenerators.tcAdapterExecuter.executeRuleGenerators(tcAdapterExecuter.java:205)
    at com.thortech.xl.dataobj.util.tcPrePopulateUtility.setDataFromAdapter(tcPrePopulateUtility.java:1020)
    at com.thortech.xl.dataobj.util.tcPrePopulateUtility.prePopulate(tcPrePopulateUtility.java:346)
    at com.thortech.xl.dataobj.util.tcOrderPackages.computeProcessFormData(tcOrderPackages.java:901)
    at com.thortech.xl.dataobj.util.tcOrderPackages.createOrder(tcOrderPackages.java:423)
    at com.thortech.xl.dataobj.util.tcOrderPackages.orderPackageForUser(tcOrderPackages.java:177)
    at com.thortech.xl.dataobj.tcOIU.provision(tcOIU.java:563)
    at com.thortech.xl.dataobj.tcOIU.eventPostInsert(tcOIU.java:303)
    at com.thortech.xl.dataobj.tcDataObj.insert(tcDataObj.java:602)
    at com.thortech.xl.dataobj.tcDataObj.save(tcDataObj.java:474)
    at com.thortech.xl.dataobj.tcTableDataObj.save(tcTableDataObj.java:2905)
    at com.thortech.xl.dataobj.tcUserProvisionObject.insertImplementation(tcUserProvisionObject.java:283)
    at com.thortech.xl.dataobj.tcDataObj.insert(tcDataObj.java:591)
    at com.thortech.xl.dataobj.tcDataObj.save(tcDataObj.java:474)
    at oracle.iam.accesspolicy.impl.handlers.provisioning.ProvisionAccountActionHandler.execute(ProvisionAccountActionHandler.java:104)
    at oracle.iam.accesspolicy.impl.handlers.provisioning.ProvisionAccountActionHandler.execute(ProvisionAccountActionHandler.java:35)
    at sun.reflect.GeneratedMethodAccessor1831.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:600)
    at oracle.iam.platform.kernel.impl.EventHandlerDynamicProxy.invoke(EventHandlerDynamicProxy.java:30)
    at $Proxy284.execute(Unknown Source)
    at oracle.iam.platform.kernel.impl.OrchProcessData.runActionEvents(OrchProcessData.java:1035)
    at oracle.iam.platform.kernel.impl.OrchProcessData.runEvents(OrchProcessData.java:644)
    at oracle.iam.platform.kernel.impl.OrchProcessData.executeEvents(OrchProcessData.java:227)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:669)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeChildProcess(OrchestrationEngineImpl.java:751)
    at oracle.iam.platform.kernel.impl.OrchProcessData.handleAdditionalChanges(OrchProcessData.java:537)
    at oracle.iam.platform.kernel.impl.OrchProcessData.runEvents(OrchProcessData.java:802)
    at oracle.iam.platform.kernel.impl.OrchProcessData.executeEvents(OrchProcessData.java:227)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:669)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:686)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.notifyParentProcess(OrchestrationEngineImpl.java:828)
    at oracle.iam.platform.kernel.impl.OrchProcessData.runEvents(OrchProcessData.java:771)
    at oracle.iam.platform.kernel.impl.OrchProcessData.executeEvents(OrchProcessData.java:227)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:669)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeChildProcess(OrchestrationEngineImpl.java:751)
    at oracle.iam.platform.kernel.impl.OrchProcessData.handleAdditionalChanges(OrchProcessData.java:537)
    at oracle.iam.platform.kernel.impl.OrchProcessData.runEvents(OrchProcessData.java:802)
    at oracle.iam.platform.kernel.impl.OrchProcessData.executeEvents(OrchProcessData.java:227)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:674)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:705)
    at oracle.iam.platform.kernel.impl.OrhestrationAsyncTask.execute(OrhestrationAsyncTask.java:108)
    at oracle.iam.platform.async.impl.TaskExecutor.executeUnmanagedTask(TaskExecutor.java:100)
    at oracle.iam.platform.async.impl.TaskExecutor.execute(TaskExecutor.java:70)
    at oracle.iam.platform.async.messaging.MessageReceiver.onMessage(MessageReceiver.java:68)
    at sun.reflect.GeneratedMethodAccessor2150.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:600)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:148)
    at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    at $Proxy382.onMessage(Unknown Source)
    at weblogic.ejb.container.internal.MDListener.execute(MDListener.java:466)
    at weblogic.ejb.container.internal.MDListener.transactionalOnMessage(MDListener.java:371)
    at weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:327)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4659)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:4345)
    at weblogic.jms.client.JMSSession.executeMessage(JMSSession.java:3821)
    at weblogic.jms.client.JMSSession.access$000(JMSSession.java:115)
    at weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:5170)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

    Kevin,
    For manual Proviosioning - It works fine.
    It fails when I create user in OIM using flat file GTC . I have an access policy to auto proviosion that user with ldap.
    As mentioned before, I notice none of the prepops on Ldap process form are able to read value from Xel user form.
    Steps I tried Already:
    1- Checking access policy
    2-remapping process form adapters
    Pls. let me know ur thoughts.
    ~VSN

  • Superdrive not able to read DVDs or CDs

    I'm having an iMac G5, running MacOs 10.4.3 with an Matshita DVD-R UJ-846. Since quite some time now I'm not able to read inserted DVDs or CDs. Either a dialogue box appears telling me I've inserted a blank disk or nothing appears and I have to find another way to eject the disk again. I have no clue whether the drive is ruined or I simply need another newer driver. Please, can anyone help? Cheers!

    Another help source (if you haven't already done so).
    Go to your OS Help Menu. In the search field type dvd
    Click on all the troubleshooting topics & Support Articles that pertain to your issue.
    You can also do the same in Disk Utility. Open same up.
    At the bottom left of the window, click on the purple button w/the "?" in the middle.
    This will bring up the Help Menu.
    ===============
    Sometimes, repairing permissions & restarting your computer helps.
    Try a different brand. Top forum favorites
    CDs
    FUJI
    TDK
    Verbatim
    DVDs
    Maxell
    Make sure the DVDs are not dirty, smudged and/or scratched.
    http://docs.info.apple.com/article.html?artnum=50448 How to Handle and Clean CD and DVD Discs
    http://docs.info.apple.com/article.html?artnum=88338 What to do if your computer won't recognize a FireWire or USB device
    Your drive may need cleaning. Cleaning kits can be purchased from any store that sells CD/DVDs.
    TIP: Update your OS to 10.4.11 along w/all the applicable updates through Software Update. Any reason why you are using such an outdated OS?

  • I am not able to read a barcode from a image

    I want to read a barcode which is part of a big image on which i have to work on,i am not able to read the barcode as i have to give the correct ROI,which in my case has to be set dynamically,can any body help me in this

    Please post an example image, and I'll try to help...
    Copyright © 2004-2015 Christopher G. Relf. Some Rights Reserved. This posting is licensed under a Creative Commons Attribution 2.5 License.

  • Not able to read AddtionalResult.requirments

    Hi,
    am using the followwing code
    voidaxApplicationMgr_UIMessageEvent(objectsender,NationalInstruments.TestStand.Interop.UI.Ax._ApplicationMgrEvents_UIMessageEventEvente)
    if (e.uiMsg.Event ==UIMessageCodes.UIMsg_Trace)
    try
    intframeid;
    SequenceContext seqctx = e.uiMsg.Thread.GetSequenceContext(0, outframeid);
    if(seqctx.PreviousStepIndex >= 0)
    Stepprvstp = seqctx.PreviousStep;
    StepTypeprvstptyp = prvstp.StepType;
    PropertyObjectstepPropertyObject = prvstp.AsPropertyObject();
    String testid=String.Empty;
    if (string.Equals(prvstptyp.Name, "NumericLimitTest"))
    testid = stepPropertyObject.GetValString("Result.AdditionalResults[\"Requirements\"]", 0);
    double lwlimt = stepPropertyObject.GetValNumber("Limits.Low", 0);
    double measValue = stepPropertyObject.GetValNumber("Result.Numeric", 0);
    String unit = stepPropertyObject.GetValString("Result.Units", 0);
    am not able to read the Requirments by "testid = stepPropertyObject.GetValString("Result.AdditionalResults[\"Requirements\"]", 0);"
    but am sucessful in reading all others.
    can you please help me in this regards.
    Thanks
    IVI

    IVI,
    please do not open new threads for the same topic......thanks
    The discussion is kept there.
    thanks,
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • HT4943 Guys I am not able to read several magazine subscriptions on the ipad (newsstand) It looks like a bug, cause it keeps showing the below box: Connect to itunes to use push notification...when,  i press ok, it keeps showing up help please!!

    Guys I am not able to read my subscription on the ipad. Everytime i press one of the subscription a box appears and when I press oK it keeps showing up.
    "connect to itune store to use push notification"
    Thanks for your help

    You welcome

  • HT3775 I am using OS X Mountain Lion and I have this .avi file but not able to read. What is missing in my setup and what other file do I need to download to enable me to read?  I can read mp4 files though.

    I am using OS X Mountain Lion and I have this .avi file but not able to read. What is missing in my setup and what other file do I need to download to enable me to read?  I can read mp4 files though.

    Here is a link: https://itunes.apple.com/en/app/mplayerx/id421131143?mt=12
    I agree that VLC is also a good choice but MPlayerX is more user friendly.

  • Why is PC MS Word is not able to read MSword files from MAC?

    Why is PC MS Word is not able to read MSword files from MAC?

    What version of Word is on the PC?
    What version of Word is on the Mac?
    What sort of error message or other bad behavior do you observe?

  • I have received icloud mail in Arabic langauge. I could not able to read. So what should I do to activate my icloud account. Is there any chance to get mail in English?

    I have received icloud mail in Arabic langauge. I could not able to read. So what should I do to activate my icloud account. Is there any chance to get mail in English?

    I'm not positive about this, but I'd guess that the voicemail service is with your cellular provider i.e. will work w/o the phone instrument.
    Doing the "remote lock" should not AFAIK prevent Find My... from working. But it might discourage a thief and cause him to turn it off before iCloud can snare its location? I'd have guessed NOT i.e. that it would register instantly, but I dunno how fast that works.
    In any case that's your only hope at this point, to monitor your email and see if a "Found!" is received. If it were me, I'd use my netbook to check email all night long and wake me if one comes in. Good luck, and report back!

  • Not able to generate multiple lines for headers in report

    Hi,
    I am new to BI publisher and not able to generate multiple lines for headers. Please help me to resolve.
    I am using RTF template, data source as PS Query and XML file (system generated from the data source)
    When I am using system generated 'First XML' file, I am getting output in the follwoing format.
    TEAM_MEMBER, PROJECT_ID, NAME, START_DT
    e.g.
    EMP1 , 71000, Sample, 01-Jan-2010
    EMP1 , 72000, Sample, 01-Feb-2010
    EMP1 , 73000, Sample, 01-March-2010
    But I want the report to be generate with multiple projects for one employee like below format , for that I used 'Second XML' file but I am getting blank report.
    In short if there is one to many case, how to show in reports??? Please correct if I am going wrong.
    TEAM_MEMBER
    PROJECT_ID, NAME, START_DT
    PROJECT_ID, NAME, START_DT
    PROJECT_ID, NAME, START_DT
    e.g.
    EMP1
    71000, Sample, 01-Jan-2010
    72000, Sample, 01-Feb-2010
    73000, Sample, 01-March-2010
    **********First XML**************System generated XML ****************************
    <?xml version="1.0"?>
    <query numrows="2" queryname="SY_EMP_PROJECT" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="">
    <row rownumber="1">
    <TEAM_MEMBER>TEAM_MEMBER </TEAM_MEMBER>
    <PROJECT_ID>PROJECT_ID samp</PROJECT_ID>
    <NAME>NAME sample data</NAME>
    <START_DT>2010-08-25</START_DT>
    </row>
    <row rownumber="2">
    <TEAM_MEMBER>TEAM_MEMBER</TEAM_MEMBER>
    <PROJECT_ID>PROJECT_ID samp</PROJECT_ID>
    <NAME>NAME sample data</NAME>
    <START_DT>2010-08-25</START_DT>
    </row>
    </query>
    **********Second XML**************Manually created XML and using to show multiple projects for one employee****************
    <?xml version="1.0"?>
    <TEST numrows="2" queryname="SY_EMP_PROJECT" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="">
    <TEAM_MEMBER rownumber="1">
    <TEAM_MEMBER>1</TEAM_MEMBER>
    <EMPLOYEE_NAME>SAMPLE</EMPLOYEE_NAME>
    <PROJECT>
    <PROJECT_ID>1111</PROJECT_ID>
         <PROJECT_DESCR>SAMPLE</PROJECT_DESCR>
    <START_DATE>01012010</START_DATE>
    </PROJECT>
    <PROJECT>
    <PROJECT_ID>1112</PROJECT_ID>
         <PROJECT_DESCR>SAMPLE</PROJECT_DESCR>
    <START_DATE>01022010</START_DATE>
    </PROJECT>
    </TEAM_MEMBER>
    <TEAM_MEMBER rownumber="2">
    <TEAM_MEMBER>2</TEAM_MEMBER>
    <EMPLOYEE_NAME>SAMPLEC</EMPLOYEE_NAME>
    <PROJECT>
    <PROJECT_ID>1111</PROJECT_ID>
         <PROJECT_DESCR>SAMPLE</PROJECT_DESCR>
    <START_DATE>01012010</START_DATE>
    </PROJECT>
    <PROJECT>
    <PROJECT_ID>1112</PROJECT_ID>
         <PROJECT_DESCR>SAMPLE</PROJECT_DESCR>
    <START_DATE>01022010</START_DATE>
    </PROJECT>
    </TEAM_MEMBER>
    </TEST>
    Edited by: ganeshtw on Aug 25, 2010 12:14 AM

    Hi,
    With your first xml you can print like
    EMP1
    71000, Sample, 01-Jan-2010
    72000, Sample, 01-Feb-2010
    73000, Sample, 01-March-2010While creating the RTF template you can use the Group by option.
    <?for-each-group:ROW;./columnname> then print the column name
    <?columnname?>
    --Then your table format
    71000, Sample, 01-Jan-2010
    72000, Sample, 01-Feb-2010
    73000, Sample, 01-March-2010
    <?end for-each-group?>
    Thanks.

  • Not able to find driver page for HP 15-r007tx

    Not able to find driver page for HP 15-r007tx.
    The web site is able to detect my product, but when clicked on link Software & Driver Downloads, it says page not found.
    Please help. I am looking drivers for windows 7 ultimate.

    Hi Anoop22Sharma
    Install:
    Intel Chipset Installation
    Intel Video Driver 
    NVIDIA High-Definition (HD) Graphics Driver
    Synaptics Mouse Driver
    Realtek Ethernet Controller Drivers  
    MediaTek(Ralink)802.11 b/g/n Wireless LAN (WLAN) Adapter
    Ralink Bluetooth Software Driver
    Intel USB 3.0 Driver for Intel 8 and U/Y Series
    Realtek High-Definition (HD) Audio Driver
    Realtek PCIe Media Card Reader Driver
    HP 3D DriveGuard

  • Sales Order form error  "Not able to retrieve Display values for Service"

    Hi,
    Few of our orders flash the below error message when the order is queried
    "Not able to retrieve Display values for Service"
    Below are the points I observed
    1.The orders I am referring to are imported order via EDI interface.
    2.The service reference type code has value of ORDER, however no other service related fields (like service reference line id) have any values.
    3. The item is not a service item (service tab in Item setup is disabled)
    4. Same item when imported with value of "Customer Ordered" in "service reference type code" field, does not throw an error.
    5. If I update "service reference type code" with value null or change it to CUSTOMER_PRODUCT, the error disappears.
    Can someone explain the significance of this column value and what could have been causing this error message?
    May be there are some dependent fields/setups which must have a value when service reference type code =ORDER.
    Thanks in advance,
    JC
    Edited by: user10174990 on Oct 25, 2012 10:58 AM

    Hi,
    Maintain the dafault values using Tcode OISF with respective to Planning Plant you have to maintain the following values like Order Type, Main Work Center, Maint. Plant,Group,Group Counter,Business Area & Task List type.
    or
    Apply these OSS note 150732 / 195993.
    regards,
    Venkatesan Anandan

Maybe you are looking for

  • X-fi xtrememusic showing up as emulated (plus annoying hissing with music and gam

    My x-fi has recently started to exhibit an annoying hissing while playing music (though strangely not with WMP) and in games. I usually use foobar 2000 for music, and I can escape the hissing with the kernel streaming plugin. As kernel streaming work

  • BI Publisher Desktop Permission Issues

    I'm currently running BI Publisher Desktop v11.1.1.6 in a Windows XP environment with Microsoft Word 2007 and having issues using the BI Publisher add in for MS Word. I went through the installation logged in as an administrator, and could access the

  • Cannot Create OWB Repository Owner

    Hello All, On windows XP pro, 32 bit, the following tasks were completed (clean system, 1.5 gig ram and dual core) - Installed 9.2.0.1 Server - Installed 9.2.0.6 Patch - Installed Oracle Worflow + and created workflow user - Installed OWB_10.2.0.1.wi

  • Using ACS to authenticate mac addresses

    I am wanting to use ACS 3.3 to be the authentication source for mac address authentication on a WLAN. All AP's are 1200's. Configuring the AP to look to to ACS box seems pretty straight forward. But how do you configure the ACS box. Do you just enter

  • Can't download OLE DB provider 9.2

    I tried to download Oracle OLE DB Provider 9.2 from http://otn.oracle.com/software/tech/windows/ole_db/htdocs/utilsoft.htm but I get HTTP 404 (page not found) errors every time I clik on the link for hte download file