Csi validity

how to check my csi validity

When you say its not installing, whats happening and what error message comes up. Also have you tried installing drivers from here
//Click on Kudos and Accept as Solution if my reply was helpful and answered your question//
I am an HP employee!!

Similar Messages

  • How to check CSI validity

    how to check CSI validity

    hi,
    use these tables to get bom details.
    STPO          BOM Item Details
    STPU          BOM Sub Items (designators)
    STKO         BOM Header Details
    MAST         BOM Group to Material
    STZU          BOM History Records
    STAS          BOM Item Selection
    STPF           BOM Explosion Structure .

  • Metalink Not Valid CSI

    Hi,
    I am working in one of Oracle partner's companies.
    I have access to Oracle Metalink but when I want to
    raise a tar in oracle classic metalink it tells me that
    Not VALID CSI FOUND in Support Identifier section.
    What is the problem?

    Thanks for your quick reply,
    In my profile as you can see in below I have all Privileges.
    Privileges
    Open, update and close SRs      Yes
    Read SRs      Yes
    Forum Access      Yes
    Configure "My Headlines"      Yes
    Access Patch Download      Yes
    Software Configuration Manager - Create, Update, Delete      Yes
    What's the problem.
    Thanks.

  • Validation Error in Parsing

    Hi
    Please help i am trying to fix this for last 2 days ..
    I am trying to validate the XML in SAX parser and i am getting
    "java.lang.ClassCastException: " error.
    I am pasting the code i have and the sample XML. If some one faced the same kind of problem please share the thoughts
    thanks in advance.
    I am sending the XML from the command prompt
    This is the code i have
    class XMLBean {
    public void onMessage (String uri) {
    Object [] schemas = new Object[] { "C:/Murugaraj/Projects/Atlys-interface/XSD/Schemas/Common/Types/Public/rDataModel.xsd",
    "C:/raj/Projects/Atlys-interface/XSD/Schemas/Atlas/jms/Public/SubscriberNotification.xsd",
    "C:/raj/Projects/Atlys-interface/XSD/Schemas/Atlas/Container/Public/SubscriberNotification.xsd",
    "C:/raj/Projects/Atlys-interface/XSD/Schemas/Atlas/Container/Public/MessageHeader.xsd"};
    System.out.println("Parsing XML File: " + uri + "\n\n");
    // The SAX handler Events are in RequestHandler which is extends from Defaulthandler
    RequestHandler rh = new RequestHandler();
    try {
    String txt = uri;
    System.out.println(txt);
    SAXParserFactory fact = SAXParserFactory.newInstance();
    fact.setNamespaceAware(true);
    fact.setValidating(true);
    fact.setFeature("http://xml.org/sax/features/validation", true);
    fact.setFeature("http://apache.org/xml/features/validation/schema",true);
    fact.setFeature("http://apache.org/xml/features/validation/schema-full-checking", true);
    SAXParser sp = fact.newSAXParser();
    sp.setProperty("http://apache.org/xml/properties/schema/external-noNamespaceSchemaLocation",schemas);
    InputSource inSource = new InputSource(new FileInputStream(txt));
    sp.parse(inSource, rh);
    }catch(SAXNotRecognizedException x){
         System.out.println(" SAXNotRecognizedException Parsing error" );
         x.getMessage();
    }catch(SAXParseException spe){
         System.out.println("\n** Parsing error SAXParseException" + ", line " + spe.getLineNumber() + ", uri " + spe.getSystemId());
    System.out.println(" " + spe.getMessage());
         Exception x = spe;
         if (spe.getException() != null)
         x = spe.getException();
         x.printStackTrace();
    }catch(SAXException sxe){
         System.out.println(" SAXException Parsing error" );
         Exception x = sxe;
         if(sxe.getException() != null)
              x=sxe.getException();
         x.printStackTrace();
    }catch (IOException ioe) {
    System.out.println(" IOException Parsing error" );
    ioe.printStackTrace();
    }catch (Throwable t){
    t.printStackTrace();
    } // End of catch
    } // End of onMessage
    public static void main(String[] args) {
         if (args.length != 1) {
         System.out.println("Usage: java SAXParserDemo [XML URI]");
         System.exit(0);
         String uri = args[0];
         XMLBean call = new XMLBean ();
         call.onMessage(uri);
    } // End of main
    } // End of XMLBean
    This is the error i am getting
    java.lang.ClassCastException: [Ljava.lang.Object;
    at weblogic.apache.xerces.impl.xs.XMLSchemaValidator.reset(Lweblogic/apa
    che/xerces/xni/parser/XMLComponentManager;)V(XMLSchemaValidator.java:1374)
    at weblogic.apache.xerces.parsers.BasicParserConfiguration.reset()V(Basi
    cParserConfiguration.java:523)
    at weblogic.apache.xerces.parsers.DTDConfiguration.reset()V(DTDConfigura
    tion.java:624)
    at weblogic.apache.xerces.parsers.DTDConfiguration.parse(Z)Z(DTDConfigur
    ation.java:498)
    at weblogic.apache.xerces.parsers.DTDConfiguration.parse(Lweblogic/apach
    e/xerces/xni/parser/XMLInputSource;)V(DTDConfiguration.java:581)
    at weblogic.apache.xerces.parsers.XMLParser.parse(Lweblogic/apache/xerce
    s/xni/parser/XMLInputSource;)V(XMLParser.java:152)
    at weblogic.apache.xerces.parsers.AbstractSAXParser.parse(Lorg/xml/sax/I
    nputSource;)V(AbstractSAXParser.java:1175)
    at weblogic.xml.jaxp.WebLogicXMLReader.parse(Lorg/xml/sax/InputSource;)V
    (WebLogicXMLReader.java:135)
    at weblogic.xml.jaxp.RegistryXMLReader.parse(Lorg/xml/sax/InputSource;)V
    (RegistryXMLReader.java:152)
    at javax.xml.parsers.SAXParser.parse(Lorg/xml/sax/InputSource;Lorg/xml/s
    ax/helpers/DefaultHandler;)V(SAXParser.java:345)
    at XMLBean.onMessage(Ljava/lang/String;)V(XMLBean.java:80)
    at XMLBean.main([Ljava/lang/String;)V(XMLBean.java:130)
    The Sample XML looks like this
    <?xml version="1.0" encoding="UTF-8" ?>
    - <SubscriberNotification xmlns:cng="http://csi.test.com/CSI/Namespaces/Types/Public/DataModel.xsd" xmlns="http://csi.test.com/ATLAS/Namespaces /Container/JMS/SubscriberNotification.xsd" xmlns:sn="http://csi.test.com/ATLAS/Namespaces/Container/Public/SubscriberNotification.xsd" xmlns:mh="http://csi.test.com/ATLAS/Namespaces/Container/Public/MessageHeader.xsd">
    - <mh:MessageHeader>
    - <mh:TrackingMessageHeader>
    <cng:version>v3</cng:version>
    <cng:messageId>08001200312101117273772521</cng:messageId>
    <cng:originatorId>CARE</cng:originatorId>
    <cng:dateTimeStamp>2005-08-23T13:45:57Z</cng:dateTimeStamp>
    </mh:TrackingMessageHeader>
    - <mh:SequenceMessageHeader>
    <cng:sequenceNumber>1</cng:sequenceNumber>
    <cng:totalInSequence>1</cng:totalInSequence>
    </mh:SequenceMessageHeader>
    </mh:MessageHeader>
    - <sn:SubscriberNotification>
    <sn:billingSystemEventGenrationDateTime>2003-12-10T11:17:27.377Z</sn:billingSystemEventGenrationDateTime>
    <sn:notificationType>UpdateSubscriberStatusNotification</sn:notificationType>
    <sn:notificationSubType>3400</sn:notificationSubType>
    - <sn:Account>
    - <sn:billingMarket>
    <sn:billingMarket>08</sn:billingMarket>
    </sn:billingMarket>
    <sn:billingSystemId>CARE</sn:billingSystemId>
    </sn:Account>
    </sn:SubscriberNotification>
    </SubscriberNotification>

    Thanks bckrispiYou're welcome, :)
    seems like i can pass array of objects so then i
    decided to pass multiple schemas. Also there is one
    sun website claims validating multiple schemasIf you're talking about the new Validation Framework, yes, the tutorials say you can pass it multiple schemas with the same namespace. Unfortunately, the implementation is broken
    Yes, i want to validate with more than one schema ..
    'cos my XML generated based on 4 schemas ( xsd's)
    I did not get what you mean by "import" dependand
    schemas..
    import the depandant schema on the "parent schema"
    thats what you meant ?If you have a "parent" xsd that uses an <xsd:import> on its dependencies, then you just need to pass the parent xsd into your SAX Parser.

  • Validating XML in SAX

    Hi
    How should i validate the XML. I have a XSD (schema ) and i am using the "SAX parser".
    The following is the portion of code written to call the SAX parser
    RequestHandler rh = new RequestHandler(); -> I mentioned this class below
    TextMessage textMessage = (TextMessage) msg; --> "msg" has XML file
    String txt = textMessage.getText();
    try {
    SAXParserFactory fact = SAXParserFactory.newInstance();
    SAXParser sp = fact.newSAXParser();
    InputSource inSource = new InputSource();
    inSource.setCharacterStream(new StringReader(txt));
    sp.parse(inSource, rh);
    The following class i am using to parse the XML .. this has all methods like startDocument,startElelment,endElelment,characters .. etc., etc., etc.,
    public class RequestHandler extends DefaultHandler {
    Please some one let me know how to validate .. i have XSD's which was given by another team .. i do not know how to validate XML against XSD (schema) using SAX parser
    any sample code or good links validate the XML against the XSD in SAX parser would be greatly healpful..
    Thanks,..

    Thanks so much ashettleroe ..
    Now i am adding the validation part .. i added piece of code which validate the XML but i am not too sure this is the write way or not ..
    My XML has 4 schemas (xsd) i am using setProperty.. i guess setSchema will work too according to your reply
    what i should use in sp.setProperty("http://apache.org/xml/properties/schema/external-noNamespaceSchemaLocation","?????????? ");
    I have a XML with 4 schemas (xsd) .. which means i need to mention every schema individually ?
    All My XML starts with the below mentioned 4 XSD.
    <SubscriberNotification xmlns:cng="http://test.com/CSI/Namespaces/Types/Public/CingularDataModel.xsd"
    xmlns="http://test.com/ATLAS/Namespaces /Container/JMS/SubscriberNotification.xsd"
    xmlns:sn="http://test.com/ATLAS/Namespaces/Container/Public/SubscriberNotification.xsd"
    xmlns:mh="http://test.com/ATLAS/Namespaces/Container/Public/MessageHeader.xsd">
    This is my Bean (MDB) Code:
    public class MedBean extends GenericMessageDrivenBean implements MessageDrivenBean, MessageListener
    public void onMessage(Message msg) {
    /* Object for the Defaulthandler Class */
    RequestHandler rh = new RequestHandler();
    try {
    TextMessage textMessage = (TextMessage) msg;
    String txt = textMessage.getText();
         SAXParserFactory fact = SAXParserFactory.newInstance();
    // Validating the XML
    fact.setNamespaceAware(true);
    fact.setValidating(true);
    fact.setFeature("http://xml.org/sax/features/validation", true);
    fact.setFeature("http://apache.org/xml/features/validation/schema",true);
    fact.setFeature("http://apache.org/xml/features/validation/schema-full-checking", true);
    SAXParser sp = fact.newSAXParser();
    // Validation Part
    /* I have a question in this line */
    sp.setProperty("http://apache.org/xml/properties/schema/external-noNamespaceSchemaLocation","???????????");
    InputSource inSource = new InputSource();
    inSource.setCharacterStream(new StringReader(txt));
    sp.parse(inSource, rh); // Call the DefaulHandler to parse the XML
    }catch(JMSException ex) {
    ex.printStackTrace();
    }catch(SAXNotRecognizedException x){
         //happens is if the parser does not support JAXP 1.2
         x.getMessage();
    }catch(SAXParseException spe){
         //Error generated by the parser
         System.out.println("\n** Parsing error" + ", line " + spe.getLineNumber()
         + ", uri " + spe.getSystemId());
    System.out.println(" " + spe.getMessage());     
    //      Use the contained exception, if any
         Exception x = spe;
         if (spe.getException() != null)
         x = spe.getException();
         x.printStackTrace();
    }catch(SAXException sxe){
    //Error generated by this application
         // (or a parser-initialization error)
         Exception x = sxe;
         if(sxe.getException() != null)
              x=sxe.getException();
         x.printStackTrace();
    }catch (IOException ioe) {
         // I/O error
    ioe.printStackTrace();
    }catch (Throwable t){
    t.printStackTrace();
    }/*catch (Exception e) {
    System.out.println(" Exception in OnMessage() :");
    e.printStackTrace();
    return;
    } // End of OnMessage()
    } // End of the Bean MedBean()

  • How to get Customer Support Identifier (or CSI) ?

    Hi,
    I am having a issue with CONNECT BY PRIOR SELECT query. IN 10.2.0.4. version that produces correct result but in 10.2.0.3 that produces incorrect result. So I wanted to find out whether any bug has been fixed in the latest version causing to produce accurate result. But if I have a look on the related bugs I am redirecting to a link https://support.oracle.com/CSP/ui/flash.html#tab=Registration%28page=Registration&id=gmvhj5ks%28%29%29 which is asking for a registration and that asks Customer Support Indentifier..So How can I find one??
    Thanks
    Thilini

    Hi;
    In addition to Hussein Sawwan great post
    You could also try:
    1) You purchase a perpetual or term license from Oracle;
    2) At the beginning of the period, during the valid term you purchase
    Support for the period (1 year);
    3) Oracle sends you the CSI.
    Easy to do at http://store.oracle.com armed with a credit card.
    Regard
    Helios

  • Where can i find oracle 11g csi number

    Hi oracle Lord’s
    This is Arun, I’m facing some problem while I installing oracle 11g on my machine. I downloaded oracle 11g from the below link
    http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html.
    While I installing oracle 11g it will ask CSI Number, from where can I get the CSI number.
    Thanks in advance.
    Regards
    Arun M M

    You need to buy from your local oracle partner. This is the customer service identification number which need to log in to metalink support. But you don't need CSI to install oracle database. Avoid to check the latest patch version which need the CSI for connecting metalink.
    In this paper we will install the 11.2.0.1 release of Oracle Database 11g. This is the base distribution of Oracle Database 11g release 2. Be sure to check Oracle Support’s Metalink at http://metalink.oracle.com to see if a newer patch set has been released since this paper was published. You will need a valid Customer Service Identifier (CSI) number in order to access the Metalink website.
    Source : http://www.dbspecialists.com/oracle11glinux.html
    Also,
    2.4 Preinstallation Requirements for Oracle Configuration Manager
    During installation, you are prompted to provide information required to enable Oracle Configuration Manager. In the event that you need to place a service request with Oracle Support, the configuration information can help to provide a more rapid resolution to the service issue.
    You can enable Oracle Configuration Manager during or after installation, or choose not to enable it. To enable it during installation, you must have the following information available:
    Customer Support Identification Number (CSI) that identifies your organization
    OracleMetalink user account name
    Country code associated with your service agreement
    So, don't install OCM during the installation.
    Regards
    Asif Kabir
    Edited by: asifkabirdba on Aug 29, 2010 12:50 PM

  • Snow Leopard & Compatibility with ATO (Australian Tax Office) CSI applicati

    Since installing Snow Leopard on my Mac PRO I have not been able to access CSI and the Business Portal. Have updated to latest version from ATO website but the Business Portal does not recognise the CSI program as present on the computer. Any experience?

    Snow Leopard 10.6 & Compatibility with ATO (Australian Tax Office)
    ECI V 5.2.0 and CSI V 3.1.19 Using Java 1.6.0_17 required for ATO dealing have 3 issues, the summary below supply the solutions working as at 14 jan 2010.
    Newer release version will fix the issues but in the meantime if you need to set up a new computer with OS 10.6.2 . I have summarised the issues and the solutions which I have sourced from online apple discussion and directly from many phone call to ATO support.
    Please note: You will need either a new Digital certificate from the ATO with a new password unless or you can export your current Digital certificate from your old computer and you know your current ATO password.
    To export existing valid Digital Certificate, Launch CSI certificate manager from within ECI on your old computer select the certificate in the list click the Export button and save it to our desktop, use the default format CSI Store Files (.csistore)
    Then copy the file to the Desktop of the new computer running 10.6.x
    Next you need to Download ECI and CSI from ATO
    http://eci.ato.gov.au/release/eciclient.dmg
    http://csi.business.gov.au/Pages/default.aspx
    Install first ECI, then CSI
    - Using 10.6.2 on a new computer with a Fresh Install (all new) but importing current sDig Certificate. I have encountered 3 issues as 14 Jan 2010 which are:
    1) ECI and CSI cannot launch see Solution (A) posted posted by Bruce Linn on Apple discussion, many thanks to him.
    2) After resolving issue 1, CSI open and import the Digital certificate but it is not visible, therefore it is not imported, because in fact the csi folder is Write Protected and need to be trashed. See Solution (B) supplied over the phone by ATO support level 2
    3 After fixing 1 and 2 , when I import a BAS document from the ATO, when I go to the in Tray and sect the document and click open I get an error message :
    Error - BT E103 The XML for the form being opened is invalid. Further details: Content is not allowed in prolog...
    See Solution (C) emailed by ATO support level 1
    Why the ATO is not posting the solution online saving us to pain of the manyy calls and wait for known issue, this is poor communication and a waste of productivity for all tax payers .
    + A) Solution
    1. Uninstall your current CSI installation by going to MacHD > Applications > CSI and choosing Uninstall CSI.
    NOTE:- If you are prompted to download and install Rosetta, please do so as it is an application that allows "legacy" applications to work under the 64-bit environment of the Snow Leopard Operating System. It is on your Original 10.6 Install DVD
    Supply your computer Administrator password to authenticate action and follow instructions on screen.
    2. Once CSI is removed, please use your browser to navigate to the following website: http://csi.business.gov.au
    3. Download and save the Macintosh installation of CSI to your Desktop.
    4. Locate the CSIINSTALL.DMG file on your Desktop and double-click on it.
    5. Run the CSI installer package, which will install many of the CSI components to your system.
    6. Once complete, locate the CSI package file (inside the CSIINSTALL.DMG) again and click on it while holding the CTRL button on the Keyboard. This will bring up an options menu - Choose "Show Package Contents".
    7. Double click on Resources, then double click on Jar Files (not Jar Files 13).
    8. Copy the CSI.JAR file to your Desktop, then close the current folder view.
    9. Navigate to MacHD > System > Library > Frameworks > JavaVM.Framework > Home > Lib > Ext
    10. Drag and drop the CSI.JAR file from your desktop into the EXT folder.
    11. Close all applications and attempt to use the ATO Online Service of your choice.
    + B) Solution which involves Activating Root User deleting invisible csui folder and disbling root user then re-importing certificate
    1. Navigate to MacHD > System > Library > CoreServices >Directory Utility.app
    Clic the Padlock in Left Bottom Corner to open it and enter your password
    2. From Directory Utility.app Menu Bar Select >Edit >Enable Root User>enter a password and confirm
    Minimise the window or push it aside you will need to get back to it soon to Desactivate the Root User.
    3. Clicl once on your desktop to activate the Finder > from the menu bar select>Go>Go to Folder
    Enter ~/.csi Please note the ~ is the key below Escape on your Keyboard
    Clicl Go button
    You need then to change the View selection to View as Columns (Command 3) or go to View and select as Columns or click the columns icon in the View selection button (3rd button from left)
    Then Drag the .csi folder to the Trash and enter you password
    Empty the trash
    4. Go back to the Directory Utility.app
    Clic the Padlock in Left Bottom Corner to open it and enter your password
    From the Menu Bar Select >Edit >Disable Root User
    Click on padlock to close it
    Quit Directory Utility application
    5. Go to Application>open the CSI folder>Launch CSI Management Utility.app>Click Import> navigate to your desktop where you should have stored the digital certificate you need to import, locate the certificate and import it> Clic Exit
    Close all window and next Down load the Crimson.jar file it will be required for the next step.
    Download: http://dl.dropbox.com/u/834924/crimson.jar.sitx
    + C) Solution ECI on Mac OSX 10.6 (Snow Leopard).: Error - BT E103 The XML for the form being opened is invalid.
    Please follow these steps to resolve your issues:
    1. Unstuff the Crimson.jar file to your Desktop
    2. Navigate to MacHD > Library > Java > Extensions
    3. Drag and drop the Crimson.jar file from your desktop into the
    'Extensions' folder
    4. Open ECI, navigate to 'Business', 'Activity Statements', 'In-Tray'
    5. Delete collected documents from 'In-Tray'
    6. Click on 'Get New Documents' and collect documents again (you may
    need to change drop down menu on the top of the screen from 'Ready to
    Collect' to 'Collected').
    7. Try to open documents
    I recommend restarting and Running a repair Permissions from Disk utility.

  • How to tell our licence is valid

    Hi,
    Situation:
    We purchased an application that ran on Oracle 9i a year ago. We paid for both through the application developer. The situation has developed that there is now no contact between the developer and our company. We have no evidence (i.e. licence certificate) that we are using legitimately licensed database software.
    My Question:
    Is there a way to check with Oracle that licences have been registered to us and that they are still valid?
    Thanks in advance for any help.
    John.

    John, carefully check over the billing paperwork and documentation that came with the new system and look for anything marked as a CSI number. It is possible that your copy of Oracle is legit but that you do not have a support contract. In which case if you have Oracle related problems your avenues for getting help are pretty much limited to comp.databases.oracle.server and .misc, OTN, and other public forums. But if you have a license Oracle will sell you a support contract if you want one.
    If it turns out you have no license you can get an idea of what one would cost by visiting the online Oracle store at www.oracle.com/store
    If your company and the developer are in legal proceeding then I suggest you ask the legal team to inquire about the license number as part of the proceedings.
    Good luck.
    -- Mark D Powell --

  • Where could I find the CSI?

    Hello, all,
    Our group bought oracle 10g 3 years ago when I was now here. The guy who installed/configured the oracle left, and very few documentation was left.
    Now we have some problems with the oracle and need the oracle support, but we could not find the CSI. Is there any hard copy or files where we could find it?
    Thank you very much!
    Qian

    How to obtain the Oracle Enterprise Installed Base(CSE)/
    Oracle Installed Base(CSI) Log and Debug files
    The CSE/CSI Log and debug files contain transactional information passed from
    ERP transactions that updates Installed Base. It allows your Oracle Support
    Analyst to gather critical information about the transactions in order to
    troubleshoot where the problem lies. These files are requested by your analyst
    when you report a problem relating to transactions erroring in the Transaction
    Errors Reprocessing Form.
    To generate the Log and Debug files:
    1) Set up the following profiles using the System Administrator Responsibility:
    (N) Profile > System
    a) CSE: Debug Option = Y
    b) CSI: Debug Level = 10
    c) CSI Log File Name = a valid filename
    d,e) CSE: Debug Log Directory and CSI Log File Path = the first directory path
    defined in the 'utl_file_dir' system parameter which has write permissions (e.g. /usr/tmp). You can find out which directory is defined for
    utl_file_dir by running this query in SQLPLUS
    SQL> SELECT value
    FROM v$parameter
    WHERE name = 'utl_file_dir';
    Note: If the activity that is performed uses SFM, bounce (stop/start) the SFM
    concurrent managers whenever this profile has changed.
    For other activities/transactions, the profile setting will not take effect
    until the user logs off and then logs back into the application.
    Refer to Note 204016.1 for instructions on updating the utl_file_dir in the
    init.ora file.
    2) Reprocess the errored transaction from the Transaction Errors Reprocessing Form:
    Using the Oracle Installed Base Admin Responsibility
    (N) Transaction errors Re-Processing
    - Query on the errored transaction
    - Check the Processed flag for one of the errored transactions
    (Note down the Inv Mtl Txn Id)
    - Save
    - Run the concurrent program 'Resubmit Interface Process' with the 'SELECTED'
    option.
    If the profiles have previously been set, you most likely will not need to
    perform step 2. You should already have the log and debug files in the log
    directory.
    3) Once the Resubmit Interface Process completes, the log and debug files are
    available in the log directory as defined in step 1 above. You should see the
    following files:
    a) CSI Log file - based on the profile 'CSI Log File Name'
    b) CSE Log file - system creates CSE log with the system date,
    e.g. cse27-MAY-2003.log - This log generally contains transactional information
    for Subinventory Transfers.
    c) Debug file - Debug files come in the form of <msg_code>.<material_transaction_id>.dbg.
    An example of a debug file for OM_Shipment transactions is csisoshp.3043503.dbg.
    Note that for sales order lines which do not generate inventory material transactions,
    this ID needs to be replaced by the Sales Order Line ID. These transactions would be
    CSISOFUL (Sales Order Fulfillment) and CSIRMAFL (Return Order cancellation). The debug file
    for a Sales Order Fulfillment transaction would be in the form of csisoful.<line_id>.dbg.
    Depending on the type of transaction that errored, your dbg file will have
    different msg_code.
    The following are examples of common transaction types and msg_code:
    Type of Transaction               MSG_CODE
    Sales Order Shipments               csisoshp
    Sales Order Fulfillment               csisoful
    RMA Receipt                    csirmarc
    Sales Order RMA Fulfillment          csirmafl
    WIP Assembly Completion               csiwipac
    WIP Assembly Return               csiwipar
    WIP Component Issue               csiwipci
    WIP Component Return               csiwipcr
    As you have noticed, the inventory material transaction id plays a big part in
    identifying the dbg file. This id is recorded in the Inv Mtl Txn Id column on
    the Transaction Errors Reprocessing form, or the inv_material_transaction_id
    column in CSI_TXN_ERRORS table.
    Remember that 11.5.6+ Oracle Installed Base offers life-cycle tracking of ERP
    transactions and as such, if you are not seeing your Sales Order shipment being
    reflected in Installed Base, you should also look into the possibility that
    prior transactions for the item may have errored out and is therefore causing
    the Sales Order Shipment to be stuck. If such is the case, identify and clear
    out the prior transactions first.
    When logging a TAR with Oracle Support, provide the CSE/CSI log file and dbg
    file for the errored transaction.

  • View data in client B from client A in the same SID without a valid logon?

    Hi Folks
    We are planning on upgrading our 4.6C system to ERP 6.0, and are initialy considering having two clients in the same sandbox SID.  One would be for the developers to perform code remediation checks (client A), and one would contain a copy of production data for performing testing of functionality over live data (client B).
    Would it be possible to view data in client B from client A in the same system without a valid logon to client B or RFC connection to client B from client A?   For example via the use on an ABAP program to SQL the database?
    I know one can use transactions like SM30/SM31 to view, compare, and adjust data between clients, but this requires an RFC connection and valid logon to the target client.
    Regards
    Kevin.

    Hi Kevin.
    >
    Kevin McLatchie wrote:
    > Would it be possible to view data in client B from client A in the same system without a valid logon to client B or RFC connection to client B from client A?   For example via the use on an ABAP program to
    Short answer: yes.
    If someone has the right to write and execute ABAP reports on the system he is able to access the data of all clients. So I don't think that this setup is advisable. Don't mix development and production data in one system.
    Best regards,
    Jan

  • DEVOLUÇÃO DE EXPORTAÇÃO - CFOP 3201 - GRC VALIDA DADOS DI.

    Boa tarde a todos!
    Estamos em um projeto de NFE XML 2.00 e nos deparamos com o seguinte erro:
    Ao emitirmos um NF-e de devolução da mercadoria que se encontrava no Porto (devolução de exportação - CFOP 3201), a validação do monitor GRC informa que é necessário constar os dados de importação, apesar deste processo não se tratar de importação. Os seguintes logs de validação são gerados:
    Erro de validação: campo Código do fabricante estrangeiro no sistema. Campo é obrigatório e não pode ficar em branco. (campo IT_NFE_ADI-CFABRICANTE, ID campo I028)
    Erro de validação: campo Nº da adição. Campo é obrigatório e não pode ficar em branco. (campo IT_NFE_ADI-NADICAO, ID campo I026)
    Erro de validação: campo Nº sequencial do artigo na adição. Campo é obrigatório e não pode ficar em branco. (campo IT_NFE_ADI-NSEQADIC, ID campo I027)
    Erro de validação: campo . Campo é obrigatório e não pode ficar em branco. (campo IT_NFE_IMP-CEXPORTADOR, ID campo I024)
    Erro de validação: campo . Campo é obrigatório e não pode ficar em branco. (campo IT_NFE_IMP-DDESEMB, ID campo I023)
    Erro de validação: campo . Campo é obrigatório e não pode ficar em branco. (campo IT_NFE_IMP-DDI, ID campo I020)
    Erro de validação: campo . Campo é obrigatório e não pode ficar em branco. (campo IT_NFE_IMP-NDI, ID campo I019)
    Erro de validação: campo . Campo é obrigatório e não pode ficar em branco. (campo IT_NFE_IMP-UFDESEMB, ID campo I022)
    Erro de validação: campo . Campo é obrigatório e não pode ficar em branco. (campo IT_NFE_IMP-XLOCDESEMB, ID campo I021)
    Estamos no SAPK-10015INSLLNFE e as seguintes notas relacionadas a validação estão aplicadas:
    1493980     Validation for field xJust in cancel and skipping messages
    1499921     Problem with validation after implementing SP15
    1500046     Upgrade validation rule for field ID for version 2.00
    1500742     Adjust validation for field NADICAO and NSEQADIC layout 2.00
    1502217     Extend validation rules for , layout 2
    1504379     Adjust validation for field X_CLISTSERV
    1511291     Update allowed values for field E1_CPAIS for validation
    1511577     Update validation rules for field VUNCOM_V20
    1520861     Update validation rules for OIL_CPRODANP and OIL_UFCONS
    Não encontrei nenhuma nota SAP recente para o componente SLL-NFE que seja relacionada a este problema.
    Desde já agradeço pela ajuda.
    Sds / Renato Penido.

    Boa tarde, Fernando,
    Obrigado pela pronta resposta.
    Debugamos a BADI e descobrimos que os dados de importação estão sendo gravado "em branco", gerando o erro de validação no GRC, tal qual dito por você.
    Aprimoramos a lógica da BADI para que a tag de importação não seja preenchida indevidamente para as notas de devolução do porto e as notas foram aprovadas.
    Muito obrigado,
    Renato Penido.

  • How do i open a web page with VeriSign Class 3 Extended Validation SSL SGC SS CA certfificate i can't open web pages with this, how do i open a web page with VeriSign Class 3 Extended Validation SSL SGC CA certfificate i can't open web pages with this

    how do i open a web page with VeriSign Class 3 Extended Validation SSL SGC SS CA ?

    Hi
    I am not suprised no one answered your questions, there are simply to many of them. Can I suggest you read the faq on 'how to get help quickly at - http://forums.adobe.com/thread/470404.
    Especially the section Don't which says -
    DON'T
    Don't post a series of questions in  a single post. Splitting them into separate threads increases your  chances of a quick answer.
    PZ
    www.pziecina.com

  • When i login it says my apple id is valid but its not an icloud id

    when I try to login i get a message telling me my apple id is valid but its not an icloud id .I dont have any apple mobile priducts so i have no idea what to do.Any advice would be greatly appreciated.

    You are getting this message because you are trying to create an iCloud account on a PC by signing with your Apple ID.  You can only sign into an existing account on a PC.  You first have to create iCloud account on an iOS device (iPhone, iPad or iPod Touch) running iOS 5 or higher, or on a Mac running OS X Lion (10.7.5) or higher.  After creating your account on one of these devices you will then be able to sign into the account using this ID on your PC.

  • HT204053 Dear Support Team, every time i tried to logon Icloud its gives me wrong user name or password and at the end it show me error " This Apple ID is valid but is not an ICloud Account" then how can i use one account for same Apple ID and ICloud???

    Dear Support Team,
    Every time i tried to logon Icloud its gives me wrong user name or password and at the end it show me error " This Apple ID is valid but is not an ICloud Account" then how can i use one account for same Apple ID and ICloud?
    Thanks

    It is not possible to create a new iCloud account using a Windows machine. You must create the account using a Mac (10.7.5 or more) or an IOS device (iPhone etc). Once that is done you can sign into and use the account on your Windows machine.

Maybe you are looking for

  • Back Button not working in FireFox 4

    Is anyone else having trouble with the back and forward buttons not working in FireFox 4? I installed 4 on an XP desktop and a Vista 64 laptop, and the forward and back buttons don't work on either installation. Does anyone know a fix for this? I tri

  • Import Multiple XSD Files

    Is it not possible to import multiple xsd files. If a single file is used there is no problem but when the second import statement is added, it will not compile. It complains that it cannot find one of the element types. Removing the second import it

  • Hyperlink on image + pop-up possibilities?

    I'ld like to know if it's possible to add an hyperlink on a image or it's only possible on words? I also would like to know if it's possible to add a pop-up, for example if I click on an image, I'ld like to see a pop-up with the image bigger on the s

  • EC with SADL Query

    Dear Experts, In Query By elements of Activity , all the query parameters that need to use are not available. I thought of using SADL Query. but unfortunately SADL queries are not available in Embedded Component. Is there any specific reason why SADL

  • Extraction to Edit in Audition from Premier Pro is messed up!!!

    So evidently, Right clicking the clip the premier pro time line and editing in audition screws up the extraction process creating a tiny file that does nothing. My work around for my solution I figured out myself is to do this: Right click the audio