Adding Discount percent in Goods receipt PO

Hello Friends,
                     I am Trying to add an Goods Receipt PO document line
using oPurchaseDeliveryNotes object . It is taking all values of line except discount percent.
I want to ask is there any method to asign the discount through oPurchaseDeliveryNotes  object.
I did in following way
GrPODoc.Lines.DiscountPercent=RS.Fields.Item("U_Disc").Value
Thanks & Regards,
Mithun.

Hi Gabriela,
  This is my Code where RS is my recordset from which I am reading the values and putting it in Object
it takes all values except the Discount Percent.
GrPODoc = ocompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPurchaseDeliveryNotes)
                GrPODoc.CardCode = GrVendorcode
                GrPODoc.DocDate = Now
                GrPODoc.DocDueDate = Now
                GrPODoc.TaxDate = Now
                            GrPODoc.Lines.ItemCode = RS.Fields.Item("U_ItemCode").Value
                            GrPODoc.Lines.DiscountPercent = RS.Fields.Item("U_Disc").Value
                            GrPODoc.Lines.AccountCode = RS.Fields.Item("U_GLAccNo").Value
                            GrPODoc.Lines.WarehouseCode = RS.Fields.Item("U_SubWhrs").Value
                            GrPODoc.Lines.Quantity = (Struct_GRCHRGITM1(j).ReqQtyfor_OnePiece * GRMatQty)
                            GrPODoc.Lines.Price = RS.Fields.Item("U_UnitPrc").Value
                            GrPODoc.Lines.TaxCode = RS.Fields.Item("U_TaxCode").Value
                Dim ErrCode As Long
                Dim ErrMsg As String
                Dim val As Int32 = GrPODoc.Add
                If val <> 0 Then
                    ocompany.GetLastError(ErrCode, ErrMsg)
                    SBOApplication.MessageBox(ErrCode & "," & ErrMsg)
                End If

Similar Messages

  • Adding item description in Goods receipt list

    hi gurus,
                      my company needs item description in the goods receipt slip.Can anyone suggest me how we can achieve this .I think  it;s a simple change.I am a beginner please help me.
    chris

    Hi Chris
    A goods receipt slip will be created/triggered within a goods movement via Inventory output messages.
    There are lots of these available in the standard system and they can be determined by different configuration, such as movement, doc type etc.
    See IMG > Materials Management > Inventory Management > Output Determination > Maintain Output Types (E.G. Type WA03)
    Each one of these outputs has a standard SAPScript assigned, whch determines what the print looks like etc. In WA03 it is WESCHEINVERS1
    A developer can review the sapscript and identify if the material description is there, if it is not then it can be added and positioned as required.
    Please remember that this is classed as customer development
    Regards
    Steve

  • Goods receipt PO Discount field not Updating

    Hi Experts,
    I am with a problem,My problem defines.I have 1 Records in the Database Table..In My SDKCode,Based on the PurchaseDeliveryNotes Object I am adding the database tables values to the Goods receipt po LinesItems (itemcode,itemdescription,Taxcode,Quantity,Unitprice and Discountpercent).When I am Updating to the Goods Receipt..except Discountpercent field all other fields are getting updated. Is it possible to update discount percent in Goods Receipt
    Regards
    Pradeep

    Hi,
    See this links,
    Adding Discount percent in Goods receipt PO
    Regards,
    Siva

  • Error adding Goods Receipt PO based on Purchase Order

    I am working on an add-on that was working against a 2005A version of SAP Business One and I am upgrading it to run against a 2007A Company (PL41)
    I am receiving strange errors when testing the add-on.
    I can add a Purchase order not based on a Goods Receipt PO without any problems but as soon as I specify a base type, entry and line I get either -1 General Error, or the Tried to Read/Write Protected Memory Error.  The error I receive seems to arbitrarily change between the two.
    I have read a few notes on the forums about this but none of them have proven useful in solving my problem.  I have checked the DI-API version on my PC and it is definitely using 8.0.177.0 which matches the version of SBO that I am running.  I have re-installed the DI etc without any success.
    The following is the code snippet which I am using to test:  I have verified that the referenced purchase order is open, contains the correct item, customer etc
    int iResult = -1;
    string sResult = string.Empty;
    string sOutput = string.Empty;
    try
    sOutput += Environment.NewLine + "Connecting to company...";
          sbocoy = new SAPbobsCOM.Company();
          sbocoy.Server = "<insert server name here>";
          sbocoy.CompanyDB = "<insert database name here>";
          sbocoy.LicenseServer = "<insert server name here>:30000";
          sbocoy.UseTrusted = true;
          sbocoy.DbServerType = SAPbobsCOM.BoDataServerTypes.dst_MSSQL2005;
          sbocoy.UserName = "manager";
          sbocoy.Password = "<inser sap user here>";
          iResult = sbocoy.Connect();
          sOutput += Environment.NewLine + "Connected";
          SAPbobsCOM.Documents PO = (SAPbobsCOM.Documents)sbocoy.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPurchaseOrders);
          SAPbobsCOM.Documents GoodsReceiptPO = (SAPbobsCOM.Documents)sbocoy.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPurchaseDeliveryNotes);
          sOutput += Environment.NewLine + "Get Purchase Order";
          PO.GetByKey(1402);
          sOutput += Environment.NewLine + String.Format("DocNum: {0}; DocEntry: {1}; ItemCode: {2}; LineNum: {3}", PO.DocNum, PO.DocEntry, PO.Lines.ItemCode, PO.Lines.LineNum);
          GoodsReceiptPO.CardCode = PO.CardCode;
          GoodsReceiptPO.CardName = PO.CardName;
          GoodsReceiptPO.Lines.ItemCode = PO.Lines.ItemCode;
          GoodsReceiptPO.Lines.ItemDescription = PO.Lines.ItemDescription;
          GoodsReceiptPO.Lines.Quantity = 1.0;
          GoodsReceiptPO.Lines.BaseType = int.Parse(PO.DocObjectCodeEx); // If I comment out this and the next two lines the document will add
          GoodsReceiptPO.Lines.BaseEntry = PO.DocEntry;
          GoodsReceiptPO.Lines.BaseLine = PO.Lines.LineNum;
          sOutput += Environment.NewLine + "Adding Goods Receipt...";
          iResult = GoodsReceiptPO.Add();
          sResult = sbocoy.GetLastErrorDescription();
          sOutput += Environment.NewLine + string.Format("Result [{0}] {1}", iResult, sResult);
    catch (Exception ex)
    sOutput += string.Format(Environment.NewLine + "Exception: {0}{1}SBOError: {2}", ex.Message, Environment.NewLine, sbocoy.GetLastErrorDescription());
    The results when I try and reference the purchase order are:
    Connecting to company...
    Connected
    Get Purchase Order
    DocNum: 301396; DocEntry: 1402; ItemCode: SEANTESTITEM; LineNum: 1
    Adding Goods Receipt...
    Exception: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
    If I comment out the 3 lines that reference the base document the Goods Receipt Adds and the following is the output...
    Connecting to company...
    Connected
    Get Purchase Order
    DocNum: 301396; DocEntry: 1402; ItemCode: SEANTESTITEM; LineNum: 1
    Adding Goods Receipt...
    Result [0]
    The above code will work correctly if we base a Delivery Note on a Sales Order so it appears to be specifically related to the Purchasing Documents.
    Edited by: Sean Archer on Feb 2, 2009 2:23 PM

    Hi Ganesh,
    Thank you for the reply.
    I ran the add-on against another database and it is working.
    I also verified that the document was failing to create if done via the Data Transfer Workbench so it would appear the issue affects the DI-API irrespective of add-on.
    I will need to do more testing to confirm whether this is a bug with PL41 of 2007A or a corrupt database as you suggest.
    Cheers,
    Sean

  • Cash Discount at the time of Goods Receipt.

    Dear Gurus,
    Our requirement is to post goods receipt at cash discounted value but at the same time I wants to calculate taxes on Gross. Consider following case.
    Base value 100, Quantity 1.Total value =100 RS. 8.24% Excise on 100= 8.24 .  Add to Gross=100+8.24=108.24. Now 4% VAT on 108.24=4.33. Total PO Value =100 8.244.33=112.57 RS.
      100 ( Base material prise)
    +8.24 ( Excise)
    +4.33 ( 4%Vat on 108.24)
    112.57 (Tot PO value)
    -2.57
    112 ( PO)
    Now since 2.57 RS cash discount known at the time of PO, so I have created a Z condition ( cash discount Value type) and assigned it in prising at proper place ( below total PO value) so that when I assign value 2.57 to this Zcondition, my PO gross is getting changed from 100 to 100 minus 2.57=97.43. Now system is calculating 8.24 % excise on 97.43 but I want it on 100 . How to do this.
    Thanx in advance.
    Regards
    Nilesh

    Please create a Price determination schema/ Modify existing schema to calculate (subtract) Cash Discount in Nett Price and not on Gross Price.
    Assign the CAsh discount Z condition to the schema.
    You can use this in either header or item level depending upon your requirement.
    This is to be maintained in condition table MEK1

  • In Goods receipt PO  adding rows manually

    Hi,
    I am creating a new Goods receipt PO. After selecting vendor, Copying record from PO by clicking 'Copy From' Button.
    Row items are filling  in the First Row of the matrix. woks fine for me.
    Now the Issue is,
    I wanted to add second row in  after Lost Focus of the user control.  I am assigning the value directly to the matrix SECOND ROW.
      Dim oItemCode As SAPbouiCOM.EditText = oMatrix1.GetCellSpecific("1", i + 2)
      oItemName.Value = rs.Fields.Item("U_ItemCode").Value.ToString()
    When I am trying to add the document, I am getting error
    [Goods Receipt PO - Rows - Item No.][line: 2] , 'Item no. is missing'  [Message 173-3]
    Please help me to solve this issue.
    Thanks in Advance.

    Hi ParthibanJay,
    In GRPO form, by default a row will be added,without providing the item code it wont allow u to add another row.

  • Generating Alert after Goods Receipt is added.(SDK)

    Hello,
    I want to generate a alert for my accounts user after a Goods Receipt PO is added in SAP for a particular series. how can it be done? Please help.
    Edited by: Rohanp on Dec 4, 2009 4:43 PM

    Rohanp,
    The SDK Help documentation for the Documents object (in your example a Goods Receipt PO) states ...
    DI API Remark
    The ApprovalTemplatesService doesn't trigger the approval process for objects that were added through the DI API.
    For example:
    A new Invoice that was added through DI API will not trigger the Approval Procedure Process.
    Eddy

  • Adding A Goods Receipt PO Docement it shows G/L Account is missing

    In a Goods Receipt PO Document there are 4 items we can't able to add the document it shows some error.
    The exact error was
    07/07/2008  15:56:54: G/L account is missing [Goods Receipt PO - Rows - Warehouse Code][line: 1]

    Hi jafesas
    try this in test DB
    if your Set G/L account by is warehouse then select all account code in warehouse tab then try to add , your problem will be solve
    major account code as follows:
    1.Inventory Account
       Allocation Account
    2.In taxcode check A/P Tax account

  • Adding Goods Receipt  batches dynamically when editing document ?

    Hi,
    Is it possible to add batches dynamically from SDK to an open and currently editing Goods Receipt PO?
    e.g, I would like to load batches from several xml-files and they must be validated and sometimes
    by hand connected to correct item-row at editing time. I'm opening a series of different forms
    to get the user to select valid xml-files and all that works fine. The problem comes first
    when to insert the batches into the current open document.
    Can I in some way load a SapbobuiCOM.Document from the open Form and
    add batches using the xxx.lines.BatchNumbers object?
    (it would be simple then)
    With regards,
    jonas

    Hi David!
    Thank's a lot for your answere!
    I probably had to do a new window for veryfing connected batches, which when
    form is saved as you said, updates the businessobject.
    Thank's!
    /jonas

  • DTW Problem ---- Goods Receipt and Purchase Order

    Hi Owen Slater and Suda
    Your reply helped me a lot in loading in linking the GR with PO via DTW.But still i m having a small problem.
    In Document_Lines of Purchase Order and Purchase Delivery Notes i specifed two Taxcode as "Exempt" and "VAT@4" under the column "Taxcode" and initially loaded the purchase order,the tax code get added correctly to the purchase order and when i tried to load the GR for the same line item with same tax code,the tax code is not getting added to the GR line item and the tax amount get deducted in the GR.
    For more information: SAP Business One SDK
    Edited by: Rui Pereira on Nov 7, 2008 1:23 PM

    Purchase Order Documents
    Recordkey  Cardcode  DiscountPercent  DocDate   DocDueDate  DocNum  DocTotal
    Recordkey  Cardcode  DiscountPercent  DocDate   DocDueDate  DocNum  DocTotal
       1         AA01        0            20080912   20080912     1       
    oPurchaseOrder:Document_Lines
    Recordkey  LineNum AccountCode DiscountPercent     ItemCode  Linetotal  Price  Quantity  Taxcode   WarehouseCode
    Recordkey  LineNum AccountCode DiscountPercent     ItemCode  Linetotal  Price  Quantity  Taxcode   WarehouseCode
       1                1211005        0           ITM01                850     45        VAT@4     Godown1
       1                1211005        0           ITM02                750     55        VAT@4     Godown1
    As per your suggestion i left the "DocTotal" column of  PO --- Document and "Line Total" and "Line Num" column of PO ---Document_Lines as blank and also the Discount column is assigned to 0 and this get imported correctly.
    oPurchaseDeliveryNotes:Documents
    Recordkey  Cardcode  DiscountPercent  DocDate   DocDueDate  DocNum  DocTotal
    Recordkey  Cardcode  DiscountPercent  DocDate   DocDueDate  DocNum  DocTotal
       1         AA01        0            20080912   20080912     1       
    oPurchaseDeliveryNotes:Document_Lines
    Recordkey  LineNum AccountCode  BaseEntry  BaseLine  BaseType  DiscountPercent      ItemCode  Linetotal  Price  Quantity   Taxcode   WarehouseCode
    Recordkey  LineNum AccountCode  BaseEntry  BaseLIne  BaseType  DiscountPercent      ItemCode  Linetotal  Price  Quantity   Taxcode   WarehouseCode
       1                1211005        1          0          22           0             
       1                1211005        1          1          22           0             
    When it is imported like this ,it get imported successfully.
    But when i change the WarehouseCode or give new WarehouseCode in oPurchaseDeliveryNotes ---> Document_Lines
    like this
    oPurchaseDeliveryNotes:Document_Lines
    Recordkey  LineNum AccountCode  BaseEntry  BaseLine  BaseType  DiscountPercent      ItemCode  Linetotal  Price  Quantity   Taxcode   WarehouseCode
    Recordkey  LineNum AccountCode  BaseEntry  BaseLIne  BaseType  DiscountPercent      ItemCode  Linetotal  Price  Quantity   Taxcode   WarehouseCode
       1                1211005        1          0          22           0                                                                Godown1
       1                1211005        1          1          22           0                                                                Godown2
    1)Here i m chaging the Warehousecode of  ITM02 to Godown 2,its getting imported successfully.But when this imported record is viewed in Purchasing - A/P ->Goods Receipt PO of  SAP B1 GUI , the matrix (GR_DocumentLines) does not have the taxcode  i.e the TaxCode column is left empty.
    2)Also even when the taxcode is specified under the oPurchaseDeliveryNotes_DocumentLines and importing the same problem occurs ,the matrix (GR_DocumentLines) does not have the taxcode  i.e the TaxCode column is left empty when it is viewed through SAP B1 GUI.
    Edited by: Rui Pereira on Dec 9, 2008 5:10 PM
    Edited by: Rui Pereira on Apr 28, 2009 12:18 PM
    Edited by: Paulo Calado on Jun 18, 2009 5:20 PM

  • Delivery and Goods Receipt without goods value

    Hi!
    this is my first post in this forum, hi everybody
    Now the question:
    My goal: warehouse manager shouldn't see goods value (prices) of purchased material and final products (sold goods).
    That means I would like to remove all value data (Unit Price, Discount%, Total etc.) from the documents Delivery and Goods Receipt. Is it possible? The values should be then added by accountancy (any kind of connection between warehouse documents and journal entry?).
    Is it possible to split the value data from quantity data (SAP BO 2007A)?
    Thank you for any suggestion!
    Aleksandra

    You may try form setting to hide all those columns for this user.
    Thanks,
    Gordon

  • Pay Vendor before Goods Receipt

    Hi gurus,
    I have a scenario where the payment has to be made to the Vendor before the goods receipt is done as the company will benifit huge discounts. The vendor send a confirmation of the shipping and as soon as we receive the conformation we have to process the payment without even the goods receipt is done. Can anyone suggest a solution in SAP and how it will work in the system. Responses are appreciated.
    Thanks!
    SR

    Hello SR,
    Lets see the logical flow-
    PO created --> Approval --> Released PO --> Message sent to vendor  --> shipping information from vendor --> Downpayment
    So, PO will be in released status at the time of shipping info received from vendor.
    Payment on unreleased PO is not advisable.
    Downpayment will help in better handling discrepancy in qty at the actual GR & making final payment. Secondly, business can negotitate different % amount to be paid with different vendor, rather than full payment on shipping info.
    Thanks Laxman, for adding other dimension to solution.
    Thanks
    Ashutosh

  • Need to specify different price on Goods Receipt than on Purchase Order

    Hi!
    My application creates Goods Receipt (object of type SAPbobsCOM.BoObjectTypes.oPurchaseDeliveryNotes). This Goods Receipt is based on an existing Purchase Order. Creation itself (including the reference to the Purchase Order) works well.
    The problem is that using DI API, price in a document line is always set (automatically) to the price specified on the Purchase Order line. I'm not able to set the unit price to any other value. When I assign my unit price, document is added successfully, but my unit price is ignored. Unit price specified on the appropriate line on Purchase Order is used instead.
    Thanks for help!
    Jan

    Hi! I'm using SBO 8.81. I put my C# code below. The %xxx% strings are just symbols - for simplification.
    SAPbobsCOM.Documents oPurchaseDeliveryNotes = (SAPbobsCOM.Documents)SBOCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPurchaseDeliveryNotes);
    oPurchaseDeliveryNotes.CardCode = %CARDCODE%;
    oPurchaseDeliveryNotes.DocDate = %DOCDATE%;
    oPurchaseDeliveryNotes.TaxDate = %TAXDATE%;
    bool first = true;
    while(...) {
        if(!first) oPurchaseDeliveryNotes.Lines.Add();
        oPurchaseDeliveryNotes.Lines.BaseType = (int)SAPbobsCOM.BoAPARDocumentTypes.bodt_PurchaseOrder;
        oPurchaseDeliveryNotes.Lines.BaseEntry = %DOCENTRY_OF_PO%;
        oPurchaseDeliveryNotes.Lines.BaseLine = %LINENUM_OF_PO%;
        oPurchaseDeliveryNotes.Lines.ItemCode = %ITEMCODE%;
        oPurchaseDeliveryNotes.Lines.Quantity = %QUANTITY%;
        oPurchaseDeliveryNotes.Lines.Price = %UNIT_PRICE_DIFFERENT_FROM_PO%;
        oPurchaseDeliveryNotes.Lines.Currency = %CURRENCY%;
        first = false;
    oPurchaseDeliveryNotes.Add();
    Althought the unit price on the Purchase Order is for example 7 and in my code I assign the Price property for example 9, then when the document is successfully added, I see that on newly created document the unit price is still 7 (same as on PO). Value 9 is ignored without any errors or warnings.
    When I remove the code which connects this Goods Reception with PO (i.e. assignment to BaseType, BaseEntry and BaseLine properties), created document is correct. However when there is a connection to PO, I'm unable to set different unit price.
    Do you or anybody else have explanation for this? Or do you have some piece of working code you can provide?
    THANKS!

  • Problems in creating a Goods Receipt Draft

    Hello,
    I am trying to use the DI-API and the SDK to create a Goods Receipt Draft document and link it to an existing Purchase Order.  When I try to add the draft object, I receive an internal error (-2010).  Here is the code that I am using.  Can someone see if anything is wrong with this, or does anyone have any insights into this type of error?
    SAPbobsCOM.Documents draft = null;
    draft = company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oDrafts);
    draft.Reference1 = tempDocEntry;
    draft.CardCode = tempCardCode;
    draft.DocDate = DateTime.Now;
    draft.NumAtCard = tempOrderNumber;
    draft.DocObjectCode = SAPbobsCOM.BoObjectTypes.oPurchaseDeliveryNotes;     // Used so that the objType will be 20 for a Goods Receipt Draft
    draft.Comments = "";
    draft.Lines.BaseEntry = System.Convert.ToInt32(tempDocEntry);
    draft.Lines.BaseLine = System.Convert.ToInt32(row["Line #"].ToString());
    draft.Lines.BaseType = System.Convert.ToInt32(SAPbobsCOM.BoObjectTypes.oPurchaseOrders);
    draft.Lines.ItemCode = row["Item #"].ToString();
    draft.Lines.Quantity = System.Convert.ToInt32(row["Qty"].ToString());
    draft.Lines.Price = System.Convert.ToDouble(row["unit price (USD)"].ToString());
    draft.Lines.WarehouseCode = "0" + row["Whse Code"].ToString();   // prepend with zero, if the code is of length 1
    draft.Lines.Add();
    result = draft.Add();        // Add the draft now
    if (result != 0)
          thisError = company.GetLastErrorDescription();     //*** THE ERROR RESULT IS RETURNED HERE...
    I am hoping that someone can provide some feedback and direction on this one fairly quickly as I am on a pretty tight time constraint to implement this solution.
    Thanks,
    Jonathan

    Hi Jonathan,
    I haven't tested your code but I notice that you are calling the Add method of the Lines child object incorrectly. It's a bit confusing but the Lines.Add method should be called first and then you use the SetCurrentLine method to access the properties of this line. To make it more confusing, a new instance of the Documents object automatically gets one, blank line so you only need to call Lines.Add when adding a second line (and each subsequent line).
    For example, say I have a recordset of line details from a base PO that I want to add to a new, draft GRPO:
    int lineIndex = 0;
    while (!rec.EOF)
         if (lineIndex > 0) draft.Lines.Add(); // Only need to add new line after first one
         draft.Lines.SetCurrentLine(lineIndex); // Set focus to newly added line so I can set properties
         draft.Lines.BaseEntry = System.Convert.ToInt32(rec.Fields.Item("DocEntry").Value);
         draft.Lines.BaseLine = System.Convert.ToInt32(rec.Fields.Item("LineNum").Value);
         draft.Lines.BaseType = System.Convert.ToInt32(SAPbobsCOM.BoObjectTypes.oPurchaseOrders);
         draft.Lines.ItemCode = System.Convert.ToString(rec.Fields.Item("ItemCode").Value);
         draft.Lines.Quantity = System.Convert.ToDouble(rec.Fields.Item("Quantity").Value);
         draft.Lines.Price = System.Convert.ToDouble(rec.Fields.Item("Price").Value);
         draft.Lines.WarehouseCode = System.Convert.ToString(rec.Fields.Item("WhsCode").Value);
         lineIndex++;
         rec.MoveNext();
    Kind Regards,
    Owen

  • Goods Receipt and Serial Numbers

    I'm getting the following error "[IGN1.WhsCode][line: 1] , 'This entry already exists in the following tables (ODBC -2035)'" when trying to add a goods receipt document containing a single item that is serial number managed via the DI API.  We are running against Business One version 2005A SP01 PL9.  The Goods Receipt PO transaction is reporting the same error.  The Goods Issue and Delivery transaction appeared to work correctly. The Goods Receipt transaction posted correctly when created in the B1 Client (GUI) application.  So it is an issue with the DI API.  We are using the SBODemo_US company database but we added a new item and configured it for serial number management.  This same code works with B1 2004A.  Our application is suppose to work with both versions of B1, so our application is built with version 2004A DI API.  Should this work, or do I need to use the 2005A version of the DI API when communicating with a 2005A system?  Would this version of the DI API work correctly with a 2004A system?
    Thanks,
    Jason Eiler

    I remembered encountering the same problem working with B1 2004A.  For the Goods Receipt and Goods Receipt PO documents, when receiving items that are serial managed I would fill in the InternalSerialNumber data member of the Document Lines Serial Numbers object.  The fix was I also had to provide some value for the SystemSerialNumber field.  I just always set it to a value of 1.  In B1 2005A, this issue must have been resolved, because when I commented out this line of code, the document was added successfully.  I don't have to provide a SystemSerialNumber, the system must generate one, as I would expect.

Maybe you are looking for

  • ITunes Movie Trailers App for Australians

    I loved Frontrow on my mac.. and when i updated to Lion I lost it... I always go to the Itunes trailer area on itunes... I saw this app yesterday and thought awesome....... but guesswhat..... it's like most things ..... Australia is the forgotten ugl

  • Worth installing compared to 10.1.3?

    Hi there, We've installed ZCM 10.1.3 and the ZCM database on a separate SLES box. We've upgraded the single Primary server to 10.2. Is it worth scrapping the "old" database server and installing 10.2 Reporting Server? We haven't done much configurati

  • Lsmw gl batch input recording

    Hi, I would like to know can we upload P&L and Balance sheet GL accounts in same recording, if so how? thanks shah

  • Lost Gigabytes

    Ok so I had to reinstall OS X due to some networking problems. I used archive and install with saving user preferences. Everything turned out OK except for one thing. Before I installed, I had 30 GB free... and now I have 20 GB free. It's like 10 GB

  • Seeking more details on Verizon iPhone 4 iCloud delay

        I recently got my first iPhone, an iPhone 4 configured for Verizon.     Therefore I was disappointed when, after the WWDC announcement of iCloud, it became evident that the Verizon iPhone 4 does not have a high enough iOS capable of running the i