ERRORS Interview Questions
Questions Answers Views Company eMail

what is meant by linking error? how can i solve it? if there is a linking error " unable to open file 'cos.obj'? then what should i do?

1 5400

Program ended with error or warning, return code: 4

TCS,

13683

what is new g/l functionality

2210

what is the instrument that used in Mechanical Energy??

2259

Write a c-programe that input one number of four digits and find digits sum?

2 6377

Account GOLD-100200 not allowed to be defined as reconciliation account Message no. AC309 Diagnosis Account 100200 is defined as a reconciliation account for fixed assets for chart of accounts GOLD and account determination 11000. This is not correct in the circumstances (Accumulated depreciation account for ordinary depr). Keep in mind that the Customizing definition of the given depreciation area also influences the consistency check of the G/L accounts. This is particularly true for the posting settings in the depreciation area, if the accounts are value adjustment (depreciation) accounts. Procedure Change the account definition, or assign a different account. ERROR MESSAGE “Account INT-160600 not allowed to be defined as reconciliation account” . Message No.: AC309 ANALYSIS The above error message occured when saving the configuration changes in “Acquisition from affiliated company” through config transaction AO90. Here’s the configuration path that prompted the error: Path: IMG → Financial Accounting → Asset Accounting → Integration with the General Ledger → Assign G/L Accounts. Transaction Code: AO90 G/L account 160600 is entered in the highlighted “Acquisition from affiliated company” field. Upon saving the configuration change, the above error messageprompted. Do note that g/l account 160600 has been defined as reconciliation account type for asset. Here’s how it is set- up. SYSTEM DIAGNOSIS Account 160600 is defined as a reconciliation account for fixed assets for chart of accounts BPPH and account determination 1000. This is not correct in the circumstances (Clearing acct: Acquisition from affiliated company). Keep in mind that the Customizing defination of the given depreciation area also influences the consistency check of the G/L accounts. This is particularly true for the posting settings in the depreciation area, if the accounts are value adjustment (depreciation) accounts. SOLUTION & PROCEDURE If the g/l account entered is correct change the settings of g/l account 160600. Do not set it as reconciliation account, just leave the reconciliation account type blank. Otherwise, create a new g/l account that will be used as intercompany transfer clearing account. The new g/l account should not be set as reconciliation account. You must be logged in to post a comment. • F Asset accounting account determination natandycanada asked Sep 3, 2009 | Replies (5) Hello I am building the asset accounting account determination. When i enter the GL account for Account determination i get the message: reconciliation account is not allowed!!! (. SAP message AC309 )has anyone come across this message? I checked the depreciation area definition and all should be good. I am on ECC6. Thank you Join this group Popular White Paper On This Topic • 2011 ERP (Enterprise Resources Planning) Comparison Guide 5 Replies 1 Anuj Purwar replied Sep 4, 2009 Hi, Assign a P&L account for depreciation posting. Thanks. _____ 1 natandycanada replied Sep 4, 2009 I do have a P&L account Andy Maoulaoui 0 Ron Roberts replied Sep 4, 2009 Help us ouot with a little more detail. What G/L account are you trying top assign? Depreciation expense? Asset account? Accumulated depreciation account? Gain/loss on disposal P&L account? Other? 1 natandycanada replied Sep 5, 2009 I am assigning an accumulated depreciation account. this account is naturally a reconciliation account. all other accounts can be entered without any error. When i enter the accum depreciation account in depr area 01 (post to legder 0L) the system give the message that reconciliation account is not allowed. when i enter the accum dep account in dep area 02 ( posting to non leading ledger) i dont get the error. Andy Maoulaoui White Papers and Webcasts Popular • The Evolution of ERP and What it Means for Business Related • Gain IT asset visibility, control and automation • SMB Accounting SaaS Comparison Guide • Shifting the B2B Marketing Paradigm from Contacts to People: ... More White Papers 0 Gearoid Pierse replied Dec 4, 2009 Hi everyone - I am getting the same problem when putting in an accumumated depreciation account in the customizing for depreciation area 01, I get *** (message AC309 "Account 1100250 is defined as a reconciliation account for fixed assets for chart of accounts OPER and account determination AD400. This is not correct in the circumstances (Accumulated depreciation account for ordinary depr).Keep in mind that the Customizing definition of the given depreciation area also influences the consistency check of the G/L accounts. This is particularly true for the posting settings in the depreciation area, if the accounts are value adjustment (depreciation) accounts. *** However, I can assign my accumulated depreciation account 1100250 (which has the recon account "A" (assets) setting no problem for depreciation area 20. If I take away the recon account setting in the G/L account I get a different error message

9977

I have written the code as below. here problem is that dt remain null. how to solve thst please tell me. public partial class Form1 : Form { private DataTable DTable; private DataRow drow; public Form1() { InitializeComponent(); } private OleDbConnection getConnection() { OleDbConnection con=new OleDbConnection (@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Documents and Settings\Administrator\My Documents\Visual Studio 2008\Projects\winApp for Student\winApp for Student\App_Data\SchooMgnSystem.mdb;Persist Security Info=True"); return con; } private void button1_Click(object sender, EventArgs e) { InsertData(); } private void InsertData() { if (DTable==null) { DTable = new DataTable(); DTable.Columns.Add("StudID", typeof(string)); DTable.Columns.Add("StudName", typeof (string)); DTable.Columns.Add("Address", typeof(string)); drow = DTable.NewRow(); drow[0] = txtStudID.Text; drow[1] = txtSTudName.Text; drow[2] = txtAddress.Text; DTable.Rows.Add(drow); grdStudent.DataSource = DTable; } else { drow = DTable.NewRow(); drow[0] = txtStudID.Text; drow[1] = txtSTudName.Text; drow[2] = txtAddress.Text; DTable.Rows.Add(drow); grdStudent.DataSource = DTable; } } private void button2_Click(object sender, EventArgs e) { string cmdstr; OleDbCommand cmd; OleDbConnection con = getConnection(); foreach (DataRow Drow in DTable.Rows) { cmdstr = "Insert into Student values('" + drow[0].ToString() + "','" + drow[1].ToString() + "','"+drow [2].ToString()+"')"; cmd = new OleDbCommand(cmdstr,con); try { con.Open(); cmd.ExecuteNonQuery(); } catch (Exception ex) { MessageBox.Show(ex.Message); } finally { con.Close(); } } }

2238

how can i get the question papers of year 2006 and 2007 of 12th commerce gujarat board

1865

not being able to create delivery from vl01n inspite of assigning sales order and delivery plz answer it immediately if any one knows

1 3633

What is the out put of this programme? int a,b,c,d; printf("Enter Number!\n"); scanf("%d",&a); while(a=!0) { printf("Enter numbers/n"); scanf("%d%d%d",&b,&c,&d); a=a*b*c*d; } printf("thanks!"); getche(); Entering numbers are a=1,b=2,c=3,d=4 b=3,c=4,d=-5 b=3,c=4,d=0

TCS,

5 6385

why no girl is seeing me

2272

what is wrong with this insert into code? vb 2008 say that there is a syntax error but i believe there is nothing.. cmd.CommandText = " INSERT INTO account1(username, password, lname, fname, mi) VALUES('" & Me.TextBox4.Text & "','" & Me.TextBox5.Text & "','" & Me.TextBox1.Text & "','" & Me.TextBox2.Text & "','" & Me.TextBox3.Text & "')" cmd.ExecuteNonQuery()

2 4225

how to fix the heap space error in java ?

1 3804

i forgot to take signature of the supervisor during my board exams of ssc gujarat board.Now what should i do?

1 4499

write a database figure to implement the master detained relationship.

2428


Un-Answered Questions { ERRORS }

when i ran any workflow or session, getting below error: seesion task instance[s_xxx]: Execution terminated unexpecterdly

1750


hi all, I am in the process of learning qtp. i havve windows vista in my system whenever i try to run flight reservation application , i am getting the following error "Operation must use an updateable query Fractional truncation (null) . And am unable to open Mercury tours web application due to some other error Can anyone help me please

4908


ORA-26076: cannot set or reset value after direct path structure is allocated

1472


write a database figure to implement the master detained relationship.

2428


Hi guys, I have four tables those are emp,dept,eliminate and uneliminate. i wrote small cursor..when i run, it display one error (ORA-01403 nodata found)... The query is: Declare cursor c1 is select e.ename emp_name from emp e,dept d where e.deptno=d.deptno group by deptno; r1 c1%rowtype; test_emp varchar2(200); begin for r1 in c1 loop begin select eliminate_emp into test_emp from eliminate t,uneliminate ut where t.number=ut.number and t.deptno=e.deptno and rownum<1; end; dbms_output.put_line(r1.emp_name); end loop; end; Thanks...

2255






RMAN-05017: no copy of datafile number found to recover

1883


IMP-00000: Import terminated unsuccessfully Hi all . when i go to restore oracle dmp file in my database ans typing this command , C:UsersW>imp HR2011/HR2011@XE TABLES=* dmpfile=F:Share223.27.244.72EXP 2017-0113030008FU160710ZIP/FU160710.DMP this message was showed to me and restore mission filed . LRM-00101: unknown parameter name 'dmpfile' IMP-00022: failed to process parameters, type 'IMP HELP=Y' for help IMP-00000: Import terminated unsuccessfully how i can fix this problem plzzz

2816


how can i get the question papers of year 2006 and 2007 of 12th commerce gujarat board

1865


Any body can tel me how to display a Frame Link of a page in Another Frame? For Clearance of my dought..... I designed a BSP page with 3 frames as shown below. -------------------------------- | | | Frame 1 | | | -------------------------------- | Frame 2 | Frame 3 | | | | | Link 1 | | | Link 2 | | | Link 3 | | | | | -------------------------------- Now in Frame 1 i displayed one page.. And in Frame 2 i displayed one page with some links. Now when i clicked on any Link in Frame 2 that corresponding Page has to display in Frame 3. In general HTML i know...But in BSP i don't know that much since i am new to this... plz any solutions...thanks a lot.... Regards, Shankar.

1900


Process of resolving a specific problem Problem helps to enhance your ability to live life happily. Yes, it looks stupid when somebody say something like this. But it is true. If you say, “how?” I explain how. When there is a problem in ones life, he tries to solve it. Once he solves the problem the satisfaction of solving the problem which he feels has no words. You can see it in his eyes, on his face, in his footsteps, and not the least all around where he is. So tell me, it works? So never give up in your life. Live the life with problem, because life’s other name is problem. No one on the earth saying he or she has no problem. One who does not say that I have problem but try hard to solve the problem is the person who live life happily. There are two system of solving the particular problems. One is: solve intuitively. Two is: solve systematically. From my point of view, solving the problem systematically is much easier, more balanced and logical. To solve the problem systematically there are some instruction like relaxing head for some time, think on problem and the solution. One must not mix two things together in such a way that you can not differentiate them. If essential, there should be different solutions for different problems. In solve problem systematically, one come across five types of questions or we can view it as steps to solve the problem. They are: 1 What are the sources of problem is means “establish the goal”: “To live is to have problems and to solve problems is to grow intellectually.” (J. P. Guilford) No problem exists in the absence of an objective. We need to know exactly what and where we want to arrive at in order for us to properly determine our track and direction. Knowing our direction is an important aspect in problem solving, as what Diana Ross said, “Do you know where you’re going to?” 2 What the problem is exactly means “identify and define the problem”: “Microsoft is company that manages imagination” (Bill Gates). It is definitely related to imagination i.e. asking ourselves what is the problem and to seek to understand more why we think there is the problem is recognized what caused it in order for us to get an objective. 3 What are the solutions of problem means “set your priorities”: “The best way to get a good idea is to get a lot of ideas” (Linus Pauling) Bifurcation between which solutions are “must” and which are “want” is difficult task. The solution which must be taken to solve the problem is listed out. Therefore it is said that “the only joy in the world is to begin.” (Cesare Pavese). 4. Which solution is best among all means “brainstorm for solution”: “That human mind is like a parachute – it functions better when it is open.” (Cole’s Rules) As per this narration, I can say that brainstorm for the solution to the problem is must. When you ask for the opinion of other, you can decide upon what to do and don’t. 5. What action to be taken to solve the problem means “plan your course of action”: “It is not enough to just do your best or work hard. You must know what to work on” (W. Edwards Deming). Plan your course of action with regard to the resources needed to implement the solution. In Living a Life That Matters, Harold S. Kushner (the Massachusetts rabbi whose best selling books include When Bad Things Happen to Good People) suggests that the most successful lives are the ones that most effectively manage and resolve that problem. In a nutshell, to solve the particular problem, Rene Descartes says that “It is not enough to have a good mind; the main thing is to use it well.” FIND OUT GRAMMATICAL ERROR?

5213


what is new g/l functionality

2210


ORA-26094: stream format error: input column overflow

2253


Program ended with error or warning, return code: 4

13683


IMP-00096: Warning: Skipping table "string"."string" because type synonym "string"."string" cannot be created

1237


How to create a program that lists countries capitals when country is entered? (Terribly sorry, I'm a complete novist to coding with C, am looking for inspiration and general tips on how to code and create this program.)

873