Language dependent information about Outlook fields to sort on

Hi,
In the next code I found on the forum I use the .sort method with a field name to sort on. I have a Dutch version of Outlook and my question is where can I find the transalation of the Outlook mail items field list in Dutch.
Looking forward to an answer,
Kind Regards,
Marcel Kollenaar
Sub SortByDate()
Dim myOlApp As New Outlook.Application
Dim myNameSpace As Outlook.Namespace
Dim myFolder As Outlook.MAPIFolder
Dim myItems As Outlook.Items
Dim myItem As Outlook.MailItem
Set myNameSpace = myOlApp.GetNamespace("MAPI")
Set myFolder = myNameSpace.GetDefaultFolder(olFolderInbox)
Set myItems = myFolder.Items
myItems.Sort "[Ontvangen]", False '<<<<< Dutch
'myItems.Sort "[Received]", False '<<<<< English
For Each myItem In myItems
MsgBox myItem.Subject & "-- " & myItem.ReceivedTime
Next myItem
Set myItem = Nothing
Set myItems = Nothing
Set myFolder = Nothing
Set myNameSpace = Nothing
Set myOlApp = Nothing
End Sub

Hi Narcel,
Try to remove square brackets.
'myItems.Sort "Received", False '<<<<< English
Here is what MSDN states:
The Jet query syntax is the easiest to learn and use in your code, but it does not have the power of DASL. Jet queries can create restrictions for most built-in and custom properties. When you create a Jet query, be aware that there are certain computed
and binary properties that are invalid and will cause Outlook to raise an error. Jet query syntax also does not support the new content indexer keywords that leverage the Instant Search feature in Outlook 2007. Consequently, Jet queries will return results
slower than DASL queries provided that Instant Search is installed and enabled.
Property Specifiers
Jet property specifiers use the English name of the property enclosed in square brackets to represent built-in properties in Jet queries. The English name of the property is identical with the object model name of the property. Based on this convention,
you can use [Subject] in your Jet query independent of locale to create a restriction on the Subject property of an item. Custom properties use the locale-specific name of the property enclosed in square brackets.
Tip Don’t confuse the object model name of the property with the Field Chooser name of the property, which is localized. For example, if French is the user interface (UI) language, then the Field Chooser will display a field named Sujet that represents the
Subject property of a MailItem object. In a Jet equivalence query for "Office 2007" using the Subject property, the filter would be [Subject] = 'Office 2007' whether the UI language is French or English. Be aware that object model names for built-in
properties have no spaces or special characters, whereas the Field Chooser name can contain both spaces and special characters. For example, the object model name for an assistant’s phone number is AssistantTelephoneNumber. In the Field Chooser, this property
is Assistant’s Phone. Always use the object model name in your Jet queries.

Similar Messages

  • Filling dependent field with language dependent

    Hello Expects,
    In backend(DB), I have function like, if I select number, its corresponding description filing automatically and also selecting record based on login language. Same function I need on UI.
    For your information : Fields are created by EEW and current UI is 7.0
    As of now, from DB properties, I am getting F4 value help, but its description is not filling and itu2019s not language dependent.
    Hear I want; description should be filled automatically when I select value from f4 help.
    In F4, it should show only language dependent data. I.e. login language values.
    How to change F4 fucntion to dropdown function.
    When I implement Get_V and calling DB search help, I could see values in language dependent, but when I select, itu2019s not selecting.
    Kindly suggest, it will be great helpful.
    Shakeer

    Hi,
    click F2 on your description field and F4 help to find out component and view.
    With this information go to transaction BSP_WD_CMPWB.
    Here go the your attribute and contextnode. Set a breakpoint in the SET_* Method.
    If required you could redefine this method.
    Our if it is a bug in SAP standard you could raise an OSS message.
    Kind regards
    Manfred

  • Extracting informations about rectangles, lines, fields etc from PDF

    I'm looking for a way, to extract rectangles, lines, fields etc from a PDF, for example think of a blue rectangle which is drawn in a Word document, which is later exported to pdf. I need informations about the position of the rectangle, the color, the size, if it is filled or not, etc. Is there something like an API or an SDK which can help me? I searched for quite a time (so please, no RTFM-answers), but the only references I found where about producing PDF or extracting text, images or graphics (oh, just at the moment, I had the idea, that lines and rectangles could be coded as vector-graphics in PDF, could that be possible?).
    I'm thankful for all answers and ideas (even if you just post links with informations),
    kind regards,
    Pivo

    Yes, lines and rects are coded as vector graphics (or specifically path drawing instructions) in a PDF.
    Adobe offers an SDK around Adobe Acrobat which would enable you to get this information. If you need a standalone solution, we also offer our full PDFLibrary.

  • Need information about Internal Tables

    Hi Every one!
    I Need some information about Internal tables. Pls help be above the same.
    Thanks & with Regards,
    Chandra.

    Hi..,
    <b>
    Internal tables </b>
    Internal tables provide a means of taking data from a fixed structure and storing it in working memory in ABAP. The data is stored line by line in memory, and each line has the same structure. In ABAP, internal tables fulfill the function of arrays. Since they are dynamic data objects, they save the programmer the task of dynamic memory management in his or her programs. You should use internal tables whenever you want to process a dataset with a fixed structure within a program. A particularly important use for internal tables is for storing and formatting data from a database table within a program. They are also a good way of including very complicated data structures in an ABAP program.
    Like all elements in the ABAP type concept, internal tables can exist both as data types and as data objects A data type is the abstract description of an internal table, either in a program or centrally in the ABAP Dictionary, that you use to create a concrete data object. The data type is also an attribute of an existing data object.
    <b>Internal Tables as Data Types</b>
    Internal tables and structures are the two structured data types in ABAP. The data type of an internal table is fully specified by its line type, key, and table type.
    <b>Line type</b>
    The line type of an internal table can be any data type. The data type of an internal table is normally a structure. Each component of the structure is a column in the internal table. However, the line type may also be elementary or another internal table.
    <b>Key</b>
    The key identifies table rows. There are two kinds of key for internal tables - the standard key and a user-defined key. You can specify whether the key should be UNIQUE or NON-UNIQUE. Internal tables with a unique key cannot contain duplicate entries. The uniqueness depends on the table access method.
    If a table has a structured line type, its default key consists of all of its non-numerical columns that are not references or themselves internal tables. If a table has an elementary line type, the default key is the entire line. The default key of an internal table whose line type is an internal table, the default key is empty.
    The user-defined key can contain any columns of the internal table that are not references or themselves internal tables. Internal tables with a user-defined key are called key tables. When you define the key, the sequence of the key fields is significant. You should remember this, for example, if you intend to sort the table according to the key.
    <b>
    Table type</b>
    The table type determines how ABAP will access individual table entries. Internal tables can be divided into three types:
    <u>Standard tables</u> have an internal linear index. From a particular size upwards, the indexes of internal tables are administered as trees. In this case, the index administration overhead increases in logarithmic and not linear relation to the number of lines. The system can access records either by using the table index or the key. The response time for key access is proportional to the number of entries in the table. The key of a standard table is always non-unique. You cannot specify a unique key. This means that standard tables can always be filled very quickly, since the system does not have to check whether there are already existing entries.
    <u>
    Sorted tables</u> are always saved sorted by the key. They also have an internal index. The system can access records either by using the table index or the key. The response time for key access is logarithmically proportional to the number of table entries, since the system uses a binary search. The key of a sorted table can be either unique or non-unique. When you define the table, you must specify whether the key is to be unique or not. Standard tables and sorted tables are known generically as index tables.
    <u>
    Hashed tables</u> have no linear index. You can only access a hashed table using its key. The response time is independent of the number of table entries, and is constant, since the system access the table entries using a hash algorithm. The key of a hashed table must be unique. When you define the table, you must specify the key as UNIQUE.
    <b>
    Generic Internal Tables</b>
    Unlike other local data types in programs, you do not have to specify the data type of an internal table fully. Instead, you can specify a generic construction, that is, the key or key and line type of an internal table data type may remain unspecified. You can use generic internal tables to specify the types of field symbols and the interface parameters of procedures . You cannot use them to declare data objects.
    <b>Internal Tables as Dynamic Data Objects</b>
    Data objects that are defined either with the data type of an internal table, or directly as an internal table, are always fully defined in respect of their line type, key and access method. However, the number of lines is not fixed. Thus internal tables are dynamic data objects, since they can contain any number of lines of a particular type. The only restriction on the number of lines an internal table may contain are the limits of your system installation. The maximum memory that can be occupied by an internal table (including its internal administration) is 2 gigabytes. A more realistic figure is up to 500 megabytes. An additional restriction for hashed tables is that they may not contain more than 2 million entries. The line types of internal tables can be any ABAP data types - elementary, structured, or internal tables. The individual lines of an internal table are called table lines or table entries. Each component of a structured line is called a column in the internal table.
    <b>
    Choosing a Table Type</b>
    The table type (and particularly the access method) that you will use depends on how the typical internal table operations will be most frequently executed.
    <b>
    Standard tables</b>
    This is the most appropriate type if you are going to address the individual table entries using the index. Index access is the quickest possible access. You should fill a standard table by appending lines (ABAP APPEND statement), and read, modify and delete entries by specifying the index (INDEX option with the relevant ABAP command). The access time for a standard table increases in a linear relationship with the number of table entries. If you need key access, standard tables are particularly useful if you can fill and process the table in separate steps. For example, you could fill the table by appending entries, and then sort it. If you use the binary search option with key access, the response time is logarithmically proportional to the number of table entries.
    <b>Sorted tables</b>
    This is the most appropriate type if you need a table which is sorted as you fill it. You fill sorted tables using the INSERT statement. Entries are inserted according to the sort sequence defined through the table key. Any illegal entries are recognized as soon as you try to add them to the table. The response time for key access is logarithmically proportional to the number of table entries, since the system always uses a binary search. Sorted tables are particularly useful for partially sequential processing in a LOOP if you specify the beginning of the table key in the WHERE condition.
    <b>
    Hashed tables</b>
    This is the most appropriate type for any table where the main operation is key access. You cannot access a hashed table using its index. The response time for key access remains constant, regardless of the number of table entries. Like database tables, hashed tables always have a unique key. Hashed tables are useful if you want to construct and use an internal table which resembles a database table or for processing large amounts of data.
    regards,
    sai ramesh

  • Information about Services

    Hi,
    we are using SRM 5.0
    I need information about services in SRM
    so, we have two types of product - material and service.
    we have already tested shopping, bidding and other functionality with material. It is clear for me.
    now it is time for service testing, and i have some questions:
    1. When employee goes shopping - he chooses "Internal Goods/Services", then he click "Start". And a very long list of materials and services is displayed. Services and materials are mixed in alphabetical order.
    Are there some ways for dividing this big list in two parts - materials and services? not to sort all of them by descending/ascending order, but to separate them, because to look for something in mixed list is impossible.
    Can we make Product Type field to be mandatory for entering before displaying the results? I mean having a binocular near this field, and clicking on it will give us a chance to choose Services or Materials. It will make more simple the whole process.
    2. After adding to a SC, are there any differences between processes with Materials and Services? Or no differences, and the same biddings, auctions and others..
    3. What is the "Requests" menu in Go Shopping? for which purposes i can use it?
    4. Managing Business Partners and it's employee, i have a check-box "service agent". Where this status of partner is use? i can't see in the shopping cart any fields for choosing a service agent
    Will be very greatful and award points for helpful answers.
    thnx

    Hi,
    1.Getting a F4 help for the field Product type would be standard modifictaion.However you could try mdofiying the O/P list which is displayed(e.g. sort it based on the product type).
    Have a look at this thread for more pointers:
    Re: Change in product display
    3.Related thread:
    "Request" menu option is for... ? :-(
    BR,
    Disha.

  • FTTP - Unable to find information about it

    Hi all,
    Im a little confused, I spoke to a BT engineer (whilst he was down a man hole) asking him the expected dates for FTTC on our industrial estate. He told me that there wasn't going to be an additional cabinet as where we are BT will be running FTTP. So once I returned to my office I thought Id give BT a call to ask if they could provide me any more information on this as we're keen to get it installed.
    The chap on the phone told me there are no provisioned dates for FTTP based on my phone number and that the cabinet isnt even in place for FTTP to happen - the engineer was pulling fibre passed the standard cab on our estate. So this is where I am confused, I appreciate that the fibre needs to come from a cab if its not direct from the exchange, but why would the engineer tell me its fttp - pulling fibre past the estates cab and yet the chap on the phone tells me otherwise?
    Its all very frustrating.

    shabbaranks wrote:
    Im not talking about the field engineer - he was the person who gave me the right info. Im talking about the person sat on the end of the phone to which I called asking if there was any information on this product. Why should he know about this - well because he's the sales person isnt he?
    Why should this information be available - it should be available so people know whats going on. I will put £5 on it that the product will be available to us yet no information will be until I phone up BT to place an order. Why cant they issue some sort of time frame if the guy who lays the cable can give me a rough guide. Its not rocket science is it???
    The engineer is employed by Openreach.
    The sales person you spoke to works for BT Retail.
    Both are separate companies.
    If Openreach have not yet released the details of FTTP to BT Retail (or indeed any other ISP) then the sales teams will have no knowledge of where and when it will be deployed.

  • Need information about unicode

    Hello friends,
           I need informatiion about an unicode to change english language in to regional language.Please give me information about same.
    Thanx,
    Rahul Talele

    Hi
    Hope it will help you,.
    Reward if help.
    The Link will be helpful to you.
    Re: Upgrade 4.6 to ECC - What are the responsibilites
    regarding Unicode influence in Standard programs
    Very good document:
    http://www.doag.org/pub/docs/sig/sap/2004-03/Buhlinger_Maxi_Version.pdf
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d37d1ad9-0b01-0010-ed9f-bc3222312dd8
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/589d18d9-0b01-0010-ac8a-8a22852061a2
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f8e316d9-0b01-0010-8e95-829a58c1511a
    You need to use the transaction UCCHECK.
    The report documentation is here
    ABAP Unicode Scan Tool UCCHECK
    You can use transaction UCCHECK to examine a Unicode program set for syntax errors without having to set the program attribute "Unicode checks active" for every individual program. From the list of Unicode syntax errors, you can go directly to the affected programs and remove the errors. It is also possible to automatically create transport requests and set the Unicode program attribute for a program set.
    Some application-specific checks, which draw your attention to program points that are not Unicode-compatible, are also integrated.
    Selection of Objects:
    The program objects can be selected according to object name, object type, author (TADIR), package, and original system. For the Unicode syntax check, only object types for which an independent syntax check can be carried out are appropriate. The following object types are possibilities:
    PROG Report
    CLAS Class
    FUGR Function groups
    FUGX Function group (with customer include, customer area)
    FUGS Function group (with customer include, SAP area)
    LDBA Logical Database
    CNTX Context
    TYPE Type pool
    INTF Interface
    Only Examine Programs with Non-Activated Unicode Flag
    By default, the system only displays program objects that have not yet set the Unicode attribute. If you want to use UCCHECK to process program objects that have already set the attribute, you can deactivate this option.
    Only Objects with TADIR Entry
    By default, the system only displays program objects with a TADIR entry. If you want to examine programs that don't have a TADIR entry, for example locally generated programs without a package, you can deactivate this option.
    Exclude Packages $*
    By default, the system does not display program objects that are in a local, non-transportable package. If you want to examine programs that are in such a package, you can deactivate this option.
    Display Modified SAP Programs Also
    By default, SAP programs are not checked in customer systems. If you also want to check SAP programs that were modified in a customer system (see transaction SE95), you can activate this option.
    Maximum Number of Programs:
    To avoid timeouts or unexpectedly long waiting times, the maximum number of program objects is preset to 50. If you want to examine more objects, you must increase the maximum number or run a SAMT scan (general program set processing). The latter also has the advantage that the data is stored persistently. Proceed as follows:
    - Call transaction SAMT
    - Create task with program RSUNISCAN_FINAL, subroutine SAMT_SEARCH
    For further information refer to documentation for transaction SAMT.
    Displaying Points that Cannot Be Analyzed Statically
    If you choose this option, you get an overview of the program points, where a static check for Unicode syntax errors is not possible. This can be the case if, for example, parameters or field symbols are not typed or you are accessing a field or structure with variable length/offset. At these points the system only tests at runtime whether the code is sufficient for the stricter Unicode tests. If possible, you should assign types to the variables used, otherwise you must check runtime behavior after the Unicode attribute has been set.
    To be able to differentiate between your own and foreign code (for example when using standard includes or generated includes), there is a selection option for the includes to be displayed. By default, the system excludes the standard includes of the view maintenance LSVIM* from the display, because they cause a large number of messages that are not relevant for the Unicode conversion. It is recommended that you also exclude the generated function group-specific includes of the view maintenance (usually L<function group name>F00 and L<function group name>I00) from the display.
    Similarly to the process in the extended syntax check, you can hide the warning using the pseudo comment ("#EC *).
    Applikation-Specific Checks
    These checks indicate program points that represent a public interface but are not Unicode-compatible. Under Unicode, the corresponding interfaces change according to the referenced documentation and must be adapted appropriately.
    View Maintenance
    Parts of the view maintenance generated in older releases are not Unicode-compatible. The relevant parts can be regenerated with a service report.
    UPLOAD/DOWNLOAD
    The function modules UPLOAD, DOWNLOAD or WS_UPLOAD and WS_DOWNLOAD are obsolete and cannot run under Unicode. Refer to the documentation for these modules to find out which routines serve as replacements.

  • Need information about interfaces and namespaces in actionscript 3.0

    Hi,
    I need information about actionscript interfaces and
    namespaces, I'm preparing for ACE for Flash CS3 and I need to learn
    about this subjects and I can not find resources or simple examples
    that make these subjects understandable.
    Anybody can help me!
    Thanks a lot.

    Interfaces (cont.)
    Perhaps the most useful feature of interfaces is that you not
    only can define the data type but also method signature of the
    class that implements this interface. In other words, interface can
    define and enforce what methods class MUST implement. This is very
    useful when classes are branching in packages and team of
    developers works on a large application among others.
    The general syntax for an Interface with method signatures is
    written the following way:
    package{
    public interface InterfaceName {
    // here we specify the methods that will heave to be
    implemented
    function method1 (var1:dataType,
    var2:datType,…):returnType;
    function method2 (var1:dataType,
    var2:datType,…):returnType;
    To the previous example:
    package{
    public interface IQualified {
    function method1 ():void;
    function method2 ():int;
    Let’s write a class that implements it.
    If I just write:
    package{
    public class ClassOne extends DisplayObject implements
    IQualified {
    public function ClassOne(){}
    I will get a compilation error that states that I did not
    implement required by the interface methods.
    Now let’s implement only one method:
    package{
    public class ClassOne extends DisplayObject implements
    IQualified {
    private function method1():void{
    return;
    public function ClassOne(){}
    I will get the error again because I implemented only one out
    of two required methods.
    Now let’s implement all of them:
    package{
    public class ClassOne extends DisplayObject implements
    IQualified {
    private function method1():void{
    return;
    private function method2():int{
    return 4;
    public function ClassOne(){}
    Now everything works OK.
    Now let’s screw with return datatypes. I attempt to
    return String instead of void in method1 in ClassOne:
    private function method1():String{
    return “blah”;
    I am getting an error again – Interface requires that
    the method1 returns void.
    Now let’s attempt to pass something into the method1:
    private function method1(obj:MovieClip):void{
    return;
    Oops! An error again. Interface specified that the function
    doesn’t accept any parameters.
    Now rewrite the interface:
    package{
    public interface IQualified {
    function method1 (obj:MovieClip):void;
    function method2 ():int;
    Now compiler stops complaining.
    But, if we revert the class back to:
    private function method1():void{
    return;
    compiler starts complaining again because we don’t pass
    any parameters into the function.
    The point is that interface is sort of a set of rules. In a
    simple language, if it is stated:
    public class ClassOne implements IQualified
    it says: “I, class ClassOne, pledge to abide by all the
    rules that IQualified has established and I will not function
    correctly if I fail to do so in any way. (IMPORTANT) I can do more,
    of course, but NOT LESS.”
    Of course the class that implements an interface can have
    more that number of methods the corresponding interface requires
    – but never less.
    MORE means that in addition to any number of functions it can
    implement as many interfaces as it is desired.
    For instance, I have three interfaces:
    package{
    public interface InterfaceOne {
    function method1 ():void;
    function method2 ():int;
    package{
    public interface InterfaceTwo {
    function method3 ():void;
    package{
    public interface InterfaceThree{
    function method4 ():void;
    If our class promises to implement all three interface it
    must have all four classes in it’s signature:
    package{
    public class ClassOne extends DisplayObject implements
    InterfaceOne, InterfaceTwi, InterfaceThree{
    private function method1():void{return;}
    private function method2():int{return 4;}
    private function method3():void{return;}
    private function method4():void{return;}
    public function ClassOne(){}
    Hope it helps.

  • General information about JATO.

    OK,
    We are finally ready to get off of ND4.
    I'm doing some research about our next direction.
    The way I understand it is that iMT will transform my ND apps into
    J2EE apps using the JATO architecture. Where can I find more
    information about JATO? I can't seem to find much on the iPlanet
    site, or in general. Is it on a level with Struts? Does it only work
    with iPlanet? I've contacted my iPlanet/Sun/NetDynamics rep about
    starting this process, so maybe I will get more information then. It
    just seems odd not to find it generally discussed. If I go with JATO,
    am I just locking my self into another proprietary api (ala
    NetDynamics)? Any general tips NetDynamics veterans can offer?
    John Hoskins
    john.hoskins@t...
    TDS

    John--
    I'm doing some research about our next direction.
    The way I understand it is that iMT will transform my ND apps into
    J2EE apps using the JATO architecture. Where can I find more
    information about JATO? I can't seem to find much on the iPlanet
    site, or in general.Unfortunately, as much as we've been tirelessly promoting JATO for the last
    year and a half, only now is significant public information finally going
    to be made available. The link at the bottom of each forum email will be
    live in a week or so, and will be the official public site for JATO. If
    there isn't enough information there, we'll do what we can to get additional
    information to you--just let us know your needs, or simply ask your
    questions here. Many of you may not be aware that there is even a 10+
    chapter JATO training class... We're trying very hard to make this sort of
    material available to our external users.
    Is it on a level with Struts?Since we're getting lots of these sorts of JATO questions lately, I've
    posted the JATO overview white paper to the forum files area. I recommend
    everyone read this 17 pager; it discusses what JATO is, what it aims to be,
    and how it differs from other J2EE application frameworks. You can access
    the white paper here:
    http://groups.yahoo.com/group/iPlanet-JATO/files/jato-overview.html
    Does it only work with iPlanet?NO! It is an application framework based on standard J2EE. It's been run
    successfully in just about every container on the planet. Please see the
    JATO presentations in the forum file area for more information:
    http://groups.yahoo.com/group/iPlanet-JATO/files/JATO%20Presentations/
    I've contacted my iPlanet/Sun/NetDynamics rep about
    starting this process, so maybe I will get more information then. ItWe're working hard to get the word out to everyone in iPlanet/Sun.
    Depending on who you talk to, you'll get someone very familiar with JATO, or
    someone who's never heard of it. The reason for this is that JATO is not
    being released as an official product, but is rather as a free developer
    technology. JATO has now been chosen as part of the Sun ONE architecture,
    so everyone both internally and externally will be hearing a lot more about
    it in the near future. If your rep comes back to you and has no info on
    JATO, please ask him or her to contact Charles Beckham or me for info.
    Regardless, we're the architects and engineers hanging out here, so this is
    the horse's mouth. <grin> All the JATO materials have been developed by us
    personally (which is why they're somewhat slow in coming), so just ask us if
    you have questions, here or in off-forum email, and we'll be glad to help.
    just seems odd not to find it generally discussed. If I go with JATO,
    am I just locking my self into another proprietary api (ala
    NetDynamics)? Any general tips NetDynamics veterans can offer?Please read the white paper for information that I think will squarely
    address this question. However, I will make these observations at least:
    We've done everything possible to make JATO complementary to J2EE, and we
    don't hide the underlying J2EE API from you. Instead, JATO applies
    well-known, state-of-the-art, application-level design patterns to baseline
    J2EE to help you build real-world J2EE enterprise apps. My experience is
    that enterprise architects and developers find this far more of a benefit
    than a hinderance. Furthermore, you get the source for JATO. (I've lobbied
    long and hard to make JATO open source, but you can imagine how that fares
    inside a huge company like iPlanet...)
    Anyway, I could go on and on, but please read the white paper and see the
    presentations, then let us know if you have additional questions. We'll be
    glad to answer them.
    Todd
    Todd Fast
    Senior Engineer
    Sun/Netscape Alliance
    todd.fast@s...

  • I want complete information about table maintanence genarator?

    i want complete information about table maintanence genarator?

    hi there,,,,,,,
    The purpose of table maintainence generator is to enable the table maintenance through SM30, and to implement and validation etc on table field inputs.
    SE11->Utillities->table maintainence generator
    You need to enter the values of following fields:
    1. Table name
    2. Authorization group , and authorization object (select the suitable one )
    3. Function group and package
    4. Maintainence type : single or double screen maintainence view depending on the option selected.
    5. Maintain screen number : you may specify a value or let the system generate one for you.
    The validation code for the table entry is written in the flow logic of this screen. Even some of the fields may be made display only , by adding suitable code in the logic or directly disabling the input in table control in the layout.
    Table maintanance is for creating,adding datas to an existing table.
    it is for adding muiltiple records at a time in the table
    A table can be manipulated by a program or manually.
    When creating table, you will find a check box 'Table maintenance allowed'. If we
    check that option, we can manually enter entries using SE16 or table
    maintenance generator screen.
    SE16 is for data browser.
    Go to SE11, give the table name and click on change. Then Go to utilities--> Table
    maintenance generator.
    In the table maintenance generator screen, we should give Authorization Group,
    Function Group name (Function Group name can be same as table name),
    Maintenance type can be one step or two step, usually we will create with one
    step. we should give maintenance screen number. After clicking on create button,
    a table maintenance generator will be created.
    To check it go to SM30 . In SM30, we find display, Maintain options.
    We can view the table contents by choosing Display and we can create table
    entries by choosing Maintain.
    In the production system, end-users will not be having access to transaction
    codes like SE11 and SE16. Developers will not be having access to many
    transaction codes including the above two.
    To view the contents of the database table, we will use SE16n in Production
    system. Please find out the difference between SE16 and SE16n.
    All these authorizations will be maintained by BASIS team, by creating access
    profiles.
    So in order to edit or create the contents of a database table, we should go for
    table maintenance generator. In real time, authorizations will be maintained in
    production system. (even in development and Test systems to some extent).
    There is an audit like Sarbanes-Oxley Act for American clients, where every thing
    will be audited by government agency. To know more about SOX, use the links on
    the right hand side of this page.
    The second reason is, we can edit or create multiple entries at a time, using table
    maintenance generator.
    Apart from that we have options like 'Enter conditions' in table maintenance
    screen SM30. Please try to find out the use of those, by creating an example.
    Table Maintenance generator: Difference between one step and two steps.
    While creating table maintenance generator, we find below options:
    When we choose one step, we have to give the screen number in Overview Screen field.
    When we choose two step, we have to give both overview screen number and single screen number.
    You can give any number for screen. Don’t give 1000 screen number. As this
    number is reserved for selection screen.
    When we choose two step, two screens will be created for table maintenance. For
    single step only one screen will be created.
    When we choose two step, table maintenance will work as follows
    Go to SM30, give the table name for which you have created table maintenance-
    Overview screen will be displayed. To create entries, when you click on ‘new
    entries’. Another screen will be displayed, where you give input and save. You can
    enter one record at a time.
    Go to SM30; give table name for which you have created table maintenance-
    Overview screen will be displayed; To create entries click on ‘new entries’, you can
    enter the records on the same screen. You can enter multiple records at a time.
    We use single step generally, as it is user friendly.
    To completely understand the difference and above points please do exercise by
    creating table maintenance generator in both ways (using single step and two
    step).
    Link: http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ed2d446011d189700000e8322d00/content.htm
    Link: http://help.sap.com/saphelp_46c/helpdata/en/a7/5133ac407a11d1893b0000e8323c4f/frameset.htm
    Link: /message/2831202#2831202 [original link is broken]
    One step, two step in Table Maintenance Generator
    Single step: Only overview screen is created i.e. the Table Maintenance Program will have only one screen where you can add, delete or edit records.
    Two step: Two screens namely the overview screen and Single screen are created. The user can see the key fields in the first screen and can further go on to edit further details.
    pls reward if useful
    regards,
    rekha

  • Sync Problem on OUTLOOK fields like Address and no...

    OVI does copy outlook address and Note fields on its base (and on the Nokia base), but NOT onto the mobile although Memory size is big enough (see later). Sync message is "success".
    I restarted from scratch to avoid all conflicts (Phone, Ovi and Nokia internet base totally emptied). Sync works OK and copies outlook contacts fully on its own base, but address fields are not copied onto the mobile (Telephone connected via USB)
    The only way I found to get them onboard was to copy contacts (drag & drop) from Ovi onto the phone. Unfortunately, this causes all other fields (Phone numbers, E-mail) to be copied again as if they were additional fields and synchronization pushes all theese additional fields on Ovi Data base and Nokia data base. Finally I get a base not usable to be transferred on other phones.
    I suppose this is because Nokia software does not recognize Telephone 2 or address 2 outlook fields as such. It would be ok with me if I had a way to get all existing outlook address fieds being copied at the beginning. Thanks for any help

    Hi!
    I am using a X3-02 with Ovi Suite and seem to have the same problem.
    I'm also interested to find a solution.
    There seem to be several cases with different phones and Ovi Suite as well as Nokia PC suite discussed in this dicussion portal. But I didn't find any solution here.
    Some details from my case maybe extend the picture of the problem:
    Outlook and Ovi Suite (latest version, updated today) exchange contact data as desired (Names, multiple phone numbers, provate and business addresses, notes, ...). The address data is visible and editable in the Ovi Suite.
    Ovi Suite and Nokia X3-02 "successfully synchronize" (as stated by Ovi Suite) contacts. But there are no addresses (or sometimes only the country)! Names, numbers, e-mail-address and notes are available.
    Deleting all contacts on the mobile and resynchronizing does not solve the problem.
    Editing the contacts in the Ovi Suite and synchronizing afterwards does also not solve the problem.
    Looked for some information about field mapping (assignment from one source to another, sometimes possible when exporting from Outlook), but didn't find any hint.

  • Report with information about release documents in VKM1

    Hello
    I need to know if exists some report that gives me more information about release documents in transaction VKM1. What user releases some document? How many documents a credit account had been release or block in a year or between dates?
    The transaction VKM2 just gives the release date of the document and not the user.
    Where I can find more information?
    Regards
    Daniel Teles

    Hi,
    There is a field to know which account is the parent account, but you can't have others informations from the parent account except the name. In the new R16, you have others field called "Parent Account external unique ID" and "Parent Integration ID". What can I do with this field? Is it possible to display the parent account phone field in the report?
    regards

  • I contacted Apple support.UK on 22nd December 2011-12-23. I informed about  the problem was likely to be with the apparatur.However  I tried my father's Ipad2 last night.software is the same my Ipad2's IOS 5.0.1 (9A405), to my surprise it worked properly.

    Hi! My name is Nazım . I live in North Cyprus. I’ve got Apple Ipad 2 and  Iphone 4. My ıpad2 is iPad 2 Wi-Fi + 3G:  Serial number: DQTFFVC1DFJ3., IOS 5.0.1 (9A405), model MC775LL .my itunes is last version. I bought my ipad  from America.
    I’ve recently bought Philips DC390 from  Apple Store in Oxford Street. Althouh Philips dock 1 seemed  to work properly (charged and player). The second dock isnot compatible with my ipad2. It didn’t work(play),It charges though.
    I sended e-mailed to Philips.uk for assistance. They recomend met o reset my  ipad2 to see if this clears any issue, but it does indicate a fault with the unit. It didn’t work either.s(everal time Ireset my Ipad2)
    In addition to this, I contacted Apple support.UK on 22nd December 2011-12-23. I informed about  the problem was likely to be with the apparatur.However  I tried my father’s Ipad2 last night.software is the same my Ipad2’s IOS 5.0.1 (9A405), to my surprise it worked properly. I’ve already reset my ipad2 several times but it didn’work.
    I would be grateful if you could make me some recommendations to sort out the refered my problem.

    Hi Nazim
    This is a user to user group.  There is no-one from Apple here.
    Use this link to contact Apple directly.

  • How to get information about PowerPivot options

    I was going through the Custom Xml structure present after unzipping a PowerPivot enabled excel file.
    My main motive is to extract information pertaining to PowerPivot options present in the Excel File.
    It had around 16- 19 Custom Xmls, I had a little confusion and it would be great if you could help me on this :
    1. In the workbook.xml.rels file, there is entry for each Cutomxml file. For ex. –
    But according to my interpretation, each of these entries must be referenced also. What i mean is that the specific Rel ID i.e. rId30 (for the above entry) must be referred somewhere in the package that is why it is mentioned in the Workbook.xml.rels.
    But i couldn’t find it anywhere. So how does Excel does all the mapping that which Custom XML is referred to?
    2. I found out that for each table in the PowerPivot window, there is a Custom XML present in the Custom XML’s folder.
    But, there are other field also present such as ‘ColumnFormat’, ‘ColumnNegativePattern’, but these are not getting updated whenever I am changing these for any table.
    I can get the Column names of the table but how can i find out what Format has been applied to the Column of the tables.
    3. Moreover, I found a bunch of Custom XML’s but couldn’t really make sense out of them that what they were pointing to.
    For ex. – CustomXml with namespace – Gemini xmlns=”http://gemini/pivotcustomization/a1265ca3-5c9c-4281-be48-a1a026385b0a”
    or “Gemini xmlns=”http://gemini/pivotcustomization/IsSandboxEmbedded””
    It would be highly beneficial if you can help with these namespaces and their interpretation.
    4. I understand that majority information is present in the database i.e. Item.data file and also in the Temp folders when the file is opened.
    I got through some files present in the Temp Folder and could get my hands on information about Column Format, Formula in case of Calculated Columns. But how do I find out the exact path for the Temp folder every time I open the file.
    I could find some paths in the Item.data file in the BackUpFile nodes but those didn’t exist.
    So is there is any way by which I can get those paths.
    Sorry if the query is a little long, but I am actually stuck with the above questions acting as bottleneck.
    Thanks a lot!!
    Sahil Puri

    What version of Power Pivot are you on?
    Thanks!
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • HOW TO GET INFORMATION ABOUT THE CLIENT MACHINE AT DATABASE LEVEL

    HOW TO GET INFORMATION ABOUT THE CLIENT MACHINE AT DATABASE LEVEL USING 10g Database and 10g Application Server
    we have developed an application using oracle forms 10g with
    oracle database 10g and Application server 10g
    Application uses a single Oracle User name to connect to database
    where as at Application level there are different users (these are not database users)
    Now how can we get the information about the user/his machine etc. at database level. earlier in 6i/8i we use to get by using
    USERENV('TERMINAL')
    we had written a triggers on tables on Insert/Update where we used to update a database field Last user terminal with USERENV('TERMINAL')
    but not this information is comming to be the machine name of application server where as we wish this to be the machine name of Client. Any Way outs
    thanks
    Chaand Kackria

    hi, you can use the sys_context function, like this:
    select sys_context('userenv','current_user'),
         sys_context('userenv','os_user'),
         sys_context('userenv','host'),
         sys_context('userenv','ip_address'),
         sys_context('userenv','instance'),
         sys_context('userenv','sessionid'),
         sys_context('userenv','terminal')
    from dual;
    Is this what you 're looking for?

Maybe you are looking for

  • How to get user information in a standalone java class

    Is there a way to retrieve it in a stand alone java class (with no access to request object)? If so how do I get it? Thanks, Deepak

  • Connecting to a database from Business Components JSP Application

    Hallo All! Can anybody give me an advice about connecting to a database from Business Components JSP Application? In all examples I see that Oracle user name and password placed in configuration file. How can user provide his own name and password to

  • Hyperion system 9.3.1 installation

    Hi All, I have successfully installed and also configured planning BPM(Performance Management Architech) everything has been done successfully. I think to create planning application we have to use Performance Management Architech which I should be a

  • Consolidation group change: Balance sheet/income statement balance 14,560

    Dear All, While performing the consolidation group change task, system throws the error message : Balance sheet/income statement balance 14,560,497.62- INR Message no. UCD1011 Diagnosis The document to be posted is not completely in balance. Entries

  • Data Acquisition form single precision to binary format

    Hi everybody, I work in an Astrophysics group and I'm developing an acquisition system of signals generated by X-Ray detectors (Transition Edge Sensor). I'm trying to save data acquired by NI-PXI 6132 (DAQ-mx software in LabVIEW 8.0) in binary format