Link B/W BSET and RSEG - Purch.Tax Register

Dear All Experts,
Iam creating a Tax register wherein I have to display the tax details from the MIRO invoice with the details of PO and Material . For that am getting the Tax data from BSET and Invoice line items from RSEG. But the problem is am unable to get the link, like which Tax in BSET is related to which line item of RSEG.
Thanks & Regrads,
Rock.

Hi Rock,
There is a relation ship B/W  RSEG and BSET
Concatenate  RESG-BELNR &  RSEG-GJAHR into one varialbe
pass this variable to filed  AWKEY INTO   table  BKPF.
Get the accounting document number(BELNR) from BKPF table , and using this accounting doc. number we can able to get the data from  BSET.
Ex:
concatenate rseg-belnr  rseg-gjahr into v_var.
select  belnr gjahr from bkpf where   awkey = v_var.
select * from bset where belnr = bkpf-belnr
                                           gjahr = bkpf-gjahr. 
Regards,
Sateesh C

Similar Messages

  • Link between table VBKPF and RSEG.

    Dear FI GURUS n EXPERTS,
    Will you tell me how can I link table VBKPF and RSEG.
    Thanks in advance.
    DSC

    Hi
    You can do it through ABAP program by applying LookUp technique for each *BKPF document (Creating a reference AWKEY variable, and applying concatenate *BKPF-BELNR and *BKPF-GJAHR), with the internal loop on RSEG through query (select single * from RSEG into itab_rseg), and append each to your desired result-set
    I'm not sure if you can do it through SQVI and SQ02 infosets as *SEG documents cannot be used there.
    Hope this helps
    Regards
    Nayab

  • Link between table BSEG and BSET

    Helo All.
    Can you please tell me what is the link between tables BSEG and BSET in FICO?
    Regards

    Hi
    Please check below thread Ramesh answerd for same query
    Relation between RSEG Table and BSET Table
    Thanks,
    Syf

  • Table and fields for tax details

    Hi,
    I have to create one Finance module Report in which i want to display net amount without tax for one single line item which is open item for incoming customer invoice, the accounting department need to know the net value (without tax) .
    In tcode FB03 , if you see the document number then it will give all accounts(customer), posting key wise amount, but this amount is gross amount. in this amount tax amount is added as per tax code. (you can see by clicking tax details tab), and tax calculated is for whole ducoments number not for single line item.
    i want net amount without adding tax amount for particular single line item. so please guide me table and fields from where and how i can calculate. in tax tab there is field base amount but its giving calculation against all total against document.
    table i am using in my report is KNA1.KNKK, KNB1, BKPF. BSEG.
    Give me some idea. how can i prepare report.
    Have a Nice Day,
    Regards,
    Sujeet

    Dear Dzed Maroz ,
    Thanks for your reply.
    I have already checked these fields (HWSTE, FWSTE) in table BSET. this fields tax amount againt that Document Number. (which may contains more than one line items), but my requirement is to find the amount without tax for individual line item.
    reason is , i want to display in my report only open items and it will be a line item, so i am displaying net amount as well base amount (without tax) for particular line items.
    but tax details is calculated based on document number not against customer number.this is incoming invoice
    ,and in customization tax code is assigned, so its reflecting amount after including tax amount.
    is there any way to find out solution? please give me some idea.
    regards,
    sujeet

  • Relation between J_1IEXCHDR and rbkp and rseg

    Hii all ..i'm developing alv report for purchase register and i have to fetch taxes frm J_1IEXCHDR table...
    i'm able to fetch data frm rbkp and rseg tables but not able to fetch taxes from  J_1IEXCHDR table..can anyone help me hw to relate the exicse table to anyone table which i used above...below r the fields which i want to print in report program
    RBKP-BELNR,  RBKP-BUDAT,  RBKP-LIFNR ,  RBKP-RMWWR,  RBKP-GSBER ,   RBKP-WMWST1,  Rseg-wrbtr,  RSEG-BELNR,
    RSEG-MATNR,  RSEG-WERKS, RSEG-BUKRS,  RSEG-MENGE, J_1IEXCHDR-exbed,  J_1IEXCHDR-exaed,  J_1IEXCHDR-ecs,
    J_1IEXCHDR-exaddtax1....
    Edited by: venkat akella on Sep 12, 2009 1:40 PM

    Hi, 
    I Have done this report Just go through it..
    *& Report               :ZEXISMATCH
    *& ABAP Developer      :Manish Prakash
    *& Functional Analyst  :Mr. Suresh Yadav
    report  zexismatch.
    type-pools : slis.
    **************************************DATA Decleration*********************************
    data: fcat_it type slis_t_fieldcat_alv with header line.
    data: fcat_layout type slis_layout_alv.
    data: wa_event type slis_alv_event,
         i_event  type slis_t_event,
         i_listheader     type slis_t_listheader,
         l_sort           type slis_t_sortinfo_alv,
         wa_sort          type slis_sortinfo_alv,
         i_print          type slis_print_alv.
    data it_lfa1 like standard table of lfa1 with header line.
    tables: j_1iexchdr, j_1ipart2, rseg, bkpf, bsis.
    data: begin of wa,
          fawref type j_1ifawref,
          rdoc2 type j_1iexchdr-rdoc,
          budat type budat,
          lifnr type lifnr,
          exbed type j_1iexcbed,
          exaed type j_1iexcbed,
          ecs   type j_1iexcbed,
          exaddtax1 type j_1iexcbed,
          tottax type j_1iexcbed,
          belnr type bsis-belnr,
          dmbtr type dmbtr,
          exnum type j_1iexcdtl-exnum,
      name1 type lfa1-name1,
      end of wa.
      data: it_part2 like standard table of wa with header line.
      data: it_part23 like standard table of wa with header line.
      data it_rseg like standard table of rseg with header line.
      data: begin of bk.
        include structure bkpf.
        data lfbnr type rseg-lfbnr.
        data end of bk.
      data it_bkpf like standard table of bk with header line.
      data it_bkf like standard table of bk with header line.
      data off type i value 6.
      data: begin of bss.
        include structure bsis.
        data lfbnr type rseg-lfbnr.
        data end of bss.
      data it_bsis like standard table of bss with header line.
      data it_b like standard table of bsis with header line.
      data wa_b like line of it_b.
    ***************************Selection Screem*************************************************************
    selection-screen begin of block a with frame.
    select-options: s_date for j_1ipart2-budat,
                    s_typ  for j_1ipart2-trntyp,
                    s_yer  for j_1ipart2-docyr,
                    s_exg  for j_1ipart2-exgrp.
    selection-screen end of block a.
      select a~fawref a~budat b~rdoc2 b~lifnr b~exbed b~exaed b~ecs b~exaddtax1 b~exnum
        into corresponding fields of table it_part2 from j_1ipart2 as a inner join j_1iexcdtl as b
        on a~exgrp = b~exgrp
        and a~trntyp = b~trntyp
        and a~docno = b~docno
        and a~docyr = b~docyr where a~budat in s_date and a~trntyp in s_typ and a~docyr in s_yer and a~exgrp in s_exg.
    loop at it_part2 .
      it_part23-fawref = it_part2-fawref.
      it_part23-budat = it_part2-budat.
      it_part23-rdoc2 = it_part2-rdoc2.
      it_part23-lifnr = it_part2-lifnr.
      it_part23-exnum = it_part2-exnum.
      it_part23-exbed = it_part2-exbed.
      it_part23-exaed = it_part2-exaed.
      it_part23-ecs = it_part2-ecs.
      it_part23-exaddtax1 = it_part2-exaddtax1.
    collect it_part23.
    clear it_part2.
    endloop.
    refresh it_part2.
    it_part2[] = it_part23[].
        loop at it_part2 .
        it_part2-tottax = it_part2-exbed + it_part2-exaddtax1 + it_part2-exaed + it_part2-ecs.
        modify it_part2 transporting tottax.
        endloop.
       select belnr lfbnr from rseg into corresponding fields of table it_rseg
         for all entries in it_part2 where lfbnr = it_part2-rdoc2.
    select * from bkpf into corresponding fields of table it_bkpf
       where  bukrs = '7000' and gjahr in s_yer and tcode = 'MIRO' ."AND BLART = 'RE'.
    sort it_bkpf by awkey.
    data : w_len type i.
    loop at it_bkpf .
    w_len = strlen( it_bkpf-awkey ).
    w_len = w_len - 4.
    it_bkpf-awkey = it_bkpf-awkey+0(10).
    modify it_bkpf transporting awkey.
    endloop.
    sort it_rseg by belnr.
    sort it_bkpf by awkey.
    loop at it_bkpf .
    read table it_rseg with key belnr = it_bkpf-awkey.
    if sy-subrc = 0.
       it_bkpf-lfbnr = it_rseg-lfbnr.
       modify it_bkpf transporting lfbnr.
       else.
       delete it_bkpf.
    endif.
    *CLEAR it_bkpf.
    endloop.
    it_bkf[] = it_bkpf[].
    select bukrs hkont augdt augbl zuonr gjahr buzei belnr  shkzg dmbtr from bsis
      into corresponding fields of table it_b for all entries in it_bkpf
      where belnr = it_bkpf-belnr and bukrs = '7000'   and gjahr in s_yer "AND HKONT eq '6113'
       and ( hkont = '0000006113' or hkont = '0000006123' ).
    APPEND wa_b to it_b.
    loop at it_b .
      it_bsis-belnr = it_b-belnr.
    it_bsis-belnr = it_b-belnr.
      case it_b-shkzg .
        when 'S'.
          it_bsis-dmbtr = it_b-dmbtr.
        when 'H'.
           it_bsis-dmbtr = - it_b-dmbtr.
         WHEN OTHERS.
      endcase.
    collect it_bsis.
    endloop.
    sort it_bkpf by belnr.
    loop at it_bsis .
    read table it_bkpf with key belnr = it_bsis-belnr.
    if sy-subrc = 0.
      it_bsis-lfbnr = it_bkpf-lfbnr.
    modify it_bsis transporting lfbnr.
    endif.
    endloop.
    sort it_bsis by lfbnr.
    loop at it_part2 .
    read table it_bsis with key lfbnr = it_part2-rdoc2.
    if sy-subrc = 0.
      it_part2-belnr = it_bsis-belnr.
      it_part2-dmbtr = it_bsis-dmbtr.
    modify it_part2 transporting belnr dmbtr.
    endif.
    clear: it_part2, it_bsis.
    endloop.
    select * from lfa1 into corresponding fields of table it_lfa1
      for all entries in it_part2 where lifnr = it_part2-lifnr.
    loop at it_part2 .
    read table it_lfa1 with key lifnr = it_part2-lifnr.
    if sy-subrc = 0.
    it_part2-name1 = it_lfa1-name1.
    modify it_part2 transporting name1.
    clear it_lfa1.
    endif.
    endloop.
    *SORT it_part2 by belnr.
    perform get.
    fcat_layout-colwidth_optimize = 'X'.
    call function 'REUSE_ALV_GRID_DISPLAY'
      exporting
        i_callback_program     = sy-repid
        i_grid_title           = ''
        is_layout              = fcat_layout
        it_fieldcat            = fcat_it[]
        it_events              = i_event[]
        it_sort                = l_sort
        i_save                 = 'A'
        i_callback_top_of_page = 'TOP_OF_PAGE'
      tables
        t_outtab               = it_part2 " IT_PART2
      exceptions
        program_error          = 1
        others                 = 2.
    *&      Form  set_pf_status
          text
         -->RT_EXTAB   text
    form set_pf_status using rt_extab type slis_t_extab.
      set pf-status 'STANDARD_4'.
    endform.                    "set_pf_status
    *&      Form  get
          text
    form get.
      clear fcat_layout.
    fcat_layout-colwidth_optimize = 'X'.
      fcat_layout-zebra     = 'X'.
      fcat_layout-no_keyfix = 'X'.
      " SET_CELL_COLOURS
      clear fcat_it.
      fcat_it-fieldname = 'FAWREF'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
      fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'Ex Doc. No.'.
      append  fcat_it.
       clear fcat_it.
      fcat_it-fieldname = 'EXNUM'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
      fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'Invoice No.'.
      append  fcat_it.
      clear fcat_it.
      fcat_it-fieldname = 'BUDAT'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
    fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'Excise Dt.'.
      append  fcat_it.
      clear fcat_it.
      fcat_it-fieldname = 'LIFNR'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
    fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'Vendor Code'.
      append  fcat_it.
    clear fcat_it.
      fcat_it-fieldname = 'NAME1'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
    fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'Vendor Name'.
      append  fcat_it.
      clear fcat_it.
      fcat_it-fieldname = 'TOTTAX'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
    fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'Excise'.
      append  fcat_it.
      clear fcat_it.
      fcat_it-fieldname = 'BELNR'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
    fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'MIRO Doc. No.'.
      append  fcat_it.
      clear fcat_it.
      fcat_it-fieldname = 'DMBTR'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
    fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'MIRO Excise'.
      append  fcat_it.
    endform.                    "get
    *&      Form  eventtab_build
          text
         -->LT_EVENTS  text
    form eventtab_build changing lt_events type slis_t_event.
      constants:
      gc_formname_top_of_page type slis_formname value 'TOP_OF_PAGE'.
    gc_formname_end_of_list TYPE slis_formname VALUE 'END_OF_LIST'.
      data: ls_event type slis_alv_event.
      call function 'REUSE_ALV_EVENTS_GET'
        exporting
          i_list_type = 0
        importing
          et_events   = lt_events.
      read table lt_events with key name =  slis_ev_top_of_page
                               into ls_event.
      if sy-subrc = 0.
        move gc_formname_top_of_page to ls_event-form.
        append ls_event to lt_events.
      endif.
    READ TABLE lt_events WITH KEY name =  slis_ev_end_of_list
                                INTO ls_event.
    IF sy-subrc = 0.
       MOVE gc_formname_end_of_list TO ls_event-form.
       APPEND ls_event TO lt_events.
    ENDIF.
    endform.                    "EVENTTAB_BUILD
    *&      Form  top_of_page
          text
    form top_of_page.
    *ALV Header declarations
      data del(150) type c.
      data del1(150) type c.
      data: t_header type slis_t_listheader,
            wa_header type slis_listheader,
              wa_header1 type slis_listheader,
              wa_header2 type slis_listheader,
               wa_header3 type slis_listheader,
                 wa_header4 type slis_listheader,
              t_line like wa_header-info,
            ld_lines type i,
            ld_linesc(100) type c.
      wa_header-typ  = 'H'.
      wa_header1-typ  = 'S'.
      wa_header2-typ  = 'S'.
      wa_header3-typ = 'H'.
      wa_header4-typ = 'H'.
      wa_header-info = 'HINDUSTAN PULVERISING MILLS'.
      wa_header1-info = '209-210 Anupam Bhawan ,  Azadpur, Delhi - 110033'.
      wa_header2-info = '----
      wa_header3-info = ld_linesc.
      wa_header4-info = del1.
      append wa_header  to t_header.
      append wa_header1 to t_header.
      append wa_header2 to t_header.
      append wa_header3 to t_header.
      append wa_header4 to t_header.
      clear wa_header.
      wa_header-typ  = 'S'.
      wa_header-info = t_line.
      append wa_header to t_header.
      clear: wa_header, t_line.
      append wa_header to t_header.
      wa_header-typ  = 'S'.
      append wa_header to t_header.
      clear: wa_header.
      call function 'REUSE_ALV_COMMENTARY_WRITE'
        exporting
          it_list_commentary = t_header.
      I_LOGO                   = 'ENJOYSAP_LOGO'.
      I_END_OF_LIST_GRID       =
      I_ALV_FORM               =
    endform.                    "top_of_page
    *slis_ev_end_of_list

  • In material master two countries are comming Hu and De for tax classificati

    Hi All,
    In material master two countries are comming Hungary and germany for tax classification ,can anybody tell why .
    Thanks

    Hello,
    Please check the Tax Determination Rules & Tax Relevancy of Master Records in the link below:
    IMG - Sales and Distribution - Basic Functions - Taxes
    1. Define Tax Determination Rules
    2. Define Tax Relevancy Of Master Records - Materiall Master.
    It is from the above links the Countries & Tax Categories are proposed in Material Master / Customer Master.
    Hope this helps,
    Thanks,
    Jignesh Mehta

  • Link Between Accounting Document and Invoice Document

    Hi,
    I need to map the following path for data fetching as per clint requirement.
    G/L a/c >Accounting Document->Invoice Document--->PO Document.
    I don't find the link between Accounting Document--->Invoice Document.
    Pls let me know from which table i can find this link.
    With Regards
    Punesh Sharma

    Hi Punesh ,
    Following tables would be helpful -
    BKPF , BSEG  , RBKP and RSEG
    Regards
    Nilesh

  • Table Link between Main Invoice and TDS standard invoice generated

    HI All,
    I wanted to know the table linking the Main Invoice and corresponding the TDS standard invoices generated who payment is done to the authority.
    I want to get the list of all the main invoices who’s TDS generated invoice payment is done. Main voices I fetch from ap_invoices_v
    Please suggest
    Regards,
    SK

    Hello,
    The following query (11.5.10.2) will retrieve the invoices who originated the Withholding Tax invoices in a certain period. Please change parameters accordingly.
    SELECT
    supplier.vendor_name Supplier_Name ,
    supplier.segment1 Supplier_Number ,
    supplier.num_1099 Supplier_NIF ,
    supplier_site.vendor_site_code Site_Code ,
    i.invoice_date Invoice_Date ,
    i.invoice_currency_code Invoice_Currency_Code ,
    i.exchange_rate Invoice_Exchange_Rate ,
    c.name Invoice_Currency_Name ,
    i.invoice_num Invoice_Number ,
    i.invoice_amount Invoice_Amount ,
    i.base_amount Invoice_Base_Amount ,
    i.description Invoice_Description ,
    d.accrual_posted_flag Accrual_Posted_Flag ,
    d.accounting_date Accounting_Date ,
    nvl(d.awt_gross_amount , i . invoice_amount ) Amount_Subject_To_Tax ,
    d.amount Tax_Amount ,
    d.base_amount Tax_Base_Amount ,
    d.description Line_Description ,
    d.awt_flag AWT_Flag ,
    n.name Dist_Tax_Name ,
    t.tax_rate Dist_Tax_Rate ,
    t.rate_type Dist_Rate_Type ,
    t.certificate_number Dist_Certificate_Number ,
    t.certificate_type Dist_Certificate_Type ,
    t.start_date Dist_Cert_Start_Date ,
    t.end_date Dist_Cert_End_Date ,
    t.priority Dist_Cert_Priority
    FROM
    ap_invoice_distributions_all d ,
    ap_invoices_all i ,
    fnd_currencies_vl c ,
    po_vendors supplier ,
    po_vendor_sites_all supplier_site ,
    ap_awt_tax_rates_all t ,
    ap_tax_codes_all n
    WHERE d.invoice_id = i.invoice_id
    AND i.vendor_id = supplier_site.vendor_id
    AND i.vendor_site_id = supplier_site.vendor_site_id
    AND i.vendor_id = supplier.vendor_id
    AND i.invoice_currency_code = c.currency_code
    AND d.awt_tax_rate_id = t.tax_rate_id (+)
    AND d.tax_code_id = n.tax_id
    AND d.line_type_lookup_code = 'AWT'
    AND d.set_of_books_id = <your set_of_books_id>
    AND d.accounting_date >= '1-aug-09'
    AND d.accounting_date <= '1-aug-09'
    Hope this helps,
    Octavio

  • Collapsible Panels - Links to open one, and close others

    Hi,
    I am new to Dreamweaver and have been creating my site by
    learning as I go along. I have already read through all the other
    related topics associated with Collapsible Panels on this blog and
    have still not found an answer. I have been able to open and close
    Collapsible Panels by using links - but unfortunately, I need more
    than just opening and closing.
    On my site i have approximately 5 pages, all with the same
    header and Menu bar. The Information (that i have presented in
    numerous Collapsible Panels) does however vary from page to page.
    What I need to try and figure out is:
    How can I open one collapsible panel and close all others? I
    have seen the one example which leads to my next question:
    How can I group Panels? Some examples of how to open one and
    close all others use this grouping. Is there any other way of
    opening one and closing all others without grouping?
    Lastly, is it possible to set up a link that can be viewed on
    one page which when clicked opens the relevant page and collapsible
    panel? i.e. on my About Us page there is a link (using the Menu
    bar) for one of my several services on the services drop down menu
    (but services is on a different page with the same setup). When a
    viewer clicks on the specific service, is it possible to get the
    site to open the services page, and open the relevant collapsible
    panel (with all other Panels closed)?
    Any assistance would be greatly appreciated - I have been
    searching for days now and cannot seem to find any
    answers/directions in laymans terms.
    Kind regards,
    John

    wlsjoh013 wrote:
    > Hi,
    >
    > I am new to Dreamweaver and have been creating my site
    by learning as I go
    > along. I have already read through all the other related
    topics associated
    > with Collapsible Panels on this blog and have still not
    found an answer. I
    > have been able to open and close Collapsible Panels by
    using links - but
    > unfortunately, I need more than just opening and
    closing.
    >
    > On my site i have approximately 5 pages, all with the
    same header and Menu
    > bar. The Information (that i have presented in numerous
    Collapsible Panels)
    > does however vary from page to page. What I need to try
    and figure out is:
    >
    > How can I open one collapsible panel and close all
    others? I have seen the one
    > example which leads to my next question:
    This page has an example that has a link that can open and
    close a panel:
    http://labs.adobe.com/technologies/spry/samples/collapsiblepanel/collapsible_panel_sample. htm
    One way to do this would be to have a single link that would
    open one of your panels using the code, but then add to it code
    that closes each of the other panels, for example:
    <a href="#"
    onclick="CollapsiblePanel4.open();CollapsiblePanel5.close();CollapsiblePanel6.close();">O pen
    4, close 5 and 6</a>
    To make this work, you'll need to look that the panel
    constructors at the bottom of your page and make sure to match up
    the panel variable names i.e. "var CollapsiblePanel1 =...." the
    variable is CollapsiblePanel1.
    You could also write a function that gathers together the
    various panels you have on the page and then pass to it only the
    panel that you want kept open. For now, though, it might be best to
    use the above method, given your expertise. And taking that even
    further, you could apply the function call unobtrusively. Both the
    function call and the unobtrusive part you can work on later to get
    this working for now.
    > How can I group Panels? Some examples of how to open one
    and close all others
    > use this grouping. Is there any other way of opening one
    and closing all
    > others without grouping?
    This is a little confusing, on one hand you ask about how to
    group, but then ask how not to group. There is a concept of a
    collapsible panel group:
    http://labs.adobe.com/technologies/spry/samples/collapsiblepanel/CollapsiblePanelGroupSamp le.html
    But there is another type of group, that may be more what
    you're looking for, and that's an Accordion panel, which is similar
    to the collapsible panel group, with the exception that it can only
    have one panel open at a time.
    > Lastly, is it possible to set up a link that can be
    viewed on one page which
    > when clicked opens the relevant page and collapsible
    panel? i.e. on my About Us
    > page there is a link (using the Menu bar) for one of my
    several services on the
    > services drop down menu (but services is on a different
    page with the same
    > setup). When a viewer clicks on the specific service, is
    it possible to get
    > the site to open the services page, and open the
    relevant collapsible panel
    > (with all other Panels closed)?
    Probably the easiest way to do this particular one would be
    to make sure that you have all of the panels set to be closed when
    the page loads, and then take a look at the code for the last
    example on this page:
    http://labs.adobe.com/technologies/spry/samples/utils/URLUtilsSample.html
    That example uses a tabbed panel, but the concept is the
    same, use a URL parameter to determine what to show. You'll need to
    link in the SpryURLUtils file in the Spry download package (look in
    the includes folder):
    http://labs.adobe.com/technologies/spry/home.html
    Essentially, your link will look similar to:
    sample.html?panel=1
    Then your code could look something like:
    var params = Spry.Utils.getLocationParamsAsObject();
    var CollapsiblePanel1 = new
    Spry.Widget.CollapsiblePanel("CollapsiblePanel1",
    {contentIsOpen:(params.panel==1 )} );
    var CollapsiblePanel2 = new
    Spry.Widget.CollapsiblePanel("CollapsiblePanel2",
    {contentIsOpen:(params.panel==2 )} );
    Basically what this is doing is creating an object from the
    URL parameters. Then for each of the panels the constructor has
    code that determines whether or not to expand the panel when the
    page loads. So it checks the value of params.panel to see if it
    matches 1 (for the first one), if it does, then that means that
    contentIsOpen is set to true, if it is some other number or is not
    present at all, then that means that the panel is closed. This
    would then be repeated down the line for how ever many panels you
    want to operate like that.
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | WebAssist Extensioneer
    | Adobe Community Expert

  • Adding link to the photo and Name in the outlook contact card -Enterprise wide

    How can I make the name and photo in the outlook contact card link to my profile page? I read articles where it is mentoined that the URL is set in Registry, currently my organization does not have any link associated with photo and name in contact card.
    I want to implement this across the organization , any deployment or changes that I need to do to implement this across?
    Appreciate if you can provide details on how this is done. The url will look like this:
    https://www.produrl.com/userid={userid}
    How can I dynamically add respective userid in the link?Appreciate your response on this.

    So you want to redesign the contact card in Outlook? Are you using SharePoint? If signed into sharepoint via the social connect, there is a link to the mysharepoint page under View source. I don't think you can change the link or customize the card,
    beyond what is listed here:
    http://technet.microsoft.com/en-us/library/ff631135(v=office.15).aspx#BKMK_ContactCards
    Diane Poremsky [MVP - Outlook]
    Outlook & Exchange Solutions Center
    Outlook Tips
    Subscribe to Exchange Messaging Outlook weekly newsletter

  • TS3276 An email sent from my iMac has a button linked to a clip hosted on Vimeo. When received, the link functions on iMac and iPad, but opens a window of app icons on iPhone and iPod touch. Any ideas what's wrong?

    An email sent from my iMac has a button linked to a clip hosted on Vimeo. When received, the link functions on iMac and iPad, but opens a window of app icons on iPhone and iPod touch. Any ideas what's wrong?

    For anyone else reading this thread, it is worth knowing that sometimes an email is, or can be, corrupted thereby jamming the works. The solution above is good, but I just wanted to suggest another one.
    If the problem arises, go to an online mail access service, such as Mail2Web.com and login to you mail account there and delete the offending message.
    Problem solved.
    And George, as this is all entirely voluntary, whinging about no takers may not endear people to you. Besides which, a few minutes of searching on Google would have found you a number of solutions.

  • Can't Find ODBC drivers to link MS Access 2013 and MySQL

    Can't Find ODBC drivers to link MS Access 2013 and MySQL.
    Is one available?
    Thanks,
    Larry

    Could to associate the problem at Office 2013?
    I just installed the ODBC Driver; The data source machine was available; When selected I had received the message. When it was selected I had received the message:
    "ODBC -- falha na chamada.
    [Microsoft][ODBC Driver Manager] O DSN especificado contém uma incompatibilidade de arquiteturas entre o Driver e o Aplicativo (#0)"
    In english, could to say: "ODBC -- fail on call.
    ... The specified DSN contains a architectural incompatibility between Driver and App (#0)"
    I don't know yet the reason for this. Anyone knows?

  • I downloaded a movie from itunes on my ipad.  In the downloaded area where the movie should be, I only get a link to "iItunes Terms and Conditions", no movie.  There is nowhere to accept the terms and conditions.

    I downloaded a movie from itunes on my ipad. In the downloaded area where the movie should be, I only get a link to "iItunes Terms and Conditions", no movie. There is nowhere to accept the terms and condotions.

    Nevermind, the movie was there in the Videos app, not itunes downloads.  Thanks.

  • I pre ordered a album and got songs then it came out so itunes sent me a confirmation and it said to go to available downloads and gave link so I did and it did nothing for me and when I went to the album I wanted it said it was purchased so how do I get

    I pre ordered a album and got songs then it came out so itunes sent me a confirmation and it said to go to available downloads and gave link so I did and it did nothing for me and when I went to the album I wanted it said it was purchased so how do I get my music and don't even see available downloads in the iTunes Store

    Check this link, http://www.apple.com/support/itunes/ and go to the contact page.
    Sorry, here you go https://ssl.apple.com/emea/support/itunes/contact.html
    Message was edited by: ChrisJ4203

  • How can i create link between ipad(xcode) and webserver?

    Hi, I'm a new to iPad development and i need help,
    i'm not good with english but i try to explain my question:
    how can i create link between ipad(xcode) and webserver?
    (the webserver ".NET" with driver odbc is connected with DB Oracle)
    so, how can my ipad application access to the Oracle DB?
    Create a webservice (.NET) to be place between iPad and DB, is this correct?
    how can i do it?
    which are libraries to include in the xcode's framework?
    thx

    I think the following URL will be your best answer:
    http://stackoverflow.com/questions/3510468/connecting-iphone-to-an-odbc-database

Maybe you are looking for