BAPI for  Invoice Credit Memo

Hi Guys,
Can you plz help me which BAPI is used  for Invoice credit memo.
Thanks and regards
Praveen

use...
'BAPI_CRED_MEMO_CREATEFROMDAT2'
data: con_cr_memo_bus_obj like BAPIUSW01-OBJTYPE value 'BUS2094'.
CALL FUNCTION 'ZBAPI_CRED_MEMO_CREATEFROMDAT2'
EXPORTING
ORDER_HEADER_IN = bapi_hdr
business_object = con_cr_memo_bus_obj
convert = 'X'
IMPORTING
SALESDOCUMENT = bapi_salesdoc
TABLES
return = bapi_ret_tbl
ORDER_ITEMS_IN = bapi_itm
ORDER_PARTNERS = bapi_prtnr
ORDER_ITEMS_inx = bapi_itm_out
order_schedules_in = bapi_schd_lin
order_text = bapi_text.
AND in the cloned ZBAPI above in SE37/80, add this Importing parameter: BUSINESS_OBJECT LIKE BAPIUSW01-OBJTYPE
Please have a look in older topics:
MWST taxcondition missing bapi_salesorder_createfromdat2
sales order with reference to quotation
Message was edited by: kishan negi

Similar Messages

  • BAPI for subsequent credit memo in MIRO transaction

    hi,
    i need to upload the data for subsequent credit memo in MIRO transaction using BAPI.
    Is there any BAPI for subsequent credit memo in MIRO transaction?
    Thanks & regards
    Prajwala

    Hi,
    I am not 100 percent sure but try this BAPI:
    BAPI_INCOMINGINVOICE_CREATE.
    Regards,
    Rahul

  • Dme payment File for invoice & Credit Memo

    Dear Sapients,
    I have created a DME Tree structure for PAYM. This structure contains header & line items. Header will contain the vendor bank master data inputs  & Total payment payable by the bank per vendor for each payment run. The line items contain both invoices & credit memos details & their corresponding amounts.
    Issue is getting the total value of all the invoice credit memo's in the header Field payment.
    Currently, it sum-up the values without any sign in the payment file.
    Below are the structure screen shots. Really appreciate quick response.
    Structure
    Header Field payment
    Using Aggregation of Ref AMOUNT from line item
    Line item reference field Amount
    Structure field value of line item payment.
    Kindly help to achieve this summation field value for the header.
    regards
    PBB

    Dear Friends,
    Can anyone shed some light on this topic ?
    Many thanks
    PBB

  • Bapi for debit/credit memo creation

    Dear all,
    I am using the BAPI_SALESORDER_CREATEFROMDAT2 for creating a credit/debit memo, the following error is displayed.
    "Unpermitted Combination of Business object BUS2032 & Sales Doc Category type K"
    Could you please provide me a solution and let me know if there are any BAPIs to create credit/debit memos.
    Thanks in Advance.
    Regards,
    Raj

    Raj you can try with these also:
    use...
    'BAPI_CRED_MEMO_CREATEFROMDAT2'
    data: con_cr_memo_bus_obj like BAPIUSW01-OBJTYPE value 'BUS2094'.
    CALL FUNCTION 'ZBAPI_CRED_MEMO_CREATEFROMDAT2'
    EXPORTING
    ORDER_HEADER_IN = bapi_hdr
    business_object = con_cr_memo_bus_obj
    convert = 'X'
    IMPORTING
    SALESDOCUMENT = bapi_salesdoc
    TABLES
    return = bapi_ret_tbl
    ORDER_ITEMS_IN = bapi_itm
    ORDER_PARTNERS = bapi_prtnr
    ORDER_ITEMS_inx = bapi_itm_out
    order_schedules_in = bapi_schd_lin
    order_text = bapi_text.
    AND in the cloned ZBAPI above in SE37/80, add this Importing parameter: BUSINESS_OBJECT LIKE BAPIUSW01-OBJTYPE
    Please have a look in older topics:
    <a class="jive_macro jive_macro_thread" href="" __jive_macro_name="thread" modifiedtitle="true" __default_attr="95866"></a>
    <a class="jive_macro jive_macro_thread" href="" __jive_macro_name="thread" modifiedtitle="true" __default_attr="82006"></a>
    Also:
    Did you try BAPI_INCOMING_INVOICE_CREATE with DOC_TYPE (CREDIT MEMO) field in BAPI_INCINV_CREATE_HEADER.
    Amit.

  • BAPI for vendor credit memo posting by FB65

    Hi guys,
    I need a BAPI to post vendor credit note by FB65.
    I am trying BAPI_ACC_DOCUMENT_POST, but I cannot find the fields to fill with the information we input at FB65 Payment tab, such as: Inv. Ref (document, year and item ).
    Could anybody help me?
    Cheers,
    Karla.

    HI ,
    Please Find below the relevant code to Fill the Fields while calling the BAPI for FB65
    step1.
    First of all fill the wa_bapiheader.
    *header data
        wa_bapiheader-username = sy-uname.
        wa_bapiheader-comp_code = wa_final-bukrs.
        wa_bapiheader-doc_date = sy-datum.
        wa_bapiheader-pstng_date = sy-datum.
        wa_bapiheader-doc_type = c_blart.
        wa_bapiheader-ref_doc_no = 'GROWPAY'.   "Can be the refrence text
        w_waers = wa_final-waers.
    Step2.
    Fill this internal table. i_currencyamount  and i_accountgl.
    i_final will be the Internal table conating all the Relevant data for Posting the Document.
    Loop at  i_final into wa_final.
    ADD 1 TO w_acc_lno.
        wa_accountgl-itemno_acc = w_acc_lno.        
        wa_accountgl-gl_account = wa_final-saknr.    "G/L Account
        wa_accountgl-plant = wa_final-werks.             " Plant
        wa_accountgl-costcenter = wa_final-kostl.       " Cost Center
        wa_accountgl-cond_type = wa_final-knumv.    "From EKKO for the Purchase Order
        wa_accountgl-po_number = wa_final-ebeln.    " Purchase Order no
        wa_accountgl-po_item = wa_final-ebelp.         " Line item in PO
        APPEND wa_accountgl TO i_accountgl.
        CLEAR : wa_accountgl.
        wa_currencyamount-itemno_acc = w_acc_lno.
        wa_currencyamount-currency = wa_final-waers.
        wa_currencyamount-amt_doccur = wa_final-kbetr.
        w_sum = w_sum + wa_final-kbetr.
        APPEND wa_currencyamount TO i_currencyamount.     " G/L line item
        CLEAR : wa_currencyamount.
    *item  data
          wa_accountpayable-itemno_acc = 1.
          wa_accountpayable-vendor_no = wa_final-lifnr.
          APPEND wa_accountpayable TO i_accountpayable.
    *Amount for the vendor line item.
          CLEAR : wa_currencyamount.
          wa_currencyamount-itemno_acc = 1.
          wa_currencyamount-currency = w_waers.
          wa_currencyamount-amt_doccur = 0 - w_sum.
          INSERT  wa_currencyamount INTO i_currencyamount INDEX 1.
    Step 3.
    CALL FUNCTION 'BAPI_ACC_DOCUMENT_POST'
              EXPORTING
                documentheader = wa_bapiheader
              TABLES
                accountgl           = i_accountgl
                currencyamount = i_currencyamount
                accountpayable = i_accountpayable
                return                 = i_result_out.
    i_result_out will conatin the messages returned by the BAPI.
        based on i_resuklt_out that is if the posting is Successful....call commit
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
                     Wait = X.
    Endloop.
    I hope the above code may solve your problem....Thanks
    Regards ,
    Sonu Krishna.
    Edited by: Sonu Krishna PV on Aug 6, 2009 11:03 AM

  • Bapi for cuatomer credit memo  f-27

    which bapi i should use in order to create cuatomer credit memo. F-27
    and how.

    Try to use this BAPI : BAPI_SALESDOCU_CREATEFROMDATA1 with sales order type 'CR'.
    Hope this link [Create credit memo request]helps you.Please check..
    Thanks,
    Manjula

  • Due date calculation for the credit memo with invoice reference.

    Hi,
    When we create the credit memo with reference to invoice, the due date for the credit memo is getting copied from Invoice. In this case if the invoice is due on 31.12.2008 and the credit memo is created on 10.09.2009, then the credit memo due date is appearing as 31.12.2008. It should be 10.09.2009 as per the setting in VOFA billing type customisation in "Credit Memo w/vldt".
    I would like to know how to customise the below requirement.
    If the reference invoice is due after the credit memo creation, the the credit memo should due as per the invoice date.
    If the invoice due is past & then the credit memo due date should be Immediate i.e. Due Immediately.
    Thanks in advance for help.
    Regards,
    Nithin

    I doubt there is such option. From the past projects I do remember that we made a change in the form to print the document date as 'Due Date' for credit memos. Credit memos were paid at once when they were processed and I think that payment term was copied from the original invoice, which made their due date far in future.

  • Correspondance for the credit memo combined with invoice

    Hi All,
    I have to create the printout for the credit memos. But also need to show the corresponding invoice details.
    Which is the best correspondance type, I should use, as I can see only the separtae one for credit  memo and separate one for invoice.
    Regds,
    Servesh

    Hi,
    When you create print outs, it is always on customised layout as per the requirements of the customer. In this form, it is possible to print the details of both your credit memo and the invoice associated with it. So you have to finalise the layout the credit memo with your business user and then inform the logic to the developer to print all those fields. He will enable the coding for the same. You can test and release it.
    For a credit memo, you have to find out the credit memo request from the VBFA table and then using this credit memo request you can find out the invoice number again from VBFA table. This number can be printed in the form in the desired place.
    Hope it helps you

  • BTE for posting Customer Invoices & Credit Memos in FI

    HI,
    Iam in process of activating BTE for customer invoices & credit memo's for Portugal's requirement for  digital signature .Anyone have an idea for BTE and procedure for digital signature's to be printed on FI - Customer invoices,credit memo and debit memo.
    Thanks

    Hi,
    Can you please go through the below link:-
    [http://www.consolut.com/en/s/sap-ides-access/d/s/doc/YY-SIPT_NUMBR_FI_V]
    I have implemented for Maxico and for maxico I have used below link of SAP OSS notes:-
    [http://www.sap.com/mexico/services/factura_electronica_en.epx]
    Regards,
    Gaurav

  • Bapi for invoice parking

    Hi,
    Does anyone know any BAPI to park a invoice using purchase order at the level of the services. I know BAPI_INCOMINGINVOICE_PARK, but it supposed to only park the invoice at the level of the purchase order items, not of the level of included services in each purchase order item. And we want to enter information related to the service's items.
    Thanks,
    Paulo Sousa

    Hi Paulo,
    the same bapi can be used for services as well:
    Here is the example given in the documentation:
    "Example: Incoming invoice for a purchase order for external services and servie-based invoice verification
    This example shows you which header data you need to enter in table HeaderData, which item data in table ItemData, and which accout assignment data you enter in table AccountingData in order to enter and post an incoming invoice.
    You receive an invoice with reference to PO number 4500000191, PO item 10. The invoice is for two services A and B, each with a quantity of six service units. Service A has a gross amount of 580 USD including 16% tax. Service B has 812 USD including 16% tax. 50% of service A was assigned to each of the cost centers 1000 and 2000. 50% of service B was assigned to each of the cost centers 1000 and 3000. The service acceptance is performed jointly for both services with the service entry sheet number 1000000022. The account assignments cannot be changed.
    Enter the following data:
    Table HeaderData
    INVOICE_IND (Post invoice/credit memo): X
    DOC_TYPE (Document type): RE
    DOC_DATE (Document date): 01.10.2002
    PSTNG_DATE (Posting date): 01.10.2002
    COMP_CODE (Company code): 0001
    CURRENCY (Currency key): USD
    GROSS_AMOUNT (Gross amount): 1392.00
    CALC_TAX_IND (Calculate tax automatically): X
    PMNTTRMS (Terms of payment key): 0001
    Table ItemData
    First entry for service A:
    INVOICE_DOC_ITEM (Item in invoice document): 000001
    PO_NUMBER (PO number): 4500000191
    PO_ITEM (PO item): 00010
    TAX_CODE (Tax code): V1
    ITEM_AMOUNT (Item amount): 250.0
    QUANTITY (Quantity): 3
    PO_UNIT (Unit of measure): SU
    SHEET_NO (Entry sheet number): 1000000022
    SHEET_ITEM (Line number) : 10
    Second entry for service A:
    INVOICE_DOC_ITEM (Item in invoice document): 000002
    PO_NUMBER (PO number): 4500000191
    PO_ITEM (PO item): 00010
    TAX_CODE (Tax code): V1
    ITEM_AMOUNT (Item amount): 250.00
    QUANTITY (Quantity): 3
    PO_UNIT (Unit of measure): SU
    SHEET_NO (Entry sheet number): 1000000022
    SHEET_ITEM (Line number) : 10
    First entry for service B:
    INVOICE_DOC_ITEM (Item in invoice document): 000003
    PO_NUMBER (PO number): 4500000191
    PO_ITEM (PO item): 00010
    TAX_CODE (Tax code): V1
    ITEM_AMOUNT (Item amount): 350.0
    QUANTITY (Quantity): 3
    PO_UNIT (Unit of measure): SU
    SHEET_NO (Entry sheet number): 1000000022
    SHEET_ITEM (Line number) : 20
    Second entry for service B:
    INVOICE_DOC_ITEM (Item in invoice document): 000004
    PO_NUMBER (PO number): 4500000191
    PO_ITEM (PO item): 00010
    TAX_CODE (Tax code): V1
    ITEM_AMOUNT (Item amount): 350.00
    QUANTITY (Quantity): 3
    PO_UNIT (Unit of measure): SU
    SHEET_NO (Entry sheet number): 1000000022
    SHEET_ITEM (Line number) : 20
    Table AccountingData
    First account assignment for service A:
    INVOICE_DOC_ITEM (Document item in invoice document): 000001
    SERIAL_NO (Sequential number of the account assignment): 01
    TAX_CODE (Tax code): V1
    ITEM_AMOUNT (Amount in document currency): 250.00
    QUANTITY (Quantity): 3
    PO_UNIT (PO unit of measure): SU
    Second account assignment for service A:
    INVOICE_DOC_ITEM (Document item in invoice document): 000002
    SERIAL_NO (Sequential number of the account assignment): 02
    TAX_CODE (Tax code): V1
    ITEM_AMOUNT (Amount in document currency): 250.00
    QUANTITY (Quantity): 3
    PO_UNIT (PO unit of measure): SU
    First account assignment for service B:
    INVOICE_DOC_ITEM (Document item in invoice document): 000003
    SERIAL_NO (Sequential number of the account assignment): 01
    TAX_CODE (Tax code): V1
    ITEM_AMOUNT (Amount in document currency): 350.00
    QUANTITY (Quantity): 3
    PO_UNIT (PO unit of measure): SU
    Second account assignment for service B:
    INVOICE_DOC_ITEM (Document item in invoice document): 000004
    SERIAL_NO (Sequential number of the account assignment): 03
    TAX_CODE (Tax code): V1
    ITEM_AMOUNT (Amount in document currency): 350.00
    QUANTITY (Quantity): 3
    PO_UNIT (PO unit of measure): SU
    Regards,
    Ravi

  • Invoice & credit memo

    hi all,
    i understand from forum that :
    Invoice / credit memo - GR/IR clearing account and vendor account
    qty and value will give impact to GRC
    Subsequent credit/debit - Stock account and vendor account
    example of credit memo :
    Credit memo is posted when there is u want to correct the invoice posted already for both qty and value.
    For eg if vendor gives u invoice of 12 qty and value 120. but actualy he delivered only 10 qty of 100 rs. so in this case u post the credit memo with 2 qty and 20 rs so the total invoice u post becomes 10 qty and 100 rs.
    above i clearly understand.
    but when i check my system on miro posting and po history in me23n, is different case.
    GR  - qty 20080 value  3950
    IR - qty 20080 value 3950
    after vendor invoice is posted, there is a credit memo and invoice, both with reference to PO.
    credit memo qty 20080 (same qty) value 1000
    credit memo, the entry is dr vendor cr prd
    invoice qty 20080 (same qty) value 1000
    invoice, the entry is cr vendor dr prd.
    1) may i know why the offsetting account is prd? when i see in miro, no GL tab but only has po reference tab.
    2) where does the setting to ask system to use prd?
    thanks

    hi,
    i can understand your reply.
    but why the treatment is different from the general understanding below:
    Invoice / credit memo - GR/IR clearing account and vendor account
    Subsequent credit/debit - Stock account and vendor account
    if
    GR - qty 20080 value 3950
    IR - qty 20080 value 3950
    Kindly verify if below 4 points are correct.
    after invoice posted, if i do credit memo reference to the same PO,
    1) qty remained the same 20080 and value is less, say 1000, this 1000 is posted to credit prd?
    2) if qty say, 1000 and value 1000 also, double entry will be hitting GRC?
    after invoice posted, if i do invoice reference to the same PO,
    3) qty remained the same 20080 and value is less, say 1000, this 1000 is posted to debit prd?
    4) if qty say, 1000 and value 1000 also, double entry will be hitting GRC?
    thanks

  • AP Invoices/Credit Memo Workflow process using Optura

    Hi,
    We have a VIM tool Optura that we have implemented for our Workflow approval process where in the invoices/credit memos get parked, then go through a workflow approval process and finally get posted. These invoices/credit memos at the time when they are parked have attachments in them. The issue is that the when the credit memos get posted we loose the attachments that were present in them but it works just fine when we post invoices. Any idea as to what could be happening?
    Any help will be approeciated.
    Thanks,
    ALAM.

    Can you please explain where the attachment is getting disappeared?
    Is it in the attachment link of the Tcode of Credit memo or inside Workitem.
    If it is workitem then attachment is not properly binded from Workflow container to Task container.
    If it a Tcode you have to write ABAP Code to populate in the GOS of the Tcode.
    Thanks
    Arghadip

  • Report to view SO-Invoice-Credit Memo-Debit Memo-with/ without reference

    Hello Gurus,
    Can any one help me for viewing the report where i can see Sales Order Invoice ,Credit Memo & Debit Memo with/without reference .
    We are creating Credit Memo & Debit Memo without reference but uses the same Purchase Order Nos .
    Please guide me on this...
    Thanks.
    Sameer S Barde

    hi
    u can use the standard t-code vf05n to see the list with reference to the document type...
    do revert if question is not answered..
    regards
    Chander

  • MIGO values when invoices/credit memos have already been posted

    Hi everyone,
    We are facing an issue with the values the system is calculating when doing the GR (and/or GR reversals) once invoices/credit memos have already been posted regarding the PO (Non Stock POs = non valuated).
    When a goods receipt is posted through MIGO (mov. type 101) it seems that the system is considering only the invoices values but we do not really understand how it is calculated and why it is not considering the total amount of invoices and credit memos.
    In fact when a GR reversal is done (mov. type 102) the system seems to be considering the total amount of invoices and credit memos posted against the purchase order.
    Please find below an example with the invoices and GR values (all invoices were posted before the GRs)
    GR     5000077059     1     18.12.2008     EA     -1     -3300,00GBP
    GR     5000076426     1     17.12.2008     EA     1     930,50GBP
    Tr./ev. Goods receipt                                    EA     1     -2369,50GBP
    IR-L     5105052971     1     17.11.2008     EA     -1     -835,00GBP
    IR-L     5105052970     1     17.11.2008     EA     -1     -50,00GBP
    IR-L     5105052959     1     17.11.2008     EA     -1     -885,00GBP
    IR-L     5105052958     1     17.11.2008     EA     1     885,00GBP
    IR-L     5105052957     1     17.11.2008     EA     1     885,00GBP
    IR-L     5105052428     1     13.11.2008     EA     -1     -105,00GBP
    IR-L     5105052427     r4tf cv     13.11.2008     EA     -1     -640,00GBP
    IR-L     5105052426     1     13.11.2008     EA     -1     -835,00GBP
    IR-L     5105052425     1     13.11.2008     EA     1     640,00GBP
    IR-L     5105052424     1     13.11.2008     EA     1     835,00GBP
    IR-L     5105051741     1     11.11.2008     EA     1     60,00GBP
    IR-L     5105051740     1     11.11.2008     EA     1     3240,00GBP
    IR-L     5105045571     1     16.10.2008     EA     1     105,00GBP
    Tr./ev. Invoice receipt                                    EA     1     3300,00GBP
    According to my assumption, in order to calculate the GR value it looks like the system is considering the average for the 5 first invoices and then the average for the 2 next invoices, and making the average of both of them. But if I post another invoice it does not seem to follow this rule.
    I would appreciate any explanation on how the system calculates the GR values and how we would be able to correct the GR value.
    Thanks a lot. Best regards

    Hi
    I hope there is no GR based IV tick in PO, only GR is ticked (PO based IV)
    In that case
    IR-L 5105045571 1 16.10.2008 EA 1 105,00GBP
    IR-L 5105051740 1 11.11.2008 EA 1 3240,00GBP
    IR-L 5105051741 1 11.11.2008 EA 1 60,00GBP
    IR-L 5105052424 1 13.11.2008 EA 1 835,00GBP
    IR-L 5105052425 1 13.11.2008 EA 1 640,00GBP
    Net invoiced value is 4880 GBP (taking out 00) for 5 quantity
    in case of PO based IV, if IV is done first and then GR, GR assumes the value of invoice but not the PO - in that case for above IV,  1 quantity of IV referes to 976GBP debit
    this value will be base GR/IR value for credit memos
    IR-L 5105052426 1 13.11.2008 EA -1 -835,00GBP
    IR-L 5105052427 r4tf cv 13.11.2008 EA -1 -640,00GBP
    IR-L 5105052428 1 13.11.2008 EA -1 -105,00GBP
    there are 3 credit memos - for which GR/IR credit will be equal to that of original GR/IR debit value - that is 976
    *so net credit on GR/IR because of credit memos will be (976976976) = 2928GBP for 3 quantity *
    IR-L 5105052958 1 17.11.2008 EA 1 885,00GBP
    IR-L 5105052957 1 17.11.2008 EA 1 885,00GBP
    Then there are two invoices of values 885 GBP each - so total debit will be 1770 GBP
    so total GR/IR debit will be ( (4880/5) -(2928/3) + (1770/2) ) = 930.5 (debit)*
    This value is the base GR/IR for credit memos
    net GR/IR debit will be 930.5 - this is the base for GR - because in GR - entry on GR/IR will be credit
    *So if you make GR - then GRed value will be 930.5*
    IR-L 5105052971 1 17.11.2008 EA -1 -835,00GBP
    IR-L 5105052970 1 17.11.2008 EA -1 -50,00GBP
    IR-L 5105052959 1 17.11.2008 EA -1 -885,00GBP
    *Now ordered will be XXX
    Delivered will be 930.5
    Invoiced will be 3300*
    IF you reverse GR now it will assume the value of invoice: then reversal will show 3300 debit on GR/IR
    That is what in your PO history now
    These will happen because of PO based IV - for which there will be GR indicator will be ticked.
    Thanks
    Edited by: Praveen Raghavendra on Dec 24, 2008 9:17 AM

  • You cannot supply payment terms for your credit memo

    Hi,
    My req is as per below,
    1) I would like to apply payment terms on credit memo screen throgu auto invoice creation.
    When i tried to update ra_interface_lines_all.term_id then i got error message : You cannot supply payment terms for your credit memo
    Can someone gudie me.How is it possible?
    Thaks,
    Raj
    Edited by: RajPatel on Sep 23, 2009 8:33 AM

    Hi octavio,
    Thanks for your valuable input.
    You are right and also I found from metalink...
    Subject: 11.5-AR-How Can You Enter Payment Terms For Credit Memos
    Doc ID: 249547.1 Type: HOWTO
    Modified Date: 16-DEC-2003 Status: PUBLISHED
    goal: How can you enter payment terms for Credit memos
    fact: Oracle Receivables 11.5
    fix:
    Payment terms cannot be used in Credit memos. This is standard functionality.
    The trx_date/gl_date of the credit memo transaction is the date which is
    considered as the due date of the credit memos. This is the current
    functionality.
    Thanks,
    Raj

Maybe you are looking for

  • Clear Print Queue HP P1102w LaserJet

    After printing to my wireless HP P1102w LaserJet, the print queue does not clear/empty.  So, when I print, again, the printer does not respond because there are queued docs to print, yet.  I can physically delete the queue, but this is cumbersome.  A

  • Why won't my iMac detect my built in camera?

    My computer won't dect my built in camera.  Just wondering why?  It's pretty much brand new, I have updated it recently and was wondering if it could have something to do with that?  It used to work and now it doesn't.  I have tried the disk utility

  • Differences between sapr3 and isu

    Hi All, Can anybody explain differences  between isu and sapr3 Thanks, Satya

  • ANM object-group

    Object-groups created with the CLI don't appear in the ANM Config>Devices>Security>Object Groups as they should and ACLs using these groups are displayed incorrectly. SYNC and upgrading to ANM v2.1 hasn't resolved the issue. Object-groups created wit

  • Trouble setting component property

    I'm a Flash newbie trying to build a custom component using Flash MX 2004. basically it's an enhanced version of the standard label component. Everything seems to work fine except when trying to set default text or assigning a text value in the "prop