I am trying to create the ext vendor, but its giving error

hi everybody.. when i am trying to create a vendor in XK01 i am getting an error, can anybody help me out in this error.. and the error is " ACCT GROUP 0001 USES EXT. NO. ASSIGNMENT. SPECIFY AN ACCOUNT NUMBER".
regards
hyder ali

Hi,
The account group for which you are trying to create a vendor is having external  number range assignment.
So, in XK01 you need to enter the vendor account number which you are going to create.
Since the number range is external, system will not generate the vendor number automaticlly. user need to enter the number externally while creating the vendor.
Regards
Amrita

Similar Messages

  • I have downloaded infinity blade 3 and then deleted it because i wanted to install some other apps. but now i am trying to install the game again but its saying error 0xE8000004. I have about 6.5 GB space on my iPad. what should i do..

    I have downloaded infinity blade 3 and then deleted it because i wanted to install some other apps. but now i am trying to install the game again but its saying error 0xE8000004. I have about 6.5 GB space on my iPad. what should i do..

    These might help
    http://support.apple.com/kb/TS3221
    http://support.apple.com/kb/TS3694

  • HT1414 i was trying to updates the new version but there was error occured so i was trying to restore but the massage come to connect yo wi-fi so i dont know where to start from there

    i was trying to updates the new version but there was error occured so i was trying to restore but the massage come to connect yo wi-fi so i dont know where to start from there

    Downloading past purchases from the App Store, iBookstore, and iTunes Storehttp://support.apple.com/kb/HT2519
    Message was edited by: michael08081

  • I have iPhone4 and i make a restore , i tried to activate the device but it give me that the ID is wrong, I tried to signing in by PC but its giving me message that the id disabled for safety reason, i tried to reset the password but its not coming to e

    I have iphone4 ,Imade a restore for it
    while activation the divec but unfortunately I forgot the password for the I cloud
    I tried to reset the password , but it reset for me the password for the apple Id
    I tried to sign in throw PC many times , then I find a message that my id is disabled for safety reason
    I want to active my phone but I don't know what to do

    Found the answer to my question after posting (in related discussions)
    https://discussions.apple.com/message/12331666#12331666
    Will call Apple Care as soon as I can.

  • My itunes not working after it tried to download the new version. it keep giving error 7

    my Itunes not working after it tried to download the new version. it give me message: erro 7 or window error 193. need help. thank

    What worked for me was to uninstall from the control panel in this order: Thanks to another post on this board... this worked... link to the discussion here: https://discussions.apple.com/thread/5817584?tstart=0
    ITunes
    Apple Software Update
    Apple Mobile Support
    Bonjour
    Apple Application Support
    I had problems uninstalling Apple Mobile Support, I had to repair it first before I could uninstall it. You will have to restart the computer after all the uninstalls, and before reinstalling ITunes. I reinstalled ITunes from the Apple website afterwards (fresh download) ... everything works for me now that I have done this.

  • I am trying to create the store procedure but it is returning the following error what can I do.

    USE [PHPExtracts]
    GO
    IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[pr_Extract_wt_569_OPTUM]') AND type in (N'P', N'PC'))
    BEGIN
    DROP PROCEDURE [dbo].[pr_Extract_wt_569_OPTUM]
    PRINT '--- Procedure [dbo].[pr_Extract_wt_569_OPTUM] dropped ---'
    END
    GO
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    -- =============================================
    -- Author: <Brian Peterson>
    -- Create date: <02/25/2014>
    -- Description: <This Stored Procedure populates
    -- staging table with Facets Member data
    -- for Groups 100108,100115,105519,100398,106528,108601>
    -- =============================================
    CREATE PROCEDURE [dbo].[pr_Extract_wt_569_OPTUM]
    AS
    BEGIN
    SET NOCOUNT ON;
    declare @lastRunDate datetime
    declare @currentRunDate datetime
    -- RETRIEVE last run date
    SET @lastRunDate = (select CONVERT(datetime,CHAR_CFLD1) from Extracts_Common_Table
    where EXTRACT_ID=569 and SEQ_NO=1 AND DOMAIN_NAME ='LastRunDate'
    AND Active=1)
    -- if the @lastRunDate is null, then set the date to the default MEPE_EFF_DT
    IF @lastRunDate IS NULL
    SET @lastRunDate = '01-01-1920'
    -- SET current run date
    SET @currentRunDate = GETDATE()
    PRINT @lastRunDate
    PRINT @currentRunDate
    -- CHECK for running on same date and exit if true
    IF DATEDIFF(dayofyear, @lastRunDate, @currentRunDate) > 0
    BEGIN
    PRINT 'Deleting tables...'
    TRUNCATE TABLE Extract_wt_569_OPTUM
    PRINT 'Inserting new Current data...'
    -- INSERT statements for procedure here
    Insert into [dbo].[Extract_wt_569_OPTUM]
    ([DATESORT]
    ,[MEMBERNUMBER]
    ,[LASTNAME]
    ,[FIRSTNAME]
    ,[MIDDLENAME]
    ,[GENDER]
    ,[DOB]
    ,[DatePolicyEffective]
    ,[RELATIONTOINSURED]
    ,[SSN]
    ,[DateEffective]
    ,[DateExpiration]
    ,[SUBSCRIBER_ID]
    ,[ALTERNATE_ID]
    ,[ADDRESS1]
    ,[ADDRESS2]
    ,[ADDRESS3]
    ,[CITY]
    ,[STATE]
    ,[ZIP CODE]
    ,[TELEPHONE]
    ,[GROUP_NO]
    ,[GROUPNAME]
    ,[LINEOFBUSINESS]
    ,[PRODUCT_TYPE])
    -- add wt_569 columns
    -- add select here
    SELECT top 1000 ---- remove top 1000 when loading
    null as "DATESORT"
    ,convert(varchar,rtrim(sbsb.SBSB_ID)) + right('000' + rtrim(convert(varchar,meme.MEME_SFX)), 3) as "MEMBERNUMBER"
    ,meme.MEME_LAST_NAME as "LASTNAME"
    ,meme.MEME_FIRST_NAME as "FIRSTNAME"
    ,meme.MEME_MID_INIT as "MIDDLENAME"
    ,meme.MEME_SEX as "GENDER"
    ,replace(CONVERT(varchar(10),meme.MEME_BIRTH_DT,110),'-','') as "DOB"
    ,replace(CONVERT(varchar(10),meme.MEME_ORIG_EFF_DT,110),'-','') as "DatePolicyEffective"
    ,case
    When meme.MCRL_MEME_CREL_CD = 'M' Then 18 -----Added case statement for RELATIONTOINSURED by Andrew 08/19/2014
    When meme.MCRL_MEME_CREL_CD = 'O' Then 34
    When meme.MCRL_MEME_CREL_CD = 'W' or meme.MCRL_MEME_CREL_CD = 'H' Then 01
    When meme.MCRL_MEME_CREL_CD = 'S' or meme.MCRL_MEME_CREL_CD = 'D' Then 19
    END
    as "RELATIONTOINSURED"
    ,case when ltrim(rtrim(meme.MEME_SSN)) = '' THEN '999999999'
    else ltrim(rtrim(meme.MEME_SSN)) end as "SSN"
    ,replace(CONVERT(varchar(10),mepe.MEPE_EFF_DT,110),'-','') as "DateEffective"
    ,replace(CONVERT(varchar(10),mepe.MEPE_TERM_DT,110),'-','') as "DateExpiration"
    ,sbsb.SBSB_ID as "SUBSCRIBER_ID"
    ,null as "ALTERNATE_ID"
    ,sbad.SBAD_ADDR1 as "ADDRESS1"
    ,sbad.SBAD_ADDR2 as "ADDRESS2"
    ,sbad.SBAD_ADDR3 as "ADDRESS3"
    ,sbad.SBAD_CITY as "CITY"
    ,sbad.SBAD_STATE as "STATE"
    ,sbad.SBAD_ZIP as "ZIP CODE"
    ,sbad.SBAD_PHONE as "TELEPHONE"
    ,grgr.GRGR_ID as "GROUP_NO"
    ,grgr.GRGR_NAME as "GROUPNAME"
    ,pdpd.LOBD_ID as "LINEOFBUSINESS"
    ,mctr.MCTR_DESC as "PRODUCT_TYPE"
    -----,null as "BENEFIT_LEVEL" Dropped Benefit_Level not required
    FROM [FacetsReport].[dbo].[CMC_MEME_MEMBER] meme with (NOLOCK)
    JOIN [FacetsReport].[dbo].[CMC_SBSB_SUBSC] sbsb with (NOLOCK) on meme.SBSB_CK = sbsb.SBSB_CK
    JOIN [FacetsReport].[dbo].[CMC_SBAD_ADDR] sbad with (NOLOCK) on meme.SBSB_CK = sbad.SBSB_CK and meme.SBAD_TYPE_MAIL = sbad.SBAD_TYPE
    JOIN [FacetsReport].[dbo].[CMC_MEPE_PRCS_ELIG] mepe with (NOLOCK) on meme.MEME_CK = mepe.MEME_CK
    JOIN [FacetsReport].[dbo].[CMC_GRGR_GROUP] grgr with (NOLOCK) on meme.GRGR_CK = grgr.GRGR_CK
    JOIN [FacetsReport].[dbo].[CMC_PDPD_PRODUCT] pdpd with (NOLOCK) on mepe.PDPD_ID = pdpd.PDPD_ID
    JOIN [FacetsReport].[dbo].[CMC_PDDS_PROD_DESC] pdds with (NOLOCK) on pdds.PDPD_ID = pdpd.PDPD_ID
    JOIN [FacetsReport].[dbo].[CMC_MCTR_CD_TRANS] mctr with (NOLOCK) on mctr.MCTR_VALUE = pdds.PDDS_MCTR_BCAT
    --JOIN [FacetsReport].[dbo].[CMC_CSCS_CLASS] cscs with (NOLOCK) on cscs.PDPD_ID = pdpd.PDPD_ID
    WHERE mepe.MEPE_ELIG_IND = 'Y'
    AND DATEDIFF(day, mepe.MEPE_EFF_DT, @StartDate) >= 0
    AND DATEDIFF(day, mepe.MEPE_TERM_DT, @RunDate) <= 0
    --UPDATE the run date
    PRINT 'Updating LastRunDate...'
    update Extracts_Common_Table set CHAR_CFLD1= @currentRunDate where EXTRACT_ID=569 and SEQ_NO=1 AND
    DOMAIN_NAME ='LastRunDate' AND Active=1
    END -- Same Date Run Check
    END
    GO
    PRINT '------- Procedure [dbo].[pr_Extract_wt_569_OPTUM] Created ----------'
    GRANT EXECUTE ON [dbo].[pr_Extract_wt_569_OPTUM] TO [public] AS [dbo]
    GO
    Message error:
    Msg 102, Level 15, State 1, Procedure pr_Extract_wt_569_OPTUM, Line 71
    Incorrect syntax near ')'.
    Msg 137, Level 15, State 2, Procedure pr_Extract_wt_569_OPTUM, Line 118
    Must declare the scalar variable "@StartDate".
    ------- Procedure [dbo].[pr_Extract_wt_569_OPTUM] Created ----------
    Msg 15151, Level 16, State 1, Line 4
    Cannot find the object 'pr_Extract_wt_569_OPTUM', because it does not exist or you do not have permission.

    Shouldn't @StartDate be an input parameter to the stored procedure? @RunDate also?
    Example for sp with parameters:
    http://www.sqlusa.com/bestpractices2008/stored-procedure-parameters/
    The last error will go away upon a successful sp compile.
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Design & Programming
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • Im trying to download the facebook app, but its saying i need a credit card? i dont have no credit card while i create my account. what do i do?

    i go to install the app, and it says i have to review and confirm my account, so i do and it says put in ur credit card details.. but i dont have any?? what do i do

    Some users has reported that you can't set up an account withut a credt card or payment method if you do that through/while purchasing an app.  Try creating a new iTunes account without a credit card on the computer using the link previous provided. Alternately yu shouldbe able to purchase an iTunes gif tcard and and enter that as the payment method.

  • I cant find my imovie anywhere. ive tried finder and the search tool but its literally no where! please help :)

    Please help me find the imovie!

    it may be in the Applications folder, also try pressing  Command+ F and typing it in as
    iMovie, rather than just imovie. there is a "show path bar" option, if that helps. Double click on your hard drive, and try arranging by kind or application
    other than that, maybe stick the dvd into your dvd drive and reinstall
    I have nothing more to say
    JB

  • Is version 7 available anywhere for download? I am trying to install the Selenium IDE but get an error that it is not compatible with Firefox 8. Others in my team have been running this IDE with Firefox 7.

    None.

    Many Thanks, Kurt.
    I knew I'd seen the solution you've provided somewhere - either in MacWorld or MacFormat - but couldn't remember the Gatekeeper bit!
    I shall save it somewhere VERY safe now in case this happens again …
    You have made an old man very happy and saved me from worrying that senile decay had suddenly set in. (I was 70 last week so you might understand the situation from that.)
    Best wishes
    OllyanDinah

  • Im trying to register my credit card but its saying, error payment processing is temporarly unavailable

    been trying for a month now to register my billing info, still an error,payment processing temporarly unavailable

    First try logging out oand back into the iTunes Store and see if that helps.
    If you stll are getting the same error, try contacting iTunes Store Support: http://www.apple.com/support/itunes/contact/

  • Time to time its giving error in the FTP connection

    Hi Gurus,
    Im doing File to File Interface. Im using FTP for File transfer and the message protocol is 'File'.  Im using the connection security as 'FTPS(FTP Using SSL/TLS) for control and data connection' and set the default command order.
        I have uploaded the required certificate in the FTP server and the XI server also. I can view the certificate in the keystore of visual Administrator. Its working fine. But the problem is time to time its giveing this error "Error occurred while connecting to the FTP server "170.135.128.149:20021": iaik.security.ssl.SSLCertificateException: Peer certificate rejected by ChainVerifier"
    Can anyone please help to resolve this issue. i need to fix it as soon as possible.
    Regards,
    Rama

    Hi All,
      I m facing one peculiar problem with FTP server. I have desinged one R3 to FTP interface. I m trying to connect to FTP with secure SSL connection. For that we uploaded the certificate in the FTP as well as in the Visual administartor in the XI box. I didnt create any SSL socket for this. Our basis team told like we dont need this SSL socket stuff because here we are using FTP as a client. So just they uploaded the certificate in the trusted CA of Visual administartor. Our certificate is obtained from verisign. So the CN name in the certificate is Verisign. I didnt find any thing in the certificate other then this. In our communication channel we gave the hostname instead of IP address.  But here my problem is, When i send the file to FTP its giving error in the first attempt. After that the message retiried itslef, the file has been sent successfull in the retry process. Why it is always fails in the first attempt.
    Can anyone please help me to resolve this. I need to be fix today itself.
    Regards,
    Rama

  • I've tried to set up a new user on a mac book pro and i restarted it to create the new account but now all i can get is a white screen with the apple logo and the loading symbol what can i do ?

    i've tried to set up a new user on a mac book pro and i restarted it to create the new account but now all i can get is a white screen with the apple logo and the loading symbol what can i do ?

    Look at this support article:
    http://support.apple.com/kb/ts2570
    Ciao.

  • How to Create a Bootable Flash Drive to do a clean install of Lion.  I have tried to use the InstallESD.dmg but it still will not do a clean install so that I do not have to do a reinstall from the Recovery (That just re downloads and takes over 6 hours)?

    How to Create a Bootable Flash Drive to do a clean install of Lion.  I have tried to use the InstallESD.dmg but it still will not do a clean install so that I do not have to do a reinstall from the Recovery (That just re downloads and takes over 6 hours)?
    The system I'm have is a Mac-mini that had SL on it and no SuperDrive.  I have also call Apple Support and they have really have not been to much help over 1st did my up grade to Lion and Installed the Lion Server.... it lost my SSL that I paid for and kill almost on of my server setting, plus kill all my web servers (using apache vhosts), and not to say the LDAP will even let remote users login to your laptops.
    PS: There is no way that I'm going to buy a Install USB from Apple... They have over billed me over $300.00 because the Apps Store still has bugs (Glad I did not write that App/Service)
    If there is anyone that can give in the information to create a USB install stick, I would be very thinkful.

    Here you are bro, courtesy of "softpedia.com"....brilliant site!!!
    If you ever had problems with your Mac OS X installation you know that the first thing you should do is to check the startup volume using Disk Utility.
    After the check has ended and, if the errors exceed a certain level of seriousness, the Disk Utility application will require you to restart your Mac and use its Mac OS X Install disc counterpart.
    Other users may have to reinstall OS X altogether, but will find, or already know, that their SuperDrive (a CD/DVD reader and write combo drive) is not functioning properly and it will not be able to read the Install disc.
    Although this might happen to Mac OS X Leopard users due to faultyhardware, the vast majority of problematic SuperDrives will be encountered inside Snow Leopard running Macs.
    This is due to the updated SuperDrive firmware included in either the Install disc or the software updates one has to install to reach the latest version of OS X, namely 10.6.6.
    This can be fixed by flashing the SuperDrive’s stock firmware using free command line tools that one can find for free online (I will write about this process also, but at a later time because this article only focuses on allowing you to create your own alternative USB boot disc).
    If you are reading this last bit of information with skepticism, than you should know that it happened to me too. Despite all my tries to make it work properly, the SuperDrive kept on munching any inserted DVDs and just popped them out in about twenty seconds.
    The workaround to this issue was to create my own Leopard bootable USB memory stick. I am not suggesting a Snow Leopard bootable stick mainly because there are lots of users that have decided to buy the cheaper, Upgrade version, which I have not tested and, therefore, I’m not sure if it will work properly once written to a USB disk.
    And now, here are the exact steps you should follow in order to obtain a fully bootable Leopard (or Lion) Install disc.
    Step 1 (If you already have the Leopard install disc DMG file you can skip to Step 2)
    Launch Disk Utility (you can find it inside /Applications/Utilities). Here select the Leopard Install disc in the list of drives on the left and click on the New Image menu entry at the top of the window. A save message will appear where you will have to select the Desktop as a destination.
    Step 2
    After Disk Utility has finished creating the Leopard DMG, insert your USB stick and erase all data and reformat the disk. To do this select the USB in the list of drives on the left and, after clicking on the Erase tab on the right side of the window, choose the Mac OS Extended (Journaled) format and click the Erase button beneath.
    Step 3
    After the USB has been reformatted, download the SuperDuper app from HERE and launch it. Once SuperDuper starts, you will only have to select the DMG in the Copy drop-down menu, your USB memory stick on the right and hit the “Copy Now” button.
    One can also use Disk Utility for this task but creating a bootable USB stick failed 2 out 4 times when copying the DMG to the stick (with the exact same settings each time). Creating the bootable stick using SuperDuper proved to be the perfect way to do it because it worked each of the 4 times I tested it.
    The steps above can also be used to create a bootable Mac OS X Lion USB by using the InstallESD.dmg image you can find inside the Lion installer (named “Install Mac OS X Lion.app”) downloaded from the Mac App Store in the /Applications folder.
    To locate the InstallESD.dmg right click the Lion installer, select the “Show Package Contents” entry, go inside the “Contents” folder, and from there into the “SharedSupport” folder. Inside this folder you can find the InstallESD.dmg you can use to create your own bootable Mac OS X Lion USB stick. To do so, go to the third step described above and use the InstallESD.dmg as the DMG to be copied to your USB disc.
    That’s it! Once the process ends you will have a fully bootable Leopard (or Lion) USB disk that you can use as an alternative to the Apple’s DVD Install disc that comes bundled with all Macs.
    To use your newly created bootable disk you will have to restart the Mac, press and hold the OPTION key until the StartupManager appears. Here, select the Mac OS X Install disk using your keyboard arrows and press return to start from the selected drive.

  • Satellite U205-S5034 - Error when trying to create the recovery discs

    Hi Everyone,
    I am having trouble with The TOSHIBA Recovery Disk Creator. When trying to create the recovery discs this error comes up:
    An unexpected error occurred. Please quit this application and restart it. (Error Code: 0F00FE-F1-00000002)
    The machine is a Satellite U205-S5034 running XP Pro SP3.
    Any help will be greatly appreciated. Thanks and have a great day.
    DaveMatt44

    Hi
    What kind of DVDs you are using for creating a Toshiba recovery disc? As yet I have tried Verbatim DVD-R and TDK DVD-R and never had a problem with these discs. Friend of tried DVD+R and he couldnt create a recovery disc. After that he tried DVD-R and all was fine but I dont know why this happened.
    So please try other discs.
    Furthermore check the Toshiba page for a firmware update of CD/DVD drive. Maybe it will help you.

  • Im trying to download itunes 10.5 but keep getting error message that says: There is a problem with this Windows Installer package. A problem run as part of the setup did not finish as expected. Contact your support personnel or package vendor.

    im trying to download itunes 10.5 but keep getting error message that says: There is a problem with this Windows Installer package. A problem run as part of the setup did not finish as expected. Contact your support personnel or package vendor. I am using windows XP 32 bit, all the other computers in my house downloaded just fine, no problems, however this is the computer my iphone is set up to, ive tried doing a virus scan, windows update, downloading other things, updating everything possible, everything works fine, its just itunes that wont download, anyone have any other ideas?

    Yes, I had found a similar solution also.  I'm running XP Pro, SP3.  I went Control Panels/ Add-Remove programmes/apple software update/ change/ repair.  Then run the 10.5 exe.
    While the programme updated from version 8 of iTunes, my new iTunes is now a mess.  Not all of my music was in the same folder previously but it all showed up on iTunes.  Now many albums have been left out, some have only a few tracks and some have two copies of some tracks as well as having other tracks missing.  I haven't begun to work on that.

Maybe you are looking for