Where is the B1 field that contains the ITEM DESCRIPTION in the ecommerce

Is there a place in B1 where we can put in the ITEM DESCRIPTION?
I lookever all over but I don't think the ITEM description in the ecommerce side exists in B1.
Mike

Mike, I think you might be referring to the Part Name (which is really the description), "PartsMaster.PartName," from Web Tools. If so, the matching field in B1 is Item Name, "OITM.ItemName."

Similar Messages

  • Okay i had to install Itunes onto my new OS because window's Vista messed up on me and i can't get any of my old purchases back from my account such as music and movies any ideas on how to get them back (i do not have the folder that contains old items)

    Okay i had to install Itunes onto my new OS because window's Vista messed up on me and i can't get any of my old purchases back from my account such as music and movies any ideas on how to get them back (i do not have the folder that contains old items from the last itunes or anything from that OS because it had a virus and i just wanted windows 7)

    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Hope this helps,
    JD

  • Search for  a big varchar2 field that contains specific string

    Hi to all,
    I've created a table with VARCHAR2 column and size of 4000 and a CONTEXT index for it. I use this SQL statement to search for a field that contains a specific word:
    SELECT text_body
    FROM my_table
    WHERE CONTAINS(text_body,'my_word')>0;
    this goes so well in SQL plus, so how can I implement this in my form?
    Thanks.

    Dear Craig,
    I installed forms 10g R2 ,besides I corrected a fault in the LOOP syntax.Thanks, The code now is correct with the function CONTAINS. but when I run my form and push the button, my form takes lots of time and return two errors:
    frm-41839 "Disc I/O error on temporary record buffer file%s".
    and frm-40900 "Unable to locate record buffer. Clear form to continue".
    the second error occurs due to memory low space I think.
    Dear Morgan,
    You are totally right with the function INSTR, but I use the function CONTAINS as it has large capabilities in my search. I even use CTXCAT index instead of CONTEXT index ,with function CATSEARCH but the problem still exists. All of the previous ways run better in SQL but not in forms(without cursor). Suppose I'm wrong with this technique. Is there another way to make such a search?!
    This is the new code:
    DECLARE
         CURSOR cc IS
    SELECT *
    FROM my_table
    WHERE CONTAINS(MY_TEXT_FIELD,'first_word AND second_word')>0;
    copy_cc my_table%rowtype;
    BEGIN
         OPEN cc;
         FETCH cc INTO copy_cc;
              LOOP
              :FORM_TEXT_FIELD:=copy_cc.my_text_field;
         EXIT WHEN cc%notfound;
              NEXT_RECORD;
              END LOOP;
              CLOSE cc;
    END;
    Regards.
    Waleed.

  • Quering on blob fields that contain XML

    Hi All,
    I need to query on blob fields that contain XML data. So I wanna say give me XML docs where ELEMENT[@ATTRIBUTE='VALUE']. So, I need to be able to query on attributes. Is there any way to do that?
    Thanks.

    Thanks for the attempt, but tried what you suggested and it will only pull records where the Asterisk is the ONLY character in that data field.
    Maybe I wasn't clear enough.
    I have in access of 200,000 records in KNA1, out of which some of them have one or more * values in the some of the fileds, eg: Comany ABC At XXXX road Workshop  is stored in the Name 1 field, I want all records like this where * is one of the characters in that field.
    May have to download the entire lot and use Excel to filter.

  • Creating a form with a field that contains a simple math problem.

    I am creating a form in Acrobat 9 Standard that contains a field that requires a simple math function (divide).
    if (QuantityRow1 > 0)
    ExtensionRow1 / QuantityRow1
    Take the value input in ExtensionRow1 and divide it by the value in QuantityRow1. I have included an IF statement to prevent an error that occur if QuantityRow1 were equal to zero.
    After inputting the data into the two fields I tab past the field where I expect to see my result and the field remains blank. I don't receive any error messages.
    Any ideas? Thanks - jb

    This is a duplicate of your question on Acrobatusers.com (
    http://answers.acrobatusers.com/Need-simple-math-operation-function-Acrobat-9-Standard-cre ating-form-q142800.aspx
    Did the information provided there not help you with your problem?
    Karl Heinz Kremer
    PDF Acrobatics Without a Net
    PDF Software Development, Training and More...
    [email protected]
    http://www.khkonsulting.com

  • Visio Drawing Using Data Graphics with data that has a field that contains Multiple Values.

    I am working on creating a drawing for SMTP connectors.  I decided I would use a Data Graphic connecting to a spreadsheet.  In the spreadsheet there are a few fields that are Multi-Value fields.  For instance SmartHosts contains multiple Ip
    address.  I am trying to get this to format things so that the IPs show on the next line down instead of continuing on the same line until it wraps. 
    Does anyone know a way I could do this?
    Jeff C

    Hi Jeff,
    Arrange the IP values in spreadsheet using Alt+Enter (Use this key pair as a separator between two IP values). Now link this spread sheet to Visio. The values should appear in the same manner in data graphics as your expectation.
    Let me know if you meant something else.
    Thanks,
    Dheeraj 

  • User query that will populate item description from items checked in prop.

    Hi everyone I have a question about a user query that needs to be created.
    In the item master data form under the properties tab I need what ever is checked in that table to be populated in the Description field. I dont know if this is possible or not but can please someone help me with this. Thanks

    I am not sure if it can be done while in Add Mode as the values of Properties checked might not be available till the Item is added to the database.
    Through Stored procedure you can do this once you add the Item Code.
    The Code for the same is as below.  You need to Pass 3 parameters
    The SQL to call the SP from the Item Description field would be
    EXEC     [dbo\].[ITEMDESC\] $\[$5.0.0], $\[$39.0.0], $\[$114.0.0]
    CREATE PROCEDURE [dbo\].[ITEMDESC\](@ITEM NVARCHAR(20), @ITMSGRPCODE NVARCHAR(3), @FIRMCODE NVARCHAR(3))
    AS
    BEGIN
         DECLARE @GrpName AS NVARCHAR(20), @FirmName AS NVARCHAR(30)
         DECLARE @SQLString nvarchar(500), @I AS INT, @N AS NVARCHAR(2), @OUTPUT AS NVARCHAR(100), @PNAME AS NVARCHAR(100)
         DECLARE @ParmDefinition nvarchar(500)
         SET @ParmDefinition = '@ITEM NVARCHAR(20), @OUTPUT NVARCHAR(100) OUTPUT'
         SET @PNAME = ''
         SET @I = 1
         WHILE @I <= 64
         BEGIN
              SET @N = CAST(@I AS VARCHAR(2))
              SET @SQLString = 'SELECT @OUTPUT = CASE WHEN T0.QryGroup' + @N + '= ''Y'' THEN T1.ItmsGrpNam ELSE '''' END FROM [dbo\].[OITM\] T0, [dbo\].[OITG\] T1
                             WHERE T0.ITEMCODE = @ITEM AND T0.QryGroup'+@N + '= ''Y'' AND ItmsTypCod = '+@N
              EXECUTE sp_executesql @SQLString, @ParmDefinition,@ITEM, @OUTPUT OUTPUT
              SET @I = @I + 1
              IF @OUTPUT <> ''
              BEGIN
                   SET @PNAME = @PNAME + (@OUTPUT + ', ')
                   SET @OUTPUT = ''
              END
         END
         SELECT @GrpName = ItmsGrpNam FROM OITB WHERE ItmsGrpCod = @ITMSGRPCODE
        SELECT @FirmName = FirmName FROM OMRC WHERE FirmCode = @FIRMCODE
         SELECT @GrpName + ', ' + @PNAME + @FirmName
    END

  • How to retreive data from a field that contains a "|" symbol

    Hi,
    Hopefully my title won't confuse anyone .
    Well I am trying to create a group which would display an employee name(s).
    In my case, the value comes from a field which can contain multiple values separated by a "|" symbol. See picture below.
    I am pretty sure I will have to write a formula for this but simply don't know where to begin or how to write it.
    Table use in this example is "ProductionProjectGroups" and will be linking this table to the "Employees" table which will display the actual employee name.
    Does anyone knows how to display data if there is a "|" symbol in the field?
    If you request more info please let me know.
    Thank you in advance for the help.
    Joe

    Hi Abhilash,
    I am looking for help on how to extract the employee's name from this field.
    I have also posted more pictures with details as requested.
    Thank you
    Joe

  • Can I fullfill from BADI customer fields that appear at item overview ?

    Hi,
    I can see that in SAPLBBP_SC_UI_ITS 120 (item overview) I have fields CUST1...CUST5.  called in runtime GT_SCR_ITMOVR_I-CUST1....
    I have tried to show content using a screen variant, but I haven't achieved. I think that is working but this field doesn't have value although I have customer fields at position level in the shopping cart. Even I have tried to call one of my customer fields CUST1 but without result
    Is possible to fullfill this content from BADI, without standar modification
    Best regards

    Hi,
    Data in custom fields can be filled using BADI BBP_DOC_CHANGE_BADI.
    In this BADI you can place your own logic to fill data in these fields.
    After BADI implementation data will appear in these fields.
    Hope this will solve your problem.
    Regards,
    Brajvir

  • What are the tables that Contains DTP Filter Entries

    Hello,
    for the filter entries on a DTP Process I found the table RSBKSELECT "Selections for DTP Request (Summary)". But that holds only value which are done generic by Formula etc. but not the information which are entered manual.
    Does anybody knows the table for the rest of entries ??
    I need this Information to Report these Filter as Selectioncriteria.
    Thank for any help
    Henning

    Hi,
    Please note that I was able to link the tables by this kind of code:
    "Get the request from the cube, to identify them.
        CALL FUNCTION 'RSSM_ICUBE_REQUESTS_GET'
          EXPORTING
            i_infocube     = LV_IC
          IMPORTING
            e_t_request    = LT_REQUEST
          EXCEPTIONS
            wrong_infocube = 1
            internal_error = 2
            others         = 3.
    "Check each request
        LOOP AT LT_REQUEST INTO LS_REQUEST.
          "Populate LV_REQUID_CHAR to be able to read the table RSBKSELECT
          "The key is : Request id, without leading 0, right justified, and shifted one time to the left.
          LV_REQUID_CHAR = LS_REQUEST-PARTNR.
          SHIFT LV_REQUID_CHAR LEFT DELETING LEADING '0'.
          SHIFT LV_REQUID_CHAR RIGHT DELETING TRAILING SPACE.
          SHIFT LV_REQUID_CHAR LEFT.
          "Get the filters
          SELECT  *
            INTO TABLE LT_RSBKSELECT
            FROM RSBKSELECT
            WHERE REQUID = LV_REQUID_CHAR.
    ENDLOOP.
    The internal table LT_RSBKSELECT will now contains all the filters used by the DTP.
    It is way better than using the field that contains the concatenation of all filters since it is limited to 255 characters.
    Hope it helps.

  • Hide form field based on name that contains certain characters

    I think this is an easy one.
    We're looking for help with a script that will hide all instances of text fields that contain a certain value. We have a function running that applies to the same text fields, however, each text field had to be tagged with a number at the end. Also running with this is a custom save button that flattens the page and hides certain elements before saving out. The hide function works pretty straightforward with "this.getField… = display.hidden;". The issue is that we don't want to repeat this for every single instance of the text fields that share the same name.
    We need it look for every text box that has a similar title so for instance if we had multiple fields like this…  "my-text-field-01", "my-text-field-02" and "my-text-field-03" we want the script to look for the name "my-text-field" and hide all instances of that.
    Hope this makes sense, sorry, our programming skills are still amateur. Thanks in advance for any help.

    You can do that if you use a heirarchical naming convention. So instead use something like: my-text-field.1, my-text-field.2, etc.
    You can then hide them all like:
    // Hide all of the "my-text-field" fields
    getField("my-text-field").display = display.hidden;

  • Parsing text from CLOB field that's stored as XML

    I have a CLOB field that contains an XML string. That looks like the text below. Is it possible to parse out the text string Denied NOW!!!. I basically want to parse out the data between the first encounter of the <CommentBody> tag.
    <CommentHeader>Whatever<CommentDate>2010-01-21-15.16.48.000000
    </CommentDate></CommentHeader><CommentBody>Denied NOW!!!</CommentBody>
    <CommentHeader>Whatever<CommentDate>2010-01-21-15.10.38.000000
    </CommentDate></CommentHeader><CommentBody>Denied YESTERDAY!!!</CommentBody>
    Thanks all!!
    Edited by: user11938977 on Jun 28, 2010 11:32 AM

    Thanks everyone! I'm using Oracle 11.1.0.7.0
    It seems to work as long as the Text Contents of CommentBody tag is one word without spaces. If there are spaces in between the tags it errors out. Here's the SQL:
    SELECT extractvalue( xmltype('<root>'||t.comments||'</root>'),
    'root/CommentBody[1]' ) as "CommentBody"
    FROM AP_VCHR_AW t
    When COMMENTS contains this data it errors out:
    <CommentHeader> <CommentDate>2010-03-04-17.52.53.000000
    </CommentDate></CommentHeader><CommentBody>This is an approved vuocher</CommentBody>
    <CommentHeader> <CommentDate>2010-03-04-17.52.53.000000
    </CommentDate></CommentHeader><CommentBody>This is an approved vuocher</CommentBody>
    When COMMENTS contains this data the SQL succeeds:
    <CommentHeader>at <CommentDate>2010-01-21-15.16.48.000000
    </CommentDate></CommentHeader><CommentBody>Denied!!!</CommentBody>
    <CommentHeader> at <CommentDate>2010-01-21-15.10.38.000000
    </CommentDate></CommentHeader><CommentBody>Denied!!!</CommentBody>

  • How to customize a List object to contain line items other than String

    I'd like to create a List that contains line items with the following form:
    check box followed by a string followed by a button.
    I'd like the list to be backed by an object array that has a similar form:
    boolean, String, boolean
    which define if the item is checked, it's title, and whether or not to display the button.
    So I'd like to have code something like this:
    // ten items in this lists
    MyList myList = new MyList(10);
    // first item
    MyObject myObject = new MyObject(false, "Item 1", true);
    myList.add(myObject);
    // add the rest of the items...I can't use Swing, I only have AWT available in a J2ME environment.
    Where do I start?
    Can I do this with List?
    I've looked at GridBagLayout but I'm unfamiliar with it. Would a GridBagLayout work?
    Do I need to create a custom control from scratch (based on Panel or ScrollPane, for example) to accomplish this?
    Thanks,
    Nick.

    List only takes Strings. Here's an possibility with GridBagLayout:
    import java.awt.*;
    import java.awt.event.*;
    public class ListTest implements ActionListener
        Object[][] data =
            { Boolean.TRUE,  "John Ericsen",   Boolean.TRUE  },
            { Boolean.FALSE, "Heidi Pall",     Boolean.TRUE  },
            { Boolean.FALSE, "Gregg Fletcher", Boolean.FALSE },
            { Boolean.TRUE,  "Pieter Gaynor",  Boolean.TRUE  },
            { Boolean.TRUE,  "Janice Clarke",  Boolean.TRUE  },
            { Boolean.TRUE,  "May McClatchie", Boolean.FALSE },
            { Boolean.TRUE,  "Bill Horton",    Boolean.TRUE  },
            { Boolean.FALSE, "Helmet Krupp",   Boolean.TRUE  },
            { Boolean.FALSE, "Ian George",     Boolean.TRUE  },
            { Boolean.TRUE,  "Jill Smythe",    Boolean.FALSE }
        public void actionPerformed(ActionEvent e)
            Button button = (Button)e.getSource();
            String ac = button.getActionCommand();
            System.out.println("ac = " + ac);
        private Panel getPanel()
            Panel panel = new Panel(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.insets = new Insets(2,2,2,2);
            //gbc.weightx = 1.0;         // horizontal dispersion
            //gbc.weighty = 1.0;         // vertical dispersion
            for(int j = 0; j < data.length; j++)
                Checkbox cb = new Checkbox("", ((Boolean)data[j][0]).booleanValue());
                gbc.gridwidth = 1;
                panel.add(cb, gbc);
                gbc.gridwidth = GridBagConstraints.RELATIVE;
                gbc.anchor = GridBagConstraints.WEST;
                panel.add(new Label((String)data[j][1]), gbc);
                gbc.anchor = GridBagConstraints.CENTER;
                gbc.gridwidth = GridBagConstraints.REMAINDER;
                if(((Boolean)data[j][2]).booleanValue())
                    Button b = new Button("call");
                    b.setActionCommand((String)data[j][1]);
                    b.addActionListener(this);
                    panel.add(b, gbc);
                else
                    panel.add(new Label("  "), gbc);
            return panel;
        private Panel getList()
            Panel child = getPanel();
            ScrollPane scrollPane = new ScrollPane()
                public Dimension getPreferredSize()
                    return new Dimension(200, 125);
            scrollPane.add(child);
            Panel panel = new Panel(new GridBagLayout());
            panel.add(scrollPane, new GridBagConstraints());
            return panel;
        private static WindowListener closer = new WindowAdapter()
            public void windowClosing(WindowEvent e)
                System.exit(0);
        public static void main(String[] args)
            Frame f = new Frame();
            f.addWindowListener(closer);
            f.add(new ListTest().getList());
            f.setSize(400,400);
            f.setLocation(200,200);
            f.setVisible(true);
    }

  • Semantic Zoom - Show letters containing no items

    How can I show letters of the alphabet, which contain no items beginning with that letter (in gray) within the ZoomedOutView view of my semantic zoom control?
    I want to achieve something like this (excluding 'Social', 'Favorites' and '#'): 
    but I end up with this:
    MetropolitanDataSource.cs
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    namespace EELL
    using System;
    using Windows.UI.Xaml.Data;
    using Windows.UI.Xaml.Media;
    // To significantly reduce the sample data footprint in your production application, you can set
    // the DISABLE_SAMPLE_DATA conditional compilation constant and disable sample data at runtime.
    #if DISABLE_SAMPLE_DATA
    internal class SampleDataSource { }
    #else
    public class Item : System.ComponentModel.INotifyPropertyChanged
    public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
    protected virtual void OnPropertyChanged(string propertyName)
    if (this.PropertyChanged != null)
    this.PropertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
    private string _Station = string.Empty;
    public string Station
    get
    return this._Station;
    set
    if (this._Station != value)
    this._Station = value;
    this.OnPropertyChanged("Station");
    private string _Zone = string.Empty;
    public string Zone
    get
    return this._Zone;
    set
    if (this._Zone != value)
    this._Zone = value;
    this.OnPropertyChanged("Zone");
    private string _Link = string.Empty;
    public string Link
    get
    return this._Link;
    set
    if (this._Link != value)
    this._Link = value;
    this.OnPropertyChanged("Link");
    public class GroupInfoList<T> : List<object>
    public object Key { get; set; }
    public new IEnumerator<object> GetEnumerator()
    return (System.Collections.Generic.IEnumerator<object>)base.GetEnumerator();
    public class StoreData
    public StoreData()
    Item item;
    item = new Item();
    item.Station = "Aldgate";
    item.Link = "/Lines and Stations/Metropolitan/Aldgate_(Metropolitan).xaml";
    Collection.Add(item);
    item = new Item();
    item.Station = "Moorgate";
    item.Link = "/Lines and Stations/Metropolitan/MOG_(Metropolitan).xaml";
    Collection.Add(item);
    private ItemCollection _Collection = new ItemCollection();
    public ItemCollection Collection
    get
    return this._Collection;
    internal List<GroupInfoList<object>> GetGroupsByCategory()
    List<GroupInfoList<object>> groups = new List<GroupInfoList<object>>();
    var query = from item in Collection
    orderby ((Item)item).Zone
    group item by ((Item)item).Zone into g
    select new { GroupName = g.Key, Items = g };
    foreach (var g in query)
    GroupInfoList<object> info = new GroupInfoList<object>();
    info.Key = g.GroupName;
    foreach (var item in g.Items)
    info.Add(item);
    groups.Add(info);
    return groups;
    internal List<GroupInfoList<object>> GetGroupsByLetter()
    List<GroupInfoList<object>> groups = new List<GroupInfoList<object>>();
    var query = from item in Collection
    orderby ((Item)item).Station
    group item by ((Item)item).Station[0] into g
    select new { GroupName = g.Key, Items = g };
    foreach (var g in query)
    GroupInfoList<object> info = new GroupInfoList<object>();
    info.Key = g.GroupName;
    foreach (var item in g.Items)
    info.Add(item);
    groups.Add(info);
    return groups;
    // Workaround: data binding works best with an enumeration of objects that does not implement IList
    public class ItemCollection : IEnumerable<Object>
    private System.Collections.ObjectModel.ObservableCollection<Item> itemCollection = new System.Collections.ObjectModel.ObservableCollection<Item>();
    public IEnumerator<Object> GetEnumerator()
    return itemCollection.GetEnumerator();
    System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
    return GetEnumerator();
    public void Add(Item item)
    itemCollection.Add(item);
    #endif
    Metropolitan_line.xaml.cs
    using Exits_Expert_London_Lite.Common;
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Runtime.InteropServices.WindowsRuntime;
    using Windows.Foundation;
    using Windows.Foundation.Collections;
    using Windows.UI.Xaml;
    using Windows.UI.Xaml.Controls;
    using Windows.UI.Xaml.Controls.Primitives;
    using Windows.UI.Xaml.Data;
    using Windows.UI.Xaml.Input;
    using Windows.UI.Xaml.Media;
    using Windows.UI.Xaml.Navigation;
    // The Basic Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234237
    namespace Exits_Expert_London_Lite.Lines_and_Stations.Metropolitan
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class Metropolitan_line : Page
    public Metropolitan_line()
    this.InitializeComponent();
    StoreData _storeData = null;
    // creates a new instance of the sample data
    _storeData = new StoreData();
    // sets the list of categories to the groups from the sample data
    List<GroupInfoList<object>> dataLetter = _storeData.GetGroupsByLetter();
    // sets the CollectionViewSource in the XAML page resources to the data groups
    cvs2.Source = dataLetter;
    // sets the items source for the zoomed out view to the group data as well
    (semanticZoom.ZoomedOutView as ListViewBase).ItemsSource = cvs2.View.CollectionGroups;
    #region Data Visualization
    /// <summary>
    /// We will visualize the data item in asynchronously in multiple phases for improved panning user experience
    /// of large lists. In this sample scneario, we will visualize different parts of the data item
    /// in the following order:
    /// 1) Placeholders (visualized synchronously - Phase 0)
    /// 2) Tilte (visualized asynchronously - Phase 1)
    /// 3) Image (visualized asynchronously - Phase 2)
    /// </summary>
    /// <param name="sender"></param>
    /// <param name="args"></param>
    void ItemsGridView_ContainerContentChanging(ListViewBase sender, ContainerContentChangingEventArgs args)
    ItemViewer iv = args.ItemContainer.ContentTemplateRoot as ItemViewer;
    if (args.InRecycleQueue == true)
    iv.ClearData();
    else if (args.Phase == 0)
    iv.ShowPlaceholder(args.Item as Item);
    // Register for async callback to visualize Title asynchronously
    args.RegisterUpdateCallback(ContainerContentChangingDelegate);
    else if (args.Phase == 1)
    iv.ShowStation();
    args.RegisterUpdateCallback(ContainerContentChangingDelegate);
    else if (args.Phase == 2)
    iv.ShowZone();
    // For imporved performance, set Handled to true since app is visualizing the data item
    args.Handled = true;
    /// <summary>
    /// Managing delegate creation to ensure we instantiate a single instance for
    /// optimal performance.
    /// </summary>
    private TypedEventHandler<ListViewBase, ContainerContentChangingEventArgs> ContainerContentChangingDelegate
    get
    if (_delegate == null)
    _delegate = new TypedEventHandler<ListViewBase, ContainerContentChangingEventArgs>(ItemsGridView_ContainerContentChanging);
    return _delegate;
    private TypedEventHandler<ListViewBase, ContainerContentChangingEventArgs> _delegate;
    #endregion //Data Visualization

    Yes, it only shows the letters that contain children items.
    Please have a look at my code snippet below and tell me what needs to change:
    internal List<GroupInfoList<object>> GetGroupsByLetter()
    var letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ".ToList();
    var groupByAlphabets = from letter in letters
    select new
    Key = letter,
    Items = (from item in Collection
    where ((Item)item).Station.StartsWith(letter.ToString(), StringComparison.CurrentCultureIgnoreCase)
    orderby ((Item)item).Station
    group item by ((Item)item).Station[0] into g
    select g)
    List<GroupInfoList<object>> groups = new List<GroupInfoList<object>>();
    foreach (var g in groupByAlphabets)
    GroupInfoList<object> info = new GroupInfoList<object>();
    info.Key = g.Key;
    foreach (var item in g.Items)
    info.Add(item);
    groups.Add(info);
    return groups;

  • How I can find all the entities bol that contains a field.

    Hello, I'm trying to find all the entities bol that contains the field account_group, in the model_browser but in Tx "GENIL_MODEL_BROWSER" I have to see all bol entities if contains this field.
    My question is:
    Is there a transaction or other method where I introduce the field and appear all the Bol entities that contains this field????
    Thanks in advance

    To delete network locations:
    System Preferences / Network
    On the locations drop down menu, select Edit Locations, choose the location you want to remove and click on the minus sign.

Maybe you are looking for

  • LVOOP "call parent method" doesn't work when used in sibling VI

    It seems to me that the "call parent method" doesn't work properly according to the description given in the LabVIEW help. I have two basic OOP functions I am doing examples for. I can get one to work easily and the other one is impossible. Backgroun

  • Display freezes, goes wonky, then gray... machine wont start.

    Running OS X 10.8.2. About 30 days ago my machine display suddenly started to display an all static screen, then showed two screens side by side, then went gray. I forced the machine to shut down and it would not start. I tried a safeboot, then a SMC

  • ITAB  data as an mail attachment

    Hi all, I wantto send the ITAB Data as an mail attachment. But i amgetting error. Mail not been sent . What is the mistake i am doing ? TABLES:adr6. TYPES: BEGIN OF t_test,        x(3),        y(3),        z(3),      END OF t_test. DATA: itab TYPE ST

  • Best Practices - WOrking with lot of fields

    I am working on new modules based on a migrated project. And I have many fields to work with, which is making the code large and repetitive (kind of). If I follow the existing structure (from migration) it works fine but I am looking for better ways

  • WRT54G lost wifi

    Hi, My WRT54G lost the wifi connection. I can get the internet if I connect the cable from my modem to my computer but my wireless connection is gone. So it's an issue with the router or settings. I called Linksys and was told the settings would have