Ctype

What is the use of condition type in pricing procedure determination

Hi
Manual:
This indicator specifies whether the specific condition type can be determined manually during sales order processing.
If we check the box then the entry is going to be manual, if we uncheck it, it is going to be automatic.
For Base Price and Taxes, the entry should be automatic.
For Discounts and Freights, The entry should be manual.
If we check the box, in VA01 when we go to conditions at the header/item level, the condition type will not be listed. If we require we will have to manually enter it.
If we uncheck the box, in VA01 when we go to conditions at the header/item level, the condition type will be listed.
Mandatory:
This indicator specifies that particular condition type is mandatory in the pricing procedure.
If we check the box, then in VA01 at the header/item level in the conditions tab, if we delete the value in the condition type and try to save the document then system will not allow us to do it and throws an error.
If we uncheck the box, then in VA01 at the header/item level in the conditions tab, if we delete the value in the condition type and try to save the document then system will allow us to save it, without giving any error.
Mandatory check box should be checked in condition types which are compulsorily required in pricing procedure. Ex.: PR00, MWST.
If the condition type is checked with mandatory option, then value should be maintained for that condition type, otherwise the system will not allow the user to process the document.
Reward if it helps
Regards
Prasanna R

Similar Messages

  • Function returning control via CType. Is this risk-free?

    I want an easy way to get a TabPage's child (user)control without writing CType() functions everywhere.
    For this I created a function that returns the control via CType:
    Private Function ChildIRCControl() As IRCControl
    Return CType(Me.TabControl1.TabPages(Me.TabControl1.SelectedIndex).Controls(1), IRCControl)
    End Function
    Now, is this risk-free to do or are there any chances that it will bug or don't work in some cases?
    Thanks
    //Visual Vincent
    EDIT:
    Now to rephrase and explain my badly written question:
    The user is able to create new tabs, and for each new tab a IRCControl (which is a UserControl) is added to the tab's controlcollection.
    Now there's no problem doing the above. BUT since the tabs are created programmatically, I cannot get the control inside the tabpage without some kind of cast function.
    Example of creating a new tab:
    Private Sub CreateNewTab()
    Dim IRCc As New IRCControl 'This is a normal UserControl.
    Me.TabControl1.TabPages.Add("New Tab")
    Me.TabControl1.TabPages(Me.TabControl1.SelectedIndex).Controls.Add(<a control that has nothing to do with this question>)
    Me.TabControl1.TabPages(Me.TabControl1.SelectedIndex).Controls.Add(IRCc)
    End Sub
    Now to access the UserControl in the currently selected tab I need some kind of Cast function. I use CType for this:
    CType(Me.TabControl1.TabPages(Me.TabControl1.SelectedIndex).Controls(1), IRCControl)
    But typing this long CType function in every If statement needed and every Loop used takes time, and is horrible to read.
    Now, will it work just like the normal CType if I access it like this instead?
    Private Function ChildIRCControl() As IRCControl 'The UserControl
    Return CType(Me.TabControl1.TabPages(Me.TabControl1.SelectedIndex).Controls(1), IRCControl)
    End Function
    Private Sub ModifyTextBox() 'Example
    ChildIRCControl().TextBox1.Text = "Hello World!"
    End Sub
    Hope this explanation is better for you guys, and sorry for not bringing all this up before.
    I hope your day has been better than yesterday, but that it's worse than tomorrow...
    Please mark as answer if I solved your problem. :)

    Now, is this risk-free to do or are there any chances that it will bug or don't work in some cases?
    To make it safe you would subclass the Tab and TabPage controls and make this method a function of the new Tab.  Then, that class would include code to ensure that only your custom tab pages were added, and that for each added tab page the first
    control was the correct type - presumably creating it automatically or from a value passed to it in the constructor.  That control is then a property of the tab page, and there is no need to use the Controls collection or do any type conversion.
    The problem is that you actually have no control over the order of items added into the Controls array if you are using the designer.   Even if you are sure that each tab page has one of the controls, it might not be at index 1.  
    You could scan the tab page Controls collection, but if there are several of that control type then you also need a way to know which one you really want.  That's what your code should be checking.   If you correctly identify the control in
    the collection there is no need for CType - it's already the correct type.   You can check the type without trying to do the conversion by using TypeOf.  See
    https://msdn.microsoft.com/en-us/library/0ec5kw18.aspx
    Thanks for the answer.
    I guess I could have added this to my initial question too: I'm creating the TabPages and UserControls programmatically and that's why I need to use some kind of Cast function. There are two controls in each tabpage, and they're added in this order:
    Private Sub <Some kind of sub>()
    Dim IRCc As New IRCControl 'The UserControl
    <The new TabPage>.Controls.Add(<The other control>)
    <The new TabPage>.Controls.Add(IRCc)
    End Sub
    So the only thing I wanted to know was if I could do this:
    If ChildIRCControl().TextBox1.Text = "blahablaha"
    ChildIRCControl().RichTextBox1.Text = "blabla"
    End If
    Instead of writing the long CType, or any other cast function all the time,
    If CType(Me.TabControl1.TabPages(Me.TabControl1.SelectedIndex).Controls(1), IRCControl).TextBox1.Text = "blahablaha" Then
    CType(Me.TabControl1.TabPages(Me.TabControl1.SelectedIndex).Controls(1), IRCControl).RichTextBox1.Text = " "blabla"
    End If
    as it's both a readability and writability nightmare.
    And at last I apologize for the badly explaining question that I wrote.
    I hope your day has been better than yesterday, but that it's worse than tomorrow...
    Please mark as answer if I solved your problem. :)

  • Query with ctype facet results

    Hi,
    Before I ask my question, let me give you a summary of my development environment. I am using Solaris 10 U4 on an x86 virtual machine and applied any locale related patches. I have also installed Sun Studio 12 and applied any C++ related patches. I currently have my locale set to en_AU.ISO8859-1.
    I have a test program which displays the character classifications of all 256 characters in the 8859-1 codeset. This test program is as follows:
    #include <locale>
    #include <iostream>
    #include <iomanip>
    using namespace std;
    int main()
         const locale &rLocale = locale("");
         const ctype<char> &rCtype = use_facet<ctype<char> >(rLocale, 0);
         for (unsigned vI = 0; vI < 256; ++vI)
              unsigned char vChar = static_cast<unsigned char>(vI);
              cout
                   << "0x"
                   << hex << setiosflags(ios_base::internal | ios_base::uppercase) << setfill('0')
                   << setw(2) << static_cast<unsigned>(vChar)
                   << dec << resetiosflags(ios_base::internal | ios_base::uppercase) << setfill(' ')
                   << " : "
                   << (rCtype.is(ctype_base::space, vChar) ? "space" : ".....")
                   << " "
                   << (rCtype.is(ctype_base::print, vChar) ? "print" : ".....")
                   << " "
                   << (rCtype.is(ctype_base::cntrl, vChar) ? "cntrl" : ".....")
                   << " "
                   << (rCtype.is(ctype_base::upper, vChar) ? "upper" : ".....")
                   << " "
                   << (rCtype.is(ctype_base::lower, vChar) ? "lower" : ".....")
                   << " "
                   << (rCtype.is(ctype_base::alpha, vChar) ? "alpha" : ".....")
                   << " "
                   << (rCtype.is(ctype_base::digit, vChar) ? "digit" : ".....")
                   << " "
                   << (rCtype.is(ctype_base::punct, vChar) ? "punct" : ".....")
                   << " "
                   << (rCtype.is(ctype_base::xdigit, vChar) ? "xdigit" : "......")
                   << endl;
         return 0;
    }When I run this test program, I am expecting all 256 characters to be classified according to ISO/IEC 6429:1992 and ISO/IEC 8859-1:1998. However, what I am getting is as follows:
    {result}
    0x00 : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x01 : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x02 : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x03 : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x04 : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x05 : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x06 : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x07 : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x08 : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x09 : space ..... cntrl ..... ..... ..... ..... ..... ......
    0x0A : space ..... cntrl ..... ..... ..... ..... ..... ......
    0x0B : space ..... cntrl ..... ..... ..... ..... ..... ......
    0x0C : space ..... cntrl ..... ..... ..... ..... ..... ......
    0x0D : space ..... cntrl ..... ..... ..... ..... ..... ......
    0x0E : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x0F : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x10 : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x11 : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x12 : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x13 : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x14 : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x15 : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x16 : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x17 : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x18 : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x19 : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x1A : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x1B : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x1C : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x1D : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x1E : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x1F : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x20 : space print ..... ..... ..... ..... ..... ..... ......
    0x21 : ..... print ..... ..... ..... ..... ..... punct ......
    0x22 : ..... print ..... ..... ..... ..... ..... punct ......
    0x23 : ..... print ..... ..... ..... ..... ..... punct ......
    0x24 : ..... print ..... ..... ..... ..... ..... punct ......
    0x25 : ..... print ..... ..... ..... ..... ..... punct ......
    0x26 : ..... print ..... ..... ..... ..... ..... punct ......
    0x27 : ..... print ..... ..... ..... ..... ..... punct ......
    0x28 : ..... print ..... ..... ..... ..... ..... punct ......
    0x29 : ..... print ..... ..... ..... ..... ..... punct ......
    0x2A : ..... print ..... ..... ..... ..... ..... punct ......
    0x2B : ..... print ..... ..... ..... ..... ..... punct ......
    0x2C : ..... print ..... ..... ..... ..... ..... punct ......
    0x2D : ..... print ..... ..... ..... ..... ..... punct ......
    0x2E : ..... print ..... ..... ..... ..... ..... punct ......
    0x2F : ..... print ..... ..... ..... ..... ..... punct ......
    0x30 : ..... print ..... ..... ..... ..... digit ..... xdigit
    0x31 : ..... print ..... ..... ..... ..... digit ..... xdigit
    0x32 : ..... print ..... ..... ..... ..... digit ..... xdigit
    0x33 : ..... print ..... ..... ..... ..... digit ..... xdigit
    0x34 : ..... print ..... ..... ..... ..... digit ..... xdigit
    0x35 : ..... print ..... ..... ..... ..... digit ..... xdigit
    0x36 : ..... print ..... ..... ..... ..... digit ..... xdigit
    0x37 : ..... print ..... ..... ..... ..... digit ..... xdigit
    0x38 : ..... print ..... ..... ..... ..... digit ..... xdigit
    0x39 : ..... print ..... ..... ..... ..... digit ..... xdigit
    0x3A : ..... print ..... ..... ..... ..... ..... punct ......
    0x3B : ..... print ..... ..... ..... ..... ..... punct ......
    0x3C : ..... print ..... ..... ..... ..... ..... punct ......
    0x3D : ..... print ..... ..... ..... ..... ..... punct ......
    0x3E : ..... print ..... ..... ..... ..... ..... punct ......
    0x3F : ..... print ..... ..... ..... ..... ..... punct ......
    0x40 : ..... print ..... ..... ..... ..... ..... punct ......
    0x41 : ..... print ..... upper ..... alpha ..... ..... xdigit
    0x42 : ..... print ..... upper ..... alpha ..... ..... xdigit
    0x43 : ..... print ..... upper ..... alpha ..... ..... xdigit
    0x44 : ..... print ..... upper ..... alpha ..... ..... xdigit
    0x45 : ..... print ..... upper ..... alpha ..... ..... xdigit
    0x46 : ..... print ..... upper ..... alpha ..... ..... xdigit
    0x47 : ..... print ..... upper ..... alpha ..... ..... ......
    0x48 : ..... print ..... upper ..... alpha ..... ..... ......
    0x49 : ..... print ..... upper ..... alpha ..... ..... ......
    0x4A : ..... print ..... upper ..... alpha ..... ..... ......
    0x4B : ..... print ..... upper ..... alpha ..... ..... ......
    0x4C : ..... print ..... upper ..... alpha ..... ..... ......
    0x4D : ..... print ..... upper ..... alpha ..... ..... ......
    0x4E : ..... print ..... upper ..... alpha ..... ..... ......
    0x4F : ..... print ..... upper ..... alpha ..... ..... ......
    0x50 : ..... print ..... upper ..... alpha ..... ..... ......
    0x51 : ..... print ..... upper ..... alpha ..... ..... ......
    0x52 : ..... print ..... upper ..... alpha ..... ..... ......
    0x53 : ..... print ..... upper ..... alpha ..... ..... ......
    0x54 : ..... print ..... upper ..... alpha ..... ..... ......
    0x55 : ..... print ..... upper ..... alpha ..... ..... ......
    0x56 : ..... print ..... upper ..... alpha ..... ..... ......
    0x57 : ..... print ..... upper ..... alpha ..... ..... ......
    0x58 : ..... print ..... upper ..... alpha ..... ..... ......
    0x59 : ..... print ..... upper ..... alpha ..... ..... ......
    0x5A : ..... print ..... upper ..... alpha ..... ..... ......
    0x5B : ..... print ..... ..... ..... ..... ..... punct ......
    0x5C : ..... print ..... ..... ..... ..... ..... punct ......
    0x5D : ..... print ..... ..... ..... ..... ..... punct ......
    0x5E : ..... print ..... ..... ..... ..... ..... punct ......
    0x5F : ..... print ..... ..... ..... ..... ..... punct ......
    0x60 : ..... print ..... ..... ..... ..... ..... punct ......
    0x61 : ..... print ..... ..... lower alpha ..... ..... xdigit
    0x62 : ..... print ..... ..... lower alpha ..... ..... xdigit
    0x63 : ..... print ..... ..... lower alpha ..... ..... xdigit
    0x64 : ..... print ..... ..... lower alpha ..... ..... xdigit
    0x65 : ..... print ..... ..... lower alpha ..... ..... xdigit
    0x66 : ..... print ..... ..... lower alpha ..... ..... xdigit
    0x67 : ..... print ..... ..... lower alpha ..... ..... ......
    0x68 : ..... print ..... ..... lower alpha ..... ..... ......
    0x69 : ..... print ..... ..... lower alpha ..... ..... ......
    0x6A : ..... print ..... ..... lower alpha ..... ..... ......
    0x6B : ..... print ..... ..... lower alpha ..... ..... ......
    0x6C : ..... print ..... ..... lower alpha ..... ..... ......
    0x6D : ..... print ..... ..... lower alpha ..... ..... ......
    0x6E : ..... print ..... ..... lower alpha ..... ..... ......
    0x6F : ..... print ..... ..... lower alpha ..... ..... ......
    0x70 : ..... print ..... ..... lower alpha ..... ..... ......
    0x71 : ..... print ..... ..... lower alpha ..... ..... ......
    0x72 : ..... print ..... ..... lower alpha ..... ..... ......
    0x73 : ..... print ..... ..... lower alpha ..... ..... ......
    0x74 : ..... print ..... ..... lower alpha ..... ..... ......
    0x75 : ..... print ..... ..... lower alpha ..... ..... ......
    0x76 : ..... print ..... ..... lower alpha ..... ..... ......
    0x77 : ..... print ..... ..... lower alpha ..... ..... ......
    0x78 : ..... print ..... ..... lower alpha ..... ..... ......
    0x79 : ..... print ..... ..... lower alpha ..... ..... ......
    0x7A : ..... print ..... ..... lower alpha ..... ..... ......
    0x7B : ..... print ..... ..... ..... ..... ..... punct ......
    0x7C : ..... print ..... ..... ..... ..... ..... punct ......
    0x7D : ..... print ..... ..... ..... ..... ..... punct ......
    0x7E : ..... print ..... ..... ..... ..... ..... punct ......
    0x7F : ..... ..... cntrl ..... ..... ..... ..... ..... ......
    0x80 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x81 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x82 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x83 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x84 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x85 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x86 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x87 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x88 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x89 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x8A : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x8B : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x8C : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x8D : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x8E : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x8F : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x90 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x91 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x92 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x93 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x94 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x95 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x96 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x97 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x98 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x99 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x9A : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x9B : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x9C : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x9D : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x9E : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0x9F : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xA0 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xA1 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xA2 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xA3 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xA4 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xA5 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xA6 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xA7 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xA8 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xA9 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xAA : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xAB : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xAC : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xAD : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xAE : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xAF : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xB0 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xB1 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xB2 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xB3 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xB4 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xB5 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xB6 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xB7 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xB8 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xB9 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xBA : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xBB : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xBC : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xBD : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xBE : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xBF : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xC0 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xC1 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xC2 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xC3 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xC4 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xC5 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xC6 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xC7 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xC8 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xC9 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xCA : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xCB : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xCC : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xCD : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xCE : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xCF : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xD0 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xD1 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xD2 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xD3 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xD4 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xD5 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xD6 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xD7 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xD8 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xD9 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xDA : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xDB : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xDC : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xDD : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xDE : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xDF : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xE0 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xE1 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xE2 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xE3 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xE4 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xE5 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xE6 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xE7 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xE8 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xE9 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xEA : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xEB : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xEC : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xED : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xEE : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xEF : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xF0 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xF1 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xF2 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xF3 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xF4 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xF5 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xF6 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xF7 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xF8 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xF9 : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xFA : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xFB : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xFC : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xFD : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xFE : ..... ..... ..... ..... ..... ..... ..... ..... ......
    0xFF : ..... ..... ..... ..... ..... ..... ..... ..... ......
    {result}
    Notice that the lower 128 characters have the correct classification but the upper 128 characters do not have any classification information. Am I missing something here or is the system not behaving correctly? Is there a fix for this problem?
    Regards,
    Leo

    It looks like we have a problem with locale("") not setting the environment for the program.
    If you use
    const locale &rLocale = locale("en_AU.ISO8859-1"); the code works as you expect.
    Please file a bug report at http://bugs.sun.com

  • Purch Info Record Update - Difference of Ctyp PBXX PB00

    Hi Sap Gurus!
    Would like to seek your help! When I am using Ctype PBXX in Purchase Order, Purchasing Info record Price is not updating but if Ctype PB00 is used Purchasing Info Record Price is updated after creation of Purchase Order.
    What is the difference of Ctype PB00 and PBXX?
    Please advice.

    Follow this answered links
    What is the difference between Condition Type PB00 and PBXX
    Difference between PB00 and PBXX condition types?
    PB00 and PBXX- Difference ?

  • Ctype header in 10.8

    When I try to compile anything with #include <ctype>, g++ says it's not available. I tried running it through Xcode as well as opposed to the shell to no avail. Xcode actually marks it as an error in the editor. I just upgraded to OS X 10.8 and Xcode 4.4, but I don't know if this was available in OS X 10.7.4 or an earlier version of Xcode.
    Any idea where I could find this so I can install it?

    There is no "<ctype>" in C++. There is a "<ctype.h>" in C and there is a "<cctype>" in C++.

  • Cx_Oracle and ctypes issue

    Hello,
    I have some code that works fine (using ctypes to call a dll), unless I run cx_Oracle first then I get an error:
    WindowsError: [Error 126] The specified module could not be found
    An example of the code is below:
    query = '''select * from table'''
    cx_Oracle.makedsn(host="host", port=1111, service_name='service.name')
    db_conn = cx_Oracle.connect('/@somewhere')
    cursor = db_conn.cursor()
    cursor.execute(query)
    db_conn.close()
    lib_path = os.path.join("C:\\Program Files (x86)\\app", "data.dll")
    self.externallib = ctypes.windll.LoadLibrary(lib_path)
    I am using python 2.7.5
    If I comment out the cx_Oracle code it works fine OR if I run it first.
    Any thoughts appreciated,
    Bevan

    Are you using Instant Client?  What version of IC or the Oracle client libraries are you using?
    Does data.dll have other dependencies?
    Is there a symbol clash between Oracle libs and data.dll - does the same problem occur when loading another DLL?

  • VPRs ctype issue

    Dear MMians,
    I am working on service contract - After sales service
    while saving teh contract getting the following info as error
    "Error in acc detrermintaion error""
    on deep analysis we found that it is not picking the VPRS value and showing 0 price.
    how to fix this
    Pl notethat this is service matl and no accounting views r maintained
    pl reply
    guru

    Hi Sachin,
    For the similar issue you face, there has been a discussion in the forum.. Pls check
    VPRS retrives the cost of the Material from the material master data > Accounting 1 tab to the Sales order.
    Once the cost is found, then Profit margin  (Net value - cost) is calculated.
    VPRS does not contain any Access sequence.
    With the help of its Condition category "G", it accesses the Material master > Accounting tab 1 and takes cost.
    There may be two cost specified in the Material master. They are
    - Moving Avarage Price
    - Standard Price
    Which one system will consider that depends upon the "Price control" field.
    If the value is "V' in the Price control field, the system takes the "Moving Avarage Price" and if it is "S", then system takes the "Standard Price".
    So, you must ensure these few control
    - VPRS should  NOT have any Access sequence.
    - Condition category "G" must have been assigned to VPRS.
    - VPRS must have been activated as "Statistical" condition in the Pricing Procedure and should not have any Account key.
    With Regards
    S.Siva

  • Copy value from one ctype to other  ctype

    Hi Experts,
    I am creating a sales order with reference to a contract. I want to copy the rate (KBETR) of condition type ZXXX from contract to condition type ZYYY in sale order. But I am not able to copy it through copy control.
    Can anyone help me?????????
    Regards,
    Kuldeep Dahiya

    Hi Kuldeep Dahiya,
    Copy control only copies one document to other document with same condition types, for your requirement you need to write a routine.
    Instead why not copy ZXXX to ZXXx only in contract and order.This is a standard functionality-if you want to copy ZXXX to ZYYY then you require development in the form of a routine.
    I hope i have understood your query clearly.
    regards,
    US

  • "Failed to open the connection" problem related to multiple tables in the report?

    Post Author: Gadow
    CA Forum: Data Connectivity and SQL
    System specifics:
    Web environment using ASP.Net 2.0 (from Visual Studio 2005 Professional)
    Crystal Reports 2008, v. 12.0.0.549, Full
    We have set up the following method for displaying reports via our website:
    User is sent to a report-specific page. The user is given some filtering options specific to the report that will be viewed. When the user has specified the data filters, the user clicks a button.
    The page wraps up the report parameters -- selection query, formula values, report location, the name to be displayed, etc. -- into a class which gets put into the Session object.
    The page redirects to DisplayReport.aspx. ALL reports redirect to this page.
    DisplayReport.aspx retrieves the report parameters from Session. A ReportDocument object is created and loaded, then set with the data from the parameters class.
    A ConnectionInfo object is created and set with the relevant log on credentials. All of the reports draw from the same database, so the connection information is hard-coded as the same for all reports. The page then iterates through all of the tables in the Database.Tables collection of the ReportDocument and calls ApplyLogOnInfo to each table using the ConnectionInfo object.
    The page is rendered and the user gets the filtered report.
    We currently have seven reports. Five reports work fine and display the correctly filtered data with no error messages. Two reports generate a Failed to open the connection error and do not display. I have verified that the queries being sent to DisplayReport.aspx are valid, and as I said the connection information itself is hard-coded in the one page that displays the reports and this is identical to all reports.
    The five reports that do work all have a single data table, either an actual database table or a single view. The two reports that do not work all have multiple tables. As far as I can tell, this is the only difference between the sets; all seven reports are based on the same DSN and I have verified the database on all of the reports. All of the reports were written using Crystal Reports 8, and all of the reports display fine in a Windows app I wrote some years ago using Crystal Reports 8. Again, the only difference between those reports that do work and those that do not is the number of tables used in the report: one table or view in the reports that display, more than one table (tables only, none use views) in the reports that do not display.
    As for the code I am using, below are the relevant methods. The function MakeConnectionInfo simply parses out the components of a standard SQL connection string into a ConnectionInfo object. DisplayedReport is the ID of the CrystalReportViewer on the page.Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs)
            Dim o As Object = Session("ReportParams")
            Dim ReportURL As String = ""
            'Verify that there is a ReportParameters object
            If o Is Nothing OrElse o.GetType IsNot GetType(ReportParameters) Then 'Redirect to the error page
                Response.Redirect("/errors/MissingReport.aspx")
            End If
            ReportParams = CType(o, ReportParameters)
            'Verify that the report exists
            ReportURL = "/Reports/ReportFiles/" + ReportParams.ReportName
            ReportPath = Server.MapPath(ReportURL)
            If Not File.Exists(ReportPath) Then
                Response.Redirect("/errors/MissingReport.aspx?Report=" + ReportParams.ReportTitle)
            End If
            InitializeReport()       
        End Sub
        Protected Sub InitializeReport()
            Dim RD As New ReportDocument
            Dim CI As ConnectionInfo = MakeConnectionInfo(DB_Bonus)
            Dim RPF As CrystalDecisions.Shared.ParameterField = Nothing
            RD.Load(ReportPath)
            If ReportParams.SelectString <> "" Then
                Dim Adapt As New SqlDataAdapter(ReportParams.SelectString, DB_Bonus)
                Dim DS As New Data.DataSet
                Adapt.Fill(DS)
                RD.SetDataSource(DS.Tables(0))
            End If
            For Each kvp As KeyValuePair(Of String, String) In ReportParams.Formulas
                Dim FFD As FormulaFieldDefinition = Nothing
                Try
                    FFD = RD.DataDefinition.FormulaFields(kvp.Key)
                Catch ex As Exception
                    'Do nothing
                End Try
                If FFD IsNot Nothing Then
                    Select Case FFD.ValueType
                        Case FieldValueType.DateField, FieldValueType.DateTimeField
                            If IsDate(kvp.Value) Then
                                FFD.Text = String.Format("Date()", Convert.ToDateTime(kvp.Value).ToString("yyyy, MM, dd"))
                            Else
                                FFD.Text = "Date(1960, 01, 01)"
                            End If
                        Case FieldValueType.StringField
                            FFD.Text = String.Format("""""", kvp.Value)
                        Case Else
                            'For now, treat these as if they were strings. If things blow up here,
                            'we will need to add the appropriate formatting for the field type.
                            FFD.Text = String.Format("""""", kvp.Value)
                    End Select
                End If
            Next
            For Each T As CrystalDecisions.CrystalReports.Engine.Table In RD.Database.Tables
                Dim TLI As TableLogOnInfo = T.LogOnInfo
                TLI.ConnectionInfo = CI
                T.ApplyLogOnInfo(TLI)
            Next
            DisplayedReport.ReportSource = RD
        End Sub
    Does this approach not work with reports containing multiple tables, or is there something I'm missing? Any meaningful suggestions would be much appreciated.

    Dear Dixit,
    Please refer to the Crystal report landing page to get the details
    information about the support for crystal report issues.
    Please use the following thread to post your questions related to
    crystal report.
    SAP Business One and Crystal Reports
    Regards,
    Rakesh Pati
    SAP Business One Forum Team.

  • SSRS - Is there a multi thread safe way of displaying information from a DataSet in a Report Header?

     In order to dynamically display data in the Report Header based in the current record of the Dataset, we started using Shared Variables, we initially used ReportItems!SomeTextbox.Value, but we noticed that when SomeTextbox was not rendered in the body
    (usually because a comment section grow to occupy most of the page if not more than one page), then the ReportItem printed a blank/null value.
    So, a method was defined in the Code section of the report that would set the value to the shared variable:
    public shared Params as String
    public shared Function SetValues(Param as String ) as String
    Params = Param
    Return Params 
    End Function
    Which would be called in the detail section of the tablix, then in the header a textbox would hold the following expression:
    =Code.Params
    This worked beautifully since, it now didn't mattered that the body section didn't had the SetValues call, the variable persited and the Header displayed the correct value. Our problem now is that when the report is being called in different threads with
    different data, the variable being shared/static gets modified by all the reports being run at the same time. 
    So far I've tried several things:
    - The variables need to be shared, otherwise the value set in the Body can't be seen by the header.
    - Using Hashtables behaves exactly like the ReportItem option.
    - Using a C# DLL with non static variables to take care of this, didn't work because apparently when the DLL is being called by the Body generates a different instance of the DLL than when it's called from the header.
    So is there a way to deal with this issue in a multi thread safe way?
    Thanks in advance!
     

    Hi Angel,
    Per my understanding that you want to dynamic display the group data in the report header, you have set page break based on the group, so when click to the next page, the report hearder will change according to the value in the group, when you are using
    the shared variables you got the multiple thread safe problem, right?
    I have tested on my local environment and can reproduce the issue, according to the multiple safe problem the better way is to use the harshtable behaves in the custom code,  you have mentioned that you have tryied touse the harshtable but finally got
    the same result as using the ReportItem!TextBox.Value, the problem can be cuased by the logic of the code that not works fine.
    Please reference to the custom code below which works fine and can get all the expect value display on every page:
    Shared ht As System.Collections.Hashtable = New System.Collections.Hashtable
    Public Function SetGroupHeader( ByVal group As Object _
    ,ByRef groupName As String _
    ,ByRef userID As String) As String
    Dim key As String = groupName & userID
    If Not group Is Nothing Then
    Dim g As String = CType(group, String)
    If Not (ht.ContainsKey(key)) Then
    ' must be the first pass so set the current group to group
    ht.Add(key, g)
    Else
    If Not (ht(key).Equals(g)) Then
    ht(key) = g
    End If
    End If
    End If
    Return ht(key)
    End Function
    Using this exprssion in the textbox of the reportheader:
    =Code.SetGroupHeader(ReportItems!Language.Value,"GroupName", User!UserID)
    Links belowe about the hashtable and the mutiple threads safe problem for your reference:
    http://stackoverflow.com/questions/2067537/ssrs-code-shared-variables-and-simultaneous-report-execution
    http://sqlserverbiblog.wordpress.com/2011/10/10/using-custom-code-functions-in-reporting-services-reports/
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu

  • How to Delete a Specific Cell in a Matrix + plz Give sample code for Lost F

    hello there !!!!
    i m in Great Trouble please help me out..
    i have to search for a specific Column n then i have to validate that portion, similarly after validating i have to add update delete all the fuction apply... so please help me i m very upset.
    Public Sub HandleEventts_Allowance(ByVal FormUID As String, ByRef pVal As SAPbouiCOM.ItemEvent, ByRef EventEnum As SAPbouiCOM.BoEventTypes, ByRef BubbleEvent As Boolean)
            Try
                Dim Count As Int32
                If FormUID.Equals("Allowance") Then
                    If (pVal.BeforeAction = True) And (pVal.ItemUID = "1") And (pVal.EventType = SAPbouiCOM.BoEventTypes.et_CLICK) Then
                        If pVal.Row = 0 Then
                            'BubbleEvent = False
                        End If
                        o_Matrix = SBO_Application1.Forms.Item(FormUID).Items.Item("MatAllow").Specific
                        Count = o_Matrix.RowCount()
                        SBO_Application1.MessageBox("Matrix Count is " & o_Matrix.RowCount)
                        Validate(pVal, EventEnum, FormUID, BubbleEvent)
                    End If
                End If
            Catch ex As Exception
                SBO_Application1.MessageBox(ex.Message)
            End Try
        End Sub
        Public Sub Validate(ByRef pval As SAPbouiCOM.ItemEvent, ByRef EventEnum As SAPbouiCOM.BoEventTypes, ByVal FormUID As String, ByRef BubbleEvent As Boolean)
            Dim Row, ii As Integer
            o_Matrix = SBO_Application1.Forms.Item(FormUID).Items.Item("MatAllow").Specific
            o_Matrix.FlushToDataSource()
            Try
                For Row = 2 To o_Matrix.RowCount
                    StrName = Convert.ToString(DBtable.GetValue("CardCode", Row - 1)).Trim()''' i got Error over there n rest of my code is also not working pls...
                    StrUId = Convert.ToString(DBtable.GetValue("U_AlwID", Row - 1)).Trim()
                    StrEnter = Convert.ToString(DBtable.GetValue("U_SupEnter", Row - 1)).Trim()
                    StrExist = Convert.ToString(DBtable.GetValue("U_SupExist", Row - 1)).Trim()
                    If Row - 1 < DBtable.Rows.Count - 1 Or (Not (StrName.Equals(String.Empty) And StrUId.Equals(String.Empty) And (StrEnter.Equals(String.Empty) Or StrExist.Equals(String.Empty))) And (Row - 1 = DBtable.Rows.Count - 1)) Then
                        If (Not StrName.Equals(String.Empty)) And ((StrUId.Equals(String.Empty) Or StrEnter.Equals(String.Empty)) Or StrExist.Trim.Equals(String.Empty)) Then
                            SBO_Application1.StatusBar.SetText("Invalid values provided!Blank values not vllowed", SAPbouiCOM.BoMessageTime.bmt_Short, SAPbouiCOM.BoStatusBarMessageType.smt_Error)
                            BubbleEvent = False
                            Exit Sub
                        End If
                        For ii = Row To DBtable.Rows.Count - 1
                            If Convert.ToString(DBtable.GetValue("ColName", ii)).Trim().Equals(StrName.Trim()) Then
                                SBO_Application1.StatusBar.SetText("Invalid Allowance ID: Duplication Not Allowed", SAPbouiCOM.BoMessageTime.bmt_Short, SAPbouiCOM.BoStatusBarMessageType.smt_Error)
                                oForm.Mode = SAPbouiCOM.BoFormMode.fm_UPDATE_MODE
                                BubbleEvent = False
                                Exit Sub
                            End If
                        Next
                        If CDbl(StrName) < 0 Then
                            SBO_Application1.StatusBar.SetText("Invalid values provided!Blank values not vllowed", SAPbouiCOM.BoMessageTime.bmt_Short, SAPbouiCOM.BoStatusBarMessageType.smt_Error)
                            BubbleEvent = False
                            Exit Sub
                        End If
                    End If
                Next Row
            Catch ex As Exception
                SBO_Application1.MessageBox(ex.Message)
            End Try
        End Sub

    Hello there
    sir i want to Add Update and delete these three basic operation onto the Matrix, Sir u game me a Sample code of Delete a specific Column...
    Sir can u do me a favour pls leave every thing n just told me how to update a matrix ,like i have to fill the matrix field through the DATABASE table now i want to update the DataBase table from the matrix..
    i just only know thta i have to fill back database table with the help of FLUSHTODATABASE()
    here is my Sample Code...n i have to update in the validate portion...
    Public Sub HandleEventts_Allowance(ByVal FormUID As String, ByRef pVal As SAPbouiCOM.ItemEvent, ByRef EventEnum As SAPbouiCOM.BoEventTypes, ByRef BubbleEvent As Boolean)
            Try
                Dim oCellValue As SAPbouiCOM.EditText
                If FormUID.Equals("Allowance") Then
                    If (pVal.ItemUID = "MatAllow") Then
                        If pVal.Row = 0 Then Exit Sub
                        o_Matrix = SBO_Application1.Forms.Item(FormUID).Items.Item("MatAllow").Specific
                        If (pVal.Row > o_Matrix.RowCount) Then Exit Sub
                        oForm = SBO_Application1.Forms.Item(FormUID)
                        If (pVal.ItemUID = "1" Or EventEnum = SAPbouiCOM.BoEventTypes.et_CLICK) Then
                            o_Matrix = SBO_Application1.Forms.Item(FormUID).Items.Item("MatAllow").Specific
                            If pVal.ColUID = "ColName" And pVal.BeforeAction = True Then
                                If pVal.Row = 0 Then Exit Sub
                                oCellValue = CType(o_Matrix.Columns.Item(pVal.ColUID).Cells.Item(pVal.Row).Specific(), SAPbouiCOM.EditText)
                                If (oCellValue.Value.Trim().Equals(String.Empty) And o_Matrix.RowCount <> pVal.Row) Then
                                    SBO_Application1.StatusBar.SetText("Invalid Allowance ID: Blank Value Not Allowed", )
                                    oCellValue.Active = True
                                    BubbleEvent = False
                                    Exit Sub
                                End If
                            End If
                        End If
                    End If
                End If
                Validate(pVal, EventEnum, FormUID, BubbleEvent)
            Catch ex As Exception
                SBO_Application1.MessageBox(ex.Message)
            End Try
        End Sub
    Public Sub Validate(ByRef pval As SAPbouiCOM.ItemEvent, ByRef EventEnum As SAPbouiCOM.BoEventTypes, ByVal FormUID As String, ByRef BubbleEvent As Boolean)
            Dim str, str1 As String
            Dim checkbox1, Checkbox2 As SAPbouiCOM.CheckBox
            Dim o_Matrix As SAPbouiCOM.Matrix
            Dim Sum As Integer
            Dim oRecordset As SAPbobsCOM.Recordset
            Dim Container As Integer
            Dim Count As Int32
            o_Matrix = SBO_Application1.Forms.Item(FormUID).Items.Item("MatAllow").Specific
            oRecordset = o_CompanyObj.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
            Try
                For Count = 0 To DBtable.Rows.Count - 1
                    CodeFill = Convert.ToString(DBtable.GetValue("Name", Count).Trme())
                    NameID = Convert.ToString(DBtable.GetValue("ColUID", Count).Trim())
                    Price = Convert.ToString(DBtable.GetValue("ColPrice", Count).Trim())
                    Quantity = Convert.ToString(DBtable.GetValue("ColQuant", Count).Trim())
                    Total = Convert.ToString(DBtable.GetValue("ColTotal", Count).Trim())
                    checkbox1 = o_Matrix.Columns.Item("ColSEnter").Cells.Item(Count).Specific
                    Checkbox2 = o_Matrix.Columns.Item("ColSExist").Cells.Item(Count).Specific
                    If (checkbox1.Checked = True) And (Checkbox2.Checked = True) Then
                        Dim Sql As String
                        Sql = "Update [@Supplier] Set U_Price=' " & Price & " ',U_ID=" & NameID & "Where Name ='" & CodeFill & " '"
                        oRecordset.DoQuery(Sql)
                    End If
                Next Count
                SBO_Application1.MessageBox("Record was Updated")
            Catch ex As Exception
                SBO_Application1.MessageBox(ex.Message)
            End Try
        End Sub

  • After Export to Excel File error while opening using xmlwriter in silverlight

    Can one help me in fixing following issue after to export to excel had done iam getting following error message 
    "The file you are trying to open, 'test.xls', is in a different format than specified by the file extension. Verify that the file is not corrupted and is from a trusted source before opening the file. Do uou want to open the file now ?"
    If i click Yes file opens correctly but it shows above message . Can any one suggest me how to avoid this programatically with the following code.
    I tried by changing the file saving as  .xls to .xlsx  but it doesnt works.
    Public Sub Export()
    Dim ss As String = "urn:schemas-microsoft-com:office:spreadsheet"
    Dim DataType As String
    Dim DataValue As Object
    'Dim DataView As C1.Silverlight.Data.DataView = m_DataGrid.ItemsSource
    'Dim ItemsSource As C1.Silverlight.Data.DataTable = DataView.Table
    Dim XmlSettings As XmlWriterSettings
    Dim ColumnBinding As Binding
    Dim FieldName As String
    Dim DataGridColumn As C1.Silverlight.DataGrid.DataGridColumn
    Dim ColumnIndex As Integer
    Dim J As Integer
    Dim DataGridRow As C1.Silverlight.DataGrid.DataGridRow
    Dim CommonUtil As New GoldCRM.Core.Common.Util
    Dim PropertyInfo As System.Reflection.PropertyInfo
    Dim CellFormat As String
    Try
    If m_DataGrid.Rows.Count = 0 Then Exit Try
    XmlSettings = New XmlWriterSettings
    XmlSettings.Indent = True
    XmlSettings.NewLineOnAttributes = False
    Using myXML As XmlWriter = XmlWriter.Create(m_Stream, XmlSettings)
    With myXML
    .WriteStartDocument()
    .WriteProcessingInstruction("mso-application", "progid=" & ControlChars.Quote & "Excel.Sheet" & ControlChars.Quote)
    .WriteStartElement("Workbook", ss)
    .WriteStartElement("DocumentProperties", "urn:schemas-microsoft-com:office:office")
    .WriteElementString("Author", m_DocumentProperties.Author)
    .WriteElementString("LastAuthor", String.Format("{0} {1}", Application.Current.Resources("EmpFirstName"), Application.Current.Resources("EmpLastName")))
    .WriteElementString("Created", m_DocumentProperties.Created)
    .WriteElementString("LastSaved", m_DocumentProperties.LastSaved)
    .WriteElementString("Company", Application.Current.Resources("REPORTINGSITENAME"))
    .WriteElementString("Version", m_DocumentProperties.Version)
    .WriteEndElement() 'Document Properties
    .WriteStartElement("ExcelWorkbook", "urn:schemas-microsoft-com:office:excel")
    .WriteElementString("WindowHeight", m_WorkbookProperties.WindowHeight)
    .WriteElementString("WindowWidth", m_WorkbookProperties.WindowWidth)
    .WriteElementString("WindowTopX", m_WorkbookProperties.WindowTopX)
    .WriteElementString("WindowTopY", m_WorkbookProperties.WindowTopY)
    .WriteElementString("ProtectStructure", m_WorkbookProperties.ProtectStructure)
    .WriteElementString("ProtectWindows", m_WorkbookProperties.ProtectWindows)
    .WriteEndElement() 'Excel Workbook
    .WriteStartElement("Styles")
    For I As Integer = 0 To m_Styles.Count - 1
    .WriteStartElement("Style")
    .WriteAttributeString("ss", "ID", ss, m_Styles(I).ID)
    If m_Styles(I).Name <> "" Then
    .WriteAttributeString("ss", "Name", ss, m_Styles(I).Name)
    End If
    'ALIGNMENT LOGIC:
    .WriteStartElement("Alignment")
    If Not m_Styles(I).Alignment Is Nothing Then
    If m_Styles(I).Alignment.Horizontal <> 0 Then
    .WriteAttributeString("ss", "Horizontal", ss, m_Styles(I).Alignment.Horizontal.ToString)
    End If
    If m_Styles(I).Alignment.Vertical <> 0 Then
    .WriteAttributeString("ss", "Vertical", ss, m_Styles(I).Alignment.Vertical.ToString)
    End If
    If m_Styles(I).Alignment.WrapText = True Then
    .WriteAttributeString("ss", "WrapText", ss, "1")
    End If
    End If
    .WriteEndElement()
    'BORDER LOGIC:
    .WriteStartElement("Borders")
    .WriteStartElement("Border")
    .WriteAttributeString("ss", "Position", ss, "Bottom")
    .WriteAttributeString("ss", "LineStyle", ss, "Continuous")
    .WriteAttributeString("ss", "Weight", ss, "1")
    .WriteEndElement() 'Border
    .WriteStartElement("Border")
    .WriteAttributeString("ss", "Position", ss, "Left")
    .WriteAttributeString("ss", "LineStyle", ss, "Continuous")
    .WriteAttributeString("ss", "Weight", ss, "1")
    .WriteEndElement() 'Border
    .WriteStartElement("Border")
    .WriteAttributeString("ss", "Position", ss, "Right")
    .WriteAttributeString("ss", "LineStyle", ss, "Continuous")
    .WriteAttributeString("ss", "Weight", ss, "1")
    .WriteEndElement() 'Border
    .WriteStartElement("Border")
    .WriteAttributeString("ss", "Position", ss, "Top")
    .WriteAttributeString("ss", "LineStyle", ss, "Continuous")
    .WriteAttributeString("ss", "Weight", ss, "1")
    .WriteEndElement() 'Border
    .WriteEndElement() 'Borders
    'FONT LOGIC:
    .WriteStartElement("Font")
    Dim myFont As Excel.Styles.Font = m_Styles(I).Font
    .WriteAttributeString("ss", "FontName", ss, myFont.FontName.ToString)
    .WriteAttributeString("ss", "Size", ss, myFont.Size)
    .WriteAttributeString("ss", "Color", ss, myFont.Color.ToString.Remove(1, 2))
    If myFont.Bold = True Then .WriteAttributeString("ss", "Bold", ss, "1")
    If myFont.Italic = True Then .WriteAttributeString("ss", "Italic", ss, "1")
    If myFont.Underline <> 0 Then .WriteAttributeString("ss", "Underline", ss, myFont.Underline.ToString)
    .WriteEndElement()
    Dim myInterior As Excel.Styles.Interior = m_Styles(I).Interior
    .WriteStartElement("Interior")
    .WriteAttributeString("ss", "Color", ss, myInterior.Color.ToString.Remove(1, 2))
    .WriteAttributeString("ss", "Pattern", ss, "Solid")
    .WriteEndElement()
    .WriteStartElement("NumberFormat")
    .WriteEndElement()
    .WriteStartElement("Protection")
    .WriteEndElement()
    .WriteEndElement() 'Style
    Next I
    .WriteStartElement("Style")
    .WriteAttributeString("ss", "ID", ss, "DateStyle")
    .WriteStartElement("NumberFormat")
    .WriteAttributeString("ss", "Format", ss, "General Date")
    .WriteEndElement() 'NumberFormat
    .WriteEndElement() 'Style
    .WriteStartElement("Style")
    .WriteAttributeString("ss", "ID", ss, "HeaderStyle")
    .WriteStartElement("Font")
    .WriteAttributeString("x", "Family", ss, "Swiss")
    .WriteAttributeString("ss", "Bold", ss, "1")
    .WriteEndElement() 'Font
    .WriteEndElement() 'Style
    .WriteEndElement() 'Styles
    'WORKSHEETS:
    .WriteStartElement("Worksheet")
    .WriteAttributeString("ss", "Name", ss, "WORKSHEET")
    .WriteStartElement("Table")
    .WriteAttributeString("ss", "ExpandedColumnCount", ss, m_DataGrid.Columns.Count)
    .WriteAttributeString("ss", "ExpandedRowCount", ss, m_DataGrid.Rows.Count + 100) 'Temporary fix: sometimes 1 row is not added.
    .WriteAttributeString("ss", "FullColumns", ss, m_DataGrid.Columns.Count)
    .WriteAttributeString("ss", "FullRows", ss, m_DataGrid.Rows.Count + 100) 'Temporary fix: sometimes 1 row is not added.
    .WriteAttributeString("ss", "DefaultRowHeight", ss, 15)
    For Each DataGridColumn In m_DataGrid.Columns
    If DataGridColumn.Visibility = Visibility.Visible Then
    .WriteStartElement("Column")
    If TypeOf DataGridColumn Is C1.Silverlight.DataGrid.DataGridNumericColumn Then
    .WriteAttributeString("ss", "AutoFitWidth", ss, 1)
    ElseIf TypeOf DataGridColumn Is C1.Silverlight.DataGrid.DataGridDateTimeColumn Then
    .WriteAttributeString("ss", "AutoFitWidth", ss, 1)
    Else
    .WriteAttributeString("ss", "AutoFitWidth", ss, 0)
    End If
    If DataGridColumn.Width.Value <= 100 Then
    .WriteAttributeString("ss", "Width", ss, 100)
    Else
    .WriteAttributeString("ss", "Width", ss, DataGridColumn.Width.Value)
    End If
    .WriteEndElement()
    End If
    Next
    J = 0
    For Each DataGridRow In m_DataGrid.Rows
    J += 1
    If TypeOf DataGridRow Is GoldCRM.Controls.Filter.clsFilterRow Then
    .WriteStartElement("Row")
    .WriteAttributeString("ss", "Index", ss, J)
    .WriteAttributeString("ss", "AutoFitHeight", ss, 0)
    .WriteAttributeString("ss", "Height", ss, 15)
    ColumnIndex = 0
    For Each DataGridColumn In m_DataGrid.Columns
    If DataGridColumn.Visibility = Visibility.Visible Then
    FieldName = String.Empty
    If TypeOf DataGridColumn Is DataGridBoundColumn Then
    ColumnBinding = TryCast(DataGridColumn, DataGridBoundColumn).Binding
    If ColumnBinding.Path IsNot Nothing Then
    FieldName = ColumnBinding.Path.Path
    End If
    ElseIf TypeOf DataGridColumn Is DataGridTemplateColumn Then
    If DataGridColumn.FilterMemberPath IsNot Nothing Then
    FieldName = DataGridColumn.FilterMemberPath.Trim
    End If
    End If
    If Not FieldName.Equals(String.Empty) Then
    ColumnIndex += 1
    .WriteStartElement("Cell")
    .WriteAttributeString("ss", "Index", ss, ColumnIndex)
    .WriteAttributeString("ss", "MergeAcross", ss, 0)
    .WriteAttributeString("ss", "StyleID", ss, "HeaderStyle")
    .WriteStartElement("Data")
    .WriteAttributeString("ss", "Type", ss, "String")
    If DataGridColumn.Header IsNot Nothing Then
    .WriteValue(DataGridColumn.Header.ToString)
    Else
    .WriteValue("")
    End If
    .WriteEndElement() 'Data
    .WriteEndElement() 'Cell
    End If
    End If
    Next
    .WriteEndElement() 'Row
    End If
    If Not (TypeOf DataGridRow Is GoldCRM.Controls.Filter.clsFilterRow) Then
    .WriteStartElement("Row")
    .WriteAttributeString("ss", "Index", ss, J + 1)
    .WriteAttributeString("ss", "AutoFitHeight", ss, 0)
    .WriteAttributeString("ss", "Height", ss, 15)
    ColumnIndex = 0
    For Each DataGridColumn In m_DataGrid.Columns
    If DataGridColumn.Visibility = Visibility.Visible Then
    FieldName = String.Empty
    If TypeOf DataGridColumn Is DataGridBoundColumn Then
    ColumnBinding = TryCast(DataGridColumn, DataGridBoundColumn).Binding
    If ColumnBinding.Path IsNot Nothing Then
    FieldName = ColumnBinding.Path.Path
    End If
    ElseIf TypeOf DataGridColumn Is DataGridTemplateColumn Then
    If DataGridColumn.FilterMemberPath IsNot Nothing Then
    FieldName = DataGridColumn.FilterMemberPath.Trim
    End If
    End If
    If Not FieldName.Equals(String.Empty) Then
    ColumnIndex += 1
    Dim DataCellValue As Object = Nothing
    If Not (TypeOf DataGridRow Is GoldCRM.Controls.Filter.clsFilterRow) Then
    PropertyInfo = CommonUtil.GetProperty(DataGridRow.DataItem, FieldName)
    If PropertyInfo IsNot Nothing Then
    DataCellValue = PropertyInfo.GetValue(DataGridRow.DataItem, Nothing)
    End If
    End If
    CellFormat = String.Empty
    If DataCellValue IsNot Nothing Then
    Select Case DataCellValue.GetType.Name.ToUpper
    Case "BitmapImage".ToUpper
    DataValue = "Image"
    DataType = "String"
    Case "Hyperlink".ToUpper
    DataType = "String"
    DataValue = "Hyperlink"
    Case "Decimal".ToUpper
    DataType = "Number"
    DataValue = DataCellValue
    Case "DateTime".ToUpper
    If CType(DataCellValue, Date).Year > 1900 Then
    DataType = "DateTime"
    DataValue = DataCellValue
    CellFormat = "DateStyle"
    Else
    DataType = "String"
    DataValue = DataCellValue
    End If
    Case Else
    DataType = "String"
    DataValue = DataCellValue
    End Select
    Else
    DataType = "String"
    DataValue = String.Empty
    End If
    .WriteStartElement("Cell")
    .WriteAttributeString("ss", "Index", ss, ColumnIndex)
    .WriteAttributeString("ss", "MergeAcross", ss, 0)
    If Not CellFormat.Equals(String.Empty) Then
    .WriteAttributeString("ss", "StyleID", ss, CellFormat)
    End If
    .WriteStartElement("Data")
    .WriteAttributeString("ss", "Type", ss, DataType)
    .WriteValue(DataValue)
    .WriteEndElement() 'Data
    .WriteEndElement() 'Cell
    End If
    End If
    Next
    .WriteEndElement() 'Row
    End If
    Next
    .WriteEndElement() 'Table
    .WriteEndElement() 'Worksheet
    .WriteEndElement() 'Workbook
    .WriteEndDocument()
    .Close()
    End With
    End Using
    Catch ex As Exception
    Throw New Exception(ex.Message, ex)
    Finally
    If m_Stream IsNot Nothing Then
    m_Stream.Close()
    m_Stream.Dispose()
    End If
    m_Stream = Nothing
    m_DataGrid.IsLoading = False
    DataValue = Nothing
    'DataView = Nothing
    'ItemsSource = Nothing
    XmlSettings = Nothing
    ColumnBinding = Nothing
    DataGridColumn = Nothing
    End Try
    End Sub
    Krishna

    Hi,
    i have the same issue now where i need to populate the xport file name as report name. can you send me your solution please.

  • Assigning free goods in a purchase order.

    Hi,
    I have to generate a report which will display the purchase order no for each condition record created in mbn1, and for each purchase order no it has to fetch the free goods assigned, eligible and remaining.
    i have created a condition record for a vendor, with the following particulars,
    if the vendor e.g ven1 purchases material e.g mat1
    min qty = 100
    free goods qty = 10
    add. free goods = 2
    calculation method is prorated
    and the type is Inclusive.
    But when i try to create a purchase order for that vendor ven1 for 200 qty of mat1, the gross price being calculated is for 200 qty, but it should be calculated for the quantity excluding the free goods qty.
    What might be the reason, do i have to do any configuration in SPRO, if so guide me with the steps or can you help me in solving this problem

    Hi,
       I have maintained the condition record because i have checked the enry in the table KOTN001.
       i have also maintained the settings for discount in kind as follows.
    1. MAINTAIN DISCOUNT IN KIND DEPENDENCIES
         I) Field Catalog.
            BSTME,
            EKORG,
            EKOKZ
            LIFNR,
            MATNR
            WERKS
         ii). Display Free Goods
              Table no 001 which has all the above mentioned fields.
    2. DEFINE ACCESS SEQUENCE AND DISCOUNT-IN-KIND TYPES.
        i) Maintain Access Sequence
           Ac.sq     DESC
           NR00     Free Goods
          Accesses Ac Tab  Desc                                          REQ
                          10    1    Info Record: Plant-specific           1
                                                                 per order unit
                           20    2    Info record per order unit
         Access 10's Fields.
         Fields Condition I/O Doc.str  Doc.field Long field Label
                    BSTME,    I       KOMP   SAME
                    EKORG,    I       KOMK    AS
                    EKOKZ     I       KOMP   CONDITION
                    LIFNR,      I       KOMK
                   MATNR      I       KOMP
                   WERKS      I       KOMP
                   Source of constant Init
                should i specify any values for source of constant and select the check box init, if so why?
        Access 20's Fields.
       same as 10 except the field werks, which is not included in the condition.
    ii) Define free goods type.
        ctyp   name              ac.sq               validfrom     validto
        NR00   Free Goods     NR00                2 (First       2(End of
                                                                day of the   the current
                                                                    month)          year)
    3.DEFINE AND ASSIGN DISCOUNT-IN-KIND SCHEMA
       i) Maintain Free Goods Schema
           Procedures
            Usage N
           Application M
            Procedure   Desc
            NR0001       Free goods ( purchasing )
           Control Data
            Step  Cntr Ctyp Description  Requirement
              10    0      NR00 Free goods     1
       ii) Determine Free Goods Schema
           Gr        Gr               Schema
           0001 Standard order NR0001
           0001 Retail vendor   NR0001
    Are the configuration which i have done is perfect for my scenario, if not, please can you help me in proceeding further.
    Thank You.

  • BW Upgrade Tool

    Hi All,
    We are developing a BW Upgrade Tool. A part of which gives information about System Landscape that may be useful before or after upgrade for a Basis Consultant. Following information is obtained as a output of the tool. So could you please glance through it & tell me is this information is relevent and what more should be there?
    As I'm a BW consultant I have very little knowlege of Basis.
    System status overview 
      SAP version          640
      operating system     Windows NT
      machine type         2x Intel 801586 (Mod 2 Step 7)
      node name            SAPBL5
      SAP system id        560
      database system      ORACLE
      database name        BL5
      database host        SAPBL5
      database owner       SAPBL5
      rsyn
      IP address           172.25.8.121
      kernel release       640
      database library     OCI_920_SHARE
      kernel compiled      NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10 Aug 21 2005 23
      kernel patch level   87
      supported SAP vers.  610, 620, 630, 640
      supported database   ORACLE 8.1.7.., ORACLE 9.2.0.., ORACLE 10.1.0..
      valid OP system      Windows NT 5.0, Windows NT 5.1, Windows NT 5.2
      OP system release    5.0
      ABAP load version    1521
      CUA load version     15
      kernel kind          opt
      relinfo              valid
      hot package level    13                                                         
    Oracle 
      Oracle9i Enterprise Edition Release 9.2.0.6.0 - Production
      PL/SQL Release 9.2.0.6.0 - Production
      CORE     9.2.0.6.0     Production
      TNS for 32-bit Windows: Version 9.2.0.6.0 - Production
      NLSRTL Version 9.2.0.6.0 - Production
      disp+work information
      kernel release                640
      kernel make variant           640_REL
      DBMS client library           OCI_920_SHARE
      DBSL shared library version   640.00
      compiled on                   NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10
      compilation mode              Non-Unicode
      compile time                  Aug 21 2005 23:40:31
      update level                  0
      patch number                  87
      source id                     0.087
      supported environment
      database (SAP, table SVERS)   610
                                    620
                                    630
                                    640
      DBMS server
         ORACLE 8.1.7..
         ORACLE 9.2.0..
         ORACLE 10.1.0..
      operating system
      Windows NT 5.0
      Windows NT 5.1
      Windows NT 5.2
      disp+work patch information
      ( 0.001) Strings in Inputfields cut off (note 676835)
      ( 0.001) Block insert not stable (note 699411)
      ( 0.001) Sending the SAP logon ticket to SAPJ2EE server (note 691253)
      ( 0.001) TPDA: Exclusive DBG Session Fix (note 698737)
      ( 0.001) SNC-enabled RFC connections (type 3) to unicode systems (note 695205)
      ( 0.001) Loop where with move of C field to N field (note 699528)
      ( 0.001) Multiple instances of same subscreen and f4 ocx (note 698564)
      ( 0.001) ABAP Unit: Support for calling private fixture methods (note 690059)
      ( 0.001) Bidi printing patch collection (note 353987)
      ( 0.001) Problems while debugging a dynpro (flow logic) (note 689633)
      ( 0.001) Sending the SAP logon ticket to SAPJ2EE server (note 691253)
      ( 0.001) SQL Trace: fix error in program name filter (note 697685)
      ( 0.001) Dynamic Invoke Class Constants Defaults (note 701926)
      ( 0.001) Empty title + varying line size (note 671796)
      ( 0.001) RTM/AAB logging inside HTTP request (note 687116)
      ( 0.001) Assertions/BPs: core during RFC (note 700868)
      ( 0.001) ITS ToolBar: toggle button state, get icon name (note 673134)
      ( 0.001) Implicit default table parameters (note 700146)
      ( 0.001) Ignore HTTP-server requests during ITS-processing (note 700871)
      ( 0.001) Kernel Methods: signature of c-macros changed (note 703161)
      ( 0.001) Dynamic Invoke Abstract Inherited Implemented (note 703413)
      ( 0.002) CST patch collection 50 2003 (note 687395)
      ( 0.002) TPDA: patch collection (note 703735)
      ( 0.002) LOOP ... WHERE memory leak (note 703397)
      ( 0.002) RUNT_ILLEGAL_SWITCH during garbage collection (note 702442)
      ( 0.002) Some errors in the debugger with special fieldnames (note 704384)
      ( 0.002) CALL TRANSFORMATION exceptions (note 701467)
      ( 0.002) HTML Escaping of ICF error documents (note 626073)
      ( 0.002) HTTP/External Debugging for RFC (III) (note 668256)
      ( 0.002) JavaScript: enhance roll ability in double hash code (note 703026)
      ( 0.002) Do not enter memcpyRChk during Cache reorg. (note 447519)
      ( 0.002) Dynamic types: get_components hat non unqiue ids (note 703020)
      ( 0.002) ST: initialize result STRING (note 703615)
      ( 0.002) Open SQL: joining tables w/ and w/o client (note 703710)
      ( 0.002) Output error by WRITE (*) using conversion exits (note 677893)
      ( 0.002) Avoid invocation of garbage collector in certain cases (note 704554)
      ( 0.002) ST: Load Size (note 705269)
      ( 0.002) Allocation strategy in ABAP shared objects (note 705956)
      ( 0.003) Correction of design error in Secure Storage (note 702647)
      ( 0.003) Unjustified syntax error when SETUP, TEARDOWN (note 705308)
      ( 0.003) Incoming UTF-8 RFC use UTF-8, not non-Unicode (note 647495)
      ( 0.003) ICU shared libraries upgrade (note 519753)
      ( 0.003) Sapdext: prevent loop of rabax DYNPRO_SAPDEXT_LOOP (note 703374)
      ( 0.003) Oracle multibyte codepage: Incorrect LIKE evaluation (note 695899)
      ( 0.003) Downward compatibility of table statistics (note 707005)
      ( 0.004) Correctly adapt occu of RTTI tables (note 707619)
      ( 0.004) AAB: truncated subkey values (note 708269)
      ( 0.004) Dbbuf: avoid deadlocks in export/import buffer (note 496511)
      ( 0.004) ST: no deserialization map (note 708597)
      ( 0.004) ITS TextEdit: selection functions improved (note 669904)
      ( 0.004) ITS TextEdit: new textstream interface (note 695802)
      ( 0.005) Memory in tmpfs is not released correctly (note 706071)
      ( 0.005) CST patch collection 09 2004 (note 708621)
      ( 0.005) CCMS: agent cannot monitor standalone enqueue server (note 694057)
      ( 0.005) Wrong Fido entries (note 708789)
      ( 0.005) ST: Apply in Loop (note 710150)
      ( 0.005) ST: xml header (note 708787)
      ( 0.005) UTF-8 writer; default namespace; lang(); external options (note 709649)
      ( 0.005) IMPORT: lang key handling (note 512518)
      ( 0.005) HashTab SHO-Read MoveToFront-Heuristik (note 707891)
      ( 0.005) Avoid shortdump DEBUGGER_ILLEGAL_VALUE in abDbgDisVar (note 708356)
      ( 0.005) Making RFC calls with an empty password (note 662390)
      ( 0.005) SYSTEM_CORE_DUMPED in addIDENT (gen/scsymbc.c) (note 685625)
      ( 0.005) SHO: cloning of objects, rehash at detach (note 708843)
      ( 0.006) Print control buffer overflow (note 707500)
      ( 0.006) InitStor:  missing free (note 707929)
      ( 0.006) Free_Area/Instance (note 709558)
      ( 0.006) Shared Objects core at table update (note 712739)
      ( 0.006) BOM / XmlDecl bug (note 592857)
      ( 0.006) Max shared string size (note 592857)
      ( 0.006) Default values of exp/imp function parameters (note 712280)
      ( 0.006) RTM bugfix in get_classname (note 711420)
      ( 0.006) SM51: Allow more than 1000 patch textes altogether (note 712811)
      ( 0.006) C-Call AB_GET_COUNTRY (note 685207)
      ( 0.006) TPDA: Avoid duplicate breakpoints (note 713456)
      ( 0.006) Too many frame characters (note 671796)
      ( 0.006) Check type load time stamp (note 713492)
      ( 0.006) Prevent two short dumps in one second (note 711982)
      ( 0.006) Default values of exp/imp function parameters (2) (note 712280)
      ( 0.007) Default values of exp/imp function parameters (3) (note 712280)
      ( 0.007) RFC Patch Collection  11.2004 (note 715274)
      ( 0.007) ST: Apply in Loop, Variables (note 710150)
      ( 0.007) ST: XML Position in Exception (note 715879)
      ( 0.007) Two Phase Pbag Search (note 713493)
      ( 0.007) LOAD_PROGRAM_CLASS_MISMATCH (note 716456)
      ( 0.007) Syntax error with VERI STRUCTINFO (note 716353)
      ( 0.007) XSLT Core by interface methods (note 709857)
      ( 0.007) Clean prev user after wp restart (note 715877)
      ( 0.007) Debugging rfc after server cleanup (note 715881)
      ( 0.007) CST patch collection 12 2004 (note 716915)
      ( 0.007) CLUSTD converter (deep) / EXPORT (SAP_UINT) (note 612359)
      ( 0.007) Core dump in LOAD_PROGRAM_CLASS_MISMATCH correction (note 716456)
      ( 0.007) SYSTEM_CORE_DUMPED at ATTACH / DETACH (note 718666)
      ( 0.008) SLIN: 640 AKK problem with SYNT_EXT_INFO (note 717012)
      ( 0.008) Error in ab_HshSetDelete (note 719413)
      ( 0.008) AKK violation: Newly appearing syntax error (note 719142)
      ( 0.008) SYSTEM_CORE_DUMPED in sc_program_env (gen/scsymbc.c) (note 719139)
      ( 0.008) Fix charref parsing (note 592857)
      ( 0.008) ALEWEBDOWNLOAD in Unicode systems (note 676835)
      ( 0.008) Support the displaying of  XML Docs in the ITS (note 717380)
      ( 0.008) Open SQL: missing syntax error message texts (note 710454)
      ( 0.008) HTTPS proxy authentication in ICF (note 717995)
      ( 0.008) Diag protocol: multiple codepages (note 621992)
      ( 0.008) Codepage conversion for PDF based jobs (note 719630)
      ( 0.008) Missing dynamic Texts in GUI-Status (note 717870)
      ( 0.008) READ DATASET: Suppress conversion exception if requested (note 709832)
      ( 0.008) Userswitch Inbound-/Outbound-Scheduler (note 212742)
      ( 0.008) CCMS Monitoring Patch Collection 2004/2 (note 694057)
      ( 0.008) SCANNER_MISSING_MESSAGE (note 719396)
      ( 0.008) Unicode: Core Dump in build_initrec, Modul dbntab (note 717717)
      ( 0.008) Snc/accept_insecure_rfc=U for system-to-system calls (note 713495)
      ( 0.009) Error in ab_HshSetDelete (II) (note 719413)
      ( 0.011) Error in ab_HshSetDelete (III) (note 719413)
      ( 0.011) Scroll BCALV_TEST_LIST -> scrolls correctly (note 721384)
      ( 0.011) Userswitch Inbound-/Outbound-Scheduler (note 716263)
      ( 0.011) ST: exception information; littleEndian; tables (note 715879)
      ( 0.011) ST: exception information; littleEndian; tables (note 720364)
      ( 0.011) Exceptions in CALL SCREEN (note 720908)
      ( 0.011) TPDA: prepare fix for dynp debugging (note 719967)
      ( 0.011) RSQL: Correction for MODIFY DBTAB FROM ITAB (note 716037)
      ( 0.011) Enhancements for ITS (note 720738)
      ( 0.011) Avoid short dump LOAD_NOT_FOUND_AFTER_GEN (old timestamp) (note 615022)
      ( 0.011) Display data references in the ABAP debugger (note 721223)
      ( 0.011) remove semaphore families and reorganize all ip__libs (note 721885)
      ( 0.012) Statistics: wrong data in rfc client destination records (note 724253)
      ( 0.012) Wrong length in copy operation in func check_usobt() (note 724528)
      ( 0.012) CST patch collection 15 2004 (note 723952)
      ( 0.012) Invalid Method Call Syntax (note 722346)
      ( 0.012) Invalid Warnung For Class Type (note 722347)
      ( 0.012) Update Memory Inspector (note 684660)
      ( 0.013) Wrong length in copy operation in func check_usobt() (note 724528)
      ( 0.013) Shared Objects: data references and detach (note 722884)
      ( 0.013) Selecting a context menu entry cause session hang up (note 713598)
      ( 0.013) MOVE_TO_LIT_NOTALLOWED with READ ... TRANSPORTING (note 722778)
      ( 0.013) Fix for searchhelp showing only one result value (note 697295)
      ( 0.013) Using keys in dropdown listboxes if no value is supplied (note 717871)
      ( 0.013) ITSP: Hitlist in Unicode systems (note 676835)
      ( 0.013) ShmFreeRemoveInactiveLocks with 2 locks (note 709558)
      ( 0.013) Shared Objects - itab line reference after detach (note 721190)
      ( 0.013) HTTPS proxy authentication in ICF (II) (note 717995)
      ( 0.013) Code pages, languages and locales, packet 37 + 38 (note 447519)
      ( 0.013) Code pages, languages and locales, packet 37 + 38 (note 722638)
      ( 0.013) Ixml_stl / runt / tidy (note 592857)
      ( 0.013) Empty dynprolist does not cancel control rendering any more (note 718292)
      ( 0.013) Enhancements for ITS (note 720738)
      ( 0.013) No debug after Dynp RABAX (note 721693)
      ( 0.013) Multiple instances of same subscreen and f4 ocx (2) (note 698564)
      ( 0.014) ITS640, supporting sap-accessibility (note 676835)
      ( 0.014) XSLT: Unicode in XPath Expressions (note 613113)
      ( 0.014) Search help and focus (note 728722)
      ( 0.014) Ab_PrepareStrh with lenght 0 return not NULL (note 729435)
      ( 0.014) ITS640, Response Container removed (note 676835)
      ( 0.014) Missing print controls (note 707500)
      ( 0.014) Support of ISO Latin-1 characters for certificates (note 723016)
      ( 0.014) EVENT parameter: LIKE, TYPE LINE OF not evaluated (note 724406)
      ( 0.014) MINCHAR, MAXCHAR wrong value (note 724304)
      ( 0.014) ITS640, supporting ~http_https on/off (note 676835)
      ( 0.014) ITS640, takeover logoff/exiturl (note 676835)
      ( 0.014) C-call for printing the cover page (note 720409)
      ( 0.014) Disabling ITS disables the 'Compiling...' progress indicator (note 725617)
      ( 0.014) Grid-View dump, Alewebdownload (note 676835)
      ( 0.014) Trfo Rabax Handling corrected (note 729202)
      ( 0.014) Code pages patch packet 39 (note 447519)
      ( 0.014) Memory allocation for strings reduced (note 721876)
      ( 0.014) READ ... BINARY for SORTED TABLE with attribute key (note 725720)
      ( 0.014) Bidi printing: Corrected rightadjustment of numbers (note 618988)
      ( 0.014) ITS640,takeover command logoff/endofsession SSO (note 676835)
      ( 0.014) CX_SHM_INCONSISTENT; CL_SHM_UTILITIES (note 727142)
      ( 0.014) Prevent 0x00 in database table SNAP (note 722444)
      ( 0.014) Error if print immediately for PDF based forms (note 727914)
      ( 0.015) Correct lookup on password history (note 732038)
      ( 0.015) CCMS Monitoring Patch Collection 2004/2 (note 694057)
      ( 0.015) Core in syntax check (offset length w/ interface comp.) (note 732367)
      ( 0.015) CST patch collection 18 2004 (note 730345)
      ( 0.015) Invalid sapgui codepage (note 700448)
      ( 0.015) NO_PDF flag for ADS spool jobs (note 685576)
      ( 0.015) FxReader set_error (note 722030)
      ( 0.015) Incorrect display of list search results in RTL mode (note 729558)
      ( 0.015) Support of ISO Latin-1 characters for certificates (note 723016)
      ( 0.016) CREATE for key table with default key (note 732922)
      ( 0.016) Rebuild rspoicon.c in krn/rspo (note 724736)
      ( 0.016) Tablesharing fault in MOVE-CORRESPONDING (note 732958)
      ( 0.016) Core at INSERT into table after SORT (note 733079)
      ( 0.016) Supporting ICF-Options for ITS (note 727137)
      ( 0.016) Cl_fx_reader update (note 722030)
      ( 0.016) ITS-Plugin 640: known problems (note 676835)
      ( 0.016) Enable ticket creation for ITS WebGUI/IAC (note 720738)
      ( 0.016) Invisible focus element (note 734746)
      ( 0.016) RFC legacy MDMP callers and Unicode callees (note 722193)
      ( 0.016) Redundant moves in itab operations (note 726657)
      ( 0.016) Attach_for_update returns shared lock (note 733184)
      ( 0.016) Application server hangs on Windows 2003 waiting for semaphore (note 724212)
      ( 0.016) ITS-Plugin 640: known bugs (note 676835)
      ( 0.016) 'CLASS ... FOR TESTING + INTERFACES' (note 722346)
      ( 0.016) Avoid SYSLOG message 'PXA recovery after reboot' (note 689497)
      ( 0.017) ST: alignment for variable-read (note 735543)
      ( 0.017) IMPORT: alignment handling for old exports (note 734897)
      ( 0.017) NT: sapstartsrv prozess auto restart feature (note 729945)
      ( 0.017) IMPORT: error with ignoring structure boundaries (note 737044)
      ( 0.017) Open SQL : Allow more than eight hints (note 735360)
      ( 0.017) Event SAP_SYSTEM_START with parameters (note 681516)
      ( 0.017) Sapgui 640 and tablecontrol column selections (note 735695)
      ( 0.017) Diag trace: unknown entries (note 736592)
      ( 0.017) Debugger: Auth. problems while saving table to local file (note 729616)
      ( 0.017) RFC Patch Collection 18 2004 (note 732744)
      ( 0.017) ABAP Shared Objects: Coredump at ATTACH WRITE (note 733969)
      ( 0.017) TIME_OUT oder Coredump in C-Funktion ab_ScanBase (note 733971)
      ( 0.017) ST: variables, iXML objects (note 737174)
      ( 0.017) destroyed dynpro load (note 207817)
      ( 0.017) Japanese characters were scrambled (note 736835)
      ( 0.017) XI-Editor (note 676835)
      ( 0.017) ITS-Plugin 640: known bugs (note 676835)
      ( 0.017) Correction in session management within function (note 676835)
      ( 0.017) SCAN STRUCTURE: GROUP BY in sub query (note 363992)
      ( 0.017) Segmentation Violation in db_ntab (Makro CHECK_ACC) (note 736340)
      ( 0.018) CREATE_DATA_UNKNOWN_TYPE during XML-ABAP deserialization (note 739134)
      ( 0.018) RUNT_INTERNAL_ERROR during XML-ABAP object (note 739233)
      ( 0.018) ST: deserialization with tt:copy (note 739825)
      ( 0.018) Dynpro Compress: CONTAINER_IGNORE for Table Control set (note 738808)
      ( 0.018) Code pages, languages and locales, packet 40 + 41 (note 447519)
      ( 0.018) RFC Patch Collection 18 2004 (note 732744)
      ( 0.018) Invalid sapgui codepage (note 700448)
      ( 0.018) ERROR trace: invalid value hacurrow hwcurrow (note 651566)
      ( 0.018) IMPORT: AS400 alignment handling (note 739164)
      ( 0.018) Forward POST parameter from ITS frameset (note 737798)
      ( 0.018) Code pages patch packet 42 (note 447519)
      ( 0.018) JavaScript linux64 correct INT_FITS_IN_JSVAL (note 740973)
      ( 0.018) CST patch collection 22 2004 (note 741110)
      ( 0.018) Login/password_charset, codeversion 'D' (note 735356)
      ( 0.019) Ixml shared memory corrections (note 592857)
      ( 0.019) CCMS Agent Patch Collection 2004/3 (note 694057)
      ( 0.019) ST: ignore irrelevant whitespace (note 742507)
      ( 0.019) Code pages patch packet 40 (NT) (note 447519)
      ( 0.020) NT: Optional sequential GUID generation (note 740418)
      ( 0.020) GUI_PATCHLEVEL for app server (note 591681)
      ( 0.020) List Tree, Hyperlinks (note 742066)
      ( 0.020) List Tree, Hyperlinks (note 742066)
      ( 0.020) New HTML(B) strEnc function (note 739619)
      ( 0.020) CST patch collection 25 2004 (note 744711)
      ( 0.021) Prepare for DBPROPERTIES (pack 44) (note 447519)
      ( 0.021) Missing wrapper object of class CX_SY_NO_HANDLER (note 745804)
      ( 0.021) XML-ABAP, SAP_BASIS 610: component names with namespaces (note 745935)
      ( 0.021) Possible Core after MESSAGE string TYPE 'X' (note 746144)
      ( 0.021) XSLT: Computation of xsl:sort attributes (note 746146)
      ( 0.021) SE30: Missing trace file after measurement (note 740184)
      ( 0.021) Wrong free of memory (note 745745)
      ( 0.021) NT: sapstartsrv fix for prozess auto restart feature (note 729945)
      ( 0.021) F1 on pushbuttons (note 744822)
      ( 0.021) ICF: Shortened Session-IDs in Developer-Traces (note 745722)
      ( 0.021) CALL TRANSFORMATION Option VALUE_HANDLING (note 727549)
      ( 0.021) CST patch collection 26 2004 (note 746373)
      ( 0.021) Invalid sapgui codepage (note 700448)
      ( 0.022) Alignment checks for packed numbers (note 747695)
      ( 0.022) Illegal dynpro state after RABAX (note 747694)
      ( 0.022) AsXML: suppress static interface attributes (note 747155)
      ( 0.022) Accept Dynpro Sourceversion 37 (note 743155)
      ( 0.022) ITS Plugin 640, known problems, item 23) security, buffer overwrite (note 676835)
      ( 0.022) Screens with GOS Containers (note 747140)
      ( 0.022) Empty search help dialogs (note 747270)
      ( 0.022) Too many SPOOL* files in global directory (note 749860)
      ( 0.022) New GUID and TID algorithm (note 650280)
      ( 0.022) Code pages patch packet 43 (note 447519) (note 447519)
      ( 0.022) Fixed a tight loop in julep, calling a function with an extra (note 747700)
      ( 0.022) ERROR trace: invalid value hacurrow hwcurrow (note 651566)
      ( 0.023) LZPL OTF driver (note 750002)
      ( 0.023) Correct 132-char limitation (note 750363)
      ( 0.023) RFC: additional returncode-check for ThSendToGui (note 685609)
      ( 0.023) TABLE_LINE_NOT_EXISTING at loop on a HASHED TABLE (note 750042)
      ( 0.023) INSERT of a loop reference into a hashed table (note 749075)
      ( 0.023) Semantics of the SUM statement (note 742683)
      ( 0.023) Diag enhancements for acc support (note 750543)
      ( 0.023) ITS-Plugin 640: Known problems (note 676835)
      ( 0.024) Error in step movenametab (note 745745)
      ( 0.025) HTTP debugging: Save memory ranking to local file (note 752659)
      ( 0.025) Avoid unnecessary calls to semaphore 49 (note 752473)
      ( 0.025) Buffer overflow in OMS command buffer (note 752977)
      ( 0.025) Correct handling of empty strings (note 740987)
      ( 0.027) Open SQL : Allow more than 8 hints in SELECT (note 754728)
      ( 0.027) Full path name to 255 char for temse (note 749150)
      ( 0.027) NT: Fix for occasional 'Service not started' error during Service inst (note 142100)
      ( 0.027) Diag trace: unknown entries (note 736592)
      ( 0.027) CST patch collection 28 2004 (note 751484)
      ( 0.027) Image does not fit (note 676835)
      ( 0.027) Strings and dynpro char fields (note 618120)
      ( 0.027) Core in ab_CxTableViewColOrder (note 751754)
      ( 0.027) ITS HTML Control: protocol not added if missing (note 747962)
      ( 0.027) Ixml stlport memory hole (note 545335)
      ( 0.027) CST patch collection 30 2004 (note 755912)
      ( 0.027) Wrong output of japanese characters II (note 670069)
      ( 0.027) Empty spool list for NEW-PAGE PRINT OFF (note 750153)
      ( 0.027) ABAP List Structure Recognition (1) (note 751494)
      ( 0.027) SHO: Area-constructor at INVALIDATE, setting area-properties (note 751882)
      ( 0.028) SYSTEM_RUDI_INVALID at CREATE OBJECT o TYPE (t) (note 757122)
      ( 0.028) Wrong syntax error at INTERFACES (note 757284)
      ( 0.028) ABAP List Structure Recognition (2) (note 751494)
      ( 0.029) Missing PUBLIC addition of CLASS (note 759104)
      ( 0.029) Open SQL: problem with extended portability check (note 758763)
      ( 0.029) SYSTEM_CORE_DUMPED in ABAP generation for type aliases (note 759109)
      ( 0.029) Codepage Conversion: New flag for Bidi support (note 716200)
      ( 0.029) ITS up/download: upload of files to unicode R/3 incorrect (note 758362)
      ( 0.029) Fixed multiple HtmlPPs bug for resourceless services (note 759228)
      ( 0.029) ITS640 Known bugs Item 26 (note 676835)
      ( 0.030) Check for infinite loops in random number generator (note 759735)
      ( 0.030) ABAP-XML transformation with PARAMETERS infloops (note 746332)
      ( 0.030) Correct SQL EXPLAIN function on UNICODE systems (note 760883)
      ( 0.030) Extend Structure Buffer (note 761324)
      ( 0.030) NT: work processes don't start due to different memory layout (note 761159)
      ( 0.030) RSQL: Correction for DELETE DBTAB FROM ITAB (note 753333)
      ( 0.030) Correct focus handling on F1 help (note 761377)
      ( 0.030) Dbbuf: invalid data read from single key buffer (note 625242)
      ( 0.030) DDIC-Types used by CALL METHOD ... CALLING (note 761843)
      ( 0.030) Warning at CALL METHOD (note 761933)
      ( 0.030) UTF-8 conversion for jobdata (note 739968)
      ( 0.030) CPIC calls for usertype SYSTEM, logon timestamping (note 760414)
      ( 0.030) DB Multiconnect: Closing idle secondary connections (note 762084)
      ( 0.030) TPDA: problems with BREAK-POINT ID  (note 762431)
      ( 0.030) ABAP List Structure Recognition (3) (note 751494)
      ( 0.030) SLC length (note 759208)
      ( 0.030) Corrected namespace handling (note 762678)
      ( 0.031) Correct INT4 I/O (note 627615)
      ( 0.031) No Selectionscreen generation for classes and interfaces (note 744856)
      ( 0.031) RABAX close unused snapfile (note 763333)
      ( 0.031) Data-References and ADD-CORRESPONDING (note 761850)
      ( 0.031) Code pages, languages and locales, packet 46 + 47 (note 447519)
      ( 0.031) SHO: DetachCommit with CompletionError (note 763653)
      ( 0.031) Code pages patch packet 48 (note 447519)
      ( 0.031) Fixed broken %-escaping of multibyte strings (note 763175)
      ( 0.031) Corrected dw_gui.sl linkage on hp platform (note 763292)
      ( 0.031) Runtime error UNEXPECTED_RUDI_TYPE (note 764185)
      ( 0.031) Runtime error SYSTEM_LOAD_OF_PROGRAM_FAILED (note 764186)
      ( 0.031) Runtime error SYSTEM_SHM_AREA_DETACHED (note 764187)
      ( 0.031) Runtime error SAPSQL_WA_WRONG_ALIGNMENT (note 764184)
      ( 0.032) SHO: DetachCommitCompletion failed (Part 2) (note 763653)
      ( 0.032) SHO free on local itab (note 749082)
      ( 0.032) Corrupted report sources/textes after unicode upgrade (note 765377)
      ( 0.032) Process OTF command BM in RTL (note 353987)
      ( 0.032) Trust-Manager: Error when encrypting PSE (note 765123)
      ( 0.032) Security Audit Log: some transaction starts not audited (note 763159)
      ( 0.032) CST patch collection 34 2004 (note 764321)
      ( 0.032) ABAP List Structure Recognition (4) (note 751494)
      ( 0.032) DYN_COMP_ILLEGAL with CREATE DATA (note 766330)
      ( 0.033) Reset SPATPAR flag (note 765605)
      ( 0.033) OMS support for AS400 (note 766732)
      ( 0.033) Open-SQL: SELECT INTO CORRESPONDING FIELDS and generic type of target (note 765822)
      ( 0.033) Rfc patch collection 35 2004 (note 766807)
      ( 0.033) Url form parameter scanning without = sign (note 764903)
      ( 0.033) ITS-Plugin 640: Known/fixed problems (note 676835)
      ( 0.033) ITS TextEdit Control: Text disappears after searchhelp (note 725839)
      ( 0.033) Code pages,converters (package 49) (note 447519)
      ( 0.033) NT: Check CPU timer frequency (note 532350)
      ( 0.033) Code pages patch packet 50 (note 447519)
      ( 0.034) Error in kernel call ABAP_CALLSTACK (note 769503)
      ( 0.034) Runtime error BCD_OVERFLOW converting empty strings (note 769508)
      ( 0.034) Core dump after implicit cast by ASSIGNING (note 766876)
      ( 0.034) Performance: do not read TSP02L for RDI/OTF (note 703798)
      ( 0.034) RFC patch collection 34 2004 (note 769890)
      ( 0.034) Gui scripting: missing loop field names (note 769420)
      ( 0.034) Integrated ITS: garbled hit lists (note 770161)
      ( 0.034) CST patch collection 37 2004 (note 770183)
      ( 0.035) PRINT_LINE_COUNT_TOO_LOW during printing (note 770335)
      ( 0.035) Wrong barcode printout (1) (note 770376)
      ( 0.035) Avoid syntax errors for correct usage of PROVIDE FIELDS (note 771600)
      ( 0.035) New frontend print for SAP GUI for HTML (note 771683)
      ( 0.035) Core or runtime error during modify on projection view (note 770318)
      ( 0.035) Unicode: RFC MDMP dest. garbled code pg., symptom S9 (note 647495)
      ( 0.035) ITS_Browser_Redirect und Content-Length (note 771183)
      ( 0.035) Fix memory corruption in move nametab / dipgntab (note 745745)
      ( 0.035) CALL TRANSFORMATION Parameter INITIAL_COMPONENTS (note 771161)
      ( 0.035) Forward POST parameter from ITS frameset (note 737798)
      ( 0.035) Ixml flush / bindata (note 545335)
      ( 0.035) Code pages,converter (package 51) (note 447519)
      ( 0.035) ITS640: process sap-sesscmd=USR_ABORT like OK-Code=/NEX (note 772251)
      ( 0.035) Core or runtime error during modify on projection view (note 770318)
      ( 0.036) PRINT_LINE_COUNT_TOO_LOW during printing (note 770335)
      ( 0.036) Active tabstrip button and F4 dialogs (note 772922)
      ( 0.036) Docker size and new i-mode (note 615047)
      ( 0.036) Paging related error trace entries (note 694628)
      ( 0.036) Logon error messages show '#' instead of digit chars (note 774211)
      ( 0.036) ITS Calendar: Set Color error fixed (note 767437)
      ( 0.037) AAB breakpoints in system programs (note 774627)
      ( 0.037) Update MemoryInspector II (note 684660)
      ( 0.037) CX_INVALID_TRANSFORMATION (note 773330)
      ( 0.037) Core at customer includes (note 774829)
      ( 0.037) TABLE_LINE with offset/length specification (note 774703)
      ( 0.037) ABAP: core dump at LIKE dref->*-component (note 772941)
      ( 0.037) Failed RFC system calls causing invalid SM20 records (note 774406)
      ( 0.037) ST: deserialization of type N (note 775699)
      ( 0.037) Conversion error in HTML Gui (note 775039)
      ( 0.038) Conversion exits with string parameters (note 776990)
      ( 0.038) Core in debugger data display (note 777203)
      ( 0.038) SLIN: Core dump while collecting cross ref data (note 776596)
      ( 0.038) Start transaktion via systemfunction DYNP_OKCODE_SET (note 776496)
      ( 0.038) Perfomance Fix READ DATASET in TEXT MODE (note 775375)
      ( 0.038) Structure alignment correction: Support for BIDI (note 716200)
      ( 0.038) CST patch collection 40 2004 (note 776283)
      ( 0.038) Steploop radio/checkbutton and label left/right (note 776514)
      ( 0.038) ITS 640 Plugin, known problems, issue 29 (note 676835)
      ( 0.038) Some bugs with lists in webgui fixed (note 762968)
      ( 0.038) ITS Up/Download: UrlDecode for Context Variable obsolet (note 766313)
      ( 0.038) ITS TextEdit: readonly mode in netscape fixed (note 768063)
      ( 0.038) Tolltip texts for columntree icons (note 776561)
      ( 0.038) Known bugs ( issue no 28 ) (note 676835)
      ( 0.038) Closing dangling RFC connections used with printing (note 753080)
      ( 0.038) Introducing strwidth (note 745460)
      ( 0.038) Comparing with a LOOP reference (note 767597)
      ( 0.038) SHO: Cores in GC (note 774465)
      ( 0.038) Trigger Garbage Collection when many PCBs used (note 628303)
      ( 0.038) ABAP-PH: Missing Unicode errors in syntax-check (note 777451)
      ( 0.038) RFC legacy caller, dump on LANG=space in Unicode system. (note 722193)
      ( 0.038) Code pages,converter (package 52) (note 447519)
      ( 0.038) Problems during transport into a Unicode system (note 775114)
      ( 0.038) No Frames Print Parameter (note 777337)
      ( 0.038) List display in Debugger (note 777338)
      ( 0.038) Sapgui/theme default value (note 610274)
      ( 0.038) No initialization of parameter of DESERIALIZE_HELPER (note 777339)
      ( 0.038) Automatic confirmation of Warnings (note 778467)
      ( 0.038) RUNT_ILLEGAL_SWITCH when resetting internal tables (note 778376)
      ( 0.039) # in Asian archived print lists (note 778095)
      ( 0.039) ABAP-SY: Core for dyn. arguments > 255 chars (note 777882)
      ( 0.039) PXA: Introducing PXA_CACHE (note 746984)
      ( 0.039) RTTI DDIC output length > 255 (note 777826)
      ( 0.039) RFC Patchcollection 41 2004 (note 779720)
      ( 0.039) Dynpro: TabStrip and Scrollbar SubScreen Area with CONT_IGN (note 673831)
      ( 0.040) No implicit commit during debugging (note 778582)
      ( 0.040) RFC Patch collection 40 2004 (note 778710)
      ( 0.041) Workprocess hangs on dumping OS process information when memory is low (note 781518)
      ( 0.041) BIDI: Support for fieldwise base direction (note 779879)
      ( 0.041) Foreign key check and chectables with strings (note 780473)
      ( 0.041) ALV grid view entries are not transferred (note 777995)
      ( 0.041) Agate crash when the last line of a grid view is copied (note 775672)
      ( 0.041) ALV grid view column header is not displayed (note 775679)
      ( 0.041) ALV grid view column selection incorrect after dial (note 776587)
      ( 0.041) ALV Gridview 'PAGE UP' leads to the announcement first (note 780570)
      ( 0.041) ITS-PLUGIN: Message handling for IAC (note 779543)
      ( 0.041) Suppress short dump lists in IACs (note 779543)
      ( 0.041) ITS640: enhanced sap-sesscmd handling for webgui (note 772251)
      ( 0.042) Provide kernel functionality for VMIT (note 781997)
      ( 0.042) Rollout rabax save (note 778921)
      ( 0.042) AB_GET_TEXT_FROM_CLUSTER:handling of 50 warnings per statement (note 816246)
      ( 0.059) ABAP-SY: Recursive INCLUDE nesting for classes (note 816247)
      ( 0.059) Error CALL_FUNCTION_ILLEGAL_P_TYPE (note 611004)
      ( 0.059) Diag protocol: multiple codepages (note 621992)
      ( 0.059) Replace strtok with ucafinduca (note 498369)
      ( 0.059) DBIF_RTAB_OUT_OF_CURSORS when using ITS (note 819494)
      ( 0.060) ALV Gridview optimized column width (note 766169)
      ( 0.060) SELECTION-SCREEN INCLUDE PARAMETERS and Listboxes (note 819057)
      ( 0.060) Release independent sapevt (note 802172)
      ( 0.060) RSQL: Correction concerning queries on projection views (note 809297)
      ( 0.060) Check CI include (note 818942)
      ( 0.060) Wrong change record when deactivating initial password (note 819855)
      ( 0.060) TRANSFER to file: Don't truncate East-Asian STRINGs (note 820055)
      ( 0.061) SAAB: Short dump with the minutes announcement in TA SAAB (note 821358)
      ( 0.061) NO F6H message by no record found in TST03 (note 806588)
      ( 0.061) Javascript: adopt binding to changes in note 800346 (note 821710)
      ( 0.061) Enable -SAP- encoding (note 819976)
      ( 0.061) BIDI: Support for fieldwise base direction (note 779879)
      ( 0.061) Menu: dynamic function texts (note 821701)
      ( 0.061) Batch-Input: SYSLOG TREAD - tcode active error (note 822479)
      ( 0.061) RFC patch collection 8 2005 (note 821964)
      ( 0.061) DB Multiconnect: Workprocess restart destroys connection mapping (note 796862)
      ( 0.061) ABAP-SY: Recursive INCLUDE nesting for classes (2) (note 822698)
      ( 0.061) Correction of INF -391 error (note 806993)
      ( 0.062) New frontend print (note 821519)
      ( 0.062) RFC sends large datapackets uncompressed to the SAPGUI (note 824428)
      ( 0.062) Load balance with SNC, provide sncname (note 817854)
      ( 0.062) Menu: dynamic function texts (note 821701)
      ( 0.062) Correct abend in update task debugging (note 824772)
      ( 0.062) Shared Objects: String-Sharing (note 824261)
      ( 0.063) Sharing hash tables (note 825452)
      ( 0.063) Corrections to the Unicode interface (note 522119)
      ( 0.063) Dispatch events in IMC (note 820333)
      ( 0.063) Call transformation: writing to string impr (note 824676)
      ( 0.063) Avoid DBIF_NTAB_TABLE_NOT_FOUND during garbage collection (note 826350)
      ( 0.063) ST: standalone decl / nested call in loop (note 825516)
      ( 0.063) XSLT: Debugger / escaping in namespaces (note 825517)
      ( 0.063) Missing utf8-support in agi-default for webgui (note 825652)
      ( 0.063) Code pages patch packet 62 (note 447519)
      ( 0.063) RUAPO4.1 ~DISCONNECTONCLOSE parameter not working (note 827375)
      ( 0.063) Do no core dump, when some pointers are missing in (note 563769)
      ( 0.064) Spooler level 2 trace bug (note 827514)
      ( 0.064) RTTI lock program (note 822900)
      ( 0.064) Strcpy_sU data misaligned on ntia64 (note 826536)
      ( 0.064) Enabling MSCS support for SAPMMC (note 828432)
      ( 0.064) ITS 6.40: control name = container name for IACs (note 828800)
      ( 0.064) Correct name for tpool proxies and check sum (note 823035)
      ( 0.065) Invalid sapgui input data (note 829096)
      ( 0.065) Protect read-only fields (note 830700)
      ( 0.065) Comparing data refs created via LOOP REF INTO (note 830819)
      ( 0.065) ABAP_ASSERT in extri loop, classical debugger (note 803140)
      ( 0.065) Would core in various ABAP/Dynp situations (note 830710)
      ( 0.065) ABAP-SY: AKK violation for DATA in system include (note 826284)
      ( 0.065) ABAP-SY: Coredump for >50 warnings per statement (2) (note 816246)
      ( 0.065) READ opt. for over specified non-matching key (note 825670)
      ( 0.065) INTERFACE ... DEFFERED in class pools (note 831232)
      ( 0.065) SE30: Avoid error nr 5 for CALL TRANSACTION USING (note 170470)
      ( 0.065) RFC patch collection 12 2005 (note 831456)
      ( 0.066) Rfc Patch Collection 11 2005 (note 828000)
      ( 0.066) FX: utf-8 conv error (note 825516)
      ( 0.066) Core in dy_tx_param() (note 831528)
      ( 0.066) Diagograph(): buffer size check (note 832017)
      ( 0.066) Batch-Input: No Message 00 255 when modify the ok-code (note 833001)
      ( 0.066) PXA/ATRA Patch Collection 12/2004 (note 802791)
      ( 0.066) Search help: F4 within F4 (note 832866)
      ( 0.066) EXCP_INTERNAL_ERROR during debugging (note 833453)
      ( 0.067) ABAP GC on 32-bit platforms when more than 3.4 GB used (note 833336)
      ( 0.067) Diag enhancements for acc support (note 750543)
      ( 0.067) SYSTEM_RUDI_INVALID at ASSIGN with length (note 834179)
      ( 0.067) SHO tab sharing hash collision error (note 829508)
      ( 0.067) SHO: ABAP_ASSERT during update lock with ASSIGING (II) (note 795666)
      ( 0.067) Kernel change for hide/display gridlines and customizing (note 825864)
      ( 0.067) CCMS Monitoring Patch Collection 2005/2 (note 809007) (note 809007)
      ( 0.067) Missing syntax error messages (note 826436)
      ( 0.067) Debugger (jump to statement)' (note 834640)
      ( 0.067) Integrated ITS 6.40: disconnectonclose for IACs in int. ITS)' (note 827375)
      ( 0.067) New ABAP Debugger problems with stack navigation (note 832192)
      ( 0.068) Re-sort of OTF table in ABAP (note 353987)
      ( 0.068) Spooler: Garbage text in REALSRV field (note 835703)
      ( 0.068) Integrated ITS and sap webdispatcher (note 835762)
      ( 0.068) OpenSQL: General support for ABAP-Hints on MAXDB (note 652096)
      ( 0.068) Open SQL: dynamic LIKE and ABAP field as pattern (note 835522)
      ( 0.068) Classic Debugger: itab search & download, watchpts (note 835010)
      ( 0.068) Int. ITS 6.40: ~disconnectonclose for IACs always turned on (note 827375)
      ( 0.068) ISeries: fdopen handling fixed (note 833895)
      ( 0.069) Avoid lockwaits on table TMDIR while debugging (note 837656)
      ( 0.069) Integrated ITS, version information in HTML page (note 838549)
      ( 0.069) Searchhelp select otions, select for blanks (note 836742)
      ( 0.069) RFC logon - security bugfixes (note 830528)
      ( 0.069) Memory leak using table sharing (note 837518)
      ( 0.069) New checks for DDIC type inconsistencies (note 837077)
      ( 0.069) Update list structure recognition 2 (note 751494)
      ( 0.069) WRITE UNDER and COMMON PART (note 825434)
      ( 0.069) Code pages, converters, locales. Package 636465 (note 447519)
      ( 0.069) SORTED TABLE: Memory consumption after MOVE/IMPORT (note 834807)
      ( 0.069) Shared Objects: Multi-Attach; Get_Current_Usage (note 838683)
      ( 0.069) Clear RTM buffer after flushing (note 838305)
      ( 0.069) Core dumps during session end in rare cases (note 838305)
      ( 0.069) CST patch collection 15 2005 (note 834501)
      ( 0.069) ASCII ABAP stack programs and SCS Unicode programs in one dir (note 837731)
      ( 0.069) Actionbar entries without fastpath (note 548709)
      ( 0.069) Fixes for enhanced ASCII support on OS/390 (note 595331)
      ( 0.069) LSR list ourput IV (note 751494)
      ( 0.069) Diag protocol: multiple codepages (note 621992)
      ( 0.069) Itab component access with length specification (note 838229)
      ( 0.069) Fixes for enhanced ASCII support on OS/390 (note 595331)
      ( 0.069) Integrated ITS, problems during conversion of indication (note 831959)
      ( 0.069) Userswitch Inbound-/Outbound-Scheduler (note 716263)
      ( 0.069) Toolbar control remember scroll position (note 806313)
      ( 0.069) Shared Objects: Performance Detach_Commit (note 838596)
      ( 0.070) Revert UTC BufferSync Timestamp until R3Trans and TP (note 749911)
      ( 0.071) Patch collection - logon routine, 1/2005 (note 835038)
      ( 0.071) 16-Byte alignment in rstg_get (note 837410)
      ( 0.071) CCMS RZ20: missing green alerts (note 839672)
      ( 0.071) CCMS RZ20: missing green alerts (note 746193)
      ( 0.071) D021S get each field separately (note 687334)
      ( 0.071) SE30: Avoid error nr. 5 in case of LEAVE SCREEN (note 170470)
      ( 0.071) Performance of compare for shared internal tables (note 839691)
      ( 0.071) Fixed textedit control problem with multipart/form-data ctype (note 841196)
      ( 0.071) ICM crash in HttpPlugInWriteErrorText (note 842609)
      ( 0.072) Enable printing of arabic-indic digits (note 842887)
      ( 0.072) Core after SORT within a LOOP (note 841997)
      ( 0.072) Its-plugin: Overlap of check boxes and radio buttons (note 839070)
      ( 0.072) Usob_authvaltrc for 610/620 (note 842157)
      ( 0.072) Program groups and CFW-modules (note 821158)
      ( 0.072) Program groups and CFW-modules (note 835127)
      ( 0.072) SELECT FOR UPDATE: release locks after commit (note 843042)
      ( 0.072) Set algorithm und key length of SSF PSEs (note 836367)
      ( 0.072) Downport rnd (no effect for disp+work) (note 836008)
      ( 0.073) Template invalidation fixed (note 840220)
      ( 0.073) ITS Up/Download: its plugin error in unicode R3 (note 841263)
      ( 0.073) ITS HTML Viewer: parameters of the sapevent incorrect (note 829669)
      ( 0.073) Correct quickinfo in TC (note 842040)
      ( 0.073) CLUSTER: COMP (note 772941)
      ( 0.076) Search help in mixed mode apps (note 849476)
      ( 0.076) ITS: Empty screen after warning message (note 849337)
      ( 0.076) Toolbarbutton menu (note 848805)
      ( 0.076) Searchelp error in MASSD (note 848289)
      ( 0.076) TABLE_LINE_NOT_EXISTING with MODIFY ... WHERE (note 845378)
      ( 0.076) RFC patch collection 22 2005 (note 850305)
      ( 0.076) Performance Verification Infrastructure-I (note 803789)
      ( 0.077) Catch zero length in ST command (OTF RTL handling) (note 353987)
      ( 0.077) Spooler: CJK string not printed (note 849315)
      ( 0.077) SapSSL-Update, support for OS/400 ASCII kernels (note 772517)
      ( 0.077) ST: Loops; deserial-state; extensibility (note 849075)
      ( 0.077) Dbbuf: enhance performance of single key buffer (note 826729)
      ( 0.077) Unsharing a HASHED TABLE within a loop (note 852036)
      ( 0.077) Fix memory corruption in move-nametab (note 745745)
      ( 0.077) Position of arabian printout (note 849072)
      ( 0.077) DBIF_NTAB_TABLE_NOT_FOUND during garbage collection-II (note 826350)
      ( 0.077) Integrierter ITS, MS Office 2003 session timeout (note 846857)
      ( 0.077) XSLT/iXML: Renderer memory consumption (note 844722)
      ( 0.077) Ixml file streams (note 834242)
      ( 0.077) I18n code page package 69 (late write permission) (note 447519)
      ( 0.077) I18n code page package 67+68 (F5,UMGCCTL,noDB,L) (note 447519)
      ( 0.077) ALV Grid:F4-Help on non-editable fields enabled (note 849656)
      ( 0.077) ALV Gridview dropdown lists are unavailable (note 850272)
      ( 0.077) ALV Gridview remember scroll position (note 839170)
      ( 0.077) Trim content of modified cells (note 850100)
      ( 0.077) CST patch collection 24 2005 (note 851195)
      ( 0.078) Syslog Message for wrong tablename in READ TABLE dbtab (note 851286)
      ( 0.078) CCMS Monitoring Patch Collection 2005/3 (note 809007) (note 809007)
      ( 0.078) Additional legacy RFC dest setup info (note 722193)
      ( 0.078) PROVIDE FIELDS: fix merging of intervals (note 853666)
      ( 0.078) ITS HTML Viewer: incorrect script paths for inserted scripts (note 853051)
      ( 0.078) Memory requests and error traces (note 853608)
      ( 0.078) Ab_BtreeBlockDelete() core on linuxia64 (note 854073)
      ( 0.078) HTML Tidy: get/set option (note 843855)
      ( 0.078) DBIF_NTAB_TABLE_NOT_FOUND during garbage collection (III) (note 826350)
      ( 0.078) Avoid short dump DBIF_REPO_PART_NOT_FOUND (note 854261)
      ( 0.078) Avoid short dump DBIF_REPO_PART_NOT_FOUND (note 854261)
      ( 0.079) PRESCRIBE barcode and subscript bu (note 854502)
      ( 0.079) SORT: use new GETST_TASK_NO_ETRACE (note 193529)
      ( 0.079) Call Transformation: initial refs; core in rabax (note 854572)
      ( 0.079) iXML: namespace context; XSLT: meta tag (note 854571)
      ( 0.079) Problems with CFW modules and ABAP Stack (GC) (note 856468)
      ( 0.079) Ab_BtreeBlockDelete() core, linuxia64 (II) (note 854073)
      ( 0.079) ALV Gridview RowID was not supplied correctly (note 853062)
      ( 0.079) Problems with CFW modules and ABAP Stack (GC) (II) (note 856468)
      ( 0.080) TRMSG-Messages for CALLING method (note 857551)
      ( 0.080) Fill attribute sqlmsg in class CX_SY_NATIVE_SQL_ERROR (note 853002)
      ( 0.080) ITS Up/Down: upload of files in BIN format (note 855475)
      ( 0.080) IXML Miniparser memory consumption (note 426351)
      ( 0.080) Get transaction code from SPA (note 840798)
      ( 0.080) File handling (note 846259)
      ( 0.080) JavaScript more than 65536 lines (note 858307)
      ( 0.080) Rabax trace for section (note 858362)
      ( 0.080) Protect read-only fields (II) (note 842040)
      ( 0.080) List input and control focus (note 858331)
      ( 0.080) Trust-Manager: create PSEs with keylength > 512 bit (note 509495)
      ( 0.080) Correct call of CTL moduls in 6.40 (note 858636)
      ( 0.080) RFC patch collection 26 2005 (note 858707)
      ( 0.080) SncSetMyName() in Unicode-binaries ignores name (note 856809)
      ( 0.080) MaxLength attribute is set to -1 if the backend is Unicode (note 758007)
      ( 0.081) Integrated ITS, error message on transaction selection screen (note 859213)
      ( 0.081) Acces violation in fct. EsIGblMthSlotsPrepare (note 860031)
      ( 0.081) Update Memory Inspector IV (note 684660)
      ( 0.081) Optimization of the algorithm for generating a job log (note 104185)
      ( 0.081) RFC patch collection 27 2005 (note 860531)
      ( 0.081) PXA: avoid mutex corruption after wp restart (note 802791)
      ( 0.081) ALV Gridview Inputlen of cell could be overwritten by column (note 857074)
      ( 0.081) CST Patch Collection 28 2005 (note 860319)
      ( 0.081) In ST01 some auth.objects displayed with garbage (note 855974)
      ( 0.082) ST02: Avoid core dump at NTAB buffers detailed analysis menu (note 859067)
      ( 0.082) AvaScript repair cg for chained jumps (note 861568)
      ( 0.082) Jobs with names in other code pages do not start (note 809888)
      ( 0.082) NT: sapstartsrv detecting J2EE Safe Mode (note 860654)
      ( 0.082) CCMS Monitoring Patch Collection 2005/4 (note 809007)
      ( 0.082) IMPORT: ignore conversion length errors (note 562988)
      ( 0.082) Preloading DLLs to avoid address space fragmentation (note 853696)
      ( 0.083) Definition of SLC flag (note 851307)
      ( 0.083) Syntax warning for MODIFY with INDEX on a HASHED TABLE (note 860304)
      ( 0.083) Error message on fcode /hmusa (note 862612)
      ( 0.083) Update Listparser (note 751494)
      ( 0.083) I18n code page package 7071 (no env, 45000) (note 447519)
      ( 0.083) Garbled double byte characters (note 670069)
      ( 0.083) Dump during abaplist PDF conversion (note 864429)
      ( 0.083) SE30 User Trace (note 716340)
      ( 0.083) SE30 missing trace data in case of particular units (note 864562)
      ( 0.083) Skip unknown sapgui connect data (note 864474)
      ( 0.084) SORT: sharing after phys. sort (note 863934)
      ( 0.084) Reject system okcodes while debuging BTC or VB (note 864607)
      ( 0.084) GC and tab sharing (note 862462)
      ( 0.084) Correct handling of NAZ messages (note 836869)
      ( 0.084) ABAP-SY: Core dump for type in COMMON PART (note 859631)
      ( 0.084) HTML tidy error trace (note 426351)
      ( 0.084) RTTC: illegal type for TYPE HANDLE (note 863747)
      ( 0.084) ABAP-SY: GEN_FRAGVIEW_EMPTY when accessing empty CI (note 865759)
      ( 0.084) SE30: Assure 610/620 compatible file format (note 866355)
      ( 0.084) Cua status traces (note 865763)
      ( 0.084) Core while unsharing a HASHED TABLE in a LOOP (note 866639)
      ( 0.085) MOVE-CORRESPONDING on empty CI-Includes (note 865759)
      ( 0.085) Foreign key messages in BI log (note 867390)
      ( 0.085) Compatibility of external breakpoints (Kernel 6.40, ABAP 6.10) (note 866347)
      ( 0.085) RFC Patchcollection 30 2005 (note 866360)
      ( 0.085) Default tooltip support (note 750543)
      ( 0.085) ST:  with result IXML (note 866256)
      ( 0.085) Patch collection - logon routine, 2/2005 (note 866327)
      ( 0.085) CST Patch Collection 31 2005 (note 867690)
      ( 0.085) Np printon stack (note 864122)
      ( 0.085) AUNIT test class friends (note 852745)
      ( 0.085) Perfomance Fix READ DATASET due to string resize (note 867936)
      ( 0.085) SHO: Commit registration of transactional Areas (note 865094)
      ( 0.085) Core dump when printing RTL documents (note 868178)
      ( 0.085) No trailing blanks of last (note 867921)
      ( 0.086) Code page patch package 74 (note 447519)
      ( 0.086) ICF Patch Collection 02/2005 (note 867361)
      ( 0.086) ALV Gridview core dump in CSapITSGridviewCol (note 869120)
      ( 0.086) Fix overflow, linuxx86_64 responds pretty badly to this (note 772075)
      ( 0.086) Another occurance of the same overflow problem of the ts structure (note 772078)
      ( 0.086) Definition of cellinfo flag (note 851307)
      ( 0.086) ITS Up/Down: implementing of ITS_DIRECTORY_LIST_FILES (note 856141)
      ( 0.086) ITS TextEdit: changed text could be saved in readonly mode sources (note 868919)
      ( 0.086) NT: Traceing deadlock during signal or alarm handling (note 869790)
      ( 0.086) IXML/XSLT: ABAP class registration (note 865779)
      ( 0.086) New diag supportbits (note 866219)
      ( 0.086) IXML conversion buffer (note 866208)
      ( 0.086) RFC patch collection 32 2005 (note 868767)
      ( 0.087) IMPORT: ign cnv len errors and truncation (note 562988)
      ( 0.087) Exit in LOOP AT SCREEN would remove block stack entries (note 870294)
      ( 0.087) ALV Gridview losing single row selection during its roundtrip (note 870999)
      ( 0.087) Patch lsr list output VII (note 779879)
      ( 0.087) ITS Html Viewer: javascript error for gecko Browser in framesets (note 864381)
      ( 0.087) ITS Html Viewer: caching for all binary documents enabled (note 870373)
      ( 0.087) Enhanced SAP encoding methods (note 866020)
      ( 0.087) New SSF Signer-Resultcodes for Certificate Revocation (note 870640)
      ( 0.087) GETWA_NOT_ASSIGNED since PL 84 (note 871851)
      ( 0.087) ALV Gridview Control AGate crash due to error in put_SelectedRows2 (note 865899)
      ( 0.087) ALV Gridview kernel change for expandable/collapsible totals/subtotals (note 861326)
      ( 0.087) Core with CLASS.Type or INTF.Type for data ref in XML-ABAP (note 871774)
      ( 0.087) No runtime type check with CLEANUP INTO  (note 871407)
      dbsl patch information
      ( 0.001) Support of doublebyte character sets (note 695899)
      ( 0.006) Sizecheck for tables includes LOBs (note 713281)
      ( 0.012) MAX_INT_CNT=1000 (note 634263)
      ( 0.019) Correction of ORA-01427 in dbdd_get_size (note 739536)
      ( 0.025) Correction of internal function DbSlPing() (note 748370)
      ( 0.032) Avoid dump when reading negative numbers into type P field (note 764005)
      ( 0.039) NT: work processes don't start due to different memory layout II (note 761159)
      ( 0.055) Secondary connection with multiple NLS environment (note 808505)
      ( 0.073) Automatic reconnect after ORA-03123, ORA-03127 (note 797792)
      ( 0.079) Enable and allow rel. 6.40 for Oracle 8.1.7 (note 851551)
    brbackup 
      BR0051I BRBACKUP 6.40 (12)
      Patch   Date        Note   Text
        3   2004-01-26   700733  Support for secure copy 'scp' command
       11   2004-06-25   749041  Workaround for ORA-12158 on Tru64 Unix
      release note               680046
      kernel release             640
      patch date                 2004-07-28
      patch level                12
      make platform              NTintel
      make mode                  OCI_920_SHARE
      make date                  Sep 19 2004
    brarchive 
      BR0002I BRARCHIVE 6.40 (12)
      Patch   Date        Note   Text
         3   2004-01-26   700733   Support for secure copy 'scp' command
        11   2004-06-25   749041   Workaround for ORA-12158 on Tru64 Unix
        12   2004-07-28   759839   BRARCHIVE fails for database in mount state
      release note               680046
      kernel release             640
      patch date                 2004-07-28
      patch level                12
      make platform              NTintel
      make mode                  OCI_920_SHARE
      make date                  Sep 19 2004
    brrestore 
      BR0401I BRRESTORE 6.40 (12)
      Patch   Date        Note   Text
        3   2004-01-26   700733  Support for secure copy 'scp' command
       11   2004-06-25   749041  Workaround for ORA-12158 on Tru64 Unix
      release note               680046
      kernel release             640
      patch date                 2004-07-28
      patch level                12
      make platform              NTintel
      make mode                  OCI_920_SHARE
      make date                  Sep 19 2004
    brtools 
      BR0651I BRTOOLS 6.40 (12)
      Patch   Date        Note   Text
      release note               680046
      kernel release             640
      patch date                 2004-07-28
      patch level                12
      make platform              NTintel
      make mode                  OCI_920_SHARE
      make date                  Sep 19 2004
    brconnect 
      BR0801I BRCONNECT 6.40 (12)
      Patch   Date        Note   Text
        5   2004-03-19   719581  Delete of old records in arch.log with BRCONNECT
      release note               680046
      kernel release             640
      patch date                 2004-07-28
      patch level                12
      make platform              NTintel
      make mode                  OCI_920_SHARE
      make date                  Sep 19 2004
    sapdba
    tp  
    R3trans 
    saposcol 
    SAPOSCOL version  COLL 20.88 640 - 20.51 NT 05/07/13, 32 bit, multithreaded, Non-Unicode
    compiled at   Aug 22 2005
    systemid      560 (PC with Windows NT)
    relno         6400
    patch text    COLL 20.88 640 - 20.51 NT 05/07/13
    patchno       87
    intno         20020600
    running on    SAPBL5 Windows NT 5.0 2195 Service Pack 4 2x Intel 801586 (Mod 2 Step 7)
    saplicense  
      SAPLICENSE version information
      slic (saplicense) version     3.00
      saplicense information
      kernel release                640
      kernel make variant           640_REL
      compiled on                   NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10
      compilation mode              Non-Unicode
      compile time                  Aug 21 2005 19:38:48
      update level                  0
      patch number                  48
      source id                     0.087
      supported environment
      database (SAP, table SVERS)   610
                                    620
                                    630
                                    640
      operating system
      Windows NT 5.0
      Windows NT 5.1
      Windows NT 5.2
    Operating System 
      Parameter                  Changed on     Status    Value
    Database 
      Parameter                                      Changed on  Status  Value
      ACTIVE_INSTANCE_COUNT                          15.06.2005  A
      AQ_TM_PROCESSES                                15.06.2005  A       0
      ARCHIVE

    Dear Pallavi,
    Very useful post!
    I am looking for similar accelerators for
    Software Inventory Accelerator
    Hardware Inventory Accelerator
    Interfaces Inventory
    Customization Assessment Accelerator
    Sizing Tool
    Which helps us to come up with the relevant Bill of Matetials for every area mentioned above, and the ones which I dont know...
    Request help on such accelerators... Any clues?
    Any reply, help is highly appreciated.
    Regards
    Manish Madhav

  • CR VS.2005

    Post Author: [email protected]
    CA Forum: .NET
    I'm having a problem with a linked subreport that I can't get around, so I'm going to finally throw up the flag and ask for help.
      I'm using VS.NET 2005, and the Crystal Report was originally written in 8.5, but has been upgraded to CR 10 via the Crystal Reports developer edition.
      I have a windows service that check a report table for a run flag, and when it finds the flag, loads the report into a ReportDocument object (the UNC path of the .rpt file is passed into the class):
    Public Sub OpenReport()
    Dim crConnectionInfo As ConnectionInfoDim crSection As SectionDim crSections As SectionsDim crReportObject As ReportObjectDim crReportObjects As ReportObjectsDim crSubreportObject As SubreportObjectDim subRepDoc As New ReportDocument()Dim crTables As TablesDim crTable As Table''crReportDocument.FilePath = myReportLocncrReportDocument.Load(myReportLocn)'Setup the connection information structure to be used'to log onto the datasource for the report.crConnectionInfo = New ConnectionInfo()With crConnectionInfo.ServerName = myReportDBServer.DatabaseName = myReportDBNameIf myReportDBUID.Trim.Length > 0 Then.IntegratedSecurity = False.UserID = myReportDBUID.Password = myReportDBPwdElse.IntegratedSecurity = TrueEnd If.Type = ConnectionInfoType.SQLEnd WithcrTables = crReportDocument.Database.TablesFor Each crTable In crTablesDim myTableLogonInfo As TableLogOnInfo = crTable.LogOnInfomyTableLogonInfo.ConnectionInfo = crConnectionInfocrTable.ApplyLogOnInfo(myTableLogonInfo)If crTable.Location.IndexOf("Proc(") > -1 ThencrTable.Location = crConnectionInfo.DatabaseName & "." & myReportDBObjectOwner & "." & rTable.Location.Substring(crTable.Location.IndexOf("Proc(") + 5, crTable.Location.LastIndexOf(";1)") - 5)ElsecrTable.Location = crConnectionInfo.DatabaseName & "." & myReportDBObjectOwner & "." & rTable.Location.Substring(crTable.Location.LastIndexOf(".") + 1)End IfcrTable.LogOnInfo.ConnectionInfo.ServerName = crConnectionInfo.ServerName()myTableLogonInfo = NothingNextcrSections = crReportDocument.ReportDefinition.SectionsFor Each crSection In crSectionscrReportObjects = crSection.ReportObjectsFor Each crReportObject In crReportObjectsIf crReportObject.Kind = ReportObjectKind.SubreportObject Then'If you find a subreport, typecast the reportobject to a subreport objectcrSubreportObject = CType(crReportObject, SubreportObject)'Open the subreportsubRepDoc = crSubreportObject.OpenSubreport(crSubreportObject.SubreportName)'crDatabase = subRepDoc.DatabasecrTables = subRepDoc.Database.Tables'Loop through each table and set the connection info 'Pass the connection info to the logoninfo object then apply the 'logoninfo to the subreportFor Each crTable In crTablesDim myTableLogonInfo As TableLogOnInfo = crTable.LogOnInfomyTableLogonInfo.ConnectionInfo = crConnectionInfocrTable.ApplyLogOnInfo(myTableLogonInfo)If crTable.Location.IndexOf("Proc(") > -1 ThencrTable.Location = crConnectionInfo.DatabaseName & "." & myReportDBObjectOwner & "." & rTable.Location.Substring(crTable.Location.IndexOf("Proc(") + 5, crTable.Location.LastIndexOf(";1)") - 5)ElsecrTable.Location = crConnectionInfo.DatabaseName & "." & myReportDBObjectOwner & "." & rTable.Location.Substring(crTable.Location.LastIndexOf(".") + 1)End IfcrTable.LogOnInfo.ConnectionInfo.ServerName = crConnectionInfo.ServerName()myTableLogonInfo = NothingNextEnd IfNextNextcrConnectionInfo = NothingcrSection = NothingcrSections = NothingcrReportObject = NothingcrReportObjects = NothingcrSubreportObject = NothingsubRepDoc = NothingcrTables = NothingcrTable = NothingEnd Sub   Once the report has been loaded, parameters are passed in via another SQL table and this routine is run to export the report to a PDF file:
    Public Sub CreateReport(ByVal TerminalList As String)
    Dim crMainReportParameterFieldDefinitions As ParameterFieldDefinitionsDim crParameterFieldDefinitions As ParameterFieldDefinitionsDim crParameterFieldDefinition As ParameterFieldDefinitionDim crParameterDiscreteValue As ParameterDiscreteValueDim crParameterValues As ParameterValuesDim drReportParamList As DataRowDim mySQLConn As New SqlConnection(My.Settings.ConnectStringSQL)Dim cmdReportParamList As New SqlCommand("usf_GetReportParameters", mySQLConn)
    With cmdReportParamList.CommandType = CommandType.StoredProcedure.Parameters.Add(New SqlParameter("@ParameterID", SqlDbType.Int)).Parameters("@ParameterID").Value = ParameterIDEnd With'' create the DataAdapterDim myDataAdapter As New SqlDataAdapter(cmdReportParamList)'' create the DataSetDim dsReportParamList As New DataSet'' fill the DataSetmyDataAdapter.Fill(dsReportParamList)'' close the connectionmySQLConn.Close()dsReportParamList.Dispose()myDataAdapter.Dispose()crParameterFieldDefinitions = crReportDocument.DataDefinition.ParameterFieldsDim dtReportParamList As DataTable = dsReportParamList.Tables(0)For Each drReportParamList In dtReportParamList.RowscrParameterFieldDefinition = crParameterFieldDefinitions.Item(drReportParamList.Item("ParameterOrder") - 1)crParameterDiscreteValue = New ParameterDiscreteValue()Select Case drReportParamList.Item("ParameterTypeID").ToString'' stringCase "1" : crParameterDiscreteValue.Value = drReportParamList.Item("ParameterValue").ToString'' date offset (past)Case "2" : crParameterDiscreteValue.Value = Format(DateAdd(DateInterval.Day, drReportParamList.Item("ParameterValue") * -1, Date.Now), "MM/dd/yyyy")'' date offset (future)Case "3" : crParameterDiscreteValue.Value = Format(DateAdd(DateInterval.Day, drReportParamList.Item("ParameterValue"), Date.Now), "MM/dd/yyyy")'' current terminalCase "4" : crParameterDiscreteValue.Value = TerminalListEnd SelectcrParameterValues = crParameterFieldDefinition.CurrentValuescrParameterValues.Add(crParameterDiscreteValue)crParameterFieldDefinition.ApplyCurrentValues(crParameterValues)gLogFile.LogEvent(crParameterFieldDefinition.Name.ToString + " value set to <" + crParameterDiscreteValue.Value.ToString + ">")NextIf File.Exists(DiskFileName) ThenFile.Delete(DiskFileName)End IfcrReportDocument.ExportToDisk(ExportFormatType.PortableDocFormat, DiskFileName)
    gLogFile.LogEvent("Report " & DiskFileName & " created.")
    cmdReportParamList.Dispose()crParameterFieldDefinitions.Dispose()crParameterFieldDefinition.Dispose()crParameterDiscreteValue = NothingcrParameterValues = NothingdrReportParamList = NothingdtReportParamList.Dispose()
    End Sub
    For most of what I do, this works great, but...
      I have one report that has a linked subreport in the group header of the main report.  The subreport is linked on the value of the group field rather than a parameter of the main report.  So rather than having the main report parameter linked to a sub-report parameter (i.e. Field(s) to link to:  ?@QueryDate and Subreport parameter field to use: ?@QueryDate), the link is Field(s) to link to: ReportSegArrLateDetail;1.SegDest and the Subreport parameter field to use is ?@SegDest. 
      When I run the report, I get the error:
    CrystalDecisions.ReportAppServer.DataSetConversionat CrystalDecisions.ReportAppServer.ConvertDotNetToErom.ThrowDotNetException(Exception e)at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)at CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext)at CrystalDecisions.CrystalReports.Engine.FormatEngine.Export(ExportRequestContext reqContext)at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToDisk(ExportFormatType formatType, String fileName)at CrystalReporting.CRReport.CreateReport(String TerminalList) in C:\Temp\CrystalReporting\CrystalReporting\CRReport.vb:line 396at CrystalReporting.Form1.Button1_Click(Object sender, EventArgs e) in C:\Temp\CrystalReporting\CrystalReporting\Form1.vb:line 108Boolean ThrowDotNetException(System.Exception)Query Engine Error: 'ADO Error Code: 0xSource: Microsoft OLE DB Provider for SQL ServerDescription: Procedure or function 'ReportSegArrLateDetailSummary' expects parameter '@SegDest', which was not supplied.SQL State: 42000Native Error: 'Error in File C:\DOCUME1\kbullen\LOCALS1\Temp\ArrivalPatterns_NET_10 {6247521A-AD81-45F1-8C3B-B23DD6CD83D5}.rpt:Query Engine Error
      This is the stored procedure (ReportSegArrLateDetailSummary) for the sub report.  It's like Crystal is not passing the parameter to the sub report.
      If I try changing the subreport link to for the parameter in question to:  ReportSegArrLateDetail;1.SegDest and the Subreport parameter field to use is ?Pm-ReportSegArrLateDetail;1.SegDest and check the Select data in subreport based on field and select the ReportSegArrLateDetail;1.SegDest field from the drop down box, I get this error: 
    CrystalDecisions.ReportAppServer.DataSetConversionat CrystalDecisions.ReportAppServer.ConvertDotNetToErom.ThrowDotNetException(Exception e)at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)at CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext)at CrystalDecisions.CrystalReports.Engine.FormatEngine.Export(ExportRequestContext reqContext)at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToDisk(ExportFormatType formatType, String fileName)at CrystalReporting.CRReport.CreateReport(String TerminalList) in C:\Temp\CrystalReporting\CrystalReporting\CRReport.vb:line 396at CrystalReporting.Form1.Button1_Click(Object sender, EventArgs e) in C:\Temp\CrystalReporting\CrystalReporting\Form1.vb:line 108Boolean ThrowDotNetException(System.Exception)Missing parameter values.
      The funny thing is, the report currently works fine under VB6, CR 8.5.
      Does anyone have any ideas how to get this to work?
    Thanks,
    Kevin

    Post Author: texag
    CA Forum: .NET
    I fixed this problem by supplying a complete name to the Location property of my Table object.  I added the line (in bold) to my connection info setup method as follows:
            Try            Dim tbCurrent As CrystalDecisions.CrystalReports.Engine.Table             Dim tliCurrent As CrystalDecisions.Shared.TableLogOnInfo                         For Each tbCurrent In rpt.Database.Tables                tliCurrent = tbCurrent.LogOnInfo                tliCurrent.ConnectionInfo.ServerName = GlobalData.DSNName                tliCurrent.ConnectionInfo.UserID = GlobalData.UserID                tliCurrent.ConnectionInfo.DatabaseName = GlobalData.DatabaseName                 tliCurrent.ConnectionInfo.Password = GlobalData.UserPassword                tbCurrent.ApplyLogOnInfo(tliCurrent)                tbCurrent.Location = "dbo." + tbCurrent.Location.Substring(tbCurrent.Location.LastIndexOf(".") + 1)            Next        Catch ex As Exception            ErrorHandler.DisplayErrorMessage(ex)        End Try
    The Location Property must be fully qualified (you may need to pre-pend the database name as well).  In my case, Location changed from spGetData (in VS2003) to dbo.spGetData (in VS2005).
    I lost a lot of hair on this one...
    Kevin

Maybe you are looking for

  • How to update previously modified Image and prevent from reverting?

    Below is my code for updating a painComponent:- it basically zooms in on a particular image. The zooming works for the first try. But since the Image ITSELF isnt updated if i try to zoom in on the zoomed image its actually trying to zoom the original

  • Which parts of iCloud will use up data if not connected to wifi?

    Just started really actively using it today and was just wondering..

  • How to uniform volume on iPod??

    My songs sound fine (well, a little scratchy since V7) but all have the same volume on iTunes. It's quite a different story when playing them back on my iPod. How can I make the songs all have the same volume? Some are incredibly quiet, so I turn it

  • Name of representative not availbel in Fk03

    Dear All, I am not able to find "name of representative" in FK03 for the vendor master. We  have updared the vendor master with "name of representative" using the transaction FK02 but it is not visible  in the diplay mode. request you guy/ glas tolet

  • Painting an image in a JComponent

    I have a series of JComponents placed inside a JPanel. Each JComponent draws an Image class object. I have the following lines in my paintComponent method: Image test_image = Toolkit.getDefaultToolkit().createImage("foo.gif"); try { MediaTracker trac