NotesDomino eWay issue

Hi all,
I had an issue when Implementing the prjNotesDomino_Sample_JCD Project(createDoc).
Follow is the server.log
[#|2006-10-16T12:04:42.062+0800|INFO|IS5.1.1|STC.eWay.NotesDomino.com.stc.connector.notesdominoadapter.appconn.NotesDominoApplicationImpl|_ThreadID=36; ThreadName=Thread-86;|*** Notes session successfully created *** CN=di.han/O=alibaba/C=cn|#]
[#|2006-10-16T12:04:45.046+0800|WARNING|IS5.1.1|STC.eWay.NotesDomino.com.stc.connector.notesdominoadapter.appconn.NotesDominoAgent|_ThreadID=36; ThreadName=Thread-86;|Unsupported MBean type; unable to send alert.|#]
[#|2006-10-16T12:04:45.046+0800|SEVERE|IS5.1.1|STC.eWay.NotesDomino.com.stc.connector.notesdominoadapter.appconn.NotesDominoAgent|_ThreadID=36; ThreadName=Thread-86;|***** Unable to locate or Open the database: SAMPLE.nsf on server 10.0.1.178:63148|#]
[#|2006-10-16T12:04:45.046+0800|SEVERE|IS5.1.1|STC.eWay.NotesDomino.com.stc.connector.notesdominoadapter.appconn.NotesDominoApplicationImpl|_ThreadID=36; ThreadName=Thread-86;|*** Unable to create document ****|#]
[#|2006-10-16T12:04:45.046+0800|SEVERE|IS5.1.1|STC.eWay.NotesDomino.com.stc.connector.notesdominoadapter.appconn.NotesDominoApplicationImpl|_ThreadID=35; ThreadName=Worker: 15; Context=project=Notes,deployment=Deployment1,collab=CreateDoc_CM_CreateDoc1,external=File1;|*** Unable to create the document *** |#]
My CAPS notes configuration:
Database Type:Remote
NOtes/Domino Server: <myNoteServer>:63148
NOtes/Domino Database SAMPLE.nsf
Notes/Domino User:******
Password:*******
JCD code:
package ToruialNotes;
public class CreateDoc
public com.stc.codegen.logger.Logger logger;
public com.stc.codegen.alerter.Alerter alerter;
public com.stc.codegen.util.CollaborationContext collabContext;
public com.stc.codegen.util.TypeConverter typeConverter;
public void receive( com.stc.connector.appconn.file.FileTextMessage input, com.stc.connector.appconn.file.FileApplication FileClient_1, com.stc.connector.notesdominoadapter.appconn.NotesDominoApplication NotesDomino_1, dtd.Notes532244024.NOTES_DOCUMENT Notes_NOTES_DOCUMENT_1 )
throws Throwable
boolean Status;
Notes_NOTES_DOCUMENT_1.unmarshalFromString( input.getText() );
NotesDomino_1.createDocument();
if (Notes_NOTES_DOCUMENT_1.hasNOTES_ITEM()) {
for (int i1 = 0; i1 < Notes_NOTES_DOCUMENT_1.countNOTES_ITEM(); i1 += 1) {
if (Notes_NOTES_DOCUMENT_1.getNOTES_ITEM( i1 ).hasItemName()) {
NotesDomino_1.getDocument().getItem( i1 ).setItemName( Notes_NOTES_DOCUMENT_1.getNOTES_ITEM( i1 ).getItemName() );
if (Notes_NOTES_DOCUMENT_1.getNOTES_ITEM( i1 ).hasItemValue()) {
NotesDomino_1.getDocument().getItem( i1 ).setItemValue( Notes_NOTES_DOCUMENT_1.getNOTES_ITEM( i1 ).getItemValue() );
Status = NotesDomino_1.saveDocument();
if (!Status) {
FileClient_1.setText( "Document Not Created" );
} else {
FileClient_1.setText( "Document Added\"" );
FileClient_1.write();
I can connect to Lotus by java code in eclipse and create document succueed on SAMPLE.nsf. Java code:
import lotus.domino.*;
public class aaa {
public static void main(String[] argv) {
try {
String host = "10.0.1.178:63148";
Session s = NotesFactory.createSession(host, "di.han", "12345678");
Database db = s.getDatabase(null, "sample.nsf");
if(db.isOpen())
Document doc=db.createDocument();
//db.getAllDocuments();
doc.appendItemValue("FirstName","qqqq");
doc.appendItemValue("LastName","wwww");
doc.appendItemValue("EEID","1234");
doc.appendItemValue("SSN","11-11-1999");
doc.save(true,false);
//     Operational code goes here
} catch (Exception e) {
e.printStackTrace();
Anyone had such issue as me?
Message was edited by:
bobye

From the release notes (on JCAPS 5.1.1)....
"To enable the eWay... the following are required:"
"Lotus Notes/Domino 6.0, 6.5 and 7.0 with Lotus Notes Client installed on the same host as the eGate Participating Host."
"The special DLL used for password event handling must be placed in the Lotus Notes CLient area."
Do you mean these criterias?
TE

Similar Messages

  • Jcaps6 repository sqlserver eway error

    Hello,
    After deploying a repository with a sqlserver eway I get this error.
    Caused by: java.sql.SQLException: SQLSERVERADPTR-0042: Failed opening a database session: java.sql.SQLException: Error in allocating a connection. Cause: Class name is wrong or classpath is not set for : com.SeeBeyond.sqlserver.jdbcx.sqlserver.SQLServerDataSource
    The eway is installed. Any idea why I am getting this?
    Rupert

    Hi Nyanga,
    The migration tools can be used to migrate to Oracle 9i.
    But we try and keep the conversion compatible with Oracle XE / Oracle 10g and up.
    So you may have issues migrating to Oracle 9i like you said, with he sqlserver_utilities package and using 10g syntax.
    Creating the repository on Oracle 9i is not supported.
    But even if you did succeed , it would not change how the conversion was done. You would still end up with an identical sqlserver_utilities package which was generated using the migration repository on an Oracle 10g database. sqlserver_utilities package definition itself is fixed within a file so regardless of the repository used the same one will be generated.
    Oracle XE can be used of course as the repository and its free to download and use.
    Regards,
    Dermot.

  • Losing data, Oracle eWay in JCAPS 5.1.2

    Hi group,
    I have implementet an integration that fetches data from an Oracle db and writes it to a csv-file.
    After the first test-run of the integration, one day, I checked the generated files and reconized that there is data missing in some of them. Over a periode of approx 10 houres all files had missing data for the samme single row. The strange thing is that only the last halv of the row is missing. The remaining files are all complete.
    The integration uses Oracle eWay in JCAPS 5.1.2. I created the OTD using a prepared statement.
    I wonder if I am doing something wrong when fetching data from the ResultSetAgent? As, when I fire the sql directly in the database, I am not possible to reproduce this error situation.
    Thanks
    Andreas
        private String getPatientList( LogUtil lu, psNOHplusPsyk.PsNOHplusPsykOTD oracleMPD )
            throws Exception
            if (logger.isInfoEnabled()) {
                lu.beforeService( "getPatientList" );
            int counter = 0;
            com.stc.connector.appconn.db.ResultSetAgent resultSetAgent = null;
            java.io.StringWriter writer = null;
            try {
                writer = new java.io.StringWriter( bufferSize );
                resultSetAgent = oracleMPD.getPmpd_noh_plus_psyk().executeQuery();
                resultSetAgent.setFetchSize( fetchSize );
                writer.write( headerLine );
                while (resultSetAgent.next()) {
                    cprNummer = resultSetAgent.getString( "cpr" );
                    fornavn = resultSetAgent.getString( "fornavn" );
                    efternavn = resultSetAgent.getString( "efternavn" );
                    kontaktStart = resultSetAgent.getString( "kontakt_start" );
                    kontaktStartTid = resultSetAgent.getString( "kontakt_start_tid" );
                    afsnitKode = resultSetAgent.getString( "afsnitskode" );
                    afsnitMnemokode = resultSetAgent.getString( "afsnitmnemokode" );
                    afsnitNavn = resultSetAgent.getString( "afsnitsnavn" );
                    writer.write( cprNummer.trim() + ";" );
                    writer.write( fornavn.trim() + " " + efternavn.trim() + ";" );
                    writer.write( kontaktStart.trim() + ";" );
                    writer.write( kontaktStartTid.trim() + ";" );
                    writer.write( afsnitKode.trim() + ";" );
                    writer.write( afsnitMnemokode.trim() + ";" );
                    writer.write( afsnitNavn.trim() + endOfLine );
                    counter++;
                    cprNummer = null;
                    fornavn = null;
                    efternavn = null;
                    kontaktStart = null;
                    kontaktStartTid = null;
                    afsnitKode = null;
                    afsnitMnemokode = null;
                    afsnitNavn = null;
                writer.flush();
                String patientList = writer.toString();
                return patientList;
            } catch ( java.sql.SQLException e ) {
                logger.error( lu.system( e.getMessage() ) );
                throw e;
            } finally {
                if (null != writer) {
                    writer.close();
                if (logger.isInfoEnabled()) {
                    String execTime = lu.afterService( "getPatientList" );
                    logger.info( lu.system( execTime + " Patients found [" + counter + "]" ) );
        }

    Can u try to remove fetchsize and see if your issue is resoved?
    Subhash

  • JCaps 5.1.2 HL7 Connectivity issues

    Using the HL7Inbound and HL7Outbound projects, we are experiencing several major HL7 eway connectivity issues:
    Inbound:
    1. The Enterprise Manager does not report the external connection state.
    We need to deternime the real- time external connection state.
    2. Alerts are not reported in the Enterprise Manager for external disconnects.
    3. When the external disconnects, the eway accepts the re-connect, but does not recieve the data. the external reports a timeout.
    In order to receive new data, we have to disable and enable the project.
    4. When an external connects, netstat reports an additional LISTEN as well as the ESTABLISHED connection. There are also stale CLOSE_WAIT states for past connections. See netstat below:
    testican.mgh.harvard.edu.8888 devican.mgh.harvard.edu.60314 49640 0 49640 0 CLOSE_WAIT
    testican.mgh.harvard.edu.8888 devican.mgh.harvard.edu.61712 49640 0 49640 0 CLOSE_WAIT
    testican.mgh.harvard.edu.8888 devican.mgh.harvard.edu.62561 49640 0 49640 0 CLOSE_WAIT
    *.8888 *.* 0 0 49152 0 LISTEN
    testican.mgh.harvard.edu.8888 devican.mgh.harvard.edu.63206 49640 136 49640 0 ESTABLISHED
    Outbound:
    1. the outbound HL7 eway does not connect unless there is data to send.
    We need to auto connect to the external as soon as the project is deployed.
    2. The same external state connection reporting issue as the Inbound exists for the outbound as well.
    No reports for realtime external connection status, or alerts.
    We have been using datagate and egate/SRE for 15 years and have not experienced these type of major issues with HL7 eways.
    If anyone has experienced any of these issues, and can provide feedback or possible recommendations, we would appreciate it.
    As is stands now, JCaps for HL7 is unuseable.
    Thanks for any feedback
    Rich...
    [email protected]

    1. We initally installed ICAN/JCaps 5.0.5, but did not deploy the HL7 Projects. Version 5.1.2 was released when we were ready to begin our pilot projects. Nearly all our 300+ interfaces are HL7.
    2. SRE 5.0.4, as well as egate 4.5.3.
    We also have TRE 5.0.1.
    Thanks
    Rich...

  • BatchInbound eWay does not invoke receive() function, JCAPS 5.1.3

    Hi,
    (Like in many examples) we are using a BatchInbound eWay to invoke a collaboration to read from files using the BatchLF eWay. When we put a bunch of about 20 files into the directory the BatchInbound eWay finds them and renames them. However, for some of the files it seems the collaboration's receive() function is not been invoked and the files stay renamed in the directory. When I re-rename them back manualy to their original name they are consumed correctly with receive() invokation in the collaboration.
    Any idea or experiences on this issue?
    Regards,
    Heiner.
    PS: It might be that reagardless the 10-seconds interval sometimes 2 files are renamed at the same time.

    Thanks for your reply, mjenkins.
    I tried a bit myself and it is working since I changed in the environment configuration of the BatchInbound file the MDB Max Pool Size to 1 and in the environment configuration of the BatchLocalFile file the Connection Steady Pool Size and Connection Maximum Pool Size to 1.
    Regards,
    Heiner.

  • Problem with SNA Gate eWay

    Hi,
    We are having a problem with SNA eWay.
    In our project, with an single interface, the invoking program TP (Transaction Program) in mainframe will invoke program TP (Transaction Programs) in SeeBeyond. This is fine and running well when only one interface is deployed and tested.
    The problem is when we deploy more than one interface in logical host, the TP to TP communication is mismatching. The actual invoked TP by SNA gateway server is not starting in SeeBeyond. It is actually running randomly the TPs (jcds) deployed and active in the logical host.
    Can any one please show some light on this.
    Thanks In Advance.

    did you check feature set of both old and new version?
    Maybe there are some DLSW issues.
    Ivan

  • DB2 Issue - The specificed library could not be loaded

    When we start our application, we are getting the following error:-
    +sun-appserver-ee8.1_02|STC.eWay.DB.UDB.com.stc.connector.db2adapter.base.PreparedStatementAgentImpl|_ThreadID=11;|execute() failed - [SeeBeyond][DB2 JDBC Driver][DB2]The Specified library "<Stored Proc Name>" could not be loaded.|#]+*
    Database is up and running. Stored Proc is being used by another application, in websphere. What else could be the issue?
    Thanks in advance for your replies.

    I did not post the full error message. It is:-
    [SeeBeyond][DB2 JDBC Driver][DB2]The Specified library "storedproc name" could not be loaded.

  • Batch FTP eWay Error

    Hi All,
    I'm getting the following exception reported by an application making use of the Batch FTP eWay:
    Batch FTP eWay error when doing data transfer operation in [put()], message=[com.stc.eways.batchext.FtpFileException: BATCH-MSG-M0130: FtpFileClientImpl.doTransferPut(): put got exception [com.stc.eways.batchext.FtpFileException: BATCH-MSG-M0129: FtpFileClientImpl.doTransferPut(): Failed to storeFile. Reply from ftp server is [250 CWD command successful.].].].Nested exception follows: ---
    com.stc.eways.batchext.FtpFileException: com.stc.eways.batchext.FtpFileException: BATCH-MSG-M0130: FtpFileClientImpl.doTransferPut(): put got exception [com.stc.eways.batchext.FtpFileException: BATCH-MSG-M0129: FtpFileClientImpl.doTransferPut(): Failed to storeFile. Reply from ftp server is [250 CWD command successful.].].--- End of nested exception.
    The FTP server seems to be up and responding when the error occurs; I can log on using the same credentials as those used by the eWay.
    Has anyone seen this error and/or know what the issue may be?
    Thanks in advance,
    John

    This problem is occuring randomly.
    I read a set of file files and write it to mainframes datasets. While writing to mainframes I am seeing the issue occuring, but when I retry for same set of file, it works fine.
    Can anybody explain better where can I look for more details.
    I have log level set to finest for Batch eWay but no additional information in logs.
    Thanks
    Sachin
    Edited by: user8307912 on Mar 9, 2011 10:11 AM
    Edited by: user8307912 on Mar 9, 2011 10:11 AM

  • EWay field Mapping for Invoice Number

    We are currently setting up the eWay and BC integration and we have found we are unable to map the invoice number fields and invoice description fields from our website form to the transaction email generated by eWay. I have spoken with eWay who have advised they offer this as part of the API but the BC integration does not allow us to take advantage of this.
    This leaves our customers with a receipt of their transaction and a randomly generated invoice number that doesn’t correspond with the invoice number they have paid. Seems a bit strange as this is information that is important for us and the client. 
    Will there be any improvements to this integration in the future or has anyone encountered a similar issue and found a way around?
    Thanks
    Katie

    Hi,
    Am interested to know if you ended up finding a way around this?
    Andrew

  • EWay Batch Adapter

    ICAN 5.0.5 runtime on Unix Solaris. We have a service that monitors a directory, checks for new files (based on file patterns) every 15 second. A third party software (ca-xcom) transfers files to the directory, using a *.tmp file until it has transferred the complete file, then renames the file to its "correct" name, recognized by the service which picks it up and processes the data.
    In some cases ca-xcom does not use a temporary file. Instead it uses the correct name immedeately, wihch has the effect that the service picks up the file before the complete file has been transferred. File locks i adivsory in Unix by default, I have learnt and we can not change that on the system level.
    I have checked the documentation but can not find any information about this. Is it possible to configure the eWay to check if the file is used by another process and wait until that process is finnished?
    TIA

    Hello and thanks for the responses. Just a clarifcation. It is ca-xcom (the 3:rd party product) that does the renaming of the file and thereby makes the file "visible" for the service that uses a file pattern to recognize what files to pick up from the directory.
    And yes there are a number of other ways to solve this issue, we could use:
    - Semaphore file that is sent when the transfer is ready.
    - ca-xcom has the possibillity to send a "message" when the transfer is ready. We could build a service that monitors for that message.
    We have a large number of integrations that is built on the original scenario and we recently discovered what I described in the question. To change in the way I describe here would cause a lot of changes so we try to avoid that.
    And yes, it is basically a ca-xcom issue.
    But if it is possible to monitor on file locks, it would be one change, and our service would be more generic to work with other file transfer protocols.
    Best regards

  • New DVR Issues (First Run, Channel Switching, etc.)

    I've spent the last 30 minutes trying to find answers through the search with no luck, so sorry if I missed something.
    I recently switched to FIOS from RCN cable in New York.  I've gone through trying to setup my DVR and am running into issues and was hoping for some answers.
    1.  I setup two programs to record at 8PM, I was watching another channel at the time and only half paying attention.  Around 8:02 I noticed a message had popped up asking if I would like to switch channels to start recording.  I was expecting it to force it to switch like my old DVR, but in this case it didn't switch and I missed the first two minutes of one of the shows.  I typically leave my DVR on all day and just turn off the TV, this dual show handling will cause issues with that if I forget to turn off the DVR.  Is there a setting I can change that will force the DVR to choose one of the recording channels?
    2.  I setup all my recordings for "First Run" because I only want to see the new episodes.  One show I setup was The Daily Show on comedy central, which is shown weeknights at 11pm and repeated 3-4 times throughout the day.  My scheduled recordings is showing all these as planned recordings even though only the 11pm show is really "new".  Most of the shows I've setup are once a week so they aren't a problem, but this seems like it will quickly fill my DVR.  Any fixes?
    Thanks for the help.
    Solved!
    Go to Solution.

    I came from RCN about a year ago.  Fios is different in several ways, not all of them desirable.  Here are several ways to get--and fix--unwanted recordings from a series recording setup.
    Some general principles. 
    Saving changes.  When you originally create a series with options, or if you go back to edit the options for an existing series, You MUST save the Series Options changes.  Pretty much everywhere else in the user interface, when you change an option, the change takes effect immediately--but not in Series Options.  Look at the Series Options window.  Look at the far right side.  There is a vertical "Save" bar, which you must navigate to and click OK on to actually save your changes.  Exiting the Series Options window without having first saved your changes loses all your attempted changes--immediately.
    Default Series Options.  This is accessed  from [Menu]--DVR--Settings--Default Series Options.  This will bring up the series options that will automatically be applied to the creation of a NEW series. The options for every previously created series will not be affected by a subsequent modification of the Default Series Options.  You should set these options to the way you would like them to be for the majority of series recordings that you are likely to create.  Be sure to SAVE your changes.  This is what you will get when you select "Create Series Recording" from the Guide.  When creating a new series recording where you think that you may want options different from the default, select "Create Series with Options" instead.  Series Options can always be changed for any individual series set up later--but not for all series at once.
    Non-series recordings.  With Fios you have no directly available options for these.  With RCN and most other DVRs, you can change the start and end times for individual episodes, including individual episodes that are also in a series.  With Fios, your workarounds are to create a series with options for a single program, then delete the series later;  change the series options if the program is already in a series, then undo the changes you made to the series options later; or schedule recordings of the preceding and/or following shows as needed.
    And now, to the unwanted repeats. 
    First, make sure your series options for the specific series in question--and not just the series default options--include "First Run Only".  If not, fix that and SAVE.  Then check you results by viewing the current options using the Series Manager app under the DVR menu.
    Second, and most annoying, the Guide can have repeat programs on your channel tagged as "New".  It happens.  Set the series option "Air Time" to "Selected Time".  To make this work correctly, you must have set up the original series recording after selecting the program in the Guide at the exact time of a first run showing (11pm, in your case), and not on a repeat entry in the Guide.  Then, even it The Daily Show is tagged as New for repeat showings, these will be ignored. 
    Third, another channel may air reruns of the program in your series recording, and the first showing of a rerun episode on the other channel may be tagged as "New".  These can be ignored in your series if you set the series option "Channel" to "Selected Channel".  Related to this, if there is both an SD and HD channel broadcasting you series program, you will record them both if the series option "Duplicates" is set to "Yes".  However, when the Channel option is set to "Selected Channel", the Duplicates Option is always effectively "No", regardless of what shows up on the options screen.  
    As for you missing two minutes,  I have sereral instances in which two programs start recording at the same time.  To the best of my recollection, whenever the warning message has appeared, ignoring it has not caused a loss of recording time.  You might have an older software version.  Newest is v.1.8.  Look at Menu--Settings--System Info.  Or, I might not have noticed the loss of minutes.  I regularly see up to a minute of previous programming at the start of a recording, or a few missing seconds at the beginning or end of a recording.  There are a lot of possibilities for that, but the DVR clock being incorrect is not one of them.  With RCN, the DVR clocks occasionally drifted off by as much as a minute and a half.

  • Pension issue Mid Month Leaving

    Dear All,
    As per rule sustem should deduct mid month joining/leaving/absences or transfer scenarios, the Pension/PF Basis will be correspondingly prorated. But our system is not doing this. In RT table i have found 3FC Pension Basis for Er c 01/2010                    0.00           6,500.00.
    Employee leaving date is 14.04.2010. system is picking pension amout as 541. Last year it was coming right.
    Please suggest.
    Ashwani

    Dear Jayanti,
    We required prorata basis pension in case of left employees and system is not doing this. This is the issue. As per our PF experts Pension amount should come on prorata basis for left employees in case they left mid of month.System is doing prorata basis last year but from this year it is deducting 541. I am giving two RT cases of different years.
    RT table for year 2010. DOL 26.04.2010
    /111 EPF Basis              01/2010                    0.00           8,750.00 
    /139 VPF Basis              01/2010                    0.00           8,750.00 
    /3F1 Ee PF contribution     01/2010                    0.00           1,050.00 
    /3F3 Er PF contribution     01/2010                    0.00             509.00 
    /3F5 Ee Mon PF contribution 01/2010                    0.00           1,050.00 
    /3F6 Ee Ann PF contribution 01/2010                    0.00          12,600.00 
    /3F9 PF adm chrgs * 1,00,00 01/2010                    0.00              96.25 
    /3FA PF basis for Ee contri 01/2010                    0.00           8,750.00 
    /3FB PF Basis for Er Contri 01/2010                    0.00           8,750.00 
    /3FJ VPF basis for Ee contr 01/2010                    0.00           8,750.00 
    /3FL PF Basis for Er Contri 01/2010                    0.00           6,500.00 
    /3F4 Er Pension contributio 01/2010                    0.00             541.00
    /3FC Pension Basis for Er c 01/2010                    0.00           6,500.00
    /3FB PF Basis for Er Contri 01/2010                    0.00           8,750.00
    /3FC Pension Basis for Er c 01/2010                    0.00           6,500.00
    /3FJ VPF basis for Ee contr 01/2010                    0.00           8,750.00
    /3FL PF Basis for Er Contri 01/2010                    0.00           6,500.00
    /3R3 Metro HRA Basis Amount 01/2010                    0.00           8,750.00
    1BAS Basic Salary           01/2010                    0.00           8,750.00
    RT table for year 2009. DOL 27.10.2009
                                                                                    /111 EPF Basis              07/2009                    0.00           9,016.13
    /139 VPF Basis              07/2009                    0.00           9,016.13
    /3F1 Ee PF contribution     07/2009                    0.00           1,082.00
    /3F3 Er PF contribution     07/2009                    0.00             628.00
    /3F5 Ee Mon PF contribution 07/2009                    0.00           1,082.00
    /3F6 Ee Ann PF contribution 07/2009                    0.00           8,822.00
    /3F9 PF adm chrgs * 1,00,00 07/2009                    0.00              99.18
    /3FA PF basis for Ee contri 07/2009                    0.00           9,016.00
    /3FB PF Basis for Er Contri 07/2009                    0.00           9,016.00
    /3FJ VPF basis for Ee contr 07/2009                    0.00           9,016.00
    /3FL PF Basis for Er Contri 07/2009                    0.00           5,452.00
    /3FB PF Basis for Er Contri 07/2009                    0.00           9,016.00 
    /3FC Pension Basis for Er c 07/2009                    0.00           5,452.00 
    /3FJ VPF basis for Ee contr 07/2009                    0.00           9,016.00 
    /3FL PF Basis for Er Contri 07/2009                    0.00           5,452.00 
    /3R4 Non-metro HRA Basis Am 07/2009                    0.00           9,016.13 
    1BAS Basic Salary           07/2009                    0.00           9,016.13 
    Now please suggest what to do. where is the problem  ? If have also checked EXIT_HINCALC0_002 but nothing written in it.
    With Regards
    Ashwani

  • Open PO Analysis - BW report issue

    Hello Friends
    I constructed a query in BW in order to show Open Purchase Orders. We have custom DSO populated with standard
    datasource 2lis_02_itm (Purcahse Order Item). In this DSO we mapped the field ELIKZ to the infoobject 0COMP_DEL
    (Delivery completed).
    We loaded the data from ECC system for all POs and found the following issue for Stock Transport Purchase orders (DocType = UB).
    We have a PO with 4 line items. For line items 10 and 20, Goods issued, Goods received and both the flags "Delivery
    complete" and "Final delivery" checked. For line items 30 and 40, only delivery indicator note is issued for zero
    quantity and Delivery complete flag is checked (Final delivery flag is not checked) in ECC system. For this PO, the
    delivery completion indicator is not properly updated in the DSO for line items 30 and 40. The data looks like the
    following:
    DOC_NUM     DOC_ITEM       DOCTYPE     COMP_DEL
    650000001       10     UB        X
    650000001       20     UB        X
    650000001       30     UB
    650000001       40     UB      
    When we run the Open PO analysis report on BW side this PO is appearing in the report but the same is closed in ECC
    system.
    Any help is appreciated in this regard.
    Thanks and Regards
    sampath

    Hi Priya and Reddy
       Thanks for your response.
                         Yes the indicator is checked in EKPO table for items 30 and 40 and delta is running regularly for more than 1 year and no issues with other POs. This is happening only for few POs of type Stock Transport (UB).
                        I already checked the changes in ME23N and the Delivery completed indicator was changed and it reflected in EKPO table. Further, i checked the PSA records for this PO and i am getting the records with the Delivery completed flag but when i update from PSA to DSO the delivery completed indicator is not updating properly.
                       In PSA, for item 30 i have the following entries. Record number 42 is capturing the value X for ELIKZ but after that i am getting two more records 43 and 44 with process key 10 and without X for ELIKZ. I think this is causing the problem.
    Record No.    Doc.No.                    Item              Processkey         Rocancel     Elikz
        41               6500000001            30                    11                            X           ---    
        42               6500000001            30                    11                            ---           X
        43               6500000001            30                    10                            X           ---
        44               6500000001            30                    10                            ---         ---
    (Here --- means blank)        
    Thanks and Regards
    sampath

  • HP LaserJet Enterprise 600 M602 driver issue

    Hello,
    I've got issue with 600-series printers. We use the latest UPD drivrer ver. 61.175.1.18849 and print from XenApp 6.5. The error occurs every time when users try to print jpg files from XenApp session. It only happens with 600 series printers and UPD.
    Also I've tried to assign native 600-series driver ver. 6.3.9600.16384 and it works good. But with that driver system says that it's color printer and it brokes our printing reports. These reports are very important for us. So we can't use printer and that driver as well.
    Printer installed on Windows Server 2012 R2. All clients are Windows 7 x64. XenApp Servers are Server 2008R2.
    Is it possible to get fixed UPD driver or correct native driver for Server 2012 R2?
    Regards,
    Anatoly

    I am sorry, but to get your issue more exposure I would suggest posting it in the commercial forums since this is a commercial printer. You can do this at Printers - LaserJet.
    Click on New Post.
    I hope this helps.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Windows 7 displays error message when exiting +cursor issue

    Two issues here. CS5 Phoshop on Wind 7 64 bit.
    Physical processor count: 8
    Processor speed: 3073 MHz
    Built-in memory: 12279 MB
    Free memory: 9577 MB
    Memory available to Photoshop: 10934 MB
    Memory used by Photoshop: 80 %
    Image tile size: 128K
    First issue is since the latest automatic Adobe update (why fix what isn't broken?) Every time I now exit Photoshop I get the message "Adobe QT Server has stoped working" and occasionally it happens when I exit bridge. Indesign is also behaving badly. I can no longer start a previous document from file manager without ID crashing out.
    The other is the cursors in Clone and erase lose their edge (become invisable) for no reason - well not quite. Noise Ninja crashed Photoshop when I tried to use it. I reinstalled it and all is well. The cursor issue seems to be intermittant but came back (for no reason) after I reinstalled NN. I can't seem to change the cursor, no matter what I do. The problem is now seriously affecting how I work. Almost enough to go back to Win XP which ran CS5 Photoshop flawlessly.
    Any help will be gratefully accepted.
    Doug

    function(){return A.apply(null,[this].concat($A(arguments)))}
    doug87510 wrote:
    The recent problem is the entire outline of the cursor (including the crosshair in the middle) was missing at any size of cursor. All I had was exactly what I'd get if I used a real spraygun.
    Well, that issue is simply a matter of hitting the Caps Lock key.  When Caps Lock is on, you'll see the cursor outline, and when it is off you'll see a crosshair.  That's a feature, not a bug.
    Glad to hear the 11.1 drivers are out.  I will download them and try them now myself.
    Regarding "Adobe QT" crashing...  QT brings to mind QuickTime, though that is Apple, not Adobe.  Do you have Apple QuickTime installed?
    Regarding memory usage, with 12 GB of installed RAM, you should be able to set Photoshop to use 90% or more in Edit - Preferences - Performance.
    -Noel

Maybe you are looking for

  • PO-Freight cost (header, diff currency with items) not distributed when GR

    Dear Gurus, I've one PO with freight cost at header level (1000 VND). In the PO, this freight amount shown to be distributed successfully to line item (value base, line item 1 is 300 VND, line item 2 is 700 VND). But when doing GR, the freight cost o

  • Automatic file naming and data saving

    Hi, I am building a program where there will be several I-V scan for each value of temperature. I would like to make the data saving fully automatic.  To explain in more deatils: I want the program to generate a new file on its own , give a file name

  • Second box - menu lags and just rebooted

    Sick of this now. Soon as our remortgage is fixed I'm switching to sky. Had this second box for a few months. Takes forever to respond to remote and now it just rebooted while watching an on demand film. Disruptive annoying piece of absolute junk, BT

  • How to call BW report from CRM via ABAP

    Hello, I want to call a BW report from CRM, this I want to invoke from a screen with some parameter. I have a BW user which I also wants to pass from CRM screen, while calling BW report as parameter. Can some one help me, how to invoke a BW report (i

  • FPM Tabbed UIBB

    Hi, I would like to know if it is possible to add UIBBS to a tabbed UIBB dynamically. I want to add as follows: MAIN_FORM -> FPM_FORM_UIBB ->CL_FEEDER_FORM_MAIN... contains TABBED -> FPM_TABBED_UIBB ->CONFIG_TAB1 _____FPM_FORM_UIBB ->CONFIG_FORM1->CL