Vallidation for the GRN to update the Business area

Dear Team,
I have an requirement when we doing the GRN if business area is not there system should not post any document.For this i had kept the Validation like the below:
Prerequisite:
SYST-CODE=MIGO_GR
Check:
BSEG-GSBER = ' '
But this is not working.
Plz do the need ful.I am currently working on 4.7 Ver.Plz advise  to proceed further.
Regards,
Suma.

Hi,
Assign Field status grp= business area mandatory to your Inventory Gls.
rajeswari

Similar Messages

  • HT201070 I currently use OS 10.6.8 and Aperture 3, and just got a Nikon D600. It seems the the RAW Compatibility updates (4.01) are for use only with OS 10.7.5 or later, is that right? Do I need to update my whole OS to use this camera? Thank you!

    I currently use OS 10.6.8 and Aperture 3, and just got a Nikon D600. It seems the the RAW Compatibility updates (4.01) are for use only with OS 10.7.5 or later, is that right? Do I need to update my whole OS to use this camera? Thank you!

    Thanks to Bobthefisherman & Turbostar.  Turns out I've got a corrupted disk (which I found out via "verify disk" on Disk Utility First Aid.  Previously, I never thought to verify disk -- only to repair permissions -- so I never knew my HD had been corrupted.
    Wasn't able to do a clean install of OSX10.6 because my SuperDrive only sporadically will load discs, so I am taking it to the Apple Store to see if they can do a clean install, and depending upon costs, get the Superdrive replaced. 
    The HD wasn't partioned by the way.  And I did have just over 40GB of contiguous space. 
    Thanks again.

  • HT5625 I want my new iPad mini to use my new Apple ID, not the old one that pops up without seemingly giving me the choice to update the  Apple ID user name; as a result I haven't been able to update my APPS for some time.

    I want my new iPad mini to use my new Apple ID, not the old one that pops up without seemingly giving me the choice to update the  Apple ID user name; as a result I haven't been able to update my APPS for some time. I changed my apple ID when I got a new e mail address a few months ago .

    Any apps you have installed from the old AppleID will always be tied to that AppleID. You have no choice but to enter the password for the old AppleID if you want to update apps downloaded using that ID.
    The only way to stop being asked for the password for the old AppleID is to remove all apps from the device that were downloaded using that old AppleID.
    You'd then need to re-download (and re-purchase) any apps you want to keep using under the new AppleID.
    Apps cannot be transferred between AppleIDs.

  • Dears, i have purchased a new macbook pro with lion os, then after a while  for a notification to update the iPhoto app, and when i tried to update it said that unable to update, then i uninstalled it, then i tried to install it but it said these apps co

    dears, i have purchased a new macbook pro with lion os, then after a while  for a notification to update the iPhoto app, and when i tried to update it said that unable to update, then i uninstalled it, then i tried to install it but it said these apps connot be installed on this computer!!!!!
    what should i do
    this problem started to annoy me, as am not able to edit any photo.
    pls help ASAP

    Thanks a lot i followed the instructions for safe mode (i found out that i was pressing the C button after restarting) i did whats written there but the repair couldn't be performed so in addition i needed to re-formate the HD so i erased the volume and then repaired the disk--> quite disk utilities --> start the installation from the installation DVD.
    Thanks really appreciating your help

  • Hi! I'm in the middle of updating the softwear and its not moved and it's been over half an hour. Will it load as I need it for work! Please help!!

    Hi! I'm in the middle of updating the softwear and its not moved and it's been over half an hour. Will it load as I need it for work! Please help!

    hold down the home/sleep button together until you see the apple logo and then releaswe.

  • How can i calculate the percentages and update the progressBar in the splash screen form ?

    I created a splash screen form:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using System.IO;
    using System.Threading;
    namespace GetHardwareInfo
    public partial class SplashScreen : Form
    public SplashScreen()
    InitializeComponent();
    private Mutex mutex = new Mutex();
    public void SyncedClose()
    mutex.WaitOne();
    this.Close();
    mutex.ReleaseMutex();
    public void UpdateProgressBar(int percentage)
    if (this.InvokeRequired)
    mutex.WaitOne();
    if (!IsDisposed)
    this.BeginInvoke(new Action<int>(UpdateProgresPRV), percentage);
    mutex.ReleaseMutex();
    else
    UpdateProgresPRV(percentage);
    private void UpdateProgresPRV(int per)
    if (progressBar1.IsDisposed) return;
    progressBar1.Value = per;
    private void SplashScreen_Load(object sender, EventArgs e)
    The SplashScreen form have in the designer image and on the image a progressBar1.
    Then in form1 i did in the top:
    List<string> WmiClassesKeys = new List<string>();
    IEnumerable<Control> controls;
    string comboBoxesNames;
    SplashScreen splash = new SplashScreen();
    And in the constructor:
    controls = LoopOverControls.GetAll(this, typeof(ComboBox));
    string[] lines = File.ReadAllLines(@"c:\wmiclasses\wmiclasses1.txt");
    foreach (string line in lines)
    foreach (ComboBox comboBox in controls.OfType<ComboBox>())
    if (line.StartsWith("ComboBox"))
    comboBoxesNames = line.Substring(14);
    else
    if (line.StartsWith("Classes"))
    if (comboBox.Name == comboBoxesNames)
    comboBox.Items.Add(line.Substring(14));
    foreach (ComboBox comboBox in controls.OfType<ComboBox>())
    comboBox.SelectedIndex = 0;
    The method GetAll is to loop over specific controls:
    public static IEnumerable<Control> GetAll(Control control, Type type)
    var controls = control.Controls.Cast<Control>();
    return controls.SelectMany(ctrl => GetAll(ctrl, type))
    .Concat(controls)
    .Where(c => c.GetType() == type);
    When i'm running the program it's taking some time to make the foreach loops in this time i need to show the SplashScreen and update the progressBar untill the foreach loops over.

    Don't use Application.Doevents. It's not required and can cause problems.
    I do not really grasp the approach you are taking here. So let me make a different suggestion:
    SplashScreen:
    using System;
    using System.Windows.Forms;
    using System.Threading;
    namespace WindowsFormsApplication1
    public partial class SplashScreen : Form
    private static SplashScreen DefaultInstance;
    public SplashScreen()
    InitializeComponent();
    public static void ShowDefaultInstance()
    Thread t = new Thread(TMain);
    t.Name = "SplashUI";
    t.Start();
    public static void CloseDefaultInstance()
    DefaultInstance.Invoke(new Action(DefaultInstance.Close));
    private static void TMain()
    DefaultInstance = new SplashScreen();
    DefaultInstance.Show();
    Application.Run(DefaultInstance);
    public static void UpdateProgress(int Progress)
    if (DefaultInstance.InvokeRequired)
    DefaultInstance.Invoke(new Action<int>(UpdateProgress), Progress);
    else
    DefaultInstance.progressBar1.Value = Progress;
    Form1:
    using System.Windows.Forms;
    namespace WindowsFormsApplication1
    public partial class Form1 : Form
    public Form1()
    InitializeComponent();
    SplashScreen.ShowDefaultInstance();
    for (int i = 1; i<=100; i++)
    System.Threading.Thread.Sleep(20); // simulates work
    SplashScreen.UpdateProgress(i);
    SplashScreen.CloseDefaultInstance();
    EDIT: Please note that the progressbar itself is being animated by the system, so it might look slower than it really is. To workaround this, there are solutions available (you'll find them) that first set the value one higher than necessary, then
    back to the actual value.
    Edit #2: You do need a different thread, otherwise the UI is locked while the loop is running in your Form1's constructor.
    Armin

  • Plz help me,after instuling the last software update,the programs and games and everything i have download it can't open!

    plz help me,after instuling the last software update,the programs and games and everything i have download it can't open!

    Have you tried the basics from the manual?
    restart, reset, restore.
    iPod touch User Guide (For iOS 4.3 Software)

  • Downloading images used to go automatically to the last folder used to save images, even when reopening Firefox. In just the past few days, possibly coinciding wih the most recent updates, the folder defaults to the 'Downloads' folder. This is most annoyi

    Downloading images used to go automatically to the last folder used to save images, even when reopening Firefox. In just the past few days, possibly coinciding wih the most recent updates, the folder defaults to the 'Downloads' folder. This is most annoying. What happened? Internet Explorer 8.0 did the same thing. This was one of the reasons why I started using Firefox to download all images. I went into Tools>Options and it only lets me set another folder. I dont want to set a specific folder I want it to always go to the last folder used. So what gives?
    == This happened ==
    Every time Firefox opened
    == possibly when the most recent updates were installed, a few days ago

    Thanks jscher 2000. I guess I didn't make it clear. "It restarts with all the addons activated, and resumes with the tabs that were open before closing it." IE, it's running fine now with all the extensions activated. Everything is OK now.
    So something in the Firefox code was causing the bad behavior. It's not essential that I find out what the problem was - I'm just curious. And if anybody else has this same problem, it might be nice to have it corrected at the source.

  • Hi, updated my iphone where in the middle of updated the screen showed i must connect to itunes. after connecting iphone was updated but everything was deleted. was first time on itunes , so have no backup. can i recover my pics and contacts? please help

    hi, updated my iphone where in the middle of updated the screen showed i must connect to itunes. after connecting to itunes my  iphone was updated but everything was deleted. was first time on itunes , so have no backup. can i recover my pics and contacts? please help

    If this has happened more than once the problem is likely on your PC.
    See here: http://www.apple.com/support/iphone/assistant/itunes/

  • HT201412 I have to hit my home button a half dozen times to make it work.  I've tried to reset the phone and updated the software.  Is this a hardward problem?

    I have to hit my home button a half dozen times to make it work.  I've tried to reset the phone and update the sorfware.  Is this a hardware problem?  Where do I go to get it fixed?

    At Apple Store this is handled with Replacement iPhone exactly like yours. If there is AppleCare or Warranty it will be covered, otherwise there will be a charge of $150 - $199 depending on iPhone model. If iPhone 5 it will be covered. If you want to try Virtual Home Button. Settings App > General > Accessibility > Assistive Touch > ON > tap new white screen button > Home.

  • HT1222 My Ipod needs an update but I don't have internet service on my computer so is it possible to send the update to the email  to update the ipod system through the Ipod with wi-fi?

    my ipod needs an update but i don't have internet service on my computer i was wondering is it posible to send the update to the email to update the ipod system through Wi-Fi?

    If your iPod touch is already running iOS 5 then you should be able to upgrade to iOS 5.0.1 on the device with a Wi-Fi connection.
    tt2

  • Sap standard report for customer trial balance based on business area wise

    hi experts,
                    Can any tell me is there any standard report for customer trial balance based on business area.

    hi,
    You can use this report.
    RFSLD00 Trial balance
    For Further Reference use the link.
    http://www.abapcode.info/2007/06/standard-sap-reports.html
    Regards
    Sumit AGarwal

  • Automatic postings r not updated thru business area wise like dep.run tax c

    automatic postings r not updated thru business area wise like dep.run tax code also......how to updated this....
    my client requirement.....plz halp me

    Hi
    Business area updations will not get updated through automatic postings like tax line generations, etc.  You will have to search for some note for updations.  Otherwise while preparing blance sheets for business area, you can make adjustment postings.
    Regards,

  • HT1338 How do I get the Lion update for the HP Photosmart 3210 All in One Printer?  The auto software update says none are available, while HP says one is available.

    I just installed LION and no Power PC Apps work. 
    HP says there are updates for Lion from MAC APP store for the HP 3210 PhotoSmart All in Printer and provided instructions.
    I followed these but no updates were visible or installed.  Any idea why?
    Is there a place where I can look at Apple for an update? 
    If no update is available, can anyone recommend a good flatbed scanner for under $400 that works with Lion?

    Hi,
    The drivers do available from Apple and your Mac may fails from getting them due to any connectivity or installed software issue.
    First make sure you don't have any previous OS drivers installed:
    Open Finder, then click Go > Computer and select the active volume of your OS.
    (If have couple and not sure which one is correct, click the Apple icon > About This Mac.)
    Open Library\Printers and move the HP folder to the trash.
    Enter into PPDs\Contents\Resources, search for 3200 in that folder and move the results files.
    Reboot your Mac, ensure the printer is turned on, in Ready state and directly connected to your Mac.
    Enter Print & Scan, click the Plus sign and you shoud see your printer listed.. select it and click Install.
    If no printers appears at all there is a connectivity issue.. ensure it is directly connected and not through any USB hub or adaptor, the cable is not longer than 2m length.. otherwise try a new USB cable.
    If the printer appears but stil cannot locate drivers for yoru printer download and install the package below and then try adding the printer again:
    http://support.apple.com/kb/DL907
    Shlomi

  • I have a iMac destop 10.6.2 and use the AOL Mail web site with your Firefox Browser. It has worked great for years. I update the firefox to 6.1 and now I cannot send images using the Firefox browser. With Safari browser it works fine.

    I use AOL mail - http://www.aol.com/ with my Firefox 6.1 browser. Before updating aol mail worked great with firefox for years. Now when I try to send ( upload) messages with a file or images I always get the reading " there was a technical problem and I should try again". Messages with NO files or images go through just fine. I have cleared the Firefox history, the cache and cookies and the problem remained the same. The question is does this problem have something to do with the latest update ? AOL are still only familar with the 3.6 Firefox versions. Thanks

    Well I guess I was too optimistic. Since last posting I have had three hang events, one during reboot. When the login dialog box came up I clicked on it and it hung.
    However I do have a new data point. I have enabled the remote login (sshd). I have discovered that when the system hangs like I described above, I can still log in via SSH from my Windows system. The shell appears normal, but when I tried a "killall Safari" command the OS crashed hard. After a hard reset, the system hung during the login process. Again I could login remotely, and that time I executed a "sudo reboot" via the remote session. That cleared the display to all-blue but did not successfully reboot.
    Can anyone suggest what to try via the remote login to help diagnose what is happening? I am familiar with typical Linux architecture but the differences in Mac OS X are leaving me a bit disoriented.

Maybe you are looking for

  • How to remove the characters from first and last position of a string?

    Hi all, I am creating an application where i am using vb script to export the data to excel. In the excel sheet most of the values are entered with double " quotes. so the entry looks like ""http://www.sap.com"". Notice that it is starting with "" an

  • Pavilion G6 notebook error 301 on boot after windows 7 update

    I installed Windows updates (111 of them, hadn't been done for a while) On reboot the system hung on Windows screen. Managed to use system restore to go back to beginning of the month. Started ok. But tests showed software problem on hdd. Updated ant

  • Acrobat X Crashes When Signing

    I have Acrobat X running on Win 7 Pro 64. It is a new install from Adobe. When I attempt to sign a PDF Acrobat crashes. This is the case with any PDF. As soon as I create the signing 'frame' (Tools|Sign & Certify|Place Signature) and then click and d

  • Timestamp error in j2se5.0

    I am working on opensource project and i am buiding it from source. it will work on jdk1.5 and orackle 10g, when i am buindling, i am getting error of timestamp as: "reference to Timestamp is ambiguous, both class java.sql.Timestamp in java.sql a nd

  • Itunes can't connect to Internet

    Topic title Diagonistics : MicrosoftWindows 7 Ultimate Edition Service Pack 1 (Build 7601) DellInc. Studio 1535 iTunes10.3.1.55 QuickTime7.6.9 FairPlay1.11.17 AppleApplication Support 1.5.2 iPodUpdater Library 10.0d2 CDDriver 2.2.0.1 CDDriver DLL 2.1