How to get Customer Credit & Overdue balances?

Hi All,
We need to retrieve Customer account balances data from SAP and pass that data to another third-party system. We have to create either a Custom Report or a Custom BAPI for this. The required values are 'Credit Balance' and 'Overdue Balance' for each Customer.
I only know about the transaction FBL5N which displays Customer Line Items as a report in SAP. Can you please help me out as how I should proceed for this purpose? What are tables where I can found the Credit balance and Overdue balance for each customer?
Thanking you,
Suchandra.

check tabke BSID, BSAD.
and F.27 tcode ,and see the logic of f.27 also.
Regards
Prabhu
Message was edited by: Prabhu Peram

Similar Messages

  • How to get custom defined messages in WAD

    Hi
    can you please help me how to get customized error messages in WAD.
    While I'm executing in RSRT the customer exit variable throws error message saying that 'No Sales orders exist for this Sold_To Party' but when I execute same query using Bex WAD, then no error message throwing for me for given sold_to party. I tried with all options as given in below code, but WAD gives me system error that "No values found for the customer exit variable 'Zxxxx'. Please help me in this regard. Should I do any settings in WAD to get custom defined messages. Kindly let me know
    my code is as below
    I_STEP = 2.
    CASE i_vnam.
    WHEN 'Custome exit variable'.
    IF sy-subrc = 0.
    ELSE.
                   MESSAGE e060(/bmc/bw).  "No Authorization exist
                    g_errflag1 = 'X'.
                   exit.
                   CALL FUNCTION 'RRMS_MESSAGE_HANDLING'
                      EXPORTING
                        i_class  = '/bmc/bw'
                        i_type   = c_e                                    "'E'
                        i_number = '061'
                        i_msgv2  = l_msgv2.
                         RAISE NO_REPLACEMENT.
                    l_s_range-low = g_soldto.
              l_s_range-sign = c_sign_i.
              l_s_range-opt  = c_range_opt_eq.
              APPEND l_s_range TO e_t_range.
    ENDIF.
    I_STEP = 3.
      READ TABLE i_t_var_range INTO w_s_var_range
                  WITH KEY vnam = 'customer exit variabel'.
      IF sy-subrc = 0.
    Check the flag and throw message 'No Sales orders'.
        IF g_errflag1 = 'X'.
          l_msgv1     = 'No Sales orders'.
    Call the FM to populate message
          CALL FUNCTION 'RRMS_MESSAGE_HANDLING'
            EXPORTING
              i_class  = c_r9
              i_type   = c_e                                    "'E'
              i_number = c_000
              i_msgv1  = l_msgv1
            EXCEPTIONS
              dummy    = 0
              OTHERS   = 0.
         CALL FUNCTION 'RRMS_MESSAGES_SHOW'.
         CALL FUNCTION 'RRMS_MESSAGES_DELETE'.
          RAISE NO_REPLACEMENT..
        ENDIF.
    Thanks & Regards
    silu

    Hi
    Custom Messages WAD

  • How to get customer number and name from the SD document

    Hi All,
    Can you please let me know how to get Customer Number and Name from the SD Document?
    Thanks a lot....
    Anil

    Hi,
    It will be displayed in the SD (BIlling document) itself,  you clikc on the VF03. The customer name and number will also appear in the SO document also Tcode VA03
    regards,
    radhika
    Edited by: kolipara radhika on Jul 10, 2009 5:32 AM

  • How to get customer-specific objects into PCUI ?

    Hello,
    we want to get an Z-table as tab page of the business partner-application into PCUI. It should 'only' be possible to create new entries - today there is no need to modify or delete records.
    Does there exist something like a "cookbook" on this task or has anyone of you experience how to get customer-specific objects (without using EEWB) into PCUI ?
    Thanks in advance
    Martin

    Option 1:
    If you are good in ABAP.
    You can add new tab in which create a new Field group. Assign it to a model access clas in which handle the table update.You can get the details in PCUI cookbook itsel.
    Option 2:
    If you are good at java
    Develop an FM to update the table.
    Call the FM from webdynpro
    Include this webdynpro as HTML viewer in PCUI.
    Regards,
    Abdul Raheem S

  • How to get customer no relating to a Business partner No

    How to get customer no relating to a Business partner No . Is that Customer unique ?

    hi arshad,
    based on business partner u can get customer number. both tables having some uniqe field...based on that uniqe field u can identify business partner no.......
    if it is usefull review the points

  • How can Get YTD in Trial Balance Custome In my query

    Hello
    can any body help me in this query i need to get Ytd trial Balance
    /* Formatted on 2011/10/31 12:59 (Formatter Plus v4.8.8) */
    SELECT ACCOUNT, descacc, NVL (SUM (opening_balance), 0) opening_balance,
    NVL (SUM (debit), 0) debit, NVL (SUM (credit), 0) credit,
    NVL (SUM (ending_balance), 0) ending_balance, parent1, parent2,
    parent3, parent4, parent5, :from_date,:chartid,:TO_DATE
    FROM (SELECT m.segment5 ACCOUNT, w.description descacc,
    (NVL (SUM (l.entered_dr), 0) - NVL (SUM (l.entered_cr), 0)
    ) opening_balance,
    NULL debit, NULL credit, NULL ending_balance,
    SUBSTR (m.segment5, 1, 1) || '0000000' parent1,
    SUBSTR (m.segment5, 1, 2) || '000000' parent2,
    SUBSTR (m.segment5, 1, 3) || '00000' parent3,
    SUBSTR (m.segment5, 1, 4) || '0000' parent4,
    SUBSTR (m.segment5, 1, 5) || '000' parent5
    FROM gl_code_combinations m,
    gl_je_batches c,
    gl_je_categories n,
    gl_je_headers h,
    gl_je_lines l,
    gl_ledgers t,
    fnd_flex_values_vl w
    WHERE h.default_effective_date < :from_date
    AND m.chart_of_accounts_id = :chartid
    AND h.je_header_id = l.je_header_id
    AND h.je_batch_id = c.je_batch_id
    AND l.code_combination_id = m.code_combination_id
    AND m.chart_of_accounts_id = t.chart_of_accounts_id
    AND h.currency_code IN 'SAR'
    AND l.ledger_id = t.ledger_id
    AND h.je_category = n.je_category_name
    AND h.status = 'P'
    AND w.flex_value = m.segment5
    AND w.flex_value_set_id = 1014551
    GROUP BY m.segment5, w.description
    UNION ALL
    (SELECT m.segment5 ACCOUNT, w.description descacc,
    NULL opening_balance, NVL (SUM (l.entered_dr), 0) debit,
    NVL (SUM (l.entered_cr), 0) credit, NULL ending_balance,
    SUBSTR (m.segment5, 1, 1) || '0000000' parent1,
    SUBSTR (m.segment5, 1, 2) || '000000' parent2,
    SUBSTR (m.segment5, 1, 3) || '00000' parent3,
    SUBSTR (m.segment5, 1, 4) || '0000' parent4,
    SUBSTR (m.segment5, 1, 5) || '000' parent5
    FROM gl_code_combinations m,
    gl_je_batches c,
    gl_je_categories n,
    gl_je_headers h,
    gl_je_lines l,
    gl_ledgers t,
    fnd_flex_values_vl w
    WHERE h.default_effective_date BETWEEN :from_date AND :TO_DATE
    AND m.chart_of_accounts_id = :chartid
    AND h.je_header_id = l.je_header_id
    AND h.je_batch_id = c.je_batch_id
    AND l.code_combination_id = m.code_combination_id
    AND m.chart_of_accounts_id = t.chart_of_accounts_id
    AND h.currency_code IN 'SAR'
    AND l.ledger_id = t.ledger_id
    AND h.je_category = n.je_category_name
    AND h.status = 'P'
    AND w.flex_value = m.segment5
    AND w.flex_value_set_id = 1014551
    GROUP BY m.segment5, w.description)
    UNION ALL
    (SELECT m.segment5 ACCOUNT, w.description descacc,
    NULL opening_balance, NULL debit, NULL credit,
    (NVL (SUM (l.entered_dr), 0) - NVL (SUM (l.entered_cr), 0)
    ) ending_balance,
    SUBSTR (m.segment5, 1, 1) || '0000000' parent1,
    SUBSTR (m.segment5, 1, 2) || '000000' parent2,
    SUBSTR (m.segment5, 1, 3) || '00000' parent3,
    SUBSTR (m.segment5, 1, 4) || '0000' parent4,
    SUBSTR (m.segment5, 1, 5) || '000' parent5
    FROM gl_code_combinations m,
    gl_je_batches c,
    gl_je_categories n,
    gl_je_headers h,
    gl_je_lines l,
    gl_ledgers t,
    fnd_flex_values_vl w
    WHERE h.default_effective_date <= :TO_DATE
    AND m.chart_of_accounts_id = :chartid
    AND h.je_header_id = l.je_header_id
    AND h.je_batch_id = c.je_batch_id
    AND l.code_combination_id = m.code_combination_id
    AND m.chart_of_accounts_id = t.chart_of_accounts_id
    AND h.currency_code IN 'SAR'
    AND l.ledger_id = t.ledger_id
    AND h.je_category = n.je_category_name
    AND h.status = 'P'
    AND w.flex_value = m.segment5
    AND w.flex_value_set_id = 1014551
    GROUP BY m.segment5, w.description))
    GROUP BY ACCOUNT, descacc, parent1, parent2, parent3, parent4, parent5
    ORDER BY ACCOUNT,parent5
    thanks

    Thanks a lot for your reply.
    I think I should have a database as a service trial.
    I can't find service instance in my service.
    I want to connect it by java application, but I can't get the service instance name.
    Could you please tell me how to get the service instance?
    Thanks a lot,
    Amanda

  • How to get plant wise Vendor Balance

    Dear All ,
    Kindly tel me How to Get Vendor Balance at Plant level.
    Regards
    Girish

    Hi Girish,
    we can give the customer balance through Plant wise in standard SAP
    But vendor balance not possible in plant wise.
    For that you can do customise userexit
    Regards
    Surya

  • How to get custom field value in vbkd table using "SD_SALESDOCUMENT_CREATE" bapi

    Hi Experts,
    Need your help . In one program Iam using SD_SALESDOCUMENT_CREATE bapi .
    i/p for my report is am excel.
    excel is having  below formatt.
    To create salesdoc we are using SD_SALESDOC_CREATE bapi.
    but After execution of the program we are unable to find the ZZFV_SBCNT (which is custom  field) in VBKD w.r.t salesdocument.
    Need your help what we need to do to reflect the value in vbkd table.
    Here temp will contains the data from excel
    1)
    FORM f_move_header_data .
       wg_header-doc_type            = wg_temp-auart .                   "Order type
       wg_header-sales_org           = wg_temp-vkorg .                   "Sales Organization
       wg_header-distr_chan          = wg_temp-vtweg .                   "Distribution Channel
       wg_header-division            = wg_temp-spart.                    "Division
       wg_header-sales_off           = wg_temp-vkbur .                   "Sales Office
       wg_header-sales_grp           = wg_temp-vkgrp .                   "Sales Group
       wg_header-purch_no_c          = wg_temp-bstnk .                   "Customer purchase order number
       wg_header-pymt_meth           = wg_temp-zlsch  .                  "Payment Method
       wg_header-zzychan_role        = wg_temp-zzychan_role_i.           "Channel Role
       wg_header-zzysub_role         = wg_temp-zzysub_role  .            "Submitter Role
       wg_header-zzy_inv_for_opt     = wg_temp-zzinv_format  .           "Invoice Format Optio
       wg_header-ord_reason          = wg_temp-augru  .                  "Order Reason Code
       wg_header-bill_block          = wg_temp-faksp.                    "Billing Block
       wg_headerx-doc_type            = c_set .                   "Order type
       wg_headerx-sales_org           = c_set .                   "Sales Organization
       wg_headerx-distr_chan          = c_set .                   "Distribution Channel
       wg_headerx-division            = c_set.                    "Division
       wg_headerx-sales_off           = c_set .                   "Sales Office
       wg_headerx-sales_grp           = c_set .                   "Sales Group
       wg_headerx-purch_no_c          = c_set .                   "Customer purchase order number
       wg_headerx-pymt_meth           = c_set  .                  "Payment Method
       wg_headerx-zzychan_role        = c_set.                    "Channel Role
       wg_headerx-zzysub_role         = c_set .                   "Submitter Role
       wg_headerx-zzy_inv_for_opt     = c_set .                   "Invoice Format Option
       wg_headerx-ord_reason          = c_set .                   "Order Reason Code
       wg_headerx-bill_block           = c_set.                    "Billing Block
    ENDFORM.                    " F_MOVE_HEADER_DATA
    2)
    FORM f_move_item_data .
       wg_item-itm_number          =   g_itmnumber.                              "Item number
       wg_item-material            =   wg_process-matnr .                        "Material
       wg_item-target_qty          =   wg_process-target_qty.                    "Targeted Qty
       wg_item-item_categ          =   wg_process-pstyv.                         "Sales document item category
       wg_item-zzylegal_i          =   wg_process-zzlegal.                       "Legal Contract
    **********Added this line for vbkd-ZZFV_SBCNT****************************
       wg_item-zzfv_sbcnt          = wg_process-zzfv_sbcnt.      
    APPEND wg_item TO i_item.
    wg_itemx-material            =   c_set .                        "Material
       wg_itemx-target_qty          =   c_set.                         "Targeted Qty
       wg_itemx-item_categ          =   c_set.                         "Sales document item category
       wg_itemx-zzylegal_i          =   c_set.                         "Legal Contract
       wg_itemx-zzsteady_date       =   c_set .                        "Amortization Start Date
       wg_itemx-zzsteady_end_dat    =   c_set.                         "Amortization Stop Date
    **********Added this line for vbkd-ZZFV_SBCNT****************************
       wg_itemx-ZZFV_SBCNt     =   c_set.   "
       APPEND wg_itemx TO i_itemx.
       CLEAR : wg_itemx. 
    endform. 
    3)           
    FORM f_move_head_ext
    wg_extension-structure   = c_ext_vbak.
       wg_ext_vbak-zzinv_format = wg_temp-zzinv_format.
    wg_ext_vbak-zzychan_role = wg_temp-zzychan_role_i.
       wg_ext_vbak-zzysub_role  = wg_temp-zzysub_role.
       wg_extension+30 = wg_ext_vbak.
    APPEND wg_extension to i_extension.
    CLEAR wg_extension.
       wg_extensionx-structure =  c_ext_vbakx.
       wg_ext_vbakx-zzinv_format = c_set.
      wg_ext_vbakx-zzlegal      = c_set.
       wg_ext_vbakx-zzychan_role = c_set.
       wg_ext_vbakx-zzysub_role  = c_set.
       wg_extensionx+30 = wg_ext_vbakx.
       APPEND wg_extensionx TO i_extensionx.
       CLEAR wg_extensionx.
    ENDFORM.                    " F_MOVE_HEAD_EXT
    *&      Form  F_MOVE_ITEM_EXT
    *       Item Extension
    4)
    FORM f_move_item_ext .
    * Structure for BAPI parameter Extension
       wg_extension-structure = c_ext_vbap.
       wg_ext_vbap-posnr      = g_itmnumber.
       wg_ext_vbap-zzsteady_date       =   wg_process-zzsteady_date .                 "Amortization Start Date
       wg_ext_vbap-zzsteady_end_dat    =   wg_process-zzsteady_end_dat.               "Amortization Stop Date
       wg_ext_vbap-zzlegal             =   wg_process-zzlegal.                        "Legal Contract
       wg_extension+30 = wg_ext_vbap.
    APPEND wg_extension to i_extension.
    * Structure for BAPI parameter Extension - Update Indicator Fields
       wg_extensionx-structure =  c_ext_vbapx.
       wg_ext_vbapx-posnr = g_itmnumber.
       wg_ext_vbapx-zzsteady_date       =   c_set .
       wg_ext_vbapx-zzsteady_end_dat    =   c_set.
    *  wg_ext_vbapx-zzlegal             =   c_set.
    *wg_process-zzfv_sbcnt = c_set.
       wg_extensionx+30 = wg_ext_vbapx.
       APPEND wg_extensionx TO i_extensionx.
       CLEAR wg_extensionx.
    and bapi calling is like below.
    CALL FUNCTION 'SD_SALESDOCUMENT_CREATE'
         EXPORTING
           sales_header_in       = wg_header
           sales_header_inx      = wg_headerx
           logic_switch          = wg_logic_switch
           business_object       = fp_bus_obj
           status_buffer_refresh = 'X'
         IMPORTING
           salesdocument_ex      = g_sorder
         TABLES
          return                = i_return
           sales_items_in        = i_item
           sales_items_inx       = i_itemx
           sales_partners        = i_partner
           sales_conditions_in   = i_cond
           sales_conditions_inx  = i_condx
           sales_text            = i_text
           extensionin           = i_extension
         extensionex           = i_extensionx.
    still we are not getting ZZFV_SBCNT value in VBKD table w.r.t created salesdoc(g_sorder)
    Please help me from this issue.
    Thank You..

    Hi,
    Please let me know how to add custom fields in the characteristic list, My clients wants department and profit center grouping.
    Please tell me how to solve it..
    Thanks & Regards,
    Reena..

  • How to get customer consignm orders (type of cat item KBN) updates LIS

    Good morning,
    we have an issue with this type of sales orders, we are trying to update an not standard info structure (created by us) but we have found that this type of category item is not relevant foe info structure updating (it has Statistics group for the item category
    equal blank).
    Does anybody know how to get that this type of item category is relevant foe that updating??
    thank you very much in advance,
    regards,
    Maria

    I believe you can use one of the customer exits in the FM which creates your IDOC to filter items.

  • How to get custom iCal colors to carry over to iPad or iPhone calendars

    How do I get custom calendar colors designated on my iMac to carry over to my iPad or iPhone?  It used to do so, and now it no longer does.

    Thanks Joe.  We have discovered from this forum, actually, that if you send the photos from the iPhone, if that's where they were taken, then you are asked what size. 
    "If you send from the camera, then you get the option of reducing the size. If you send from your other photos synced from your computer, they don't have that option of reducing."
    I tested it by sending a couple of photos taken by my iPhone, and sure enough, was asked as to size.  Then sent the same two photos from my iPad (Photostream) and was not asked.  Interestingly though, the sizes were identical in both emails.

  • [JS CS5]How to get Custom Page size

    I've been searching the answer of this simple question but looking no way around.
    I have an InDesign document with different page size e.g. left page width is 621 pt. and on the same document right page width is 837 pt.
    Now I need to get the width of pages using script but app.documentPreferences.pageWidth return standard document preset size(621 pt.) not the custom page size.
    Does any one have the Idea to get custom page size using script.
    Thanks in advance
    Mac

    Mac,
    as documentation is showing there are some new properties of "page" since InDesign CS5.
    Among those is:
    bounds    Array of Measurement Unit (Number or String)    readonly    The bounds of the Page, in the format [y1, x1, y2, x2].
    So:
    myPage.bounds
    and pageWidth of the documentPreferences might be:
    myPage.bounds[3]-myPage.bounds[1]
    unless  myPage is transformed (e.g. rotated and/or sheared and/or scaled) with:
    myPage.transform()
    void transform (in: CoordinateSpaces, from: varies, withMatrix: varies[, replacingCurrent: varies][, consideringRulerUnits: bool=false])
    Transform the page item.
    var d = app.activeDocument;
    var myPage = d.pages[0];
    var oldPB = myPage.bounds;
    var rAngle = -45;
    var sAngle = 40;
    var myTransformationMatrix1 = app.transformationMatrices.add({counterclockwiseRotationAngle:rAngle});
    myPage.transform(CoordinateSpaces.INNER_COORDINATES, AnchorPoint.CENTER_ANCHOR, myTransformationMatrix1);
    var myTransformationMatrix2 = app.transformationMatrices.add({clockwiseShearAngle:sAngle});
    myPage.transform(CoordinateSpaces.INNER_COORDINATES, AnchorPoint.CENTER_ANCHOR, myTransformationMatrix2);
    var newPB = myPage.bounds;
    $.writeln(oldPB);
    $.writeln(newPB);
    Now oldPB and newPB will differ a lot.
    So, the question remains: what is a reliable way to show if the myPage was or was not transformed against documentPreferences.pageWidth or if  myPage is of rectangular shape at all. See the possibility of adding a sheer angle to the transformation matrix. Also see screen shot:
    Transform_Page_CS5.png
    Uwe

  • How to get custom trigger result when insert

    I set a trigger before insert, if the result was $aa = 50;
    how to get $aa?
    it doesn't work
    $ins_testtable->addColumn("t_num", "NUMERIC_TYPE", "VALUE", $aa);

    I tried this one, actually, {GLOBALS.variable_name} is one of mark-up language,I add echo $a this time, after submit, $a appear on the page, so I think "definea trigger" has been executed successfully, but still got error message
    <br />
    <br />http://uploads.screenshot-program.com/my.php?image=upl2682569831.jpg
    <br />
    <br />code
    <br />--------------------------------------------------
    <br /><?php require_once('Connections/conndb.php'); ?>
    <br /><?php<br />// Load the common classes<br />require_once('includes/common/KT_common.php');<br /><br />// Load the tNG classes<br />require_once('includes/tng/tNG.inc.php');<br /><br />// Make a transaction dispatcher instance<br />$tNGs = new tNG_dispatcher("");<br /><br />// Make unified connection variable<br />$conn_conndb = new KT_connection($conndb, $database_conndb);<br /><br />//start definea trigger<br />function definea(&$tNG) {<br />global $a;<br />$a = 100;<br />}<br />//end definea trigger<br /><br />// Make an insert transaction instance<br />$ins_testtable = new tNG_insert($conn_conndb);<br />$tNGs->addTransaction($ins_testtable);<br />// Register triggers<br />$ins_testtable->registerTrigger("STARTER", "Trigger_Default_Starter", 1, "POST", "ins");<br />$ins_testtable->registerTrigger("BEFORE", "definea", 50);<br />// Add columns<br />$ins_testtable->setTable("testtable");<br />$ins_testtable->addColumn("t_name", "STRING_TYPE", "POST", "t_name");<br />$ins_testtable->addColumn("t_num", "NUMERIC_TYPE", "VALUE", "{GLOBALS.a}");<br />$ins_testtable->setPrimaryKey("t_id", "NUMERIC_TYPE");<br /><br />// Execute all the registered transactions<br />$tNGs->executeTransactions();<br /><br />// Get the transaction recordset<br />$rstesttable = $tNGs->getRecordset("testtable");<br />$row_rstesttable = mysql_fetch_assoc($rstesttable);<br />$totalRows_rstesttable = mysql_num_rows($rstesttable);<br />?>
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <script src="includes/common/js/base.js" type="text/javascript"></script>
    <br />
    <script src="includes/common/js/utility.js" type="text/javascript"></script>
    <br />
    <script src="includes/skins/style.js" type="text/javascript"></script>
    <br />
    <br />
    <br />
    <br /><?php echo $a; ?>
    <br />
    <form id="form1" name="form1" method="post" action="">
    <br />
    <label for="t_name">tname</label>
    <br />
    <input type="text" name="t_name" id="t_name" />
    <br /> <?php<br /> echo $tNGs->getErrorMsg();<br />?>
    <br />
    <input type="submit" name="ins" id="ins" value="submit" />
    <br /></form>
    <br />
    <br />

  • In MIRO, how can I get a credit to balance when using dr/cr lines?

    When processing a logistics invoice verification document via MIRO, we're trying to post a credit memo against a purchase order with muliple lines (one return, and on non-return line).  The value of the return line is greater, and the invoice is billing for receipts/returns on mulitple lines on the PO (it has a credit amount for the entire return to be posted against the return line, and a restocking fee to be posted against a text based PO line). 
    In MIRO, I have selected credit memo and am posting a credit for a gross amount of $550 in the header.  The return line I'm trying to post against is for $575, and the non-return line for the restocking fee is for $25.  However, when I'm posting against both, the system is indicating that I'm out of balance by $50.  It appears that it's not calculating the $25 as a credit.  I've tried looking at documents around posting against returns and posting credits, but haven't seen anything that addresses this scenario.  I've also tried using negative amounts, but SAP does not accept these.  We're currently using SAP ECC 6.0.  How can I get this to balance?

    Only Apple Account Security could help at this point. You can try calling Apple Support in Canada - you'll have to find one of the several ways, such as Skype, to call an 800 number from outside of the relevant country - and ask for Account Security and see if they can help. Or you can find a friend who speaks Chinese and ask them to help you talk to Apple Support in China. There are really no other options that I know of.
    Note, by the way, that these are user-to-user support forums. You aren't speaking with Apple when you post here.
    Regards.

  • How can I pay an overdue balance with a new account where the old account is no longer valid?

    I used to live in the UAE and was using my UAE local credit card for my apple accout. I returned recently back home and the old account I had is now no loneger valid,I now have a new credit card, I would like to use my new account to settle the balance I owe on the previous account. Is that even possible?
    If not, is there a way I can download from my app store again as I cannot access it because my new payment details are being 'Declined"
    If there is anyone that can help, please do so.

     Account Security Team (AST) 
    Check the AppleCare number for your country here:
    http://support.apple.com/kb/HE131
    Call them up, and let them know you would like to be transferred to the Account Security Team.
    HT5312: Rescue email address and how to reset Apple ID security questions
    http://support.apple.com/kb/HT5312

  • How to get Custom-Content-type Column Value of a Document Library-Folder

    Hello
    I have to add a custom-column(folder-imageURL) for Folders in a Document Library.
    So I have created a Custom-CotentType "FolderCtype" with new column "folder-imageURL" and attached in the Document Library.
    Whenever I create a new folder in that document library I will select my "FolderCtype" & and then add an image url in "folder-imageURL" column.
    How do I access this image url in Code?
    part of my code is as follows.
    SPContentType cntType = List.ContentTypes["FolderCtype"];
    SPField field = cntType.Fields.GetField("folder-imageURL");  //I have Field name here//
     foreach (SPFolder folder in RtFolder.SubFolders)
                        if (folder.Name.ToUpper() != "FORMS")
                           string FolderName = folder.Name;
                          string FolderImageUrl = ?              //How can I get this????//
    Thanks in advance

    Hi, Patrickm, Thank You
    If your “folder-imageURL” column is a “Hyperlink or Picture” column, then you can get the hyperlink like this:
    SPListItem item = folder.Item;
    if (item[field.Title] != null)
    string FolderImageUrl = item[field.Title].ToString().Split(',')[0];
    Console.WriteLine(FolderImageUrl);
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support
    S H A J A N

Maybe you are looking for

  • Print context content on a client local printer

    Hi All, We need to print the content of my context node using local printer of the client PC. We cannot use Adobe Forms because it is not supported on our UNIX platform. We tried to use some Java libraries, but print goes to J2EE's server printer. SA

  • If I can't do "views" can I fake it?

    I'm getting pretty used to Numbers now, but.... I want to have a sheet with a table of "master" data, and different "views" of that data. 1. I can accomplish this within the single master table by activating combinations of filters, and hiding or sho

  • How do I make a PDF form that is fillable for iPhone users?

    I recently created a fillable form using Adobe LiveCycle and I need the form to be accessible for iPhone users. I downloaded the Adobe Reader app on my iPhone, but I am not able to access any of the drop down menus and the fillable fields do not appe

  • 9iAS release 2 for Windows?

    I see from the certification matrix that there is a 9iAS release 2 for Windows (NT/2000/XP/whatever flavour, presumably). However, when I look at the download/documentation areas, I can't find any reference to it. There's release 1 for everything in

  • DHCP pools for LWAP's with multiple models

    I have 2 different AP models (1130's & 1140's) for which I want to create a DHCP pool on a core layer 3 switch with an Option 43 pointing to the Wireless LAN Controller. In conjunction with the Option 43 entry however, I need to specify the AP type a