Critical issue regarding file to website interface

hi all,
  I am working on one scenario in which sender is an File. and receiver is an HTML page(actually it is a website) which responds according on the input data.
when i visited that site I came to know that there are three fields. as follows...
username: 
Password:
File:                        Browse
              POST
Actually file name contains the contents of the file feilds which varies for every transaction.
When i manually put username password and location of the file(using Browse tab) in the website page, I got the response file.
But when I put just file name I am unable to click POST tab.
My problem is:--
Is this thing is possible using XI.
I tried using HTTP and put all three inputs in the header fields of receiver HTTP channel.
But i didn't get the response.
Can anybody tell me any other solution. Since it is critical requirment for me. so Plzz respond ASAP.
Solution will be awarded
Thanks
Jaideep jain

Hi,
you said that the target system is a website...so can i say that it is a WebService exposed by some XYZ system...if yes then why dont you opt for the receiver SOAP channel....the use of SOAP channel is in such cases only (source: http://help.sap.com/saphelp_nw04/helpdata/en/29/5bd93f130f9215e10000000a155106/frameset.htm )
Also if you have any doubt regarding what kind of adapter to use please refer this discussion: Re: Can't select Adapter Type during creating communication channel.
Adding one more link:
Difference between SOAP and Http Sender
Regarding the target url, u need to use the one which you can see after you hit the Post button.
In the receiver SOAP channel, under the Target URL option u can find the User Authentication details...enter the user details who is authorised to post/upload the document.
Regards,
Abhishek.

Similar Messages

  • Issues regarding File Tranportation

    Hi Everybody,
       I'm doing simple File Transportation.. (manual).. here IR and ID point of view I'm able to do easily... but i have doubts...i have doubts regarding SLD point of view..
    these entries how can we transport from Developement to Quality.. any Import and Export option is there like in Integration Repository and Integration Directory  ...
    and  one more thing.. if i transport the  ABAP objects(classes ) from Developemt to Quality  means..   again i need to generate the proxy or.. automaticaly  that will work.. beacsue..  i have proxys  for all the interfaces.. for these types of interfaces how can we transport.. please guide me..
    regards
    Jian

    hi,
    How to Transport objects
    In Integration Repository object:
    right click on the Namespace which you want to send to Quality system and select the export optin and export it....this will create a .tpz file on the server following path
    D:usrsap<SID>SYSglobalxi
    epository_serverexportsample.tpz
    this file will be copied by the BASIS and pasted in follwoing path
    D:usrsap<SID>SYSglobalxi
    epository_serverexportsample.tpz
    similar procedure for directory
    right click on the configuration scenarion in development which you want to send to Quality select the export optin and export it....this will create a .tpz file on the server following path
    usrsap<SID>SYSglobalxidirectory_serverexportsample.tpz
    then login to the IR of the quality select the tools--import option you will get this tpz file and import it and activate.
    /people/sravya.talanki2/blog/2005/11/02/overview-of-transition-from-dev-to-qa-in-xi
    /people/sap.india5/blog/2005/11/03/xi-software-logistics-1-sld-preparation
    /people/sap.india5/blog/2005/11/09/xi-software-logistics-ii-overview
    For more -
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ef/a21e3e0987760be10000000a114084/frameset.htm
    Re: Transports
    Re: Multiple SLD in DEV QA and PROD XI and ID transports
    Transports in XI using CMS, assembly issue
    XI Transports
    Also have a look on below link
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f85ff411-0d01-0010-0096-ba14e5db6306
    How to configuring the CMS for XI?
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b8d8f7b2-0701-0010-b09a-cda4cca2c98e
    Where can I get installation files of DTR, CBS, and CMS?
    https://websmp201.sap-ag.de/~form/sapnet?_SHORTKEY=01200252310000071155&_SCENARIO=01100035870000000202 -> How to Guide on
    /people/sap.india5/blog/2005/11/28/xi-software-logistics-solution-iii-cms
    HOW TO transport usning CMS
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/43f5d790-0201-0010-2984-ff72d822b109
    /people/sap.india5/blog/2005/11/03/xi-software-logistics-1-sld-preparation
    Thanks,
    Vijaya.

  • Critical B2B issue regarding component seprator

    Hi Guru's
    we are facing one critical issue regarding component seprator. We want to have folling component seperator delimiter as "|" (HEXA 0x7c) e.g
    ISA*00* *00* *01*041158668 *07*5051379000004 *100203*1259*^*00501*000001505*0*P*|~
    where as we are getting ">" (hexa 0x3e)
    ISA*00* *00* *01*041158668 *07*5051379000004 *100421*1532*^*00501*000001049*0*P*>~
    I tried changing the value in capabilities of TP but it didn't effected the result. Also I tried changing the defualt values in Business Action but the result remained same.
    Please advise us on how to resolve this issue. Its a requirement for us to have 0x7c.
    any pointers will be highly appreciated.
    Regards
    Sahil

    Hi Sahil,
    Override the default/current values in the operational capability of Remote Trading partner and revalidate and redeploy the agreement. Make sure that you are not passing internal properties from the back-end.
    In case still the issue persists, mail back your b2b log, ecs file and payload.
    Regards,
    Anuj

  • Issue regarding consecutive run for an Interface

    hi all,
    i have an issue regarding an interface
    if this Interface is a initial run for the file, you have to populate all the data of the people. That is , unlike other interfaces where we send only the latest record, in this interface we need to send all the records of the employees. in a employee has 10 records with different dates, we will pick up all the records greater than 1999 and pass it. whereas if there is a change in one field, then we will send all the record of that file. And If it is a consecutive run  then you have to populate changes only. the following algorithm can help you in this
    if intial_run EQ 'X'
    transfer IT_FINALDATA to XI.
    else
    Declare a 2 more internal tables similar to IT_FINALDATA...for our below example let us assume that
             DATA: IT_CLUSTERDATA type standard table of IT_FINALDATA.
             DATA: IT_COMPAREDATA type standard table of IT_FINALDATA.
    use the following statement to retrieve the data from cluster and comparing it
            IMPORT IT_CLUSTERDATA TO IT_COMPAREDATA  FROM DATABASE indx(zn) ID 'IN_8085'.
            Compare IT_COMPAREDATA with IT_FINALDATA
    If sy-subrc = 0.
    Means there are no changes, and no output required
    Else
    Pass the data to XI interface,  And store the internal table in the same INDX table, using the following statement
    EXPORT IT_FINALDATA to  IT_CLUSTERDATA FROM DATABASE indx(zn) ID 'IN_8077'.
    Endif.
    In this  can we deliver the changed data at every single consecutive run.
    Please let me  know,
    Thank Q
    Rohini.

    This is something where HR Interface Toolbox (PU12) can be very helpful, it will take care of changes from one run to another and you can configure it to send changes only in next run. But, you will need some ABAP in its user exits to restrict the data after 1999, and any other restrictions that you might want.

  • Hello, I just wanted to know when an update would be available for my mac mini server os x lion to resolve the issues regarding my m-audio fastrack pro usb audio interface (no midi messages recognized)

    Hello, I just wanted to know when an update would be available for my mac mini server os x lion to resolve the issues regarding my m-audio fastrack pro usb audio interface (no midi messages recognized)

    Have you reported your problems to Apple?
    BugReporter
    <http://bugreporter.apple.com>
    Free ADC (Apple Developer Connection) account needed for BugReporter.
    Anyone can get a free account at:
    <http://developer.apple.com/programs/register/>
    And/Or
    Mac OS X Feedback<http://www.apple.com/feedback/macosx.html>

  • Facing some issue regarding Requisition interface table

    I am facing some issue regarding Requisition interface table..
    Purpose: we have to massage data & create massage data & create Requisitions.
    Issue Detail:
    Before:
    Previously it was Auto Create Purchase Requisition
    On the move transaction form step 10 to 20, this step will trigger creation of requisition.
    and Creating Requisition successfully.
    After:     
    After stopping Auto Create Purchase Requisition functionality the Requisition interface data is not getting populated in the Requisition Interface tables as well.
    Please provide your inputs.

    It's standard functionality not to populate the req interface while you don't want to autocreate.
    Thanks,
    PS.

  • File Adapter Polling issue(Is there critical value of File size )?

    Hi
    I use File adapter as the Activation to initialize a BPEL process instance .The source data is a kind of Delimited file format.On my PC, when the file size is less than 4M ,everything works fine ,But when the size increased. The BPEL process will not initialize the instance.When the source data is XML data , the "critical value " is about 12M. The error msg is below.
    <2005-08-08 12:48:26,209> <INFO> <default.collaxa.cube.activation> <File Adapter::Inbound> Processing file : D:\Temp\WOSSystemIntegration\InBoundFiles\LOADPLAN_DATA_200508041708.xml
    <2005-08-08 12:48:29,455> <INFO> <default.collaxa.cube.activation> <FileAdapter::Inbound> Sending message to Adapter Framework for posting to BPEL engine: { file=D:\Temp\WOSSystemIntegration\InBoundFiles\LOADPLAN_DATA_200508041708.xml
    <2005-08-08 12:48:40,197> <ERROR> <default.collaxa.cube> <BaseCubeSessionBean::l
    ogError> Error while invoking bean "cube delivery": Delivery callback message se
    rialization failed.
    An attempt to serialize the delivery callback messages for conversation "LocalGU
    ID:d0b7ccf8e4242850:134b07e:10594606738:-7ffc", message "d0b7ccf8e4242850:134b07
    e:10594606738:-7ffb" to binary format has failed. The exception reported is:
    <2005-08-08 12:48:40,245> <ERROR> <default.collaxa.cube> <BaseCubeSessionBean::l
    ogError> Error while invoking bean "delivery": Delivery callback message seriali
    zation failed.
    An attempt to serialize the delivery callback messages for conversation "LocalGU
    ID:d0b7ccf8e4242850:134b07e:10594606738:-7ffc", message "d0b7ccf8e4242850:134b07
    e:10594606738:-7ffb" to binary format has failed. The exception reported is:
    <2005-08-08 12:48:40,245> <ERROR> <default.collaxa.cube.activation> <AdapterFram
    ework::Inbound> [Read_ptt::Read(loadPlanCollection)] - JCA Activation Agent was
    unable to perform delivery of inbound message to BPEL Process 'bpel://localhost/
    default/P2E_WOS_LP~1.0/' due to: Delivery callback message serialization failed.
    An attempt to serialize the delivery callback messages for conversation "LocalGU
    ID:d0b7ccf8e4242850:134b07e:10594606738:-7ffc", message "d0b7ccf8e4242850:134b07
    e:10594606738:-7ffb" to binary format has failed. The exception reported is:
    <2005-08-08 12:48:40,245> <ERROR> <default.collaxa.cube.activation> <AdapterFram
    ework::Inbound>
    com.oracle.bpel.client.ServerException: Delivery callback message serialization
    failed.
    An attempt to serialize the delivery callback messages for conversation "LocalGU
    ID:d0b7ccf8e4242850:134b07e:10594606738:-7ffc", message "d0b7ccf8e4242850:134b07
    e:10594606738:-7ffb" to binary format has failed. The exception reported is:
    at com.collaxa.cube.engine.delivery.DeliveryHandler.initialPostAnyType(D
    eliveryHandler.java:328)
    at com.collaxa.cube.engine.delivery.DeliveryHandler.initialPost(Delivery
    Handler.java:219)
    at com.collaxa.cube.engine.delivery.DeliveryHandler.post(DeliveryHandler
    .java:83)
    at com.collaxa.cube.ejb.impl.DeliveryBean.post(DeliveryBean.java:181)
    at IDeliveryBean_StatelessSessionBeanWrapper22.post(IDeliveryBean_Statel
    essSessionBeanWrapper22.java:861)
    at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.
    java:161)
    at oracle.tip.adapter.fw.AdapterFrameworkListenerBase$DeliveryServiceMon
    itor.send(AdapterFrameworkListenerBase.java:2340)
    at oracle.tip.adapter.fw.AdapterFrameworkListenerBase.executeDeliverySer
    viceSend(AdapterFrameworkListenerBase.java:478)
    at oracle.tip.adapter.fw.AdapterFrameworkListenerBase.deliveryServiceSen
    d(AdapterFrameworkListenerBase.java:535)
    at oracle.tip.adapter.fw.jca.AdapterFrameworkListenerImpl.performSingleA
    ctivation(AdapterFrameworkListenerImpl.java:699)
    at oracle.tip.adapter.fw.jca.AdapterFrameworkListenerImpl.onMessage(Adap
    terFrameworkListenerImpl.java:567)
    at oracle.tip.adapter.fw.jca.messageinflow.MessageEndpointImpl.onMessage
    (MessageEndpointImpl.java:121)
    at oracle.tip.adapter.file.inbound.ProcessWork.publishMessage(ProcessWor
    k.java:651)
    at oracle.tip.adapter.file.inbound.ProcessWork.doTranslation(ProcessWork
    .java:456)
    at oracle.tip.adapter.file.inbound.ProcessWork.processMessages(ProcessWo
    rk.java:200)
    at oracle.tip.adapter.file.inbound.ProcessWork.run(ProcessWork.java:139)
    at oracle.tip.adapter.fw.jca.work.WorkerJob.go(WorkerJob.java:51)
    at oracle.tip.adapter.fw.common.ThreadPool.run(ThreadPool.java:267)
    at java.lang.Thread.run(Thread.java:534)
    <2005-08-08 12:48:40,245> <INFO> <default.collaxa.cube.activation> <File Adapter
    ::Inbound> Failed to send message {D:\Temp\WOSSystemIntegration\InBoundFiles\LOA
    DPLAN_DATA_200508041708.xml} to Adapter Framework.
    <2005-08-08 12:48:40,245> <WARN> <default.collaxa.cube.activation> <AdapterFrame
    work::Inbound> [Read_ptt::Read(loadPlanCollection)] - onReject: Sending invalid
    inbound message to Exception Handler: file://D:/Temp/WOSSystemIntegration/Reject
    edMessages
    <2005-08-08 12:49:44,617> <FATAL> <default.collaxa.cube.activation> <AdapterFram
    ework::Inbound> [Read_ptt::Read(loadPlanCollection)] - Resource Adapter requeste
    d Process shutdown
    <2005-08-08 12:49:48,676> <INFO> <default.collaxa.cube.activation> <AdapterFrame
    work::Inbound> Adapter Framework instance: OraBPEL - performing endpointDeactiva
    tion for portType=Read_ptt, operation=Read
    <2005-08-08 12:49:48,676> <INFO> <default.collaxa.cube.activation> <File Adapter
    ::Inbound> Endpoint De-activation called in adapter for endpoint : D:\Temp\WOSSy
    stemIntegration\InBoundFiles
    <2005-08-08 12:49:49,042> <INFO> <default.collaxa.cube.activation> <AdapterFrame
    work::Inbound> JCAActivationAgent::onStateChanged State is changed for process '
    bpel://localhost/default/P2E_WOS_LP~1.0/', state=OFF
    how can i solve this problem?can i predeploy some parameter? Is there some critical value of File size for the processing of File Adapter ?

    Hi,
    There is no specific parameters to specify the maximum file size to be read in. It is just limited by the heap size of the JVM running the BPEL engine.
    If you have enough RAM on your machine you can change the current heap size from 512Mbyte to 1Go by editing the startorabpel.bat file
    and modifying the line :
    set MEM_ARGS=-Xms512m -Xmx512m -Xmn300m -XX:MaxPermSize=80m
    to
    set MEM_ARGS=-Xms512m -Xmx1024m -Xmn300m -XX:MaxPermSize=80m
    But only do it if you have at least 1.5 Gb of RAM on your machine, otherwise ot will keep spawing and you will have very bad performance.
    Speaking about performance, do you really need to have a BPEL payload of 4 to 12 Mb ?
    Will the BPEL process really need to access it ? if so, the best solution would be using batching techniques to cut you file in pieces and process it piece by peice.
    FB.

  • Issue with file name in receiver Communication channel

    Hi Experts,
      I am sending the files from SAP Application server to third party Application server.
    In my source folder i have different types of files with different names.
    but i need to pickup the files which is coming as of type sss_3300_was.txt and sss_3400_was.txt.
    what would be the logic for this.what my understanding is if i put sss_* it will works.
    If suppose the file is Exist in the folder as sss_3300_was.txt , so it will picked up and places in target folder.
    and next time if the file type is sss_3400_was.txt then that will pick up and places in the target folder.
    my question is, in the receiver comm channel what would be the file name scheme. i have tried with * and / but system has not been accepted as * can not be given.
    Kindly suggest what should i put in Receiver CommChanne file name sheme.
    Appreciate your inputs
    Thanks,
    Bhaskar

    Hi Satish,
    Thanks for your valuable inputs.
    Actually i need to change the subjet when i am asking other question...
    first thing is suppose i have 10 files like sss_3100_was, sss_3300_was, sss_3400_was........sss_3900_was  in the sender application folder and should be moved to receiver [target] folder with the same name.
    as you said mentioned above below is my undertsanding, please correct me if i am wrong.
    In sender cc
    1.  i will give file name as sss_*
    2. i will flag ASMA and also check file name.
    In receiver cc
    1. I will give file name as sss_*
    2. i will flag ASMA and also check the file name
    The above is my understanding with respect to your inputs,  is it correct?
    in receiver cc i have tried file name scheme as sss_*  but when i see the receiver CC log its telling that * is not allowed.
    may be i have not flaged ASMA at that time, but now i will flag ASMA in receiver CC dose it works? just need to confirm from you.
    Regarding seconf issue.
    when file is picking up from the source folder from SAP Application server as i can see file is picking up well and posting in third party folder and even in the sender cc and receiver cc logs i could see all shown in success.But when i see in the SXMB_MONI in the inbound interface the data are coming in the special charater format like @$??? and so on.But when i checked in SAP Appl server the same file contains the three lines of data like material number purchase order number and so on and it is Text file.
    below mentioned are done configs for sender CC by me.
    MP: file
    TP: NFS [as  it is SAP appl server]
    filepath:/
    file name: sss_*
    file type :text
                   add time stamp
                   ..... and so on
    Kindly advise me if any changes are required and also provide me inputs in case any correction.
    Thanks,
    Bhaskar Reddy

  • File-PI-SOAP Interface error

    Dear All,
    We are trying a interface in which we wanted to do Post Goods Issue in SAP from a file. We have exposed our Z-RFC which will do PGI as webservice and has imported its WSDL in PI.
    Then, we have created a File-PI-SOAP interface. Now, when we are testing the interface we are getting success message in SXMB_MONI but in RWB, message for picking the file is success and when I am opening the message details its showing
    " 500 Internal Server Error" ""Application error occurred during the request procession."
    Details: "The WebApplicationException log ID is [001A64D0A1FC005F0000004600002E4800CEA8DA2043BF9A]."
    Same error is showing for the receiver message but at payload I am able to see the correct values.
    Kindly let us know, if any configurations are to be required to remove thsi error.
    Regards,
    NJ

    Hi,
    >500 Internal Server Error
    does mean the server does not understand the request. I your case: You want to make use of a service which assumedly no exist. May be you have to release or activate it or to do something in SOAMANAGER. Please check your service first with SOAP UI.
    Regards,
    Udo

  • Can any one share with me any two critical issues in DP support project

    Hello friends,
    I am new  to DP support project in SCM5.0 version,can any one share with  me my queries
    1.what is my support rolles and responsiblities .in DP
    2.can any one share with me any two critical issues in DP and how can you resole it

    Hi Sivaram,
    1. As a DP functional consultant you need to resolve all the incidents raised in APO DP module( Forecasting, lifecycle planning, master data in APO DP, Planning books, macros , release to APO SNP or R/3 or other systems, CVC maintenance etc) which will also include BW part of  SCM -APO related to DP, like data extraction and back up into and from infocubes. You will also support all the interfaces realted to APO DP , for the APO related part of the interface.
    You need to reoslve these incidents in the time frames defined by SLAs for the support project.
    You will have to also carry out problem management of some of the critical incidents so that incidents do not re-occur.
    Further you will have to support Release  /Change managment support( if it is part of your contract of Support project).
    This willl involve testing changes in quality system, before these are moved to production system.
    2 I found 2 crtical issues in APO DP support as below:
    2.1  Sales history extraction  data interafces from BW system used to have problems : technical problems of interface / jobs in BW running late, functional problems: sales history extract in BW not correct because various reasons 
      This used to lead to delayed job runs in APO and finally delayed forecasting and ptehr DP processes .
    By proactive monitoring by BW team and taking appropriate actions for master data issues, this issue occurance frequency was reduced , but not completely eliminated.
    2.2 Another major issue was related to back up process of APO DP planning data into infocubes. Finally by splitting the jobs as per daily, weekly and monthly bakc up procedure , we were able to resolve the issue.
    I hope I have answered your queries.
    Pleasse check and confirm.
    Regards
    Datta

  • Real time critical issues in  Implementation Project

    Hi friends
    Please send  me the *Real time critical issues in  Implementation and Development  Projects*
    Thanks
    Srikanth Reddy.P

    Hi
    Blue Print: Assume the client is already having sound legacy system in place.
    Also assume that all the processes in FICO are neatly documented with visios.
    Now study those process flows and prepare a list of sub processes.
    Now prepare the fits/gaps/ assessment.
    If the process fits into SAP it would be a fit. If an enhancement / modification is required, it goes into the red column.
    Record all the discussions with the core users against each process and sub process.
    Also list down the dependencies for each process / analyse the integration aspects.
    Also plan how you would convert the legacy data into SAP.
    The whole document should have illustrations / scenarios and ultimately signed off. This at any cost should not be changed unless, there is a total turnaround in the process requirements.
    With the finalised blue print, you could start the activities in the implementation.
    Now regarding the interview questions:
    - Starts with your resume. How you have projected yourself. Have you shown real time experience or faked up projects. In any case, it is very easy to make out whether you have experience in implementation or support environment. You could never fool the interviewer.
    Initially the interviewer would try to make an assessment on your genuinity.
    - When did the implementation start?
    - When did it GOLIVE?
    - Were you involved in the end to end implementation or was it a partial role?
    -If you are supporting the client, who implemented SAP?
    - What tool do you use to track the support activities?
    - How many tickets have you handled so far?
    - Name some critical issues which you resolved and without which the production or business got affected?
    - What is the system landscape ?
    -Have you developed any reports / enhancements / technical / functional designs?
    - Are you aware of interfaces / ALE / IDOCs ?
    - Are you aware of SLAs
    - Rate yourself on a rank of 1 to 10 in FI and CO
    - How often have you interacted with client during implementation / support?
    - What process designs have been prepared by you?
    - How do you react when you get a critical issue or cross modular issues?
    And so on and on
    Hope this helps

  • Critical Issue - Locking Error - Stateless BC4J Application

    Hi,
    We are using "Stateless" mode in our BC4J project. Our View form done with Datawebbeans, Edit Form and Submit Edit Form done with Datatags. We are using Jdeveloper 3.2.
    In multi-user environment, we are noticing that if two users open the same record at the same time, for editing, it is allowing both the users to edit the same record. We expect the second user to get an error message something like "Row Has been Changed - Re-query to see the change". But its not the case.
    This is a very critical issue for us and any help from JDEV team is appreciated.
    Thank you in advance
    Virinchi
    null

    The following information from Jdeveloper 3.1 Help (User Guides - Developing Business Components - Understanding Transactions - About Application Modules and Transactions) might be useful:
    Client applications connect to databases and manage transactions by using the oracle.jbo.Transaction interface. Some useful methods of the Transaction interface with regard to Application Modules are:
    commit - Commit the transaction; saves all changes to the database. If the database connection is established, the transaction is implicitly started.
    connect - Attempt to establish a connection to the given database URL.
    disconnect - Disconnect the server from the database.
    **getLockingMode** - Get the preferred locking mode for this transaction. Currently the locking mode defaults to LOCK_PESSIMISTIC.
    rollback - Rollback the transaction; discard all changes.
    setLockingMode - Set the preferred locking mode for this transaction. Changing the locking mode affects only subsequent locks that are placed
    If you have an Application Module and DataSource defined with Data Tags like this:
    <%@ taglib uri="/webapp/DataTags.tld" prefix="jbo" %>
    <jbo:ApplicationModule configname="dbproject3.Dbproject3Module.Dbproject3ModuleLocal"
    id="Dbproject3Module" username="db" password="project" />
    <jbo:DataSource id="ds" appid="Dbproject3Module" viewobject="BlChangesView" >
    </jbo:DataSource>
    Then you can access the Application Module, using Java Code like this:
    jsp:useBean class="oracle.jbo.html.databeans.RowsetNavigator" id="rsn" scope="page" >
    <%
    rsn.setReleaseApplicationResources(false);
    rsn.initialize(pageContext,"JSPFrame_dbproject3_Dbproject3Module.BlChangesView");
    oracle.jbo.Row row = rsn.getRowSet().last();
    oracle.jbo.domain.Number num = ((oracle.jbo.domain.Number)row.getAttribute("ChangeCode"));
    ccode = num.intValue();
    out.println("<h2>Change Code, by webbean is: " + ccode);
    %>
    </jsp:useBean>
    Use:
    ApplicationModule am =rsn.getRowSet().getApplicationModule()
    then get the transacton with
    am.getTransaction()
    Hope this helps.
    null

  • Win98, 1.4.0_01: 'installation support file ... interface' problem

    When installing Java 1.4.0_01 under Windows 98 through the self-extracting executable (both the international and non-international runtime environments, and the SDK) I get the following error message (soon after the splash screen appears; right after files are checked and unpacked):
    'An installation support file could not be installed. Interfaz no registrada [Non registered interface?]'
    Following the installation guide I went to InstalShield's support page and checklisted through article Q104985 without success (only thing I couldn't do was execute DCOMCNFG because of some issue regarding user level security but I don't expect the problem to lie there). JRE version 1.3.1_03 installs correctly, so I am not in a great hurry, since I don't expect to run state of the art programs in the Pentium 166 I am setting up, but it would be a relief if anyone could enlighten me about potential ways of solving the issue. Thank you.
    Gonzalo Higuera.

    I have solved the problem I asked about at the top of the thread, but not the way I would have liked to: my conclusion is that it was because of an unstable operating system installation, but that still leaves open the reasons why the installation failed (specially when the older version installed without problems) and whether there was any alternative to this extreme procedure.
    The way I fought the problem was by doing a clean reinstallation (formatting the system and all). The reasons why I did this were twofold:
    1.- I had just begun setting up the system, so starting from scratch was only mildly painfull.
    2.- I had installed Internet Explorer 6 with the default options and that had brought Outlook Express into the system. Preferring other mail clients (and admittedly, somewhat scared by the security risks it might pose if it were to be used) I decided to uninstall it (after the problem with the JRE). Bad idea: after bootup there was a registry warning and a couple of blue screens and resets afterwards I found that half of the configuration had gone astray and that there were obvious malfunctions (for instance, the Explorer did not show any longer the directory tree although View->Explorer Bar->Folders was selected).
    Gonzalo Higuera.
    When reinstalling Windows 98 I decided to take the 'Personal' installation, as usual, but after seeing the behaviour of the system when uninstalling Outlook I decided to include it in the installation from the very beginning. Miraculous! A registry issue I had had while installing Windows dissappeared, when installing drivers it no longer defaulted to saying my CD-ROM was on some obscure folder in the hard drive, and some other minor issues dissappeared.
    After that I installed some other software before attempting to try the 1.4.0_03 JRE, but I think I did it in the same order as with the prior installation, so it seems to me that the absence of Outlook Express (even if it is an optional element during the installation of Windows and of Internet Explorer updates) caused some inner misconfigurations which ended with the problem described at the beginning of the thread. Thus, I recommend the complete installation of the Internet Explorer + Outlook Express bundle, even if it is not going to be used. I doubt that their presence is necessary for the proper functioning of other applications, but my experience has taught me that the faulty installation procedure of these products can have fatal consecuences on the stability of the system.

  • Simultaneous read and write to a cube - critical issue

    Hello xperts,
    I am facing a critical issue.
    I have Cube A which has loads of data in it. I need to take the data of CubeA to a new CubeB as a backup purpose.This activity will take a lot of time.
    Concern1 - In the night we have the master data job which runs including the attribute change run job. Will this have any effect on the load happening from Cube A to Cube B.
    Concern 2 - After master data job finishes in the system , we then run the transaction data jobs which would update Cube A with the delta data. Now the issue is can this delta load happen  to Cube A while there is data load going on from Cube A to Cube B??
    Please help me out with this ASAP.
    Thanks & Regards
    Rohit

    Rohit,
    Attribute change runs will get affected only when you drop or rebuild the indices - this activity locks the cube - any activity that locks the cube will affect attribute change run - reads on a cube will not lock the cube.
    However when you are loading data into your new cube - you cannot load data into the cube - for the very fact that when you load data into the cube - you will drop indices - this will affect the data load into the new cube.
    Arun

  • Error while testing File-PI-SOAP interface

    Dear All,
    We are working on File-PI-SOAP interface in which we have exposed a functional module from ECC server as receiver webservice. When we are testing the the interface we are getting following error :
    Delivering the message to the application using connection SOAP_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: java.io.IOException: invalid content type for SOAP: TEXT/PLAIN; HTTP 407 Proxy Authentication Required.
    In the receiver SOAP communication channel we have provided the required ECC login & proxy authentication credentials and also we are able to open the URL from PI server. Kindly let us know what more settings are required o make this interface running.
    Regards,
    NJ

    Hi,
    This is a synchronous interface and I want to send the output from webservice as a file to third party system.
    We are just working on a demo interface, so we have created a webservice of a function module of ECC and also our interface is File-PI-SOAP.
    We have also given the login credentials for proxy authentication but still we are getting the error the
    SOAP: error occured: com.sap.engine.interfaces.messaging.api.exception.MessagingException: java.io.IOException: invalid content type for SOAP: TEXT/PLAIN; HTTP 407 Proxy Authentication Required
    Kindly let us know, how can we resolve this error.
    Regards,
    NJ

Maybe you are looking for

  • Doubt in 'SELECT-CASE'

    I have a doubt in 'SELECT-CASE'. There is this example of which i have :- SELECT /*+ rule */ SUM(CASE WHEN age <= 15 THEN cnt ELSE 0 END) "upto 15 Years" , SUM(CASE WHEN age >= 16 AND age <= 20 THEN cnt ELSE 0 END) "16-20 Years" , SUM(CASE WHEN age >

  • Applet not working in IE

    HI I made this applet and it is working in Netscape but not working with Microsoft explorer. here is the html code: <html> <head> <title>Week Name Calculator</title> </head> <body> JWORLD <APPLET  CODE="FindTheDayA.class" CODEBASE=" " WIDTH=290 HEIGH

  • B1 2005B Profit Center at Document Lines

    Hi. We're using 'Document' and 'Document_Lines' objects to input new Orders in SAPB1 (2005B PL:40). We can use the property 'CostingCode' at Document_Lines to specify the costing center (dimension 1, field RDR1.OcrCode), but we also need to fill dime

  • What temperature is acceptable for non-OC'd P4-2.4c?

    I've had my new MSI board setup for 3 days now. It's averaging 58-60 degrees with stock Intel fan. That seems a little high compared to what some people are posting they had. I'm wondering what range I should be shooting for. Obviously cooler is bett

  • Internal Error Message when trying to download the windows OS for Palm.

    Whenever I try to either upload from a disk or download from the Palm website, the OS for palm I get a message that says "Internal Error 2738" and it won't let the software load. I am stuck and can't do anything. Please help. Thanks. Post relates to: