Z1-015 Error "Enter Business Area" in BAPI_INCOMINGINVOICE_CREATE

Hi All,<br/><br/>
Here is a scenario that has totally confused me and I don't know what to do. Any guidance in this area will be highly appreciated.<br/><br/>
I am using BAPI BAPI_INCOMINGINVOICE_CREATE for MIRO. Our client gets invoices that contains both PO lines and some Non PO lines. For the PO lines I am populating the BAPI_INCINV_CREATE_ITEMDATA table and for the non po lines I am populating the BAPI_INCINV_CREATE_GL_ACCOUNTDATA table. In the structure BAPI_INCINV_CREATE_GL_ACCOUNT I am also populating the Bus_Area field with the Business Area value along with other values. The header Bus_Area is also populated with business area code. <br/><br/>
However, when I try to post the invoice the bapi return me a message: Z1 015 "Enter Business Area" and the invoice does not get booked in SAP, <br/><br/>
I have tried searching this forum and also googled about it, but I got no help in this regard. Please help me out in understanding this problem. I am attaching the code below for ease of understanding my problem. I am using SAP .Net Connector for the purpose. However, any guide related to this error (may not be .Net specific) will be appreciated.<br/><br/>
//objects used for creating the invoice ****<br/>
BAPI_INCINV_CREATE_ADDRESSDATA Addressdata = new BAPI_INCINV_CREATE_ADDRESSDATA();<br/>
BAPI_INCINV_CREATE_HEADER Headerdata = new BAPI_INCINV_CREATE_HEADER();<br/>
BAPI_INCINV_CREATE_ACCOUNTTable Accountingdata = new BAPI_INCINV_CREATE_ACCOUNTTable();<br/>
BAPI_INCINV_CREATE_ACCOUNT Account = new BAPI_INCINV_CREATE_ACCOUNT();<br/>
BAPI_INCINV_CREATE_ITEMTable Itemdata = new BAPI_INCINV_CREATE_ITEMTable();<br/>
BAPI_INCINV_CREATE_GL_ACCOUNTTable Glaccountdata = new BAPI_INCINV_CREATE_GL_ACCOUNTTable();<br/>
BAPI_INCINV_CREATE_GL_ACCOUNT Glaccount = new BAPI_INCINV_CREATE_GL_ACCOUNT();<br/>
BAPI_INCINV_CREATE_MATERIALTable Materialdata = new BAPI_INCINV_CREATE_MATERIALTable();<br/>
BAPIRET2Table InvReturn = new BAPIRET2Table();<br/>
BAPI_INCINV_CREATE_TAXTable Taxdata = new BAPI_INCINV_CREATE_TAXTable();<br/>
BAPI_INCINV_CREATE_VENDORSPLITTable Vendoritemsplitdata = new BAPI_INCINV_CREATE_VENDORSPLITTable();<br/>
BAPI_INCINV_CREATE_WITHTAXTable Withtaxdata = new BAPI_INCINV_CREATE_WITHTAXTable();<br/>
// ****<br/>
// populating the header<br/>
Headerdata.Bus_Area = invoice.BusinessArea;<br/>
Headerdata.Comp_Code = invoice.CompanyCode;<br/>
Headerdata.Doc_Date = invoice.InvoiceDate;<br/>
Headerdata.Doc_Type = "RE";<br/>
Headerdata.Diff_Inv = invoice.VendorID;<br/>
Headerdata.Currency = invoice.Currency;<br/>
Headerdata.Exch_Rate = 1.00M; // to be replaced<br/>
Headerdata.Gross_Amount = invoice.InvoiceAmount;<br/>
Headerdata.Header_Txt = "";<br/>
Headerdata.Invoice_Ind = "X"; // X = Invoice , '' = Credit Memo<br/>
Headerdata.Inv_Rec_Date = invoice.DateReceived;<br/>
Headerdata.Pmnttrms = invoice.PaymentTerm;<br/>
if (invoice.IsMatched == "0")<br/>
    Headerdata.Pmnt_Block = "A"; // in case the IsMatch Status = 0<br/>
Headerdata.Pstng_Date = invoice.PostingDate;<br/>
Headerdata.Calc_Tax_Ind = "X";<br/>
Headerdata.Del_Costs = 0.00M;<br/>
Headerdata.Ref_Doc_No = invoice.InvoiceNumber;<br/>
Headerdata.Inv_Year = "0000";<br/><br/>
// populating the line<br/>
List<Invoice.LineItem> lines = invoice.LineItems.Where(item => item.PONumber.Trim() != String.Empty).ToList();<br/>
int itemCount = 0, accSlNo = 0;<br/>
foreach (Invoice.LineItem line in lines)<br/>
{<br/>
    itemCount++;<br/>
    string strItemNo = FillCharacter(itemCount.ToString(), "0", 6);<br/>
    BAPI_INCINV_CREATE_ITEM Item = new BAPI_INCINV_CREATE_ITEM();<br/>
    Item.Invoice_Doc_Item = strItemNo;<br/>
    Item.Po_Number = line.PONumber;<br/>
    Item.Item_Amount = line.Amount;<br/>
    Item.Quantity = line.Quantity;<br/>
    Item.Po_Item = FillCharacter(line.PO_LineNo, "0", 5);<br/>
    Item.Po_Unit = line.PO_Unit;<br/>
    Item.Po_Unit_Iso = line.PO_Unit_Iso;<br/>
    Item.Tax_Code = line.TaxCode;<br/>
    Item.Cond_St_No = "000";<br/>
    Item.Cond_Count = "00";<br/><br/>
    Item.Ref_Doc_It = "0000";<br/>
    Item.Ref_Doc_Year = "0000";<br/><br/>
    Item.Po_Pr_Qnt = Convert.ToDecimal(Po_item["Quantity"]);<br/>
    Item.Po_Pr_Uom = Po_item["Orderpr_Un"].ToString();<br/>
    Item.Po_Pr_Uom_Iso = Po_item["Orderpr_Un_Iso"].ToString();<br/><br/>
    Itemdata.Add(Item);<br/><br/>
}<br/>
// populating the GL Accounts for the non PO and PM lines where the PO number will be blank<br/>
List<Invoice.LineItem> nonPOlines = invoice.LineItems.Where(item => item.PONumber.Trim() == String.Empty && item.LineItemType == "L").ToList();<br/>
itemCount = 0;<br/>
foreach (Invoice.LineItem line in nonPOlines)<br/>
{<br/>
    int multiplier = 1;<br/>
    itemCount++;<br/>
    Glaccount = new BAPI_INCINV_CREATE_GL_ACCOUNT();<br/>
    Glaccount.Invoice_Doc_Item = FillCharacter(itemCount.ToString(), "0", 6);<br/>
    Glaccount.Db_Cr_Ind = "S"; // debit<br/>
    Glaccount.Neg_Postng = "";<br/>
    if (line.Amount < 0.00M)<br/>
    {<br/>
        Glaccount.Neg_Postng = "X";<br/>
        Glaccount.Db_Cr_Ind = "H"; // credit<br/>
        multiplier = multiplier * -1;<br/>
    }<br/>
    Glaccount.Comp_Code = invoice.CompanyCode;<br/>
    Glaccount.Item_Text = line.Description;<br/>
    Glaccount.Item_Amount = line.Amount * multiplier;<br/>
    Glaccount.Gl_Account = line.GLCode;<br/>
    Glaccount.Costcenter = line.CC;<br/>
    Glaccount.Profit_Ctr = line.PC;<br/>
    Glaccount.Orderid = line.OrderNo;<br/>
    Glaccount.Tax_Code = line.TaxCode;<br/>
    Glaccount.Bus_Area = line.BA;<br/>
    Glaccount.Person_No = "00000000";<br/>
    Glaccount.Sdoc_Item = "000000";<br/>
    Glaccount.Ref_Date = "00000000";<br/>
    Glaccount.Wbs_Elem = "00000000";<br/>
    Glaccount.Profit_Segm_No = "0000000000";<br/>
    Glaccount.Alloc_Nmbr = line.Assignment;<br/>
    Glaccount.Tr_Part_Ba = line.BA;<br/>
    Glaccount.Activity = "";<br/>
    Glaccount.Acttype = "";<br/>
    Glaccount.Cmmt_Item = "";<br/>
    Glaccount.Cmmt_Item_Long = "";<br/>
    Glaccount.Co_Busproc = "";<br/>
    Glaccount.Costobject = "";<br/>
    Glaccount.Func_Area = "";<br/>
    Glaccount.Func_Area_Long = "";<br/>
    Glaccount.Fund = "";<br/>
    Glaccount.Funds_Ctr = "";<br/>
    Glaccount.Network = "";<br/>
    Glaccount.Rl_Est_Key = "";<br/>
    Glaccount.Sd_Doc = "";<br/>
    Glaccount.Grant_Nbr = "";<br/><br/>
    Glaccountdata.Add(Glaccount);<br/>
}<br/>
proxyPOInvoice.Bapi_Incominginvoice_Create(Addressdata, Headerdata, out FiscalYear, out InvoiceNumber,<br/>
    ref Accountingdata, ref Glaccountdata, ref Itemdata, ref Materialdata, ref InvReturn, ref Taxdata, ref Vendoritemsplitdata, ref Withtaxdata);<br/>

Hi,
This error was mis leading. If CalculateTax flag is set to 'X' and there is balance in the transaction currency then, instead of giving "Balance in transaction currency" error "Enter Business Area" error comes.
There must be some logic for SAP to give this error, but it was somewhat misleading. When i removed the flag for CalculateTax="", this error vanished and "Balance in transaction currency" error came. When I retrified that my invoice got booked properly.
Thanks to all anyway for the responses provided.
Best Regards
Sutirtha

Similar Messages

  • Error message PLEASE ENTER BUSINESS AREA

    Hi experts,
    Facing problem while doing 531 movement for by product generation by MB1A.
    Getting error message  PLEASE ENTER BUSINESS AREA.
    and for same material accounting document not heat.
    experts suggestion need to resolve issue.
    Waiting
    Bhupendra

    Business area is Pulled based on Division assignment
    Assign the division for that material in basic data view
    and then post

  • Error in business area determination in pgi

    HI GURUS
    i have 1 problem .my clients wants to sale wastes material,thats why i configure all the process(diff distribution channel,order,del,billing type,etc) i create order>delivery correctly but when i am going to post the doc for pgi it showing a red error massage "business area 1002 does not exist".
    we never create business area 1002.we use KOLK .In order the system took KOLK but in pgi it showing this error.
    but again when i am trying to post system allows me to post and took the KOLK automatically.
    I check all the con and all are correct.
    what is the reason behind it?how can i solve this problem?
    If any one can help me
    Thanks
    babi

    hi
    During PGI, the system takes the business area that appears in the
    material document and in the accounting document from the entries
    recorded under the customizing transaction OMJ7:
    In the piece of coding:
    Main program     SAPLMATL
    Source code of   LMATLF6P
           PERFORM  LESEN_T134H   .
           CHECK SY-SUBRC = 0.
           MOVE-CORRESPONDING T134H TO MBEFU. <
         ENDFORM.
    regards
    ramana

  • A/c doc not created and error msg "Business Area Miss-Match Check input"

    Hi,
    After creation of new Plant and Business area create a invoice , But my accounting document does't created and error msg show "Business Area Miss-Match Please Check Your Input". plz suggest me.
    Regards,
    Sohail

    Dear Sohail Rahman,
    Looks like the Business area has not been properly assigned.
    Business area can be created for three combinations:
    1. Business area by sales area
    2. Business area by plant and division
    3. Business area by plant and item division
    In your case, check whether the business area is maintained for the combination of plant/division and plant/item division.
    Hope this helps
    Thanks
    Murtuza

  • Error: Regarding Business area in not assigned to cost center

    Hi Expert,
    while saving the WBS , getting error message that business area is not valid for this cost center, even after mapping business area in to cost center in KS03. still getting this error. and check all cobination between business area and cost center is correct..please guide some one how to correct it.

    Hi
    CrossCheck in OKB9 Account Assignments -Detail per Businessarea/Val.area - check for the cost center to which Val.area it is assigned. change it as Per your requirments.
    this will solve your issue.
    Thanks
    Goutam

  • Error with Business area and profit center

    Hello Guru's,
    I have an issue when posting the stock through t-code MB1C and 521 movement type. We have assigned business area and profit centers for plants as below:
    For Plant 1000,
    Business Area:       1100
    Profit center:           1100
    And For Plant 2000,
    Business Area:        1200
    Profit center:             1200
    But when I am assigning plant 2000, and assigning business area and profit center as 1200 respectively. System by default is picking as 1100 with a warning message.
    Please help this resolving this issue, I want the system to take the correct assigned BA and Profit center.
    Regards,
    Varun Siddharth

    Hi Varun,
    One of the possible ways is, to assign a business area to the cobination of Plant and Division in OMJ7 (Assignment is possible for other combinations as well). Later you can define a substitution rule so that, a profit center is substituted to the combination of Plant and Business Area.
    Hope it helps you.
    Regards,
    Ravi Kumar

  • Error while posting billing document - Error belongs to Business area/G/L a

    Hi All,
    When i am posting the billing document i ma getting below error message:
    Business Area must be entered, Pl check if the Business Area is correct Message no. ZT017
    I think it is due to MWST tax condtion type and respective G/L account only.
    When i post 17% tax of MWST i am able to post it - it is having one G/L account,
    When i post 5% tax of MWST, i am not able to post it - Different G/L Account - I am getting above error.
    Please suggest us to proceed further.
    Regards
    Lakshmikanth

    Hi Lakshmipathi,
    This is not at all related to VKOA settings, because the G/L account determination through OB40 here. But every thing is in place. A1 tax code with XXXXXX G/L account is working fine, A2 tax code with YYYYY G/L account is not working fine. If change A2 tax code G/L account to XXXXXX, it is working fine. Here only with YYYYY G/L account issue,
    The error details already available in this thread.
    Thanks and Regards
    Lakshmikanth

  • Account assignment not possible (Asset not assigned to a business area)

    HI
    While posting an asset acquisition through F-90 by entering Business area, doc.type AA,TT-100,PK-70, i am getting the error messege AA483 - "Account assignment not possible (Asset not assigned to a business area)".
    I have correctly created asset master and assigned Business area and Cost centre.
    And i am not getting any problem in another company code for same asset class.
    Please suggest
    Bhanu Prakash

    Hello
    Assets are assigned to a single business area in their master record. Every posting to an asset balance sheet account is automatically posted to that business area. The business area for an asset is passed on to all line items connected with the asset. Therefore you do not need to make a manual account assignment for a business area at any point.
    http://help.sap.com/erp2005_ehp_02/helpdata/en/5f/1fac7c4aee11d189740000e8322d00/frameset.htm
    Check the info on the link please
    Reg
    assign points if useful

  • Business area wise Automatic Payment program run

    Dear all
    clarifications regarding Automatic Payment Program vs Business Area,  They want to run Automatic Payment Program  run Business Area wise
    They want to run payment run with reference of business area
    for example
    1) BUSINESS AREA : A
    2) BUSINESS AREA :  B
    Is it possible to enter business ares in automatic payment program run, if it is not possible what is the ultimate solution for this.
    appreaciated
    regards
    babu
    From Chandigarh to Chennai - find friends all over India. Click here.

    Dear all
    herre client is introdusing business area for running business
    when i check in oby6 business area financial statments as required
    if am going to pass a entry in f-02 the after assigning cost center the error is cost center not assigned to business area.
    if i am going for caost center to assign business area in tc-ks02 here business area is required entry  if i enterd business area if i saved that one the error is The field change business area isnot possible (transaction data already exists)
    Field change Business Area is not possible (transaction data already exists)
    Message no. KS134
    Diagnosis
    To ensure the consistency of existing data, you can only change object Business Area if no transaction data exists in the change period; that is, neither plan data nor actual data has been posted.
    As transaction data already exists, it is not possible to change objects in this time period.
    Procedure
    If you still want to change the object, select a suitable change interval by choosing "Edit -> Analysis period...".
    if i follow above menu bar  edit-analysis period  it is giving same error
    appricated
    regards
    babu

  • Business area to be deactivated in SD Process

    Dear SD Gurus
    i am doing in sandbox client
    while crating the SOrder, i am getting an error
    No business area can be determined for item 000010
    Message no. V1599
    Diagnosis
    The system could not determine a business area for item 000010. The item has plant 1011 and is assigned to company code 1000 for which a business area is required. This is caused by incomplete settings in Customizing.
    System Response
    The system does not allow you to create the item.
    Procedure
    Before creating the item, make sure that you have completely maintained business area assignments in Customizing.
    then in Sales order , i am removing plant and saving the SO--> SO created successfully
    then in va02, again i am entering plant then error is not coming then normal delivery is working fine
    my requirement is to deactivate the Business area settings
    i done everything in enterprise strucSDBusi area a/c assignment
    1) sales area -busi area dewtermination rule------maintained BLANK for my sales area
    2) assignn busi area to plant/division--my plant & div combination is deleated
    3) assign busi area -sales area -
    no entries at all.
    so where is the problem ?
    suggest me

    As per your thread,
    you have done most of the settings to deactivate Business area.
    still,
    check in Tcode:OBY6
    un-check - "Business area in Fin.Statements"-
    try n revert

  • Trading partner on Business Area Clearing Account

    Hi,
    I have configured business area wise financial statements for my client. But when doing cross-company code postings, the BA is not getting transferred to the company code clearing accounts. Is there a way to get it to transfer automatically ?
    In the mean time, I am using Balance sheet adjustments to resolve this, but the trading partner on the original document line item is not getting copied to the business area clearing account. Is there a way to get the trading partner to get transferred to the BA clearing account?
    Also, by looking at the line items of the BA clearing account, is there a way I can determine the original account that was adjustment?
    Any recommendations of how I can handle this are greatly appreciated.
    Thanks in advance,
    ALAS

    hai,
    Goto T.Code Se38 and give SAPF180K it will display any error. then you correct the error and rerun again F.5d & f.5e. It will work. 
    Problem because of Reconciliation acount. It means all the reconciliation account need to be mapped in OBXM with business area clearing account.
    And also Cash Gl account needs cash clearing account. because you will not able to enter business area in Cash account. (corresponding entry will have the business area)
    Try this. If you have any problem mail me back.
    govind.

  • Business area required for subcontracting GR

    Dear Experts,
    In subcontracting scenario while executing GR; if we enter PO number, system proposes the component.
    We have expand / collapse button which allows us to see which are the materials (BOM) getting consumed for component we are receiving.
    My problem is if we expand the material tree, then for each line item of sub components I need to enter business area. If the list is too big, it is very time consuming to enter business area for each component.
    Request to convey me any standard setting which copies business area automatically for sub components.
    Regards,
    Yogesh

    Dear Yogesh,
    Firstly can you please check your settings in OMBW for tcode MB01
    Please check whether business area is not suppressed in your system
    in transactions OMCJ and OMBW and take into account that the system
    fills the business area in the vendor item if a business area can
    explicitly be determined from the offsetting entries. If several
    business areas were used for the offsetting entries, the field in
    the vendor item is not filled. Also please check whether material is
    assigned to division and whether in transaction OMJ7 is correctly set.
    Also, Can you please review the attached note :
          17483 : Business area for inventory postings
    Can you please review the attached notes
      367813 KI235 for goods movements: What should be done?
      Special stocks E/Q:
       As of Release 4.5, for special stock E/Q the sales order or the
       WBS element is primarily the key for the special stock.So that
       the sales order or the WBS element is also copied as the account
       assignment, the field selection for both fields must be
       maintained (Notes 117596 and 110675).
       117596 KI235: GI from Q/E stock (Customizing) or M7073
       110675 Valuated sales order or project stock: Error KI235
    Please call the transaction OMBW and ensure that the field selection for
    WBS-element (Project) is set as "Optional" (instead of Suppress).
    Then please retest the reported issue.
    I hope this information can be of help to you.
    Best Regards,
    Arminda Jack

  • Plant & business area validation in asset creation

    Dear All,
    Am working in a plant & business area validation which will fire the error msg when wrong plant is assigned at time of asset creation. Issue is for a company we have 19 business area and each business area assigned to various plant. In order to avoid the individual step for each business area, have merged two or more business area in pre-requiste section and correspondingly plant had been validated in check section. But when am inserting two check conditions, its not even working as per the logic, For ex :
    Pre-Requiste :
    ( ANLA-BUKRS = '1300' AND ANLZ-GSBER = '1101' ) AND (
    ANLA-BUKRS = '1300' AND ANLZ-GSBER = '1102' )
    Check :
    ( ANLZ-WERKS = '1307' OR ANLZ-WERKS = '1308' OR ANLZ-WERKS = '1309' OR ANLZ-WERKS = '1304' ) AND
    ( ANLZ-WERKS = '1305' OR ANLZ-WERKS = '1306' ANLZ-WERKS = '1344' )
    For the above condition system not validating as per business area since if we entering business area 1101 and entering the plant which related to 1102 business area, system not throwing the error msg where as if we put a single condition in a step its working fine.
    Kindly suggest me how to overcome this by avoiding individual step creation for each business area.
    Regards,
    Balaji.c

    Hi,
    I have chnaged my validation in the following way as follows,
    Pre-requiste :
    Co code=XXXX
    Check:
    Business area = XXXX AND Plant = XXXX.
    This condition is working fne for one business area, where as if i include more than one business area in the check section system not validating the condition, in a step its validating only one condition. Since 21 business area available for a co code its not feasible to create individual step.
    Kindly suggest me is there any other alternative way to overcome this.
    Regards,
    Balaji.c

  • Dear Gurus,how to maintain business area for a line item?

    Hi Gurus,
       Thanks for all gurus for your knowledge sharing,everyday i get new things from you gurus,
    right now i got one problem, while releasing the invoice i got the error as
    "Business Area not entered in the line item  000000012"
    where i should maintain the business area details, which T-code,
    my friend told me that it is a FICO related issue,Please Guide me gurus,
    Warm Regards,
    Deepak Shanmugam

    Hi Deepak
    Business Area
    Technical name: 0BUS_AREA
    Technical Data
    Available from Release
    3.0D
    Data element
    GSBER
    External hierarchy
    Not available
    Business Areas in SAP are used to differentiate transactions originating from different points/lines/locations in business. Let me give some examples to elucidiate:-
    A company (say, ABC) is a huge company and has a variety of businesses under it. Let us say that it typically operates in 3 different domains like machinery manufacturing, trading and assembling of machine parts. 
    There are 2 options here now -
    1. Either create different company codes for the 3 business operations (which would be the easiest and require no creativity)
    or 
    2.) Create each of these business lines into business areas (the better option). 
    The advantages of using the second option is:
    1. You can use these business areas if other company codes require the same areas
    2. The configuration is simpler as in case of company code, you would require to go through the entire configuration of creating Chart of Accounts, Fiscal Year variants, posting periods variants and so on. In the business area option, you just need to attach it to the company code and the rest of the details in Business area is attached by default from the company code you are using it in. 
    3. Using the options in controlling (EC-PCA, Enterprise Controlling, Profit Centre Accounting), you can even draw up Balance Sheets and PL statements for your business areas and hence this is used for management accounting in some companies (like HP, Dell, etc) when it wants to know the operating profits for different business areas/lines.
    The above was an example when the company wanted to separate entries according to the lines it operates in... the other case could be when it wants to find out profitability during its operations in cities and differentiates these cities into Business Areas...
    Business Areas are not much relevant in FI but are much more relevant in CO.
    You can define business area in
    Path: Img-enterprise structure Definition--Financail Accounting --- Define Business area.
    Same pathe: Assignment---Assign Business area to Consolidation business area.
    Same Path: Logistics General --- Assign Business Area to Plant/Valuation Area & Division
    I hope this clears.
    Reward if useful to u
    Message was edited by:
            narendran vajravelu

  • Wrong business area assigned to the company code

    Hi All ,
    I am getting error " Wrong business area assigned to the company code  " while posting a document in F- 02
    please advise

    Dear Balasubramaniyan,
    You can supress the field Business area field in Field status Groups.
    For this follow the following steps
    Please check TCode OBC4 for field status variants
    > Goto G001 (General) Field status group
    >Additional Account Assignment
    > Click supress in front of business area.
    In that case, F-02 will not even ask for business area.
    Also check whether Business area FS is ticked in front of your company code in TCode OB65
    You may also refer to the following thread
    How to assign business area to company code?
    I hope this solves your query.
    Thanks & Regards
    Saurabh
    Edited by: Saurabh Khandelwal on Nov 8, 2011 1:53 PM

Maybe you are looking for

  • Search H_T555V is not working in ECC6.0

    Hi,   I have a requirement to enhance a search help similar to H_T555V. when i execute this search help in ECC6.0 its not giving the hit list based on the restricted values for ZTERF,  where as its giving results for language field and text fields. C

  • Can we make ABAP program as executable  file

    Hi All, I have query related to abap program. <b>Can we make ABAP program as .exe file or .bat file.</b>. <b>If yes then what is the procedure to do the same.</b> I would really appreciate if anyone can suggest something on this. Regards Prabhat

  • ITunes not minimizing correctly

    Hello, When I minimize my iTunes application it always defaults to the center of my screen. I move the minimized iTunes player up to the upper left hand corner. Once I expand it and re-minimize it goes back to the center of my screen. I don't want to

  • Yosemite update won't run on macbook pro

    I updated the iMac but when I tried with the macbook Pro it fails to load the update. It stalls at 600 or so mb and says it will take 3 days or more. I have connected via ethernet and shut off the wireless, but it is still the same. Any suggestions?

  • Flash 9 wierd problem

    import flash.display.*; import flash.geom.*; import flash.events.*; var B:BitmapData = new BitmapData(550, 400, false, 0x000000); var B2:Bitmap = new Bitmap(B); this.addChild(B2); function OEN(event:Event):void{ B.colorTransform(new Rectangle(0,0,550