Change the name of Items

Hi, everybody
I miss that in SAP B1 have a hot key order to change the name of items when i  am creating a sale order or sale quotation,...
I for get this key, could you help me!
Thank you!

You could press tab to display the choose from list (CFL) form.  you could also type the initial name of item but it will not correct 100%. Just press tab and then type the item code or name in the find. particularly for name, you must click 2 types the item description.
Rgds

Similar Messages

  • How can I change the name of item in TableViewController iOS

    How can I change the name of item in TableViewController? I want to be able to change the title of an item if I added one. Code:
    //  ViewController.m
    //  Movie List
    //  Created by Damian on 20/02/15.
    //  Copyright (c) 2015 Tika Software. All rights reserved.
    #import "ViewController.h"
    @interface ViewController ()
    These outlets to the buttons use a `strong` reference instead of `weak` because we want
    to keep the buttons around even if they're not inside a view.
    @property (nonatomic, strong) IBOutlet UIBarButtonItem *editButton;
    @property (nonatomic, strong) IBOutlet UIBarButtonItem *cancelButton;
    @property (nonatomic, strong) IBOutlet UIBarButtonItem *deleteButton;
    @property (nonatomic, strong) IBOutlet UIBarButtonItem *addButton;
    // A simple array of strings for the data model.
    @property (nonatomic, strong) NSMutableArray *dataArray;
    @end
    #pragma mark -
    @implementation ViewController
    - (void)viewDidLoad
        [super viewDidLoad];
         This option is also selected in the storyboard. Usually it is better to configure a table view in a xib/storyboard, but we're redundantly configuring this in code to demonstrate how to do that.
        self.tableView.allowsMultipleSelectionDuringEditing = YES;
        // populate the data array with some example objects
        self.dataArray = [NSMutableArray new];
        NSString *itemFormatString = NSLocalizedString(@"Movie %d", @"Format string for item");
        for (unsigned int itemNumber = 1; itemNumber <= 0; itemNumber++)
            NSString *itemName = [NSString stringWithFormat:itemFormatString, itemNumber];
            [self.dataArray addObject:itemName];
        // make our view consistent
        [self updateButtonsToMatchTableState];
    #pragma mark - UITableViewDelegate
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
        return self.dataArray.count;
    - (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
        // Update the delete button's title based on how many items are selected.
        [self updateDeleteButtonTitle];
    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
        // Update the delete button's title based on how many items are selected.
        [self updateButtonsToMatchTableState];
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
        // Configure a cell to show the corresponding string from the array.
        static NSString *kCellID = @"cellID";
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kCellID];
        cell.textLabel.text = [self.dataArray objectAtIndex:indexPath.row];
        return cell;
    #pragma mark - Action methods
    - (IBAction)editAction:(id)sender
        [self.tableView setEditing:YES animated:YES];
        [self updateButtonsToMatchTableState];
    - (IBAction)cancelAction:(id)sender
        [self.tableView setEditing:NO animated:YES];
        [self updateButtonsToMatchTableState];
    - (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
        // The user tapped one of the OK/Cancel buttons.
        if (buttonIndex == 0)
            // Delete what the user selected.
            NSArray *selectedRows = [self.tableView indexPathsForSelectedRows];
            BOOL deleteSpecificRows = selectedRows.count > 0;
            if (deleteSpecificRows)
                // Build an NSIndexSet of all the objects to delete, so they can all be removed at once.
                NSMutableIndexSet *indicesOfItemsToDelete = [NSMutableIndexSet new];
                for (NSIndexPath *selectionIndex in selectedRows)
                    [indicesOfItemsToDelete addIndex:selectionIndex.row];
                // Delete the objects from our data model.
                [self.dataArray removeObjectsAtIndexes:indicesOfItemsToDelete];
                // Tell the tableView that we deleted the objects
                [self.tableView deleteRowsAtIndexPaths:selectedRows withRowAnimation:UITableViewRowAnimationAutomatic];
            else
                // Delete everything, delete the objects from our data model.
                [self.dataArray removeAllObjects];
                // Tell the tableView that we deleted the objects.
                // Because we are deleting all the rows, just reload the current table section
                [self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationAutomatic];
            // Exit editing mode after the deletion.
            [self.tableView setEditing:NO animated:YES];
            [self updateButtonsToMatchTableState];
    - (IBAction)deleteAction:(id)sender
        // Open a dialog with just an OK button.
        NSString *actionTitle;
        if (([[self.tableView indexPathsForSelectedRows] count] == 1)) {
            actionTitle = NSLocalizedString(@"Are you sure you want to remove this movie?", @"");
        else
            actionTitle = NSLocalizedString(@"Are you sure you want to remove these movies?", @"");
        NSString *cancelTitle = NSLocalizedString(@"Cancel", @"Cancel title for item removal action");
        NSString *okTitle = NSLocalizedString(@"OK", @"OK title for item removal action");
        UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:actionTitle
                                                                 delegate:self
                                                        cancelButtonTitle:cancelTitle
                                                   destructiveButtonTitle:okTitle
                                                        otherButtonTitles:nil];
        actionSheet.actionSheetStyle = UIActionSheetStyleDefault;
        // Show from our table view (pops up in the middle of the table).
        [actionSheet showInView:self.view];
    - (IBAction)addAction:(id)sender
        [self.dataArray addObject:@"New Movie"];
        // Tell the tableView about the item that was added.
        NSIndexPath *indexPathOfNewItem = [NSIndexPath indexPathForRowself.dataArray.count - 1) inSection:0];
        [self.tableView insertRowsAtIndexPaths:@[indexPathOfNewItem]
                              withRowAnimation:UITableViewRowAnimationAutomatic];
        // Tell the tableView we have finished adding or removing items.
        [self.tableView endUpdates];
        // Scroll the tableView so the new item is visible
        [self.tableView scrollToRowAtIndexPath:indexPathOfNewItem
                              atScrollPosition:UITableViewScrollPositionBottom
                                      animated:YES];
        // Update the buttons if we need to.
        [self updateButtonsToMatchTableState];
    #pragma mark - Updating button state
    - (void)updateButtonsToMatchTableState
        if (self.tableView.editing)
            // Show the option to cancel the edit.
            self.navigationItem.rightBarButtonItem = self.cancelButton;
            [self updateDeleteButtonTitle];
            // Show the delete button.
            self.navigationItem.leftBarButtonItem = self.deleteButton;
        else
            // Not in editing mode.
            self.navigationItem.leftBarButtonItem = self.addButton;
            // Show the edit button, but disable the edit button if there's nothing to edit.
            if (self.dataArray.count > 0)
                self.editButton.enabled = YES;
            else
                self.editButton.enabled = NO;
            self.navigationItem.rightBarButtonItem = self.editButton;
    - (void)updateDeleteButtonTitle
        // Update the delete button's title, based on how many items are selected
        NSArray *selectedRows = [self.tableView indexPathsForSelectedRows];
        BOOL allItemsAreSelected = selectedRows.count == self.dataArray.count;
        BOOL noItemsAreSelected = selectedRows.count == 0;
        if (allItemsAreSelected || noItemsAreSelected)
            self.deleteButton.title = NSLocalizedString(@"Delete All", @"");
        else
            NSString *titleFormatString =
            NSLocalizedString(@"Delete (%d)", @"Title for delete button with placeholder for number");
            self.deleteButton.title = [NSString stringWithFormat:titleFormatString, selectedRows.count];
    @end

    Hey JB001,
    Sounds like you have more going on than just a simple issue with Home Sharing and more dealing with Wi-Fi syncing. Start with the article below and see if that may resolve it.
    iTunes 10.5 and later: Troubleshooting iTunes Wi-Fi syncing
    http://support.apple.com/kb/TS4062
    If it does not work out, then may I suggest contacting Apple for further assistance to walk you through it or just take that time that you were talking about to sort it out.
    Contact Apple Support
    https://getsupport.apple.com/GetproductgroupList.action
    Regards,
    -Norm G.

  • Changing the name of the tab created using enhancement MM06E005

    Hi,
    Is there anyone know how to change the name of item level tab from "customer data" to our own tab name in screen exit for trans ME21N/2N/3N? Enhancement used is MM06E005.
    And is it possible to show or hide the newly created tab using enhancement depending on the data displayed in tab? If so how?
    Any help will be appreciated.
    Regards,
    Naveen

    I came across the same issue as well a while ago, see my thread at Can you programmatically change the iView Title?
    No one could answer my question properly, so I decided to go the DHTML route; find the <DIV> element encapsulating the proper iView title, and then replace the innerHtml with the new title.... Ackward, I agree, but it works
    It's java based, but the actual replacing is all DHTML, I will look up the code and post it

  • How to change the "name of column" property of an text item in runtime?

    How to change the "name of column" property of an text item in runtime?
    I look the properties of items in help and found nothing about this!
    It's possible?

    Hi,
    an other solution is change the block property QUERY_DATA_SOURCE_TYPE from "Table" to "Sub-query" , than change at run time the property QUERY_DATA_SOURCE_NAME.
    First create block and add items
    The QUERY_DATA_SOURCE_NAME will be for ex. "Select 'A' as col1, 'B' AS col2, 'C' as col3 from dual"
    Set into items the column name property to col1 , col2 ...
    At run time change the query to "Select 'Z' as col1, 'X' as col2 , 'Y' as col3 from dual"
    in this way you can change the source of column value.
    Caution because if you change value type from varchar2 to date you must cast date into varchar2.
    May be that this way is valid only for view data not for insert-update, i don't remember.
    bye
    Message was edited by:
    Killernero

  • Dynamically changing the name of a page item

    Hello,
    I'd like to dynammically change the name/label of a page item depending on the user who logged in to the system.
    On my home page, there's a navigation region with some list entries in it. Currently its title is "Configuration".
    If a specific user signs on, I'd like to change that title to "Reporting". How can I manage to implement such a behaviour.
    I tried to get some results by using dynamic actions, but I couldn't get it working.
    Thanks for your help in advance!

    >
    I'd like to dynammically change the name/label of a page item depending on the user who logged in to the system.Create a hidden item called PXX_LABEL (where XX is your page number).
    Set the value of the hidden item via a PL/SQL process (when page loads, or when user logs in, or whatever).
    In the "Label" field of the actual item, enter &PXX_LABEL. (notice the dot at the end).
    When running the page, the label will dynamically be set to the value of the hidden item.
    - Morten
    http://ora-00001.blogspot.com

  • Change the name of custom tab in me51n / me52n / me53n

    Hi,
    I have to add a few custom fields in PR item of  transactions me51n / me52n / me53n. I have used the enhancement MEREQ001 for adding the custom fields. The sytem automatically creates a custom tab with the name Customer Tab for the additional fields that I have added using the enhancement MEREQ001 while displaying in me51n / me52n / me53n.
    Now I have a requirement to change the name of the custom tab created for transactions me51n / me52n / me53n from Customer Data to Others.
    Can anyone suggest me how to go about doing this???
    Thanks in advance.
    Abhisek.
    P.S.:- Points will be be duly awarded 4 helpfull answers.

    Hi,
    I tried doing whatever you had suggested but it seems that it is not working.
    Could you suggest some other way to do this?
    Thanks and regards.
    Abhisek.

  • When I installed Mountain Lion it asked the name of my computer. I was in such a hurry that I now have a typo. How can I go back and change the name of the computer?

    How do I change the name of my computer?

    One area that this appears is on Facebook where it lists the number of Recognized Devices. There are six devices which include iPad and iPhone. These items are grayed and you are unable to change. Also on my iphone it lists the computer name. This name is different from name of my computer. It's what I signed in as when I installed the Mountain Lion upgrade. I know I'm not doing a good job of explaining this. I have searched everywhere on my computer that I can think of and cannot locate where this is used. Any suggestions are appreciated.

  • What will happen if I change the name of my Apple Id?

    I have only one Apple Id, which is my email address "[email protected]". My Apple Id and primary email are the same. I now have a new email address, and want to change my Apple Id to my new email address. I've been to the Apple Id support page, and have found out how to change the Apple Id on the Apple Id support webpage. I've been reluctant to go through with the process, because I'm unsure as to what the consequences will be if I change my Apple Id. I have an iPhone and an iPad as well as two Macs and an Apple TV hooked up to my Apple Id. My iMac is the main computer used for storing all files and syncing my iOS devices. In addition my contacts and calendar is in the iCloud. I hope someone with the know-how or experience can help me answer the following questions:
    1. iPhone and iPad: Once I change my Apple Id, have I understood it correctly when the next thing I do is that I go to General settings -> Store, and sign out from my "old" Apple Id, and then sign in with the new name for my Apple Id? Will my previous purchases of music, ibooks and apps be connected to the new name of my Apple Id, and will I still be able to get previously purchased apps updated? As for iCloud, what must I do on my iPhone and iPad to make sure that contacts and calendars keep in sync?
    2. iCloud: Will changing the name of the Apple Id on the Apple Id support webpage be the only thing I need to do, or are there more steps to follow?
    3. iMac and MacBook Pro: Am I right in assuming that all I need to do is sign out from the old named account and then sign in with the new name in AppStore, iTunes, FaceTime and Messages app? Is the Apple Id in use by any other apps or functions?
    4. Apple TV: Once my iMac is up and running with the new name of the account, I sign out from the old named account, then sign in with the new name, will streaming music and photos etc. work just as before the name change?
    5. I still haven't activated Mail in iCloud. As I understand, once you do that you will be prompted to register a @me.com or @icloud.com email address. Will this address now be possible to use instead of my new email address as the name for my Apple Id?
    A lot of questions, still I'd be grateful for some answers.

    Yinghai wrote:
    Hi, everyone,
    I just began to use TM to back up my mac. I already have a full backup. Now I want to exclude some folder from backup. I can do this in the option dialog of TM. But I wonder what will happen after I add a new exclude folder. Will TM begin to build a new full backup or just continue to back up incrementally from the older full copy? Thanks.
    Time Machine will continue to do incremental backups.
    It won't immediately delete previous backups of the items you exclude (but it will, eventually). You can do that yourself, if you want, per #12 in the Frequently Asked Questions *User Tip,* also at the top of this forum.

  • How to change the text of item's displaying in the folowing ALV.

    Hi Experts,
    I want to change the text of item's displaying in the folowing ALV.
    Go to ME23N->Click 'Messages'->Click 'Further Data' -> Click 'Displ.Originals'.
    Here one small ALV grid is appearing.
    Currently it is showing same name's under the 'Title' column of that ALV. My requirement is to change the text coming under the column 'Title' in that display.
    Can any one throw some light in the issue.
    Thanks&Regards,
    Anversha

    Hi Anversha ,
    i think you need to use Enhancement point for it.
    check the program DV70AF0A-->ARCHIV_ANZEIGE(Subtoutine).
    i had similar kind of requirement ,while attaching the supporting documents to FI document , i need to update title field with File name , so i used EP and BADI to do so.
    regards
    Prabhu

  • How to change the name of the column for dynamic query

    I would like to change the name of the column name to bidderone, biddertwo and bidderthree. the only problem is the vendors name unknown when I run the query and sometimes the query returns two vendors. the maximum vendor is three. here is the query and please let me know how this can be done. thank you so much. I am using oracle 10i
    FOR lv_rec IN   ( SELECT vendor, calcbtot
      FROM (SELECT t.*, ROW_NUMBER () OVER (ORDER BY t.calcbtot Asc) rn
              FROM (  SELECT DISTINCT
                             s.vendor,
                             TO_CHAR (s.calcbtot, '999,999,999.00') calcbtot
                        FROM bidtabs b, bidders s
                       WHERE     b.CALL = s.CALL
                             AND b.letting = s.letting
                             AND b.vendor = s.vendor
                             AND b.letting = v_letting
                             AND b.CALL = v_call
                    ORDER BY 2) t)
    WHERE rn <= 3 )                 
       LOOP
          lv_sql :=
                lv_sql  || ', TO_CHAR(MAX(DECODE(TRIM(S.VENDOR),'''|| TRIM (lv_rec.vendor) || ''', S.BIDPRICE)),  ''$999,999,999.00'') AS "'|| TRIM (lv_rec.vendor) ||'" ';
       END LOOP;

    thank you so so much for your help on this. I am sorry i did not post the entire code. my intention is to use bidderone, biddertwo,bidderthree as a column name insead of the name of the vendors and also calcuate the average of the three vendors. the maximum vendor will be three but the minumum could be one or two. hope this is enought information to help me out further . thank you
    CREATE OR REPLACE PROCEDURE biddersquoteforbridge (
       p_spnumber   IN       VARCHAR2,
       p_result     OUT      sys_refcursor
    IS
       v_letting   VARCHAR2 (40);
       v_call      VARCHAR2 (40);
       lv_sql      VARCHAR2 (32767) := NULL;
    BEGIN
       SELECT DISTINCT L.LETTING, CALL
                  INTO v_letting, v_call
                  FROM LETPROP L, PROPOSAL P
                 WHERE L.LCONTID = P.CONTID AND CPROJNUM= p_spnumber;
       lv_sql :=
          'SELECT   O.PRPITEM "Item Number",
                    INITCAP(FUNC_GET_ITEM_DESCRIPTION(O.PRPITEM)) "Description",
                    O.CONTID "Contract Id",O.SECTION "Section" , P.CPROJNUM "SP Number", P.CFACSSUP "District",
                    FUNCT_GET_SECTION_IDENTIFIER(O.SECTION, O.CONTID) "Section Title",  ''Q''||(TO_CHAR(D.DATELET, ''Q-YYYY'')) "Quarter",
                    O.IPLINENO "Line Number", O.QTY "Quantity" ';
      FOR lv_rec IN   ( SELECT vendor, calcbtot
      FROM (SELECT t.*, ROW_NUMBER () OVER (ORDER BY t.calcbtot Asc) rn
              FROM (  SELECT DISTINCT
                             s.vendor,
                             TO_CHAR (s.calcbtot, '999,999,999.00') calcbtot
                        FROM bidtabs b, bidders s
                       WHERE     b.CALL = s.CALL
                             AND b.letting = s.letting
                             AND b.vendor = s.vendor
                             AND b.letting = v_letting
                             AND b.CALL = v_call
                    ORDER BY 2) t)
    WHERE rn <= 3 )                 
       LOOP
          lv_sql :=
                lv_sql  || ', TO_CHAR(MAX(DECODE(TRIM(S.VENDOR),'''|| TRIM (lv_rec.vendor) || ''', S.BIDPRICE)),  ''$999,999,999.00'') AS "'|| TRIM (lv_rec.vendor) ||'" ';
       END LOOP;
       lv_sql :=
             lv_sql
          || '
            FROM   PROPITEM O  ,                   
                   PROPOSAL P  ,
                   LETPROP  L  ,
                   BIDDERS  B  ,
                   BIDTABS  S  ,
                   BIDLET   D
             WHERE O.CONTID = P.CONTID
                    AND P.CONTID = L.LCONTID
                    AND L.CALL = B.CALL
                    AND L.LETTING = B.LETTING
                    AND B.CALL = S.CALL             
                    AND B.LETTING = S.LETTING
                    AND B.VENDOR = S.VENDOR 
                    AND S.IPLINENO = O.IPLINENO
                    AND L.LETTING = D.LETTING             
                    AND O.LINEFLAG =''L''    
                    AND L.LETTING = :B1
                    AND L.CALL = :B2
             GROUP BY
                   O.CONTID,
                   O.SECTION,
                   O.IPLINENO,
                   O.PRPITEM,
                   O.QTY,
                   P.CPROJNUM,
                   P.CFACSSUP,
                   O.PRICE ,
                   D.DATELET             
             ORDER BY O.IPLINENO ';
      -- DBMS_OUTPUT.put_line (lv_sql);
       OPEN p_result FOR lv_sql USING v_letting, v_call;
    END;

  • Change the name of report painter report

    HI,
    I have created an operating exp report by cost center and named it as "Op exp by CC". Now I want to change the name of the report to "Op exp by CC dtl".
    How can I do this?
    Please help me out with this.
    Regards,
    Nitish

    from KE30->pick report->goto menu item Report--->Change here u can change any thing.
    if u are not using Ke30 , let me know where  u are seeing ur report.
    Regards
    Prabhu

  • Changing the name of Expenditure type name

    Hi All ,
    Is it possiable to change the name of the expenditure type , we've not made any transactions still to that expenditure type.
    Please advise.
    Thanks
    -RG

    Hi,
    Why don't you end date the old expenditure item and create a new expenditure item with new dates. In that way we are not impacting anything in the system.
    Hope this helps!
    Sathish Raju
    www.projectsaccounting.com

  • Can you change the name of multiclips??!

    Hi I have tried changing it just by clicking on it but it makes no difference...is there a way to do this??!
    Thanks for the help....very grateful

    Not sure why you're unable to rename it in the browser...I've been able to.
    If you continue to have difficulty, you could control-click on the multiclip in the browser, select 'item properties', then 'format'.
    Change the name in the Name field.
    I'd at least make a copy of the project, in case this creates any funky behavior...particularly if the multiclip is already in a sequence. Just don't know if this would break any connections from the previously named multiclip.
    K

  • How do I change the name in Terminal

    When I try to access Terminal, and enter a sudo command, it asks for my password.  It has the name wrong of my computer, and then won't accept my password.  I can hit enter 3 times and it brings right back to my starting point.  How do I change the name of my computer and allow it to accept my password?

    First, make sure caps lock is not on.
    Another reason why the password might not be recognized is that the keyboard layout (input source) has been switched without your realizing it. You can select one of the available layouts by choosing from the flag menu in the upper right corner, if it's showing, or cycle through them by pressing the key combination command-space or command-option-space. See also this support article.
    If the user account is associated with an Apple ID, and you know the Apple ID password, then maybe the Apple ID can be used to reset your user account password. In OS X 10.10 and later, this option also works with FileVault, but only if you enabled it when you activated FileVault. It's not retroactive.
    Otherwise*, start up in Recovery mode. When the OS X Utilities window appears, select
              Utilities ▹ Terminal
    from the menu bar at the top of the screen—not from any of the items in the OS X Utilities window.
    In the window that opens, type this:
    resetp
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window opens. Close the Terminal window to get it out of the way.
    Select the startup volume ("Macintosh HD," unless you gave it a different name) if not already selected. You won't be able to do this if FileVault is active.
    Select your username from the menu labeled Select the user account if not already selected.
    Follow the prompts to reset the password. It's safest to choose a password that includes only the characters a-z, A-Z, and 0-9.
    Select
               ▹ Restart
    from the menu bar.
    You should now be able to log in with the new password, but the Keychain will be reset (empty.) If you've forgotten the Keychain password (which is ordinarily the same as the login password), there's no way to recover it.
    *Note: If you've activated FileVault, this procedure doesn't apply. Follow instead these instructions.

  • How can I edit or change the name of a bookmark in the bookmark library window?

    How can I edit or change the name of a bookmark in the bookmark library window? I can figure out just about everything else I can do in the window, but can't seem to edit a bookmark.
    thank you

    In the Bookmarks Manager you can change the properties of a bookmark in the Details pane at the bottom right.<br />
    That Info pane has a More/Less button to show or hide extra properties.
    * You can change the Properties (including the name) of a Bookmark or Tag in the Details (Properties) pane at the bottom of the right pane in the Bookmarks Manager (Bookmarks > Show All Bookmarks: Shift+Ctrl+B) after selecting an item. You can rename a tag by selecting the Tags folder in the left panel and change the name in the Info pane at the bottom right.
    * You can make changes to a Bookmark in the Bookmarks menu drop down list or in the side bar (View > Sidebar > Bookmarks, Ctrl+B) via the Properties entry in the right-click context menu.
    * You can open a bookmark in a tab and click the yellow (blue on Mac) star in the location bar to open the "Edit This Bookmark" dialog and see in which folder a bookmark is located.

Maybe you are looking for

  • How many disk groups for +DATA?

    Hi All, Does oracle recommends having one big/shared asm disk group for all of the databases? In our case we going to have 11.2 and 10g rac running against 11.2 ask... Am I correct in saying that I have to set asm's compatibility parameter to 10 in o

  • SAP HR-field Customer-Specific Status STAT1

    Hello experts, beside the employee status I need the Customer specific ststus (field STAT1 in SAP HR) in a query! Is Customer specific ststus part of standard business content in BW? I cannot find it! any suggestions, ideas more than welcome hiza

  • Center list web part within a web part zone

    How do you center web parts within a web part zone? I have a web part zone within a <td>, and the cell is centered. Within the cell I have a table that is centered, which contains the web part zone. However, the web parts within the zone remain left

  • Using float to two decimal places

    yes its me once again.... a human planet earth ok......project coimng to a finish..... thank you to all who have responded to previous messages posted.... hopefully this may be the last... for a while anyway..... var1 successfully parsed text to floa

  • I can't Sync my movies with Ipod Vid 30 Gigs

    Hi I have an Ipod Video 30 Gigs black. I can sync all kind of music, calendar and photos (I did not have problems with that). But I tried to sync .mov, .mp4 movies, The simpsons movie potcast, and others videos formats. When the Itunes is syncing wit