New TDS requirement SAP note 1486147

Hello,
This is regarding the new TDS requirement for which SAP note 1486147 has to be implemented.
The problem is that we have implemented the note and also maintained entries in J_1I_SECCO_CIT as well as the entries in J_1IEWT_ACKN.
When we do the testing we are constantly getting one error " J1IN:016"
This error code is not defined in SE91.
If any one has handled such a scenario please let us know.
Regards

Hi,
Achnowledgement details comes in table it_qrtrtab at run time in the smartform, you can dibug the program j_1iewt_cert and smartforms J_1iewt_cert where at run time you will able to see data avaialability, If values are not available in this internal table then check related notes given by SAP, I have already implemented this note and also faced same issue but my FI consultant has given me the related note and my issue was resolved.
Please checkout related notes and data population in the dibugger.
Regards,
Umang Mehta

Similar Messages

  • Issue with implementing SAP note 1486147.

    I am trying to implement SAP note  1486147. My software component is SAP_APPL and release is 603. But the prerequisite notes (1148361 and 1339658) are  getting incompletely implemented with activation errors because of which I am not able to implement the main note 1486147.
    I have created all the DDIC elements as mentioned in the note.Also created the smartform. Has anyone successfully impemented this note? Is there anything else to be done other than what is mentioned in the note?

    Hi,
    Resolved the issues. Before applying the note i had made manual corrections in J_1IEWT_CERT because of which my system was not implementing the note. I reversed back all manual changes i had made and then applied the note. It got successfully implemented.
    Edited by: lyviaCardoza on Sep 3, 2010 7:24 AM

  • TS1702 app's will not install, message reads newer OS required or not compatible with ipod

    I have just updated my old ipod touch and after restore failing I have had to setup as new ipod, but now can not intall all my apps. i have tried installing app from store and message reads app not compatible with ipod or newer OS required.

    Your only way is if you have the version that was compatible on your computer such as in the recycle bin/trash or in a computer file backup. In that case delete the current version that is in your iTunes App library and replace it with the older version. Then sync.
    Also, to find compatilbe apps:
    VintApps 3.1.3 for iPhone, iPod touch, and iPad on the iTunes App Store
    apps for ios 4.2.1: Apple Support Communities
    Finding iOS 4.2.1 Apps Compatible with Older Devices - Apple Club
    HT4972 Touch Game 4.2.1 Apps: Apple Support Communities
    apps for 4.2.1 (also works for 3.1.3)
    Tip - Finding 4.2.1 apps that work on an...: Apple Support Communities
    4.2.1 iPod 2nd generation unable to use any...: Apple Support Communities

  • SAP Note 1486147 - TDS line item details not flowing in Form 16 A Samrtform

    1.     Old Form 16 certificate is printed before 01.04.2010 and new certificate after 01.04.2010. (its correct SAP has written code in such a manner Old one is SAP script and new on is Smartform.)
    Old FORM 16 A gets Acknowledgement No details correctly.
    2.     Acknowledgment No details are not flowing in the NEW Smart Form of Form 16 A.
    When I debug the program I can see PARTNER No details are copied in PAN NO field in TABLE : IT_LFA11[]
    BUT PARTNER NO details are copied to PARTNERNO field  in TABLE IT_LAFA1[].
    TDS line item details on Smart Form is printed based on Partner no. here partner no. is blank as IT_LFA11 table is passed to smartform..
    Program name : J_1IEWT_CERT
    Include name : J_1IEWT_CERT_F01.
    Code:
    FORM CALL_FORM .
      DATA: h_formname TYPE tdsfname,
              h_fmname TYPE rs38l_fnam,
              h_output_info  TYPE  ssfcrescl,
              h_spoolids TYPE LINE OF ssfcrescl-spoolids,
              h_output_options TYPE ssfcompop,
               spoolno(10) TYPE c.
      DATA : it_lfa11 TYPE STANDARD TABLE OF J_1I_LFA1 INITIAL SIZE 0,
             it_printtab TYPE STANDARD TABLE OF J_1I_PRINTTAB INITIAL SIZE 0,
             it_deduc TYPE STANDARD TABLE OF J_1I_DEDUCTEE INITIAL SIZE 0,
             it_qrtrtab TYPE STANDARD TABLE OF J_1I_QRTRTAB INITIAL SIZE 0,
             it_challan TYPE STANDARD TABLE OF J_1I_CHALLANDETAB INITIAL SIZE 0.
      SORT challandetab BY j_1iextchdt DESCENDING.
      it_lfa11[] = it_lfa1[].
      it_printtab[] = printtab[].
      it_deduc[] = it_deductor[].
      it_qrtrtab[] = qrtrtab[].
      it_challan[] = challandetab[].
      h_output_options-tdnewid    = 'X'.
      h_formname = layout.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname                 = h_formname
    *   VARIANT                  = ' '
    *   DIRECT_CALL              = ' '
       IMPORTING
         fm_name                  = h_fmname
    * EXCEPTIONS
    *   NO_FORM                  = 1
    *   NO_FUNCTION_MODULE       = 2
    *   OTHERS                   = 3
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL FUNCTION h_fmname
    EXPORTING
    *   ARCHIVE_INDEX              =
    *   ARCHIVE_INDEX_TAB          =
    *   ARCHIVE_PARAMETERS         =
    *   CONTROL_PARAMETERS         =
    *   MAIL_APPL_OBJ              =
    *   MAIL_RECIPIENT             =
    *   MAIL_SENDER                =
       OUTPUT_OPTIONS             = h_output_options
    *   USER_SETTINGS              = 'X'
    IMPORTING
    *   DOCUMENT_OUTPUT_INFO       =
       job_output_info            =  h_output_info
    *   JOB_OUTPUT_OPTIONS         =
        TABLES
          it_lfa1                    =   it_lfa11
          it_printtab                = it_printtab
          it_deductee                = it_deduc
          it_qrtrtab                 = it_qrtrtab
          it_challandetab            = it_challan
    * EXCEPTIONS
    *   FORMATTING_ERROR           = 1
    *   INTERNAL_ERROR             = 2
    *   SEND_ERROR                 = 3
    *   USER_CANCELED              = 4
    *   OTHERS                     = 5
      IF sy-subrc = 0.                                          "1375614
        CLEAR :spoolno,h_spoolids.
        READ TABLE h_output_info-spoolids INTO h_spoolids INDEX 1.
        IF h_spoolids IS NOT INITIAL.
          spoolno  = h_spoolids.
          CONDENSE :spoolno.
          MESSAGE i155(id_wt) WITH spoolno.
          PERFORM update_cert_tables.
        ENDIF.
      ENDIF.
      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.     
    Can anyone Please help me to get TDS details on the Smartform.
    Regards,
    DivyaLalwani.
    Edited by: kishan P on Feb 23, 2011 1:28 PM

    Hi,
    Achnowledgement details comes in table it_qrtrtab at run time in the smartform, you can dibug the program j_1iewt_cert and smartforms J_1iewt_cert where at run time you will able to see data avaialability, If values are not available in this internal table then check related notes given by SAP, I have already implemented this note and also faced same issue but my FI consultant has given me the related note and my issue was resolved.
    Please checkout related notes and data population in the dibugger.
    Regards,
    Umang Mehta

  • BSP error while adding an SAP Note to my Favorites list...

    Hi,
    I have an SAP Service user-id(service.sap.com market place user id).
      Once after finding the required SAP Note for my issue I am trying to add that SAP Note to my favorites list.
      But system is issueing a BSP page error as follows. Can you please tell me how to add an SAP Note to your favorites list...
    ===================================
    Business Server Page (BSP) Error
    What happened?
    Call of BSP page terminated due to error.
    Note
    Following error text processed in system:
    An exception with the type CX_SY_RANGE_OUT_OF_BOUNDS occurred, but was neither handled locally, nor declared in a RAISING clause
    Exception Class CX_SY_RANGE_OUT_OF_BOUNDS
    Error name STRING_OFFSET_TOO_LARGE
    Program CL_O29E2JGD0M2HLPZ4ERRFVYKRX1RCP
    Include CL_O29E2JGD0M2HLPZ4ERRFVYKRX1RCM009
    ABAP Class CL_O29E2JGD0M2HLPZ4ERRFVYKRX1R
    Method _ONINPUTPROCESSING
    BSP Application /SPN/FAVORITES
    BSP Page ADD_LINK.HTM
    Row 114 
    Long Text -
    Error Type: Exception
    Your SAP Business Server Pages Team
    ===========================================
    Thanks in advance...
    Regards,
    Bharat.

    Hi,
    It is a one-time error or do this occurs each time ?
    Did you choose a really long name or something (the "String offset" description tends to prove it has to deal with some string length) ?
    Otherwise, open an OSS message.
    Best regards,
    Guillaume

  • How to know side effects of implementing an SAP Note

    Hi All,
    Im new in implementing SAP Note.
    Kindly suggest how to analyize whether implementing an SAP Note will cause some side effect.
    How to do that ,I think just by looking at code can we assure that there will be no side effects.
    Kindly suggest.

    hello,
    the easiest way is to implement note and check the functionality manually for example execute transaction and post document or you could open the correction object (ABAP code) and analyse the correction which ll be imported and how those changes will effect your systems work. if you implemented the note and you noticed that corrections destroyed your previous functionality then you could rollback the note in your development system.
    best regards
    dez_

  • Is the SAP note (old, 2001 year) valid?

    Hi!
    I am trying to create source system in BW  to connect from BW-system  to SAP source system.  I can connect to SAP system but when I click on use (RFC connection) I get message "Error during insert in port table". I found SAP note with number 110849 but it is was released in 2001 year. I work with Netweaver 7.0. Can I use this note to correct error?
    Thanks,
    Olga

    Olga,
    There is another alternative solution here which does not require transaction SNOTE usage - go to SAP Service Marketplace, open the required SAP Note and check section "Affected Releases", where you will be able to find out information on software components' release versions which are affected. Just find out if the one which you use is in the list - if not, then the SAP Note is not applicable for your system. The second step in case the first one is passed and you found your release version in the list of affected releases is to verify Support Package level: ensure that Support Package which delivers the correction for this software component hasn't yet been implemented in your system (if it or higher Support Packages are implemented, then you should already have the correction applied in your system).
    My regards,
    Vadim

  • SAP NOTES QUERY

    Hi ,
    can anyone help me with the problem i am facing.
    Sap Note No. :  951764
    When the Note is applied to Object BAPI_XBP_JOB_SPOOLLIST_READ_20, a syntax error is generated.
    Technically, a fields "plain" is not defined in the function module import parameters.
    And in Correction instructions of the SAP Note, there is no mention for the same.
    Also,
    Explain the concept of sap notes.
    Its urgent
    answers will be rewarded.

    Hi
    To check the SAP Notes you need to have the OSS User Id to logon.
    Goto www.service.sap.com-> SAP Support Portal--> Enter your OSS User ID
    Search for required SAP Note. And open the Note.
    The SAP Note describes you the how to modify the program,.
    First check the Componet information from your SAP system.. Goto> system> status---> Component Information.
    Then for each Component (SAP_APPL -- 470, 500, 600....)there will be different modification.
    Now choose your Component and replace the code from SAP Note Correction instructions to your SAP Syatem.
    Thanks & Regards,
    Dileep .C

  • Query About Sap Notes

    Hi,
    I want to know where can I get more indformation about SAP notes.
    e.g.  We have a sap note no. 'note 871787' , for a newly piece of code added to a standard function module.
    Where can i get motre information about this note .

    Hi
    To check the SAP Notes you need to have the OSS User Id to logon.
    Goto www.service.sap.com-> SAP Support Portal--> Enter your OSS User ID
    Search for required SAP Note. And open the Note.
    The SAP Note describes you the how to modify the program,.
    First check the Componet information from your SAP system.. Goto> system> status---> Component Information.
    Then for each Component (SAP_APPL -- 470, 500, 600....)there will be different modification.
    Now choose your Component and replace the code from SAP Note Correction instructions to your SAP Syatem.
    Thanks & Regards,
    Dileep .C

  • SAP Note 0001590226 mopz

    hi
    when i execute and reach the step 'download files' it shows me following message, i should just apply this note in snote in solman? it will impact anything? because currently mopz work fine to confirm download basket
    It is required to implement SAP Note 0001590226 version 0009

    hi
    solman is 701 ehp1, sap_basis is sp6, when i click on help it show the below:
    It is required to implement SAP Note 0001590226 version 0009
    CL_FREETEXT_MESSAGE
    It is required to implement SAP Note 0001590226 version 0009
    Message no. MOPZ_MSG_GENERAL004
    Procedure
    Maintenance Optimizer has determined that your Solution Manager system
    has not implemented the SAP Note with the version. As the version of the
    SAP Note contains basic important corrections for the support package,
    it is required to implement. Check the log to see all required SAP
    Notes.
    It's mandatory to implement mopz central notes.

  • New field in Infotype 0009- to update IFSC Code- SAP Note Required

    Dear consultants,
    One of my client want to maintain their employees IFSC code in the Infotype 0009, where one new field required for this to update IFSC number.
    Which SAP note can fulfill this requirement, please do needful.
    Thanks & Regards,
    Navesh

    Dear Supriya,
    Thanks for quick responce, It is helpful. pelase do needful on below issue.
    http://scn.sap.com/thread/3517340
    Regards,
    Navesh

  • Moved Music to New Hard Drive - Required folder not found??? pls help

    Hello
    I have recently purchased a new external hard drive as my crappy Dell was full to the brim with music.
    I have moved all my music files over to the hard drive and re installed itunes.
    Now when i drag my music folder into the itunes library it updates but the shortly after an error message occurs that says:-
    'Itunes Libray music file cannot be saved. Required folder not found'
    Previously i have saved my itunes folder within my music folder?.
    Now everytime i close down itunes all my music has gone from it!??
    Any suggestions....sorry if being really ignorant..not too profficient on computers..
    Thanks in advance.
    Sam
    Dell PC Windows XP
    Dell PC   Windows XP  

    I think itunes by default looks inside you my music folder. In the itunes preferences screen there is an option to select a new folder to your library. Change the path to the music folder on your external drive. Make sure to always have the drive turned on before launching itunes though.
    You may also be able to replace the my music folder with a shortcut to the music folder on the external drive. This behavior may not work in windows though so I'm not sure.

  • What is the new sap note for Ptax slabs of FY 2011-12.

    Dear Experts,
                       we are currently using  ECC  6.0, release 604, patch level 0035 and support package SAPKE60435. professional tax slabs not updated in table V_T7INP4.
    what is the new sap note for Ptax slabs of FY 2011-12.

    Hi,
    The Profession Tax tables T7INP3 & T7INP4 are customizing tables in which the entries are to be modified. SAP provides the initial entries and, if there is any change in slab rates, then you would need to update these slabs manually.
    Please delimit the slab code in table T7INP3 and then create a new slab code entry from the date of delimition for the new rates in table T7INP4.
    Regards,
    Nishtha

  • KE5Z : UserExit or SAP Note for adding new fields in the report output

    Hi,
    I want to add 2 new fields in KE5Z (Profit Center: Actual Line Items) report output.
    Order reason(AUGRU), Sales Document Type (AUART) fields.
    Is there any UserExit or SAP Note available for this....
    Thanks in advance,
    fractal

    Hi Fractal,
    See if Note 92864 will help you.
    Summary
    Symptom
    Through a modification, it is possible for you to include additional fields in the profit center line-item reports 'actual' and 'plan' (Release 3.1*).
    Additional key words
    KE5Z, KE5Y, RCOPCA02, RCOPCA08 -
    SUPPORTGUIDE 20010613143936 -
    REPORTWRITER,
    SGRW_OM SGRW_PS SGRW_PC SGRW_SL SGRW_PCA SGRW_EC SGRW_LIS
    Cause and prerequisites
    The fields must be located in table GLPCA (for actual) or GLPCP (for plan).
    For Release 3.0F, you should ensure you have applied Note 62511 first.
    Solution
    To include a field in the actual line item report, proceed as follows:
    Call the ABAP/4 Dictionary (Transaction SE11) and display table GLPCA. You can then find in a line the field name and data element for the field you want to include.
    Return to the initial screen of the ABAP/4 Dictionary. Now change the structure RPCA2. If the structure does not yet contain the field, you select Edit -> Insert field; enter the field name and data element. Do not insert the new field at the beginning of the structure but in the rear half of the structure.
    Then save and activate the structure.
    Now call the ABAP Editor (Transaction SE38). Change the source code of program RCOPCA02. Insert the lines set out in the attachment in FORM routine FIELDCAT_FILL. When you do this, replace SGTXT by the field name of the field. If you normally want the field to be displayed when you the access the report, delete the line   afield-no_out      = 'X'.                "<<<< insert Note 92864 .
    You should note that the place where you insert the lines influences the position of the column in the report list.
    To include a field in the Plan-line-item report, carry out the same procedure except with table GLPCP, structure RPCA8 and program RCOPCA08.
    Note: Pls check if these 2 fields are available in any of the layout versions you have available with the transaction.
    Cheers,
    Vikram
    Pls reward for helpful replies!!

  • How to config new plant in SAP MM. Steps required

    how to config new plant in SAP MM. Steps required pls help

    Hi,
    1S pro---enterprise structure-definition -logistic general-define,check ,delete plant
    here click on copy object icon
    then copy your plant from stander plant or existing one
    2and then define storage location if required
    3then assign plant to company code
    4if purchasing organization is there for your plant then assign plant to purchasing organization
    Regards
    kailas

Maybe you are looking for

  • AIA FP 11.1.1.7 installation on Win 7 64 bit.

    Hi All, i am facing a nagging installation issue while installing AIA FP 11.1.1.7 installation on Win 7 64 bit machine. Problem statement- The dreaded PremGen error while AIA installation. Summary of what had been done- 1) DB installed successfully.

  • HT204291 Problem with AirPlay logo

    The AirPlay logo doesn't appear in the menu bar on our iPad. Any suggestions to solve this are most welcome. Thank you.

  • Adobe Creative Suite 6 Design and Web Premium Education Edition

    I was given an uninstalled Adobe Creative Suite 6 Design and Web Premium Education Edition by a guy who purchased the wrong product.  He purchased a PC version but he has a Mac.  He was unable to install it and unable to return it because the package

  • QT Export Quality problems

    I am trying to export from LT to a QT self-contained Qt.mov. When I render the clip in LT it looks fine. When I export it using QT 7.2 Pro I have the quality set at BEST the size set to 720 x 486 which is what I need but when finished I have a very p

  • How to install and configure "SAP MAPI Service Provider" in 470(basis 620)?

    Hi everyone, Requse: Send E-mail from SAP and Recive E-mail from MS outlook2003. My question: How to install and configure "SAP MAPI Service Provider" in 470(basis 620)? For example: Which setting need to do in R/3 server? Which parameters need to se