Invalid Combiantion of Leave

Hi,
Here v configured ESS. As per the requirement, If v apply casual leave today...next day v shouldnt apply  any other leave other than casual. In the same way for all leaves.. Combination is compulsary..
V configured Workflow..
Present from portal if v apply leave in this combination ...it is working.
So, to make it to stop, do i need to configure it through work flow or through portal customization...
Can anyone plz. help me out of this problem...
Regards,
Venkat

Hi..
Now my workflow consultant done workflow for invalid combination.
Scenario1:
1. Here i applied casual leave for 2nd and 3rd
2. Approval approved the leave.
3. Now again i applied sick leave for 4th and 5th(invalid combination)
4. This request without goingto approver itself, i got notification saying that u followed invalid combination.
This is fine.
in my second scenario i m having some problem
Scenario2:
1. I Applied casual leave for 2nd and 3rd
2. Without getting any approval, i applied sick leave for 3rd adn 4th
3. Both the tasks has been sent to approvers box.
4. So, he can approve the both.
It shouldnt happend, How to stop the invalid combination
Kindly put some light on this...
Regards,
Venkat

Similar Messages

  • How do I display an invalid zip code in a summary table

    On my airshow website we have a feedback form, one of the questions is the zipcode where the visitor came from. This works fine. The summary results tab includes a lookup for the zipcode where I show the city associated with the zipcode and then how many responses came from that zipcode. This can be seen here http://www.hollisterairshow.com/feedback-results.php?tab=7
    In testing, I found that an invalid zipcode is not displayed in the summary table, although it is counted in the total number of responses. I'd like to display the invalid zipcode and leave the City blank, or maybe put "Invalid zip code". The current code is displayed below, it's beyond my ability to figure out how I should change it to display invalid zipcodes and I'd really appreciate some direction on this.
    I know I could validate the zipcode on entry but it's quite possible the zipcode table I have is out of date and i can't find a free downloadable list, so I'm thinking anything invalid could cause me to update my table.which is fine.
    Thanks for any assistance.
    Tony
    <div class="TabbedPanelsContent">
    <?php
    // Make a MySQL Connection
    $query = "SELECT feedback.zip, COUNT(feedback.zip), zipcodes.citystate FROM feedback, zipcodes WHERE feedback.zip = zipcodes.zipcode GROUP BY feedback.zip";
    $result = mysql_query($query) or die(mysql_error());
    // Print out result
    while($row = mysql_fetch_array($result))
    echo $row['zip']. " ". $row['COUNT(feedback.zip)']. " ". $row['citystate'];
    echo "<br />";
    ?>
    </div>

    Use an outer join on the two tables so that results are returned for all feedback rows, instead of just matching rows. The column zipcodes.citystate will be NULL. In your recordset output, you can test for null in the column and populate it with "Invalid Zipcode" if you want.
    You'll need to move the join to the FROM clause as I believe that MySQL does not support outer joins in the WHERE clause like most other DBMS's.

  • 2 issues - Invalid Serial Number issue & Lightroom 5 Trial vs full version folder hierarchy question

    Hello
    not sure if I should split these two questions...
    1 - Invalid Serial Number issue
    I'm helping out a friend with their large photo collection and they bought Lightroom 5 and received the serial number but when we add this to Lightroom it states that it's invalid - I tried leaving it until the following week (I visit them weekly) and it still refusing the number - when I went into their Adobe account and took a look at downloads the option to download the full version is greyed out (or an x - I'm not sat on their computer right now so can't double check) but it wouldn't allow me to do anything so we just had the trial version.
    anyone know what the issue is - shall I get them to contact Adobe to get them to take a look - I also had issues trying to find a customer support email address lol. (I seem to faffing with lots of websites/software/companies this week so getting a little frazzled!)
    2 - Lightroom 5 Trial vs full version folder hierarchy question
    This question is linked to the above i- I am wondering if the folders in Lightroom are different in the trial version vs the fully paid version.
    I had set up some greeting card templates and contact sheet layouts for my friend and tried to transfer them to her computer but whilst, LR 'sees' the folders it just doesn't acknowledge the templates - I tried it several ways but I've not had that issue before so will that sort itself when I get the serial number fixed?
    Thank you for any help or suggestions - hope you all have a good weekend :-)
    Lenny

    Hi Lenny, the two questions may be related but the trial is actually the same as the full version. I would suggest getting the serial number issue sorted out first. There have been known issues where a paid for product still shows up as a trial.There is not a lot the community can do. You need to contact Adobe directly using the link below. Use the dropdown menu for boxes (1) & (2) to scroll down the list and choose:
    1. Adobe Photoshop Lightroom
    2. Serial number issues or activating my product
    3. Click on the blue button: Still need help? Contact us – then click the button marked “chat now”
    It’s usually possible to start a live chat, if an Adobe agent is free, and often to get the problem fixed right away.
    Click here to get help now Contact Customer Care

  • Bdc error handling

    hai all,
    i want to capture the error data into an internal table and i want to display it in alv report along with other datas..
    how to do this ...
    please help  me...
    thanks in advance..
    regards,
    selvi.

    selvi,
    After Call transaction Statement..
    IF sy-subrc ne 0.
      Move the required data in to your internal table.
    ENDIF.
    After that pass taht internal table to FM.  See the example.
    TYPE-POOLS: slis.
    Data declaration.
    DATA: BEGIN OF itab OCCURS 0,
    vbeln TYPE vbeln,
    erdat TYPE erdat,
    auart TYPE auart,
    netwr TYPE vbak-netwr,
    END OF itab.
    DATA: wa_kna1 TYPE kna1.
    DATA: t_fieldcatalog TYPE slis_t_fieldcat_alv.
    DATA: s_fieldcatalog TYPE slis_fieldcat_alv.
    Selection-screen.
    PARAMETERS: p_kunnr TYPE kunnr OBLIGATORY.
    AT SELECTION-SCREEN.
    SELECT SINGLE * FROM kna1 INTO wa_kna1
    WHERE kunnr = p_kunnr.
    IF sy-subrc <> 0.
    MESSAGE s208(00) WITH 'Invalid customer'.
    LEAVE LIST-PROCESSING.
    ENDIF.
    START-OF-SELECTION.
    Building the field catalog.
    s_fieldcatalog-col_pos = '1'.
    s_fieldcatalog-fieldname = 'VBELN'.
    s_fieldcatalog-tabname = 'ITAB'.
    s_fieldcatalog-rollname = 'VBELN'.
    s_fieldcatalog-outputlen = '12'.
    APPEND s_fieldcatalog TO t_fieldcatalog.
    CLEAR: s_fieldcatalog.
    s_fieldcatalog-col_pos = '2'.
    s_fieldcatalog-fieldname = 'ERDAT'.
    s_fieldcatalog-tabname = 'ITAB'.
    s_fieldcatalog-rollname = 'ERDAT'.
    APPEND s_fieldcatalog TO t_fieldcatalog.
    CLEAR: s_fieldcatalog.
    s_fieldcatalog-col_pos = '3'.
    s_fieldcatalog-fieldname = 'AUART'.
    s_fieldcatalog-tabname = 'ITAB'.
    s_fieldcatalog-rollname = 'AUART'.
    APPEND s_fieldcatalog TO t_fieldcatalog.
    CLEAR: s_fieldcatalog.
    s_fieldcatalog-col_pos = '4'.
    s_fieldcatalog-fieldname = 'NETWR'.
    s_fieldcatalog-tabname = 'ITAB'.
    s_fieldcatalog-rollname = 'NETWR_AK'.
    s_fieldcatalog-do_sum = 'X'.
    APPEND s_fieldcatalog TO t_fieldcatalog.
    CLEAR: s_fieldcatalog.
    Get the sales orders.
    SELECT vbeln erdat auart netwr
    FROM
    vbak
    INTO TABLE itab
    WHERE kunnr = p_kunnr.
    IF sy-subrc <> 0.
    MESSAGE s208(00) WITH 'No records found'.
    LEAVE LIST-PROCESSING.
    ENDIF.
    DATA: v_repid TYPE syrepid.
    v_repid = sy-repid.
    Display the alv
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = v_repid
    it_fieldcat = t_fieldcatalog
    TABLES
    t_outtab = itab.
    Don't forget to reward if useful

  • BAPI_BILLINGDOC_CREATEMULTIPLE u0096 Duplication of line item in billing docume

    Hi All,
    I am using BAPI “<b>BAPI_BILLINGDOC_CREATEMULTIPLE</b>” to create billing document. Creation of billing document is fine, but issue is I am passing individual line item along with <b>quantity</b> to be billed. But what’s happening is if I got 3 item line in sales order with quantity 1-3-5, billing document getting created 3 quantity ‘1’, 3 quantity ‘3’ and 3 quantity ‘5’. So I end up with 9 line item on billing document which is incorrect.
    Please see the code below which I am using, can anyone tell me what I am doing wrong here. I basically need to create 3 billing line item with respective quantity I pass. Any hint is much appreciated. Thanks in advance.
    Regards,
    Tim
    loop at GT_INIT_ITAB2 into GS_INIT_ITAB2.
        select single * into gs_vbak
                        from vbak
                        where vbeln = GS_INIT_ITAB2-VBELN.
        select single * into gs_vbap
                       from vbap
                       where vbeln = GS_INIT_ITAB2-VBELN AND
                             posnr = GS_INIT_ITAB2-posnr.
        select single * into gs_mara
                       from mara
                       where matnr = gs_vbap-matnr.
        refresh GT_BILLINGDATAIN.
        GT_BILLINGDATAIN-SALESORG   = gs_vbak-vkorg.
        GT_BILLINGDATAIN-DISTR_CHAN = gs_vbak-vtweg.
        GT_BILLINGDATAIN-DIVISION   = gs_vbak-spart.
        GT_BILLINGDATAIN-DOC_TYPE   = GS_INIT_ITAB2-auart.
        GT_BILLINGDATAIN-ORDBILLTYP = p_fkart.
        GT_BILLINGDATAIN-SOLD_TO    = GS_INIT_ITAB2-kunnr.
      GT_BILLINGDATAIN-ITEM_CATEG = GS_INIT_ITAB2-pstyv.
        GT_BILLINGDATAIN-REQ_QTY    = GS_INIT_ITAB2-kwmeng.
        GT_BILLINGDATAIN-SALES_UNIT = gs_vbap-vrkme.
        GT_BILLINGDATAIN-CURRENCY   = gs_vbak-waerk.
        GT_BILLINGDATAIN-SHORT_TEXT = 'Test'.
        GT_BILLINGDATAIN-BILL_DATE   = gl_date.
    write GS_INIT_ITAB2-afdat to GT_BILLINGDATAIN-BILL_DATE ddmmyy.
    GT_BILLINGDATAIN-BILL_DATE  = GS_INIT_ITAB2-afdat.
        GT_BILLINGDATAIN-PRICE_DATE = SY-DATUM.
        GT_BILLINGDATAIN-REF_DOC    = GS_INIT_ITAB2-VBELN.
        GT_BILLINGDATAIN-DOC_NUMBER = GS_INIT_ITAB2-VBELN.
        GT_BILLINGDATAIN-ITM_NUMBER = GS_INIT_ITAB2-POSNR.
      GT_BILLINGDATAIN-ORIGINDOC  = GS_INIT_ITAB2-VBELN.
        GT_BILLINGDATAIN-ITEM       = GS_INIT_ITAB2-POSNR.
        GT_BILLINGDATAIN-NO_MATMAST = co_x.
        GT_BILLINGDATAIN-COUNTRY    = 'AUS'.
        GT_BILLINGDATAIN-MATERIAL   = gl_matnr.
        GT_BILLINGDATAIN-TAXCL_1MAT = '1'.
        GT_BILLINGDATAIN-REF_DOC_CA = 'C'.
        append GT_BILLINGDATAIN.
      endloop.
    Prepare for BAPI call
        CALL FUNCTION 'BAPI_BILLINGDOC_CREATEMULTIPLE'
          EXPORTING
            CREATORDATAIN         = GS_CREATORDATAIN
          TESTRUN               = co_x
          POSTING               = co_x
          TABLES
            BILLINGDATAIN         = GT_BILLINGDATAIN
        CONDITIONDATAIN       = GT_CONDITIONDATAIN
        CCARDDATAIN           =
        TEXTDATAIN            =
        ERRORS                =
            RETURN                = GT_RETURN
            SUCCESS               = GT_SUCCESS
        clear gl_return.
        loop at GT_RETURN.
          if GT_RETURN-type EQ 'E' OR
             GT_RETURN-type EQ 'A'.
            move: GT_RETURN to gl_return.
            exit.
          endif.
        endloop.
        if gl_return is initial.
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
         EXPORTING
          WAIT   = '1'
            IMPORTING
              RETURN = gt_return_commit.
        endif.

    Hi,
    Check this code...For creating billing document from sales order..
    TABLES: vbak.
    PARAMETERS: p_vbeln LIKE vbak-vbeln OBLIGATORY,
                p_fkart LIKE vbrk-fkart.
    DATA:
    s_vbsk LIKE  vbsk.
    DATA:
    xkomfk     LIKE     komfk    OCCURS 0 WITH HEADER LINE,
    xkomv     LIKE     komv     OCCURS 0 WITH HEADER LINE,
    xthead     LIKE     theadvb  OCCURS 0 WITH HEADER LINE,
    xvbfs     LIKE     vbfs     OCCURS 0 WITH HEADER LINE,
    xvbpa     LIKE     vbpavb   OCCURS 0 WITH HEADER LINE,
    xvbrk     LIKE     vbrkvb   OCCURS 0 WITH HEADER LINE,
    xvbrp     LIKE     vbrpvb   OCCURS 0 WITH HEADER LINE,
    xvbss     LIKE     vbss     OCCURS 0 WITH HEADER LINE.
    SELECT SINGLE * FROM vbak
           WHERE vbeln = p_vbeln.
    IF sy-subrc <> 0.
      MESSAGE s208(00) WITH 'Invalid vbeln'.
      LEAVE LIST-PROCESSING.
    ENDIF.
    CALL FUNCTION 'RV_INVOICE_REFRESH'
         EXPORTING
              with_posting = 'B'
         TABLES
              xkomfk       = xkomfk
              xkomv        = xkomv
              xthead       = xthead
              xvbfs        = xvbfs
              xvbpa        = xvbpa
              xvbrk        = xvbrk
              xvbrp        = xvbrp
              xvbss        = xvbss.
    DATA: BEGIN OF t_vbap OCCURS 0,
            vbeln TYPE vbeln,
            posnr TYPE posnr,
          END OF t_vbap.
    SELECT vbeln posnr INTO TABLE t_vbap
           FROM vbap WHERE vbeln = p_vbeln.
    LOOP AT t_vbap.
    Fill the values.
      xkomfk-mandt  = sy-mandt.
      xkomfk-vbeln  = p_vbeln.
      xkomfk-posnr  = t_vbap-posnr.
      xkomfk-vbtyp  = vbak-vbtyp.
      xkomfk-seldat = sy-datum.
      xkomfk-fkart  = p_fkart.
      xkomfk-fkimg  = '1.000'.
      xkomfk-vrkme  = 'EA'.
      APPEND xkomfk.
    ENDLOOP.
    CALL FUNCTION 'RV_INVOICE_CREATE'
         EXPORTING
              vbsk_i       = s_vbsk
              with_posting = 'B'
         IMPORTING
              vbsk_e       = s_vbsk
         TABLES
              xkomfk       = xkomfk
              xkomv        = xkomv
              xthead       = xthead
              xvbfs        = xvbfs
              xvbpa        = xvbpa
              xvbrk        = xvbrk
              xvbrp        = xvbrp
              xvbss        = xvbss.
    READ TABLE xvbfs WITH KEY msgty = 'S'.
    WRITE:/ sy-subrc.
    WRITE:/ xvbfs-msgv1,xvbfs-msgv2,xvbfs-msgv3.
    Thanks,
    Naren

  • How to get burks by passing value of matnr

    Hi All,
       I need logic to get the company code by passing material number .
    Thanks,
    satish.

    Hi,
    Try this code..
    PARAMETERS: P_MATNR TYPE MATNR.
    DATA: V_BWKEY TYPE MBEW-BWKEY.
    DATA: V_BUKRS  TYPE T001K-BUKRS.
    * Get the material valuation.
    SELECT SINGLE BWKEY INTO V_BWKEY FROM MBEW
                  WHERE MATNR = P_MATNR.
    IF SY-SUBRC <> 0.
      MESSAGE S208(00) WITH 'Invalid material'.
      LEAVE LIST-PROCESSING.
    ENDIF.
    * get the company code.
    SELECT SINGLE BUKRS INTO V_BUKRS FROM T001K
                              WHERE BWKEY = V_BWKEY.
    IF SY-SUBRC = 0.
      WRITE: /  'Company code is ', V_BUKRS. 
    ENDIF.
    Thanks
    Naren

  • Failed Download Task in UCS

    I have been attempting to download new UCS firmware version into my UCS Fabric Interconnect using FileZilla and I keep getting the error '550 File not found' see sreen capture below. What could be the issue??

    from the filezilla log you are attempting to download 'F:ftproot/ucsb' from the FTP root directory and this is invalid.
    Try leaving the path blank in the UCS, and placing the file in the root directory of the FTP server and entering only the filename and IP into the UCS.
    Also TFTPd32 is much simpler if you don't need FTP, the only configuration possible in TFTPd32 is root directory and IP address.

  • Tip :  if patch 8708893 leaves lots of invalid objects after running pi.sq

    after running post_install.sql you get lots of invalid objects
    this has happened because the patch did not unzip properly [ occurred for me on Linux RH5 X86-64 ] .. it was unzipped by Grid Control itself in via a patch stage.
    to fix : if you look at the files.sql in the patch directory you will see an execute of several.sql files.... just execute them manually and the errors will go away.
    Chris.

    Thanks Chris, good to know. I unfortunately went through the process of rolling back before finding your post.
    I then reapplied the patch and it worked perfectly, so I never got to try your solution, but thought I'd post mine here with yours because google has it indexed already :)

  • Component.validate() leaves invalidated

    Hello,
    I have the following problem:
    nodeComp.validate();
    if (!nodeComp.isValid())
         System.err.println("Component is invalid!!!");It keeps printing that the component is invalid.
    I am using a JComponent as a stamp (same as in JTable) so my component is not really added to any container.
    PS: bsampieri are you there?

    yeah...
    Did you read the API docs on what validate() and isValid() means? I don't believe, from reading them just now, that they are that closely related.
    validate() -- Ensures that this component has a valid layout. This method is primarily intended to operate on instances of Container.
    isValid() -- Determines whether this component is valid. A component is valid when it is correctly sized and positioned within its parent container and all its children are also valid.
    What's the real problem? That it says it's valid or not shouldn't matter. If you call setSize() and validate(), after that you should be able to call paint() on the component with another graphics object to draw that component on the graphics.

  • While downloading Acrobat XI, download assistant leaves a folder in my downloads with an invalid .dmg file (illegal seek when you try to open it in Mac OSX 10.9)

    This "go get community help" because we won't let you email us or chat after 7-7 is the most useless, frustrating and time-wasting process I've yet found.

    Hi kmbishop,
    What is the size of the downloaded dmg file?
    It seems to me that the downloaded file might have been corrupted.
    Please try downloading Acrobat 11 Pro from the direct download link available at: Download Acrobat products | Standard, Pro | XI, X
    Regards,
    Rave

  • Leave Quota generation with diifferent rules for different countries

    Hi,
    I have the following requirement need help in achieving this.
    Employers must grant 10 days paid leave to employees that worked for six consecutive months from the time of hiring and who worked on not less than 80 per cent of all schedule work days. This paid leave may be taken consecutively or separately. Where an employee's application to take paid leave will hinder the normal business operations, the employer may require the employee to take such paid leave at a different time.
    The number of days of paid leave available to employees increases in proportion to employees' length of service as set forth in the below table.
    Years of Service  0.5  1.5  2.5  3.5   4.5   5.5   6.5+
    Paid Holidays         10    11  12   14    16    18    20
    The right to annual paid leave expires after two years. In other words, annual paid leave left over from one year may be carried over and taken the next year only. For example, if an employee is awarded 10 days paid leave after their first 6 months of employment; those paid holidays will become invalid after 2.5 years of employment. Use them or lose them.
    Simply put, holidays from one year can be carried over to the next year, but not to the third year. So, if you don't take your leave from one particular year within 12 months of that year ending, you will lose that first year's allowance.
    Employee can take leave encashment of holiday leave only when leaving their employer. It is not legal for companies to buy up the holiday leave of those still working for the firm.
    In my organization one PSG grouping has been used for all countries, it wont be possible to change the grouping now. In such a case how can we provide different rule for different country without customizing the Leave module.
    Do we have to use any PCR for this, if yes which??
    Regards,
    Jailakshmi
    Edited by: Jailakshmi on Aug 3, 2011 7:16 AM

    Hi,
    Use QUOMO Feature to give different entitilement to employees.
    Leave entitlement as per seniority can be configured in base entitlement.
    Keep validity and deduction period for 2 years by using :Relative postion" option in validity and deduction period table.
    Rgds,
    Lata
    Rgds,

  • Can't upload file to Sharepoint "The URL is invalid. It may refer to a nonexistent file or folder, or refer to a valid file or folder that is not in the current Web.

    Hello,
    I do database/SharePoint upgrades for SQL and or SharePoint or moving to new servers frequently.  In a nutshell, I backup the database (run the upgrade tools if necessary), load new server and sql software and restore the db, load but
    not configure SharePoint, and add the content db that was resotred through powershell.  I have never had any big issues with this before.  This time, I have done this same procedure as there is a new domain and new server.  Server and
    SQL 2008R2 and SharePoint 2010 on both old and new servers - just new server and new domain.  I have done this twice now (as it is a virtual server) and I have the same issue.  I can't check anything in or upload anything new.  I get the error
    - The URL '<path to the file and filename>' is invalid.  It may refer to a nonexistent file or folder, or refer to a valid file or folder that is not in the current Web.  I have made sure
    that my database and log files are on a drive that has plenty of space (db is not restricted to grow).  I have made sure my database is not locked.  I have checked to see that I don't have version in my indexed columns in that library (I
    don't have any).  I have checked that my recycle bin is on in central admin.  I am not using RBS.  I have turned on verbose logging and found the following when I searched on the correlation ID from the error message - it is saying invalid
    column name extension.  I am not sure what to do at this point.  I can see there is a column in SQL called extension in the AllDocs table. Thanks.
    09/16/2014 10:41:44.84  w3wp.exe (0x208C)                        0x1814 SharePoint Foundation        
     Logging Correlation Data       xmnv Medium   Name=Request (POST:http://sqlsp:80/disc/_layouts/checkin.aspx?List=%7B5219EA15-A36A-4162-A188-4B8D518D7E79%7D&FileName=%2Fdisc%2FJigs%20and%20Fixtures%2FJigs%20and%20Fixtures%2FAssembly%2F30%20Assembly%2DGeneral%2FJ30XXA50%2D00%2Easm&IsDlg=1) 88fb3615-c87c-4a7c-8e83-d63a551a9b8f
    09/16/2014 10:41:44.85  w3wp.exe (0x208C)                        0x1814 SharePoint Foundation        
     Logging Correlation Data       xmnv Medium   Site=/ 88fb3615-c87c-4a7c-8e83-d63a551a9b8f
    09/16/2014 10:41:45.01  w3wp.exe (0x208C)                        0x1814 SharePoint Foundation        
     Database                       d0d6 High     System.Data.SqlClient.SqlException: Invalid column name 'Extension'.    
    at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)     at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)     at System.Data.SqlClient.TdsParser.Run(RunBehavior
    runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)     at System.Data.SqlClient.SqlDataReader.HasMoreResults()     at System.Data.SqlClient.SqlDataReader.NextResult()    
    at Microsoft.SharePoint.SPSqlClient.ExecuteQueryInternal(Boolean retryfordeadlock)     at Microsoft.SharePoint.SPSqlClient.ExecuteQuery(Boolean retryfordeadlock) 88fb3615-c87c-4a7c-8e83-d63a551a9b8f
    09/16/2014 10:41:45.01  w3wp.exe (0x208C)                        0x1814 SharePoint Foundation        
     Database                       d0d6 High     System.Data.SqlClient.SqlException: Invalid column name 'Extension'.    
    at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)     at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)     at System.Data.SqlClient.TdsParser.Run(RunBehavior
    runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)     at System.Data.SqlClient.SqlDataReader.HasMoreResults()     at System.Data.SqlClient.SqlDataReader.NextResult()    
    at Microsoft.SharePoint.SPSqlClient.ExecuteQueryInternal(Boolean retryfordeadlock)     at Microsoft.SharePoint.SPSqlClient.ExecuteQuery(Boolean retryfordeadlock) 88fb3615-c87c-4a7c-8e83-d63a551a9b8f
    09/16/2014 10:41:45.01  w3wp.exe (0x208C)                        0x1814 SharePoint Foundation        
     General                        8kh7 High     The URL 'Jigs and Fixtures/Jigs and Fixtures/Assembly/30 Assembly-General/J30XXA50-00.asm'
    is invalid.  It may refer to a nonexistent file or folder, or refer to a valid file or folder that is not in the current Web. 88fb3615-c87c-4a7c-8e83-d63a551a9b8f
    09/16/2014 10:41:45.01  w3wp.exe (0x208C)                        0x1814 SharePoint Foundation        
     General                        9mpn High     File exception: Microsoft.SharePoint.SPException: The URL 'Jigs and
    Fixtures/Jigs and Fixtures/Assembly/30 Assembly-General/J30XXA50-00.asm' is invalid.  It may refer to a nonexistent file or folder, or refer to a valid file or folder that is not in the current Web. ---> System.Runtime.InteropServices.COMException
    (0x81020030): The URL 'Jigs and Fixtures/Jigs and Fixtures/Assembly/30 Assembly-General/J30XXA50-00.asm' is invalid.  It may refer to a nonexistent file or folder, or refer to a valid file or folder that is not in the current Web.    
    at Microsoft.SharePoint.Library.SPRequestInternalClass.CheckInFile(String bstrUrl, String bstrWebRelativeUrl, Int32 iCheckinType, String bstrCheckinComment, Boolean bIsMigrate, Int32 iEditorId, ISP2DSafeArrayWriter pRestrictInsertCallback, ISP2DSafe... 88fb3615-c87c-4a7c-8e83-d63a551a9b8f
    09/16/2014 10:41:45.01* w3wp.exe (0x208C)                        0x1814 SharePoint Foundation        
     General                        9mpn High     ...ArrayWriter pUniqueFieldCallback)     at Microsoft.SharePoint.Library.SPRequest.CheckInFile(String
    bstrUrl, String bstrWebRelativeUrl, Int32 iCheckinType, String bstrCheckinComment, Boolean bIsMigrate, Int32 iEditorId, ISP2DSafeArrayWriter pRestrictInsertCallback, ISP2DSafeArrayWriter pUniqueFieldCallback)     --- End of inner exception
    stack trace ---     at Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx)     at Microsoft.SharePoint.Library.SPRequest.CheckInFile(String bstrUrl, String bstrWebRelativeUrl, Int32 iCheckinType, String
    bstrCheckinComment, Boolean bIsMigrate, Int32 iEditorId, ISP2DSafeArrayWriter pRestrictInsertCallback, ISP2DSafeArrayWriter pUniqueFieldCallback)     at Microsoft.SharePoint.SPFile.CheckIn(String comment, SPCheckinType checkInType, Boolean
    b... 88fb3615-c87c-4a7c-8e83-d63a551a9b8f
    09/16/2014 10:41:45.01* w3wp.exe (0x208C)                        0x1814 SharePoint Foundation        
     General                        9mpn High     ...IsMigrate, SPUser modifiedBy) 88fb3615-c87c-4a7c-8e83-d63a551a9b8f
    09/16/2014 10:41:45.01  w3wp.exe (0x208C)                        0x1814 SharePoint Foundation        
     Runtime                        tkau Unexpected System.Runtime.InteropServices.COMException: The URL 'Jigs and Fixtures/Jigs and
    Fixtures/Assembly/30 Assembly-General/J30XXA50-00.asm' is invalid.  It may refer to a nonexistent file or folder, or refer to a valid file or folder that is not in the current Web.    at Microsoft.SharePoint.Library.SPRequestInternalClass.CheckInFile(String
    bstrUrl, String bstrWebRelativeUrl, Int32 iCheckinType, String bstrCheckinComment, Boolean bIsMigrate, Int32 iEditorId, ISP2DSafeArrayWriter pRestrictInsertCallback, ISP2DSafeArrayWriter pUniqueFieldCallback)     at Microsoft.SharePoint.Library.SPRequest.CheckInFile(String
    bstrUrl, String bstrWebRelativeUrl, Int32 iCheckinType, String bstrCheckinComment, Boolean bIsMigrate, Int32 iEditorId, ISP2DSafeArrayWriter pRestrictInsertCallback, ISP2DSafeArrayWriter ... 88fb3615-c87c-4a7c-8e83-d63a551a9b8f
    09/16/2014 10:41:45.01* w3wp.exe (0x208C)                        0x1814 SharePoint Foundation        
     Runtime                        tkau Unexpected ...pUniqueFieldCallback) 88fb3615-c87c-4a7c-8e83-d63a551a9b8f
    09/16/2014 10:41:45.03  w3wp.exe (0x208C)                        0x1814 SharePoint Foundation        
     Monitoring                     b4ly Medium   Leaving Monitored Scope (Request (POST:http://sqlsp:80/disc/_layouts/checkin.aspx?List=%7B5219EA15-A36A-4162-A188-4B8D518D7E79%7D&FileName=%2Fdisc%2FJigs%20and%20Fixtures%2FJigs%20and%20Fixtures%2FAssembly%2F30%20Assembly%2DGeneral%2FJ30XXA50%2D00%2Easm&IsDlg=1)).
    Execution Time=182.518658097607 88fb3615-c87c-4a7c-8e83-d63a551a9b8f

    I have fixed it.  I did a backup of the database and log file 2 times. I also did an upgrade-spcontentdatabase command in the sharepoint powershell.  Not sure why it worked, but I had read online about upgrade issues from WSS2 to WSS3 to 2010
    and I thought maybe something did not fully get upgraded even though this has been in use for 2 years since the upgrade.

  • Getting an error message in B2B and it says Invalid Delimiter Settings.

    Hi,
    We are in the process of integrating an outbound data flow using BPEL and B2B.. We have the bpel process deployed in the system which is integrated to the B2B via a partner link.
    The payload from the Bpel process is coming into the B2B but the output edi file is not getting generated and we
    are getting the error message when we run the Business Message Status reports/ Error Status Reports in B2B.
    The correct Trading Partner Agreement is being hit and as well as the correct Business process and Document protocol and document revision are getting attached. It is also identifying the correct values for the Sender and Receiver from the Agreement.
    But it is erroring out with the error message as Invalid Delimiter Settings... This is for the outbound edi transaction to the outside trading partner..
    Could someone please help us with this issue as soon as possible.
    Regards
    sachin.

    Yes Ramesh,
    The error is very implicitly ...you are right but from the setup perspective in b2b we have defined the below mentioned for the operational capability for the Trading Partner who is going to receive this edi document :
    Component Element Separator 0x7d
    Segment Delimiter 0x0a
    Element Delimiter 0x2a
    Subelement Delimiter 0x7d
    But we are not able to understand why it is throwing invalid delimiter settings. I have provided the b2b.log as well mentioned below..
    2008.11.10 at 17:30:27:858: Thread-14: B2B - (DEBUG) iAudit report :
    Error Brief :
    5097: Invalid delimiter settings.
    iAudit Report :
    <?xml version="1.0" encoding="UTF-16"?><AnalyzerResults Guid="{844CC52C-77AF-DD11-A28B-006171130000}" InterchangeReceived="1" InterchangeProcessed="1" InterchangeAccepted="0"> <ExecutionDate>Monday, November 10, 2008</ExecutionDate> <ExecutionTime>05:30:27 PM (EST)</ExecutionTime> <AnalyzerReturn>Failed</AnalyzerReturn> <NumberOfErrors>1</NumberOfErrors> <ErrorByCategory> <Category Name="Rejecting"> <Severity Name="Normal">1</Severity> </Category> </ErrorByCategory> <Status>Finished</Status> <DataFile> <FilePath/> <FileName/> <LastModified/> <FileSize/> <DataURL>file://</DataURL> </DataFile> <Interchange Guid="{2AC4C52C-77AF-DD11-A28B-006171130000}" InterchangeAckCode="R" FunctionalGroupReceived="1" FunctionalGroupProcessed="1" FunctionalGroupAccepted="0" RError="0" NError="0" OtherWI="0"> <DataXPointer> <StartPos>0</StartPos> <Size>5690</Size> </DataXPointer> <NodeInfo> <Links> <Link Name="InterchangeSenderQual">01</Link> <Link Name="InterchangeSenderID">195080304</Link> <Link Name="InterchangeReceiverQual">ZZ</Link> <Link Name="InterchangeReceiverID">RBTWTEST</Link> <Link Name="InterchangeControlVersion">00401</Link> </Links> <Properties> <Property Name="Standard">X12</Property> <Property Name="SegmentDelimiter">0xa</Property> <Property Name="ElementDelimiter">0x2a</Property> <Property Name="SubelementDelimiter">0x7d</Property> <Property Name="RepeatingSeparator"/> <Property Name="ReplacementChar">0x7c</Property> </Properties> </NodeInfo> <FunctionalGroup Guid="{84FBC52C-77AF-DD11-A28B-006171130000}" FunctionalGroupAckCode="R" TransactionSetsIncluded="0" TransactionSetsReceived="1" TransactionSetsProcessed="1" TransactionSetsAccepted="0" RError="0" NError="0" OtherWI="0"> <DataXPointer> <StartPos>0</StartPos> <Size>5690</Size> </DataXPointer> <NodeInfo> <Links> <Link Name="GroupSenderID">195080304</Link> <Link Name="GroupReceiverID">RBTWTEST</Link> <Link Name="GroupVersionNumber">004010</Link> </Links> <Properties> <Property Name="GroupID">SM</Property> </Properties> </NodeInfo> <Transaction Guid="{38333539-3935-3230-3330-343333373930}" TransactionAckCode="R" RError="1" NError="0" OtherWI="0"> <DataXPointer> <StartPos>0</StartPos> <Size>5690</Size> </DataXPointer> <GuidelineInfo> <GuidelineFile> <FilePath>ByteStream</FilePath> <FileName>ByteStream</FileName> <LastModified/> <FileSize/> <GuidelineURL>file://ByteStream</GuidelineURL> </GuidelineFile> <DetailGuidelineInfo> <IID>4</IID> <ID>204</ID> <Name>MOTOR CARRIER LOAD TENDER</Name> <GroupID>SM</GroupID> <Standard>X12</Standard> <StdVersion>V4010</StdVersion> </DetailGuidelineInfo> </GuidelineInfo> <NodeInfo> <Links> <Link Name="TransactionID">204</Link> </Links> <Properties> <Property Name="TransactionControlNumber"/> </Properties> </NodeInfo> <TransactionErrors> <Error ErrorCode="{9795C1E4-8860-4F09-B226-1B153FDDD517}" Severity="Normal" Category="Rejecting" Index="1" ID="50970000"> <ErrorBrief>5097: Invalid delimiter settings.</ErrorBrief> <ErrorMsg>Invalid delimiters settings.</ErrorMsg> <ErrorObjectInfo> <Parameter Name="ErrorLevel">0</Parameter> <Parameter Name="Name">XData2Native</Parameter> <Parameter Name="_ec_dn_guid_">{38333539-3935-3230-3330-343333373930}</Parameter> <Parameter Name="_ec_index">0</Parameter> <Parameter Name="ec_error_scope">Transaction</Parameter> </ErrorObjectInfo> <ErrorDataInfo> <Part1/> <ErrData/> <Part3/> <DataXPointer> <StartPos>0</StartPos> <Size>0</Size> </DataXPointer> </ErrorDataInfo> </Error> </TransactionErrors> </Transaction> </FunctionalGroup> </Interchange></AnalyzerResults>
    2008.11.10 at 17:30:27:859: Thread-14: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processOutgoingDocument sErrorGuid = {9795C1E4-8860-4F09-B226-1B153FDDD517}
    2008.11.10 at 17:30:27:859: Thread-14: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processOutgoingDocument sDescription = Invalid delimiters settings.
    2008.11.10 at 17:30:27:859: Thread-14: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processOutgoingDocument sBrDescription = 5097: Invalid delimiter settings.
    2008.11.10 at 17:30:27:859: Thread-14: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processOutgoingDocument sParameterName = ErrorLevel sParameterValue = 0
    2008.11.10 at 17:30:27:859: Thread-14: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processOutgoingDocument sParameterName = Name sParameterValue = XData2Native
    2008.11.10 at 17:30:27:859: Thread-14: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processOutgoingDocument sParameterName = ecdn_guid_ sParameterValue = {38333539-3935-3230-3330-343333373930}
    2008.11.10 at 17:30:27:859: Thread-14: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processOutgoingDocument sParameterName = ecindex sParameterValue = 0
    2008.11.10 at 17:30:27:859: Thread-14: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processOutgoingDocument sParameterName = ec_error_scope sParameterValue = Transaction
    2008.11.10 at 17:30:27:859: Thread-14: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processOutgoingDocument added Hash Key = {38333539-3935-3230-3330-343333373930}
    2008.11.10 at 17:30:27:859: Thread-14: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processOutgoingDocument batch Position = 0
    2008.11.10 at 17:30:27:860: Thread-14: B2B - (ERROR) Error -: AIP-51505: General Validation Error
         at oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin.processOutgoingDocument(EDIDocumentPlugin.java:2199)
         at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequestPostColab(Request.java:1570)
         at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequest(Request.java:931)
         at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1092)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:698)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:375)
         at java.lang.Thread.run(Thread.java:570)
    2008.11.10 at 17:30:27:860: Thread-14: B2B - (ERROR) Error -: AIP-51505: General Validation Error
         at oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin.processOutgoingDocument(EDIDocumentPlugin.java:2199)
         at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequestPostColab(Request.java:1570)
         at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequest(Request.java:931)
         at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1092)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:698)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:375)
         at java.lang.Thread.run(Thread.java:570)
    2008.11.10 at 17:30:27:861: Thread-14: B2B - (ERROR) Error -: AIP-51505: General Validation Error
         at oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin.processOutgoingDocument(EDIDocumentPlugin.java:2253)
         at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequestPostColab(Request.java:1570)
         at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequest(Request.java:931)
         at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1092)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:698)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:375)
         at java.lang.Thread.run(Thread.java:570)
    2008.11.10 at 17:30:27:861: Thread-14: B2B - (ERROR) Error -: AIP-51505: General Validation Error: Error -: AIP-51505: General Validation Error
         at oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin.processOutgoingDocument(EDIDocumentPlugin.java:2253)
         at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequestPostColab(Request.java:1570)
         at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequest(Request.java:931)
         at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1092)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:698)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:375)
         at java.lang.Thread.run(Thread.java:570)
    Caused by: Error -: AIP-51505: General Validation Error
         at oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin.processOutgoingDocument(EDIDocumentPlugin.java:2199)
         ... 6 more
    2008.11.10 at 17:30:27:861: Thread-14: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:processOutgoingMessage B2BDomainException
    2008.11.10 at 17:30:27:861: Thread-14: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:handleOutboundException Updating Error Message: Error -: AIP-51505: General Validation Error
    2008.11.10 at 17:30:27:862: Thread-14: B2B - (DEBUG) oracle.tip.adapter.b2b.msgproc.DbAccess:updateWireBusinessToErrorState Enter
    2008.11.10 at 17:30:27:862: Thread-14: BusinessLogicLayer - (DEBUG) Authorization disabled. UserBootstrapped:false, useAuthorization:true, configType:Runtime
    2008.11.10 at 17:30:27:862: Thread-14: BusinessLogicLayer - (DEBUG) Push Stack: queryBusinessMessage
    2008.11.10 at 17:30:27:863: Thread-14: BusinessLogicLayer - (DEBUG) Pop Stack: queryBusinessMessage
    2008.11.10 at 17:30:27:863: Thread-14: B2B - (DEBUG) AccessRepo:findBusinessMessageByB2BMessageId Found Successfull message with B2bMessageId : 35303237393132363736323038313233 and ProtocolMessageId 35303237393132363736323038313233
    2008.11.10 at 17:30:27:863: Thread-14: B2B - (DEBUG) oracle.tip.adapter.b2b.msgproc.DbAccess:updateWireBusinessToErrorState Wire message not found.
    2008.11.10 at 17:30:27:863: Thread-14: B2B - (DEBUG) oracle.tip.adapter.b2b.msgproc.DbAccess:updateWireBusinessToErrorState Updating business message error information
    2008.11.10 at 17:30:27:864: Thread-14: BusinessLogicLayer - (DEBUG) Authorization disabled. UserBootstrapped:false, useAuthorization:true, configType:Runtime
    2008.11.10 at 17:30:27:864: Thread-14: BusinessLogicLayer - (DEBUG) Push Stack: updateBusinessMessage
    2008.11.10 at 17:30:27:866: Thread-14: BusinessLogicLayer - (DEBUG) Pop Stack: updateBusinessMessage
    2008.11.10 at 17:30:27:866: Thread-14: B2B - (DEBUG) oracle.tip.adapter.b2b.msgproc.DbAccess:updateWireBusinessToErrorState Exit
    2008.11.10 at 17:30:27:866: Thread-14: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:handleOutboundException Updating Native Event Tbl Row
    2008.11.10 at 17:30:27:866: Thread-14: B2B - (DEBUG) oracle.tip.adapter.b2b.msgproc.DbAccess:DbAccess:updateNativeEvtTblRow Enter
    2008.11.10 at 17:30:27:866: Thread-14: BusinessLogicLayer - (DEBUG) Authorization disabled. UserBootstrapped:false, useAuthorization:true, configType:Runtime
    2008.11.10 at 17:30:27:866: Thread-14: BusinessLogicLayer - (DEBUG) Push Stack: queryBusinessMessage
    2008.11.10 at 17:30:27:867: Thread-14: BusinessLogicLayer - (DEBUG) Pop Stack: queryBusinessMessage
    2008.11.10 at 17:30:27:867: Thread-14: B2B - (DEBUG) AccessRepo:findBusinessMessageByB2BMessageId Found Successfull message with B2bMessageId : 35303237393132363736323038313233 and ProtocolMessageId 35303237393132363736323038313233
    2008.11.10 at 17:30:27:867: Thread-14: B2B - (DEBUG) oracle.tip.adapter.b2b.msgproc.DbAccess:
    ** DbAccess:updateNativeEvtTblRow:tip_wireMsg wiremsg not found
    2008.11.10 at 17:30:27:867: Thread-14: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:handleOutboundException notifying App
    2008.11.10 at 17:30:27:867: Thread-14: B2B - (DEBUG) Engine:notifyApp Enter
    2008.11.10 at 17:30:27:868: Thread-14: B2B - (DEBUG) Enqueue Engine AQJMSCorrelationID = 5B5E3017CBA4D092E043CD91053CD092
    2008.11.10 at 17:30:27:869: Thread-14: B2B - (DEBUG) notifyApp:notifyApp Enqueue the ip exception message:
    <Exception xmlns="http://integration.oracle.com/B2B/Exception" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <correlationId>35303237393132363736323038313233</correlationId>
    <b2bMessageId>35303237393132363736323038313233</b2bMessageId>
    <errorCode>AIP-51505</errorCode>
    <errorText>5097: Invalid delimiter settings.</errorText>
    <errorDescription>
    <![CDATA[Machine Info: (ios5801e)
    Invalid delimiters settings.  ]]>
    </errorDescription>
    <errorSeverity>2</errorSeverity>
    </Exception>
    2008.11.10 at 17:30:27:869: Thread-14: B2B - (DEBUG) AQJMSCorrelationID = 5B5E3017CBA4D092E043CD91053CD092
    2008.11.10 at 17:30:27:882: Thread-14: B2B - (DEBUG) Engine:notifyApp Exit
    2008.11.10 at 17:30:27:882: Thread-14: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:handleOutboundException Updated the Error Message Successfully: Error -: AIP-51505: General Validation Error
    2008.11.10 at 17:30:27:882: Thread-14: B2B - (DEBUG) DBContext commit: Enter
    2008.11.10 at 17:30:27:895: Thread-14: B2B - (DEBUG) DBContext commit: Transaction.commit()
    2008.11.10 at 17:30:27:895: Thread-14: B2B - (DEBUG) DBContext commit: Leave
    2008.11.10 at 17:30:27:895: Thread-14: B2B - (DEBUG) oracle.tip.adapter.b2b.data.MsgListener:onMessage Exit
    2008.11.10 at 17:30:47:300: B2BStarter thread: Deployment - (DEBUG) Query Configurations null Lifecycle status Active exclude design true
    2008.11.10 at 17:30:47:300: B2BStarter thread: BusinessLogicLayer - (DEBUG) Authorization disabled. UserBootstrapped:false, useAuthorization:true, configType:null
    2008.11.10 at 17:30:47:300: B2BStarter thread: BusinessLogicLayer - (DEBUG) Push Stack: queryConfiguration
    2008.11.10 at 17:30:47:302: B2BStarter thread: BusinessLogicLayer - (DEBUG) Pop Stack: queryConfiguration
    2008.11.10 at 17:30:47:302: B2BStarter thread: Deployment - (DEBUG) Query Configurations null Lifecycle status Quiescing exclude design true
    2008.11.10 at 17:30:47:302: B2BStarter thread: BusinessLogicLayer - (DEBUG) Authorization disabled. UserBootstrapped:false, useAuthorization:true, configType:null
    2008.11.10 at 17:30:47:302: B2BStarter thread: BusinessLogicLayer - (DEBUG) Push Stack: queryConfiguration
    2008.11.10 at 17:30:47:302: B2BStarter thread: BusinessLogicLayer - (DEBUG) Pop Stack: queryConfiguration
    2008.11.10 at 17:31:17:303: B2BStarter thread: Deployment - (DEBUG) Query Configurations null Lifecycle status Active exclude design true
    2008.11.10 at 17:31:17:303: B2BStarter thread: BusinessLogicLayer - (DEBUG) Authorization disabled. UserBootstrapped:false, useAuthorization:true, configType:null
    2008.11.10 at 17:31:17:303: B2BStarter thread: BusinessLogicLayer - (DEBUG) Push Stack: queryConfiguration
    2008.11.10 at 17:31:17:305: B2BStarter thread: BusinessLogicLayer - (DEBUG) Pop Stack: queryConfiguration
    2008.11.10 at 17:31:17:305: B2BStarter thread: Deployment - (DEBUG) Query Configurations null Lifecycle status Quiescing exclude design true
    2008.11.10 at 17:31:17:305: B2BStarter thread: BusinessLogicLayer - (DEBUG) Authorization disabled. UserBootstrapped:false, useAuthorization:true, configType:null
    2008.11.10 at 17:31:17:305: B2BStarter thread: BusinessLogicLayer - (DEBUG) Push Stack: queryConfiguration
    2008.11.10 at 17:31:17:306: B2BStarter thread: BusinessLogicLayer - (DEBUG) Pop Stack: queryConfiguration
    2008.11.10 at 17:31:47:307: B2BStarter thread: Deployment - (DEBUG) Query Configurations null Lifecycle status Active exclude design true
    2008.11.10 at 17:31:47:307: B2BStarter thread: BusinessLogicLayer - (DEBUG) Authorization disabled. UserBootstrapped:false, useAuthorization:true, configType:null
    2008.11.10 at 17:31:47:308: B2BStarter thread: BusinessLogicLayer - (DEBUG) Push Stack: queryConfiguration
    2008.11.10 at 17:31:47:318: B2BStarter thread: BusinessLogicLayer - (DEBUG) Pop Stack: queryConfiguration
    2008.11.10 at 17:31:47:318: B2BStarter thread: Deployment - (DEBUG) Query Configurations null Lifecycle status Quiescing exclude design true
    2008.11.10 at 17:31:47:318: B2BStarter thread: BusinessLogicLayer - (DEBUG) Authorization disabled. UserBootstrapped:false, useAuthorization:true, configType:null
    2008.11.10 at 17:31:47:318: B2BStarter thread: BusinessLogicLayer - (DEBUG) Push Stack: queryConfiguration
    2008.11.10 at 17:31:47:318: B2BStarter thread: BusinessLogicLayer - (DEBUG) Pop Stack: queryConfiguration
    Could you please review this once..
    thanks
    sachin.

  • Windows Server 2008: Sysprep Error: Error [0x0f0073] SYSPRP RunExternalDlls:Not running DLLs; either the machine is in an invalid state or we couldn't update the recorded state, dwRet = 32[gle=0x00000020]

    I have a base template (which has never been sysprep'd) from which I create linked clones.  After the linked clone comes up, I run the following command:
    c:\windows\system32\sysprep\sysprep.exe /generalize /oobe /reboot /unattend:c:\windows\panther\unattend.xml
    This works fine for the first few linked clones, but after about 3-4 linked clones are running, I start to hit "A fatal error occurred while trying to sysprep the machine."
    ****c:\windows\panther\setuperr.log****
    2013-03-29 16:40:07, Error      [0x0f0073] SYSPRP RunExternalDlls:Not running DLLs; either the machine is in an invalid state or we couldn't update the recorded state, dwRet = 32[gle=0x00000020]
    2013-03-29 16:40:07, Error      [0x0f00a8] SYSPRP WinMain:Hit failure while processing sysprep cleanup providers; hr = 0x80070020[gle=0x00000020]
    ****c:\windows\panther\unattend.xml****
    <?xml version='1.0' encoding='utf-8'?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <settings pass="oobeSystem">
            <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <InputLocale>en-US</InputLocale>
                <SystemLocale>en-US</SystemLocale>
                <UILanguage>en-US</UILanguage>
                <UILanguageFallback>en-US</UILanguageFallback>
                <UserLocale>en-US</UserLocale>
            </component>
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <AutoLogon>
                    <Enabled>true</Enabled>
                    <Username>Administrator</Username>
                    <Password>
                        <Value>ca$hc0w</Value>
                        <PlainText>true</PlainText>
                    </Password>
                </AutoLogon>
                <OOBE>
                    <HideEULAPage>true</HideEULAPage>
                    <NetworkLocation>Work</NetworkLocation>
                    <ProtectYourPC>3</ProtectYourPC>
                </OOBE>
                <UserAccounts>
                    <AdministratorPassword>
                        <Value>ca$hc0w</Value>
                        <PlainText>true</PlainText>
                    </AdministratorPassword>
                </UserAccounts>
                <TimeZone>Pacific Standard Time</TimeZone>
            </component>
        </settings>
        <settings pass="specialize">
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <ProductKey>7M67G-PC374-GR742-YH8V4-TCBY3</ProductKey>
                <ComputerName>*</ComputerName>
            </component>
        </settings>
    </unattend>
    ****c:\windows\panther\setupact.log****
    2013-03-29 16:40:07, Info       [0x0f004d] SYSPRP The time is now 2013-03-29 16:40:07
    2013-03-29 16:40:07, Info       [0x0f004e] SYSPRP Initialized SysPrep log at c:\windows\system32\sysprep\Panther
    2013-03-29 16:40:07, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
    2013-03-29 16:40:07, Info       [0x0f0056] SYSPRP ValidateVersion:OS version is okay
    2013-03-29 16:40:07, Info       [0x0f005e] SYSPRP ScreenSaver:Screen saver was already disabled, no need to disable it for sysprep
    2013-03-29 16:40:07, Info       [0x0f007e] SYSPRP FCreateTagFile:Tag file c:\windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
    2013-03-29 16:40:07, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'GENERALIZE'
    2013-03-29 16:40:07, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'OOBE'
    2013-03-29 16:40:07, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
    2013-03-29 16:40:07, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'UNATTEND'
    2013-03-29 16:40:07, Info       [0x0f004a] SYSPRP WaitThread:Entering spawned waiting thread
    2013-03-29 16:40:07, Info                         [sysprep.exe] UnattendFindAnswerFile: Looking at explicitly provided unattend file [c:\windows\panther\unattend.xml]...
    2013-03-29 16:40:07, Info                         [sysprep.exe] UnattendFindAnswerFile: [c:\windows\panther\unattend.xml] meets criteria
    for an explicitly provided unattend file.
    2013-03-29 16:40:07, Info                  SYSPRP SysprepSearchForUnattend: Using unattend file at [c:\windows\panther\unattend.xml].
    2013-03-29 16:40:07, Info                  SYSPRP SysprepSearchForUnattend: [generalize] pass in unattend file [c:\windows\panther\unattend.xml] either doesn't exist or passed
    validation
    2013-03-29 16:40:07, Info                  SYSPRP WinMain:Found unattend file at [c:\windows\panther\unattend.xml]; caching...
    2013-03-29 16:40:07, Info                  SYSPRP WinMain:Processing unattend file's 'generalize' pass...
    2013-03-29 16:40:07, Info                  SYSPRP Sysprep is running a generalize pass with the following unattend file: [%windir%\panther\unattend.xml]
    2013-03-29 16:40:07, Info                  SYSPRP RunUnattendGeneralizePass: Sysprep unattend generalize pass exits; hr = 0x0, hrResult = 0x0, bRebootRequired = 0x0
    2013-03-29 16:40:07, Info       [0x0f003f] SYSPRP WinMain:Processing 'cleanup' request.
    2013-03-29 16:40:07, Error      [0x0f0073] SYSPRP RunExternalDlls:Not running DLLs; either the machine is in an invalid state or we couldn't update the recorded state, dwRet = 32[gle=0x00000020]
    2013-03-29 16:40:07, Error      [0x0f00a8] SYSPRP WinMain:Hit failure while processing sysprep cleanup providers; hr = 0x80070020[gle=0x00000020]
    2013-03-29 16:48:52, Info       [0x0f004c] SYSPRP WaitThread:Exiting spawned waiting thread
    2013-03-29 16:48:52, Info       [0x0f0059] SYSPRP ScreenSaver:Screen saver was originally disabled, leaving it disabled
    2013-03-29 16:48:52, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
    2013-03-29 16:48:52, Info       [0x0f004d] SYSPRP The time is now 2013-03-29 16:48:52

    Hi,
    This is typical of an OEM license issue.
    To avoid this in the future you should look at site/volume licensing.
    Anyway.
    so, first check if you can re-arm by runing the
    slmgr.vbs /dlv and check the re-arm counter, if it set to zero.. you need to do the following :
    http://support.microsoft.com/kb/929828 (set the <SkipRearm>1</SkipRearm> like in the example, note: this option will make the product key window to appear in the setup process).
    you can also try running : slmgr.vbs -rearm, to rearm Windows.
    after that, let's come back to the sysprep process.. for syspreping already syspreped machine we have to change few keys in the registry :
    HKEY_LOCAL_MACHINE\SYSTEM\Setup\Status\SysprepStatus\GeneralizationState\
    CleanupState:2
    HKEY_LOCAL_MACHINE\SYSTEM\Setup\Status\SysprepStatus\GeneralizationState\
    GeneralizationState:7
    After done with the registry, do the following :
    Start -> Run : msdtc -uninstall (wait few seconds)
    Start -> Run : msdtc -install (wait few seconds)
    Restart the machine
    Check the registry for the right registry keys values
    sysprep with the new XML answerfile.
    Source: Olegm
    If you find my information useful, please rate it. :-)

  • "ORA-00903: invalid table name" when enqueue using a CLOB in an ADT payload

    I am attempting to enqueue into an AQ that has an ADT with a CLOB field in it. If I leave the CLOB empty, it works. As soon as I place content in it, I get the error below in the BPEL log.
    I actually get the same problem when I run the "AQ_ADT_with_CLOB_Payload" example. Please help!
    Error in the BPEL log:
    <2005-11-08 09:22:07,784> <ERROR> <default.collaxa.cube.ws> <AQ Adapter::Outbound> MessageWriter_enqueue: Could not enqueue message due to database error
    <2005-11-08 09:22:07,784> <ERROR> <default.collaxa.cube.ws> <AQ Adapter::Outbound>
    java.sql.SQLException: ORA-00903: invalid table name
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:137)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:304)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:271)
    at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:625)
    at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:181)
    at oracle.jdbc.driver.T4CPreparedStatement.execute_for_describe(T4CPreparedStatement.java:661)
    at oracle.jdbc.driver.OracleStatement.execute_maybe_describe(OracleStatement.java:951)
    at oracle.jdbc.driver.T4CPreparedStatement.execute_maybe_describe(T4CPreparedStatement.java:693)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1057)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:2901)
    at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:2942)
    at oracle.tip.adapter.aq.database.MessageWriter.doEnqueue(MessageWriter.java:530)
    at oracle.tip.adapter.aq.database.MessageWriter.enqueue(MessageWriter.java:341)
    at oracle.tip.adapter.aq.database.MessageWriter.writeMessage(MessageWriter.java:303)
    at oracle.tip.adapter.aq.outbound.AQEnqueuer.execute(AQEnqueuer.java:108)
    at oracle.tip.adapter.aq.AQInteraction.executeRunTime(AQInteraction.java:194)
    at oracle.tip.adapter.aq.AQInteraction.execute(AQInteraction.java:180)
    at oracle.tip.adapter.fw.wsif.jca.WSIFOperation_JCA.executeRequestResponseOperation(WSIFOperation_JCA.java:469)
    at oracle.tip.adapter.fw.wsif.jca.WSIFOperation_JCA.executeInputOnlyOperation(WSIFOperation_JCA.java:652)
    at com.collaxa.cube.ws.WSIFInvocationHandler.invoke(WSIFInvocationHandler.java:441)
    at com.collaxa.cube.ws.WSInvocationManager.invoke2(WSInvocationManager.java:310)
    at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:184)
    at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__invoke(BPELInvokeWMP.java:601)
    at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:316)
    at com.collaxa.cube.engine.ext.wmp.BPELActivityWMP.perform(BPELActivityWMP.java:185)
    at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:3398)
    at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1905)
    at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(PerformMessageHandler.java:75)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:100)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:185)
    at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:5410)
    at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:1300)
    at com.collaxa.cube.engine.delivery.DeliveryService.handleInvoke(DeliveryService.java:509)
    at com.collaxa.cube.engine.ejb.impl.CubeDeliveryBean.handleInvoke(CubeDeliveryBean.java:307)
    at ICubeDeliveryLocalBean_StatelessSessionBeanWrapper16.handleInvoke(ICubeDeliveryLocalBean_StatelessSessionBeanWrapper16.java:1796)
    at com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessageHandler.handle(InvokeInstanceMessageHandler.java:37)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:76)
    at com.collaxa.cube.engine.dispatch.BaseScheduledWorker.process(BaseScheduledWorker.java:70)
    at com.collaxa.cube.engine.ejb.impl.WorkerBean.onMessage(WorkerBean.java:86)
    at com.evermind.server.ejb.MessageDrivenBeanInvocation.run(MessageDrivenBeanInvocation.java:123)
    at com.evermind.server.ejb.MessageDrivenHome.onMessage(MessageDrivenHome.java:748)
    at com.evermind.server.ejb.MessageDrivenHome.run(MessageDrivenHome.java:921)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
    at java.lang.Thread.run(Thread.java:534)

    OK, I figured it out myself. :)
    Turns out when I define the queue name in the AQ Adapter definition, I was specifying "<Default Schema>" as the schema name. When I changed this to my actual schema name (eg: "SCOTT"), it worked. Nice little bug there!
    The reason it broke with the example program is because I was changing the schema name before I deployed it. As I didn't have a SCOTT schema.
    So the moral of the story here is, don't use "<Default Schema>"!
    I was running on 10.1.2.0.0 [build #1787 ]. In case anyone wants to fix this.

Maybe you are looking for

  • Data Load to BI (7.0 SP 9) from R3(ECC 6.0 SP-Basis 9)

    Dear All, We have new instance of Devlopment BW System with version 7.0 and R/3 upgraded to ECC6.0. We connected the source system. When we extract the data through DTP the data load is sucessful with 0 Records. This is case with all the extractors.

  • BT Parental Controls window won't go away

    Hi there, I use BT Internet and am on wifi. Today I switched on my PC and every time I open a webpage in Google Chrome or Internet Explorer, I get a little window from BTInternet asking me if I want to activate Parental Controls. I click "No" and it

  • How can I have the side bar in iTunes 12??

    I just installed iTunes 12 that was claimed to provide "a more pleasant interface for navigation"!?!? Personally, I do not find the new view format pleasant at all. I expected to be allowed to go back to the lateral bar visualization, finding it as a

  • HT5622 I need help with sync my iphone 4 to my new pc

    I just got a new pc and I can not remember how to sync my iphone to my pc to tranfer all my pictures and videos I need help!! I can not update my phone until I remove some of my content and I want it on my pc.

  • Authorizations in report

    Hi all, I just need clarification regarding authorisations, my requirement is something like this, i have to pass two values for actvt & the field authorisation object - v_vfkk_fka activity - 03 & 02 field value - '001' & '002' . the code i have writ