Tds details of vendor coming but not business area.

Hi Experts,
I am making a report to display vendor data with its TDS details in accounting documents.
I am getting all the data from other tables rather 1 table BSEG, which is a cluster table. I need to retrieve business are from BSEG i.e. (BSEG-GSBER).
I am using another select query for this, but when i put debugger at loop of business are, it is showing the data, but in alv display it is not showing business area.
Hence i need your help on that.
Please go through the program code given below.
Thanks,
Deepanshu Mathur
TABLES: BSEG,BKPF,WITH_ITEM,T059Z,T059ZT,LFA1.
DATA: BEGIN OF ITAB OCCURS 0,
        BELNR LIKE BKPF-BELNR,                    " Accounting Document Number
        GJAHR LIKE BKPF-GJAHR,                    " Fiscal Year
        BUKRS LIKE BKPF-BUKRS,                    " Company Code
        BLDAT LIKE BKPF-BLDAT,                    " Document Date in Document
        BUDAT LIKE BKPF-BUDAT,                    " Posting Date in the Document
        LIFNR LIKE BSEG-LIFNR,                    " Account Number of Vendor or Creditor
        GSBER LIKE BSEG-GSBER,                    " Business Area
        WT_QSSHH LIKE WITH_ITEM-WT_QSSHH,         " Withholding tax base amount (local currency)
        WT_QBSHH LIKE WITH_ITEM-WT_QBSHH,         " Withholding tax amount (in local currency)
        WITHT LIKE WITH_ITEM-WITHT,               " Indicator for withholding tax type
        WT_WITHCD LIKE WITH_ITEM-WT_WITHCD,       " Withholding tax code
        QSCOD LIKE T059Z-QSCOD,                   " Official Withholding Tax Key
        QSATZ LIKE T059Z-QSATZ,                   " Withholding tax rate
        NAME1 LIKE LFA1-NAME1,                    " vendor name
        LAND1 LIKE LFA1-LAND1,                    " Country Key
        TEXT40 LIKE T059ZT-TEXT40,                " Text, 40 Characters Long
        WAERS LIKE BKPF-WAERS,                    " Currency
        WT_ACCO LIKE WITH_ITEM-WT_ACCO,
      END OF ITAB.
DATA: BEGIN OF LT_BSEG OCCURS 0,
        BELNR LIKE BSEG-BELNR,                    " Accounting Document Number
        GJAHR LIKE BSEG-GJAHR,                    " Fiscal Year
        BUKRS LIKE BSEG-BUKRS,                    " Company Code
        LIFNR LIKE BSEG-LIFNR,                    " Account Number of Vendor or Creditor
        GSBER LIKE BSEG-GSBER,                    " Business Area
      END OF LT_BSEG.
SELECTION-SCREEN: BEGIN OF BLOCK FRAME WITH FRAME TITLE TEXT-001.
SELECT-OPTIONS: COCO FOR BKPF-BUKRS,
                DOC_DATE FOR BKPF-BLDAT,
                POST_DAT FOR BKPF-BUDAT,
                FIS_YEAR FOR BKPF-GJAHR.
SELECTION-SCREEN: END OF BLOCK FRAME.
TYPE-POOLS:slis.
DATA: body        TYPE slis_t_fieldcat_alv,
      header      TYPE slis_fieldcat_alv,
      gd_layout   TYPE slis_layout_alv,
      gd_repid    LIKE sy-repid.
START-OF-SELECTION.
  PERFORM FETCH.
END-OF-SELECTION.
*&      Form  FETCH
*       text
*  -->  p1        text
*  <--  p2        text
FORM FETCH .
SELECT
  BKPF~BELNR BKPF~GJAHR BKPF~BUKRS BKPF~BLDAT BKPF~BUDAT BKPF~WAERS
  WITH_ITEM~BELNR WITH_ITEM~GJAHR WITH_ITEM~BUKRS WITH_ITEM~WT_QSSHH WITH_ITEM~WT_QBSHH WITH_ITEM~WITHT
  WITH_ITEM~WT_WITHCD WITH_ITEM~WT_ACCO
  LFA1~LIFNR LFA1~NAME1 LFA1~LAND1
  T059Z~WITHT T059Z~WT_WITHCD T059Z~QSCOD T059Z~QSATZ
  T059ZT~WITHT T059ZT~TEXT40 T059ZT~WT_WITHCD
  INTO CORRESPONDING FIELDS OF TABLE ITAB FROM BKPF
  JOIN WITH_ITEM ON WITH_ITEM~BELNR = BKPF~BELNR AND
                    WITH_ITEM~GJAHR = BKPF~GJAHR AND
                    WITH_ITEM~BUKRS = BKPF~BUKRS AND
                    WITH_ITEM~WT_QSSHH NE ' ' AND WITH_ITEM~WT_QBSHH NE ' '
  JOIN LFA1 ON LFA1~LIFNR = WITH_ITEM~WT_ACCO
  JOIN T059Z ON T059Z~WITHT = WITH_ITEM~WITHT AND T059Z~WT_WITHCD = WITH_ITEM~WT_WITHCD
  JOIN T059ZT ON T059ZT~WITHT = WITH_ITEM~WITHT AND T059ZT~WT_WITHCD = WITH_ITEM~WT_WITHCD
  WHERE
        BKPF~BUKRS IN COCO AND
        BKPF~BLDAT IN DOC_DATE AND
        BKPF~BUDAT IN POST_DAT AND
        BKPF~GJAHR IN FIS_YEAR.
SELECT
  BELNR GJAHR BUKRS LIFNR GSBER
  FROM BSEG
  INTO CORRESPONDING FIELDS OF TABLE LT_BSEG
  FOR ALL ENTRIES IN ITAB
  WHERE BELNR = ITAB-BELNR AND GJAHR = ITAB-GJAHR AND BUKRS = ITAB-BUKRS AND LIFNR NE ' ' .
IF SY-SUBRC EQ 0.
SORT ITAB BY BLDAT BELNR.
LOOP AT LT_BSEG WHERE BELNR = ITAB-BELNR AND GJAHR = ITAB-GJAHR AND BUKRS = ITAB-BUKRS AND LIFNR NE ' '.
IF ( LT_BSEG-BELNR = ITAB-BELNR AND LT_BSEG-GJAHR = ITAB-GJAHR AND LT_BSEG-BUKRS = ITAB-BUKRS AND
     LT_BSEG-LIFNR NE ' ').
    MOVE LT_BSEG-GSBER TO ITAB-GSBER.
ENDIF.
APPEND ITAB.
ENDLOOP.
  PERFORM BUILD_LAYOUT.
  PERFORM FIELDCATALOG.
  PERFORM ALVDISPLAY.
ELSE.
  MESSAGE 'DATA NOT FOUND !' TYPE 'I'.
ENDIF.
ENDFORM.
*&      Form  BUILD_LAYOUT
*       text
*  -->  p1        text
*  <--  p2        text
FORM BUILD_LAYOUT .
  gd_layout-no_input          = 'X'.
  gd_layout-colwidth_optimize = 'X'.
  gd_layout-info_fieldname = 'WS_COLOR'.
  gd_LAYOUT-coltab_fieldname = 'CELL_COLOR'.
ENDFORM.                    " BUILD_LAYOUT
*&      Form  FIELDCATALOG
*       text
*  -->  p1        text
*  <--  p2        text
FORM FIELDCATALOG .
  header-col_pos = '1'.
  header-tabname = 'ITAB'.
  header-fieldname = 'BLDAT'.
  header-seltext_l = 'Doc. Date'.
  header-just = 'C'.
  APPEND header TO body.
  CLEAR header.
  header-col_pos = '2'.
  header-tabname = 'ITAB'.
  header-fieldname = 'BUDAT'.
  header-seltext_l = 'Posting Date'.
  header-just = 'C'.
  APPEND header TO body.
  CLEAR header.
  header-col_pos = '3'.
  header-tabname = 'ITAB'.
  header-fieldname = 'GJAHR'.
  header-seltext_l = 'Fiscal Year'.
  header-just = 'C'.
  APPEND header TO body.
  CLEAR header.
  header-col_pos = '4'.
  header-tabname = 'ITAB'.
  header-fieldname = 'BUKRS'.
  header-seltext_l = 'Company Code'.
  header-just = 'C'.
  APPEND header TO body.
  CLEAR header.
  header-col_pos = '5'.
  header-tabname = 'ITAB'.
  header-fieldname = 'GSBER'.
  header-ref_tabname = 'BSEG'.
  header-ref_fieldname = 'GSBER'.
  header-just = 'L'.
  APPEND header TO body.
  CLEAR header.
  header-col_pos = '6'.
  header-tabname = 'ITAB'.
  header-fieldname = 'BELNR'.
  header-seltext_l = 'Doc. No.'.
  header-ref_tabname = 'WITH_ITEM'.
  header-ref_fieldname = 'BELNR'.
  header-just = 'L'.
  APPEND header TO body.
  CLEAR header.
  header-col_pos = '7'.
  header-tabname = 'ITAB'.
  header-fieldname = 'LIFNR'.
  header-seltext_l = 'Vendor'.
  header-ref_tabname = 'LFA1'.
  header-ref_fieldname = 'LIFNR'.
  APPEND header TO body.
  CLEAR header.
  header-col_pos = '8'.
  header-tabname = 'ITAB'.
  header-fieldname = 'NAME1'.
  header-seltext_l = 'Vendor Name'.
  APPEND header TO body.
  CLEAR header.
  header-col_pos = '9'.
  header-tabname = 'ITAB'.
  header-fieldname = 'LAND1'.
  header-seltext_l = 'Country'.
  header-ref_tabname = 'LFA1'.
  header-ref_fieldname = 'LAND1'.
  header-just = 'C'.
  APPEND header TO body.
  CLEAR header.
  header-col_pos = '10'.
  header-tabname = 'ITAB'.
  header-fieldname = 'WITHT'.
  header-seltext_l = 'Withholding Tax Type'.
  header-ref_tabname = 'WITH_ITEM'.
  header-ref_fieldname = 'WITHT'.
  header-just = 'L'.
  APPEND header TO body.
  CLEAR header.
  header-col_pos = '11'.
  header-tabname = 'ITAB'.
  header-fieldname = 'WT_WITHCD'.
  header-seltext_l = 'Withholding Tax Code'.
  header-ref_tabname = 'WITH_ITEM'.
  header-ref_fieldname = 'WT_WITHCD'.
  header-just = 'L'.
  APPEND header TO body.
  CLEAR header.
  header-col_pos = '12'.
  header-tabname = 'ITAB'.
  header-fieldname = 'QSCOD'.
  header-seltext_l = 'Tax Key'.
  header-ref_tabname = 'T059Z'.
  header-ref_fieldname = 'QSCOD'.
  header-just = 'L'.
  APPEND header TO body.
  CLEAR header.
  header-col_pos = '13'.
  header-tabname = 'ITAB'.
  header-fieldname = 'TEXT40'.
  header-seltext_l = 'Section Code'.
  header-ref_tabname = 'T059ZT'.
  header-ref_fieldname = 'TEXT40'.
  header-just = 'L'.
  APPEND header TO body.
  CLEAR header.
  header-col_pos = '14'.
  header-tabname = 'ITAB'.
  header-fieldname = 'WAERS'.
  header-seltext_l = 'Currency'.
  header-just = 'C'.
  APPEND header TO body.
  CLEAR header.
  header-col_pos = '15'.
  header-tabname = 'ITAB'.
  header-fieldname = 'WT_QSSHH'.
  header-seltext_l = 'TDS Base Amount'.
  header-ref_tabname = 'WITH_ITEM'.
  header-ref_fieldname = 'WT_QSSHH'.
  header-do_sum = 'X'.
  header-just = 'R'.
  APPEND header TO body.
  CLEAR header.
  header-col_pos = '16'.
  header-tabname = 'ITAB'.
  header-fieldname = 'QSATZ'.
  header-seltext_l = 'TDS Tax Rate'.
  header-just = 'R'.
  APPEND header TO body.
  CLEAR header.
  header-col_pos = '17'.
  header-tabname = 'ITAB'.
  header-fieldname = 'WT_QBSHH'.
  header-seltext_l = 'TDS Amount'.
  header-ref_tabname = 'WITH_ITEM'.
  header-ref_fieldname = 'WT_QBSHH'.
  header-do_sum = 'X'.
  header-just = 'R'.
  APPEND header TO body.
  CLEAR header.
ENDFORM.                    " FIELDCATALOG
*&      Form  ALVDISPLAY
*       text
*  -->  p1        text
*  <--  p2        text
FORM ALVDISPLAY .
gd_repid = sy-repid.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
   i_callback_program      = gd_repid
   I_CALLBACK_TOP_OF_PAGE            = 'TOP_OF_PAGE'
   IS_LAYOUT                         = gd_layout
   IT_FIELDCAT                       = body
  TABLES
    T_OUTTAB                          = ITAB
EXCEPTIONS
   PROGRAM_ERROR                     = 1
   OTHERS                            = 2.
IF SY-SUBRC <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
ENDFORM.                    " ALVDISPLAY
Form TOP_OF_PAGE.
*ALV Header declarations
  data: t_header type slis_t_listheader,
        wa_header type slis_listheader,
        t_line like wa_header-info,
        ld_lines type i,
        ld_linesc(10) type c.
* Title
  wa_header-typ  = 'H'.     " H = Header
  wa_header-info = 'TDS Report'.
  append wa_header to t_header.
  clear wa_header.
* Date
  wa_header-typ  = 'S'.     " S = Selection
  wa_header-key = 'Date: '.
  CONCATENATE  sy-datum+6(2) '.'
               sy-datum+4(2) '.'
               sy-datum(4) INTO wa_header-info.   "todays date
  append wa_header to t_header.
  clear: wa_header.
* Total No. of Records Selected
  describe table ITAB lines ld_lines.
  ld_linesc = ld_lines.
  concatenate 'Total No. of Records Selected: ' ld_linesc
                    into t_line separated by space.
  wa_header-typ  = 'A'.     " A = Action
  wa_header-info = t_line.
  append wa_header to t_header.
  clear: wa_header, t_line.
  call function 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
      it_list_commentary = t_header.
*            i_logo             = 'Z_LOGO'.
endform.                    "top-of-page

Hi,
Try Below code.
1) your code is very bad I am not sure whether it will work or not because it has inner join queries on many tables.
2) I made certain changes, please check the data selection part as below
SELECT bkpf~belnr bkpf~gjahr bkpf~bukrs bkpf~bldat bkpf~budat bkpf~waers with_item~belnr
    with_item~gjahr with_item~bukrs with_item~wt_qsshh
  with_item~wt_qbshh with_item~witht with_item~wt_withcd with_item~wt_acco lfa1~lifnr
     lfa1~name1 lfa1~land1 t059z~witht t059z~wt_withcd t059z~qscod
     t059z~qsatz t059zt~witht t059zt~text40 t059zt~wt_withcd
    INTO CORRESPONDING FIELDS OF TABLE itab
     FROM bkpf
  INNER JOIN with_item ON with_item~belnr = bkpf~belnr AND with_item~gjahr = bkpf~gjahr
    AND with_item~bukrs = bkpf~bukrs AND with_item~wt_qsshh NE ' '
    AND with_item~wt_qbshh NE ' '
    INNER JOIN lfa1 ON lfa1~lifnr = with_item~wt_acco
    INNER JOIN t059z ON t059z~witht =
  with_item~witht AND t059z~wt_withcd = with_item~wt_withcd
    INNER JOIN t059zt ON t059zt~witht = with_item~witht AND t059zt~wt_withcd = with_item~wt_withcd
    WHERE bkpf~bukrs IN coco AND bkpf~bldat IN doc_date
    AND bkpf~budat IN post_dat AND bkpf~gjahr IN fis_year.
  IF itab[] IS NOT INITIAL.
    SELECT belnr gjahr bukrs lifnr gsber FROM bseg
      INTO CORRESPONDING FIELDS OF TABLE lt_bseg
      FOR ALL ENTRIES IN itab
      WHERE belnr = itab-belnr
      AND gjahr = itab-gjahr AND bukrs = itab-bukrs
      AND lifnr NE ' ' .
    IF sy-subrc EQ 0.
      SORT itab BY bldat belnr.
*    LOOP AT lt_bseg WHERE belnr = itab-belnr AND
*      gjahr = itab-gjahr AND bukrs = itab-bukrs AND lifnr NE ' '.
*      IF ( lt_bseg-belnr = itab-belnr AND lt_bseg-gjahr = itab-gjahr
*        AND lt_bseg-bukrs = itab-bukrs AND lt_bseg-lifnr NE ' ').
*        MOVE lt_bseg-gsber TO itab-gsber.
*      ENDIF.
*      APPEND itab.
*    ENDLOOP.
      LOOP AT itab.
        READ TABLE lt_bseg
        WITH KEY belnr = itab-belnr
        gjahr = itab-gjahr
         bukrs = itab-bukrs.
        MOVE lt_bseg-gsber TO itab-gsber.
        MODIFY itab.
        CLEAR :lt_bseg,itab.
      ENDLOOP.
      PERFORM build_layout. PERFORM fieldcatalog. PERFORM alvdisplay.
    ELSE.
      MESSAGE 'DATA NOT FOUND !' TYPE 'I'.
    ENDIF.
  ENDIF.

Similar Messages

  • I have multiple calendars set up but not all are displaying in iOS 7 notification center.  I just get a heading stating "there is one all-day event scheduled" in the tomorrow summary.  Can't get it to show the details of the event.  any ideas?

    I have multiple calendars set up but not all are displaying in iOS 7 notification center.  I just get a heading stating "there is one all-day event scheduled" in the tomorrow summary.  Can't get it to show the details of the event.  any ideas?

    have you tried rebooting your computer?

  • "Waiting for iPhone... " alwayz stuck at this stage...Already tried using DFU mode and many times...but always stuck at this stage. However in iphone APPLE LOGO and Status bar is coming but not processing ahead!

    "Waiting for iPhone... " alwayz stuck at this stage...Already tried using DFU mode and many times...but always stuck at this stage. However in iphone APPLE LOGO and Status bar is coming but not processing ahead! Even my device is not jailbroken.
    iTunes recognize this device and giving option for Restore. i go for it and in the continue process WAITING FOR iPHONE /// at this stage it stuck.. and keep serching like for something and in the iPhone APPLE LOGO and Status bar showing..but not processing further.

    Shaishel,
    Did you resolve this?  I am having the same problem!  Let me know if you have any suggestions.
    Thanks

  • TDS Details for Vendor

    Pls guide me how to enter the TDS related to Vendor master, where i have to enter and what is its Effect??
    I have created the new account group for Service vendors.

    Hi,
    In With holding Tax Country you can put the TDS related details for The vendor.
    Regards,
    Manish Jain

  • We required TDS details of vendor deducted billwise as well as

    Dear Experts..
    My client wanted to get details (WHT- Billwise as well as Vendor wise ).
    There is one standared t-code  J1INMIS which will give us the report (posting date/Vendor/WHT key wise). If they want to get report in production it will take tomuch of time and some times it's goes dump also due to huge data.
    Here my question is : Is there any other T-code which will give us the Billwise and vendorwise WHT line items apart from J1INMIS ???
    Thanks for your kind support.
    Thanks,
    Siva Reddy

    Hi,
    J1INMIS - Enter the value thro' Posting Period wise (ex: Enter 01.11.2011 to 28.11.2011) and select the First Vendor Code to Last Vendor Code.    In Report Selection > select Consolidated Report and execute - It gives the Vendor wise details.
    Hope it may useful to you.   Please check.
    Regards,
    GB

  • Eigen values are comeing but not in order

    import Jama.Matrix;
    import Jama.EigenvalueDecomposition;
    public class Eigenvalues1 {
    public static void main(String[] args)
         double[][] vals = {{64.45,0,0,0},{0,64.45,0,0},{0,0,64.45,0},{0,0,0,37.08}};
         double[][] vals1 = {{71284.72,-35642.36,0,0},{-35642.36,71284.72,-35642.36,0},{0,-35642.36,71284.72,-35642.36},{0,0,-35642.36,35642.36}};
         double[][] vals3 ;
         Matrix A = new Matrix(vals);
         Matrix b =new Matrix(vals1);     
         Matrix x = A.solve(b);
         EigenvalueDecomposition e = x.eig();
         System.out.print("A =");
         A.print(9, 6);     
         System.out.print("B =");
         b.print(9, 6);
         // System.out.print("X =");
         // x.print(9, 6);
         Matrix V= e.getV();
         System.out.print("V =");
         V.print(9, 6);
         Matrix D = e.getD();
         System.out.print("D =");
         D.print(9, 6);
         vals3=D.getArray();
         System.out.println(vals3[0][0]);
    A =
    64.450000 0.000000 0.000000 0.000000
    0.000000 64.450000 0.000000 0.000000
    0.000000 0.000000 64.450000 0.000000
    0.000000 0.000000 0.000000 37.080000
    B =
    71284.720000 -35642.360000 0.000000 0.000000
    -35642.360000 71284.720000 -35642.360000 0.000000
    0.000000 -35642.360000 71284.720000 -35642.360000
    0.000000 0.000000 -35642.360000 35642.360000
    V =
    -0.300181 0.587158 0.244871 0.612215
    0.520631 0.475758 0.453828 -0.408560
    -0.602797 -0.201664 0.596222 -0.339563
    0.524853 -0.639161 0.651169 0.635167
    D =
    2065.205168 0.000000 0.000000 0.000000
    0.000000 657.947244 0.000000 0.000000
    0.000000 0.000000 81.111020 0.000000
    0.000000 0.000000 0.000000 1475.105837
    bookish eigen values
    81.1110200.000000 0.000000 0.000000
    0.000000 657.947244 0.000000 0.000000
    0.000000 0.000000 1475.105837 0.000000
    0.000000 0.000000 0.000000 2065.205168
    this are the correct eigen values according to book as well as Matlab program

    Again, as in [|http://forums.sun.com/thread.jspa?threadID=5404814] and [>>this thread<<|http://forums.sun.com/thread.jspa?threadID=5404880], ask them. Or, at least identify, clearly in the subject that this post conerns the JAMA library and only the Jama library.
    But once again, did you bother to read the docs for that class? Does it say anything about any kind of ordering?

  • Can any one help me to configure the mysql table to enable user expiration to function, I have tryed most things, but not dates are being passed back to the data base from the form

    Im trying to build  user expiration into my registration form, but I cant get the form to send back the date registering.
    in my data base i have tried every thing from timestamp to datetime. I can get a timestamp but it is not functioning with the expiration?

    just have a look at my tutorial Login tables: installation & configuration where the required column attributes are explained and where you can obtain a fully functional SQL dump for a typical ADDT "login" and (optionally) "login_stats" table.
    BTW, "expiration" will have to be an "int" column.
    Cheers,
    Günter

  • Update 3.615 unable to load; says to close firefox and try again but not versions are on.

    do I need to uninstall upgrade and if so how do i do that?

    Sounds like a "hang at exit" problem. There are several possible causes for that error. See:
    * How to stop the running Firefox process
    ** In Task Manager, does firefox.exe show in the '''<u>Processes</u>''' tab?
    ** See: http://kb.mozillazine.org/Kill_application
    * What may cause Firefox to hang at exit
    ** http://support.mozilla.com/en-US/kb/Firefox+hangs (see "Hang at exit" section)
    ** http://kb.mozillazine.org/Firefox_hangs
    ** https://support.mozilla.com/en-US/kb/Firefox+is+already+running+but+is+not+responding
    * You may need to try Firefox Safe Mode
    ** You may need to use '''Safe Mode''' to locate the problem: http://support.mozilla.com/en-US/kb/Safe+Mode
    **Firefox Safe Mode is a diagnostic mode that disables Extensions and some other features of Firefox. If you are using a theme, switch to the DEFAULT theme: Tools > Add-ons > Themes '''<u>before</u>''' starting Safe Mode. When entering Safe Mode, do not check any items on the entry window, just click "Continue in Safe Mode". Test to see if the problem you are experiencing is corrected.
    ** If the problem does not occur in Safe-mode then disable all of your Extensions and Plug-ins and then try to find which is causing it by enabling '''<u>one at a time</u>''' until the problem reappears. '''<u>You MUST close and restart Firefox after EACH change</u>''' via File > Restart Firefox (on Mac: Firefox > Quit). You can use "Disable all add-ons" on the Safe mode start window.
    ** See the following for more information
    *** http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes
    *** http://support.mozilla.com/en-US/kb/Troubleshooting+plugins
    *** http://support.mozilla.com/en-US/kb/Basic+Troubleshooting

  • I just got a new iPad air and also own an iPhone 5. I'm receiving most of my text messages on the iPhone, but some but not all are also showing up on my iPad. I don't want them on my iPad, any suggestions on how to get them to stop showing up n my iPad?

    I just got a new iPad air and also own an iPhone 5. I'm receiving most of my text messages on the iPhone, but some are now also showing up on my iPad. I don't want them on my iPad, any suggestions on how to get them to stop showing up n my iPad?

    Go to settings>messages>send and receive at>you can be reached by iMessages at> Uncheck your phone number and you can select your Apple ID emal address if you want to use that for messages.

  • HT201272 my purchases are showing as downloaded but not all are actually downloaded how do i get them to download?

    how do i download purchases already showing as downloaded but were never actually downloaded?

    If they show as 'downloaded' in the Purchased link under Quicklinks on the right-hand side of the iTunes store homepage on your computer's iTunes then are they listed in your iTunes library e.g. if they are music tracks are they shown in the Music section where you would normally click on them to play them ? If they are then iTunes is seeing them and assuming that you have them somewhere, even if you don't have the actual music (or film, TV programme etc) file on that computer - try deleting that entry from your library and they should get the cloud symbol against them in the Purchased link for re-downloading.

  • Locking form but not fillable areas so Adobe Readers can use it.

    I made a form in Adobe Acrobat 9 that has fillable fields in it. When I email it to people they are unable to save it. The pop-up message they get is below.
    I use security setting to make it compatible with Acrobat 3.0 and above, set Permissions with Changes Allowed (Commenting, filling in form fields, and signing existing signature fields)
    What do I need to do to fix this?
    Thanks,

    In Acrobat, select: Advanced > Extend Features in Adobe Reader
    This will give the document certain usage rights and allow Reader users to save a modified document.

  • F-58 Error. vendor name printed but not Alternative payee

    Dear group members
    _Vendor name printed but not the name i entered in Individual set_
    I followed Thread vendor name changed at the time of taking cheque printing
    I made the below Transaction
    1. I made the changes in vendor master under the head Payment transaction tab, in Alternative payer in document i selected check box of Individual entries
    2. Posted in FB60 vendor invoice under payment tab check box Individual payee is selected, i entered alternative name so that check is printed in this name
    3.In payment F-58 post & print i selected open item for payment after simulation i saved .The check is printed as per the
    Name in Vendor master data but not the name i entered in Individ.setin fb60
    I am not able to make to make payment, guide me 
    Your advice on this will be highly appreciated
    Regards
    shamulheq

    Hi  MUKTAKUMARI  
    I entered the bank details in the individual payee while entering FB60, the name coming in indiviid .set
    In F-58 I made simulation Pk 50 QNB -Checks Payable & PK 25 vendor name, when i double click on the 2nd line item i found the name what mentioned in the Individ.set
    I saved the transaction but the check was printed in the name of vendor master but not in the name i entered in indiviid set
    Help me out to get the  check printed in the individ set
    Regards
    shamulheq

  • MIRO - Business Area not getting updated in Vendor Line item

    Hello friends,
    I am posting Vendor invoice in MIRO transaction.
    After Posting if i see the financial document generated,
    Business area has not got updated in Vendor Line item.
    What could be the problem ?
    Please help me out.
    Hari Prasath

    Hi Kale,
    Make sure the field Business area is not supressed in tx. OB14. for the GL account in line item 001.
    On the other hand, have a look to the note and kba below:
    41294 - Business area in customer/vendor item
    Kba 1727802 - Business area not getting populated in sales/ purchase tax

  • Business Area for Vendor Line Items during Payroll Posting

    Dear All
    We are in ECC 6 version of SAP. We are using Business Area for Internal Financial Statement. We are facing a problem with regard to Business area in Payroll posting. Business area does not appear in vendor line items when we make posting of payroll for multiple business area. We have setting technical accounts for HR. We read SAP note 203276 and it seems that it is possible. Can someone tell us what is the reason that business area not coming in vendor line item while payroll posting.

    Hi
    That part we have already done. The problem only come when we run payroll and there are vendors belonging to several business area in that case system keep the business area field blank. In case if we set field status required system give error. That is why we run payroll by each business area we also have maintained technical account for 1001.
    Regards

  • Business Area not accessible

    Hello,
    I have created a new business area and granted access to a user buy going into Tools - Security option. But this business area is not accessible to the user from Discoverer Desktop. What could be the reason. I am unable to go in to the Tools - Privilges option as it is disabled.
    Please help
    Thanks

    Hi,
    Can this user connect to the EUL with Disco Desktop? Can the user see other Business Areas? If so then the problem could be at the database level, and the user does not have database privileges to access the database objects referenced in these folders.
    Rod West

Maybe you are looking for

  • SQL Developer vs. SQL*Plus Performance???

    Hi, DB: Oracle 10.2.0.3.0 SQL Developer: 1.2.0 SQL*Plus: 10.2.0.3.0 I am running the same query once in SQL Developer (Response time 10 sec.) The same query in SQL*Plus takes over 20 Minutes. SQL*Plus is using SQL*Net right? Is that the reason? Thank

  • SAP Upgrade 4.7ee to ECC 6.0

    Dear experts we are planing SAP Upgrade 4.6 C to ECC 6.0 on windows 2003 Server with Oracle Database please anybody explain prerequests and post upgrade activities and upgrade phase's. what are the phase's are inportant...to monitor Regards Bandla

  • Where is the Printer Preferences Dialog?

    I'm running PSE 6 for Mac on an iMac using Leopard.  Printer is Canon iP6600D.  After calibrating the monitor (using Apple's program under System Preferences), I opened a jpg on my desktop and made a print, and it matches the monitor fairly closely. 

  • Default Mail Account Changes

    I have multiple mail accounts enabled on the iPhone. Periodically, the default mail account keeps reverting to the first account on the list. Any idea what causes this, and how to stop it?

  • Illustrator cc2014 crashes when startup

    message: Process: Adobe Illustrator [86204] Path: /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator Identifier: com.adobe.illustrator Version: 18.1.0 (18.1.0) Code Type: X86-64 (Native) Parent Process:  ??