Facing problem in applying the apply the note sapnote 1046758

Dear All,
To display acknowledgement number in Form No 16A
I am facing problem in applying the apply the note sapnote 1046758 there is one TDS_Certificate_500.sar as attachment I have to apply in the system.
After uncar the file there are 2 file with the exetion K105630.P6D and R105630.P6D.
Please suggest how can I apply.
Regards,

Hi Suman,
Thanks a lot but I am facing again an problem in using the T-code SAINT it is give an error
You can only use the display mode
Reason: OCS is locked by transaction SPAM
Process all the steps of the transaction SPAM until they are completed
After see the SPAM there an support package Queue SAPKH50012 and
The status
Queue is defined for the
Software Component:   SAP_APPL
SPAM status: there there is yellow light
Next action:      Import queue
Pease suggest me how can I unlocked  transaction SPAM or release spam from queue.
Regards,

Similar Messages

  • Facing problems with network due which the phone goes into hangs status

    Facing problems with network due which the phone goes into hangs status.  some one help me with switching between 2g and 3G network

    Hi Mani Nair,
    I apologize, I'm a bit unclear on the exact nature of the issue you are describing. If you are talking about having issues with a 3G cellular data network, you may find the troubleshooting steps outlined in the following article helpful:
    iPhone cellular data connection issues
    Regards,
    - Brenden

  • Facing problem in excel attachment in the Email

    Hi,
    I am facing one issue while sending an email with an excel attachment . In the excel attachment the actual number of line items are not displaying . For example if i have 4 rows in my internal table the excel shows only the first row of the internal table.
    Can anybody suggest what is the issue.
    Regards,
    Ratheesh BS

    Hi ,
    Please find the code used.
       WRITE: sy-datum TO l_date MM/DD/YY.
        CONCATENATE  text-014   "Enterprise workflow(s) are in ERROR status
                     l_date
                     INTO l_text
                     SEPARATED BY c_colon.
        wa_doc_data-obj_langu  = sy-langu.
        wa_doc_data-obj_name   = text-013.  "SAPRPT
        wa_doc_data-obj_descr  = l_text.
        wa_doc_data-sensitivty = c_false.
    Fill the document data and get size of attachment
         DESCRIBE TABLE i_attach LINES l_cnt.
         READ TABLE i_attach INTO wa_attach INDEX l_cnt.
        IF sy-subrc EQ 0.
          l_size = STRLEN( wa_attach ).
          l_docsize =   ( ( l_cnt - 1 ) * c_length255 + l_size ).
          wa_doc_data-doc_size   = l_docsize.
          wa_doc_data-obj_langu  = sy-langu.
          wa_doc_data-obj_name   = text-013.  "SAPRPT
          wa_doc_data-obj_descr  = l_text.
          wa_doc_data-sensitivty = c_false.
        ENDIF.
        lt_attachment[] = i_attach[]." XLS attachment details
    Describe the body of the message
        CLEAR wa_packing_list.
        REFRESH lt_packing_list.
        wa_packing_list-transf_bin = space.
        wa_packing_list-head_start = 1.
        wa_packing_list-head_num   = 0.
        wa_packing_list-body_start = 1.
       DESCRIBE TABLE lt_message LINES wa_packing_list-body_num .
        wa_packing_list-doc_type   = c_raw.
        APPEND wa_packing_list TO lt_packing_list.
        CLEAR wa_packing_list.
    *l_docsize = 5000.
    Create attachment notification
        wa_packing_list-transf_bin = c_active.
        wa_packing_list-head_start = 1.
        wa_packing_list-head_num   = 1.
        wa_packing_list-body_start = 1.
        DESCRIBE TABLE lt_attachment LINES wa_packing_list-body_num.
        wa_packing_list-doc_type   =  c_xls.
        wa_packing_list-obj_descr  =  text-022.
        wa_packing_list-doc_size  =  wa_packing_list-body_num * c_length255.
        APPEND wa_packing_list TO lt_packing_list.
        CLEAR: wa_packing_list,l_cnt.
    Email to be sent for multiple receivers
    Add the recipients email address
        LOOP AT s_receiv INTO wa_email.
          l_email = wa_email-low.
          wa_receivers-rec_type   = c_rectyp.
          wa_receivers-receiver   = l_email.
          wa_receivers-com_type   = c_internet.
          wa_receivers-notif_del  = c_true.
          wa_receivers-notif_ndel = c_true.
          APPEND wa_receivers  TO lt_receivers.
          CLEAR : wa_receivers, wa_email, l_email.
        ENDLOOP.
        IF lt_receivers[] IS NOT INITIAL AND
           i_itemrecord[] IS NOT INITIAL.
    email sender
          l_sender_address = sy-uname.   " Stores the sender's address
    *Function  module to handel mail sending.
          CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
            EXPORTING
              document_data                    = wa_doc_data
              put_in_outbox                    = c_true
              sender_address                   = l_sender_address
              sender_address_type              = c_sender_address_type
              commit_work                      = c_true
        IMPORTING
          SENT_TO_ALL                      =
            TABLES
              packing_list                     = lt_packing_list
              contents_bin                     = lt_attachment
             contents_hex                     = lt_attachment1
              contents_txt                     = lt_message
              receivers                        = lt_receivers
           EXCEPTIONS
              too_many_receivers               = 1
              document_not_sent                = 2
              document_type_not_exist          = 3
              operation_no_authorization       = 4
              parameter_error                  = 5
              x_error                          = 6
              enqueue_error                    = 7
             OTHERS                            = 8

  • Facing problem when trying to start the addon manually

    Hi,
    I have created an add-on using simple addon installer project. The prepared addon has been installed successfully. After installation, when trying to start the addon manually by Add-On Manager,
    The addon exe is giving an error message at the line when try to instantiate the SboGuiApi.
    "SAPbouiCOM.SboGuiApi SboGuiApi = new SAPbouiCOM.SboGuiApi();"
    The error message is -
    "Could not load file or assembly 'Interop.SAPbouiCOM, Version=6.8.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified."
    and finally it gives an error message "Add-On connection timed out".
    Note: At the development end we have tested it on our two systems its working properly. But on the production system its giving the error
    Please help!! its urgent...
    Regards,
    Ashok

    Hi suresh,
    I have tried it number of times, but the problem not been addressed yet.
    Or can you please clearify what exactly do you mean by UIAPI.
    What we have did at our end is -
    Just removed the SAPbouiCOM.dll from the references and add it again.
    "I am using SBO 2005A SP01 PL-31"
    If you have any more ideas please reply back
    Thanks for prompt response
    Regards,
    Ashok

  • Problems while accessing images outside the web document-root folder

    Our application runs on Oracle application server on Linux. Facing problems while accessing images outside the web document-root folder. This works with changes in global-web-application.xml by including the <virtual-directory> tag. The same change does not work when done on Linux machine. It is unable to find the image. Please help in resolving this issue.
    </locale-encoding-mapping>
    </locale-encoding-mapping-list>
    </web-app>
    <virtual-directory virtual-path="/img" real-path="/home/eposuat/" />
    </orion-web-app>
    Code in the jsp:
    <img width=700 height=700 src="/img/3.tif"></img>
    <img width=700 height=700 src="/img/WB.gif"></img>

    This is one of the least satisfactory aspects of site management in Dreamweaver, and several developers, including myself, have been pressuring the Dreamweaver team for some years to improve this. Who knows? They might eventually take notice.
    The only way to do this at the moment is to create two site definitions, one nested inside the other. Set up the site definition normally based on htdocs as your site root. Then create a new site definition based on site. Dreamweaver will nag you that it can cause problems, but it won't actually stop you from doing it. The only potential problem is with site synchronization.
    The problem with using site as the only basis for your site definition is that Dreamweaver automatically puts things like the Connections, Scripts, and other folders in the site root. So, everything ends up at the wrong level of the site hierarchy. Quite frankly, the whole thing is a bit of a pain. Dynamic site development was added to Dreamweaver only in version 6 (Dreamweaver MX), and no one had really thought through the need to store files outside the site root.

  • Facing problem while going to  catch return result from web-services.

    Hi everybody,
    I am new to BPEL. I am facing problem while going to catch the attributes of resultsets returning from web-services(QAS). As far as my knowledge, two types of results it should return - XML entities and another is attributes which is coming as the part of XML entitites. I am able to catch the XML entities, but can't catch the attributes under it. Even, I am not able to see whether web-services returning something within that field.
    When, I tried to catch the attribute and store to a temporary varilable using the following code:
    *<assign name="AssignQASDoGetAddress1">*
    *<copy>*
    *<from variable="InvokeQAS_DoSearch_OutputVariable"*
    part="body"
    query="/ns6:QASearchResult/ns6:QAPicklist/ns6:PicklistEntry/@PostcodeRecoded"/>
    *<to variable="temp"/>*
    *</copy>*
    *</assign>*
    but, I am facing the following selectionFailure errors after running it:
    *"{http://schemasxmlsoap.org/ws/2003/03/business-process/}selectionFailure" has been thrown.*
    -<selectionFailure xmlns="http://schemasxmlsoap.org/ws/2003/03/business-process/">
    -<part name="summary">
    *<summary>*
    empty variable/expression result.
    xpath variable/expression expression "bpws:getVariableData('InvokeQAS_DoSearch_OutputVariable', 'body', '/ns6:QASearchResult/ns6:QAPicklist/ns6:PicklistEntry/@PostcodeRecoded')" is empty at line 269, when attempting reading/copying it.
    Please make sure the variable/expression result "bpws:getVariableData('InvokeQAS_DoSearch_OutputVariable', 'body', '/ns6:QASearchResult/ns6:QAPicklist/ns6:PicklistEntry/@PostcodeRecoded')"is not empty.
    *</summary>*
    *</part>*
    *</selectionFailure>*
    Getting this error it seems to me that web-service is returning nothing, but, it returns something as it has been catched using a method called isPostcodeRecoded() Java Code in Oracle ADF. This method has been used as it should return boolean whereas for catching the xml entities using java code we used the method like getPostcode(), getMoniker().
    For your information, we are using Jdeveloper as the development tool for building the BPEL process.
    Am I doing any syntax error. Please consider it as urgent and provide me asolution.
    Thanks in advance.
    Chandrachur.

    Thanks Dave and Marc, for your suggestions. Actually what I found is QAS web-service is returning nothing as attributes when the attributes are set to the default value. For example, following is the part of the wsdl of the result which QAS webservice returns.
    <xs:element name="QASearchResult">
    - <xs:complexType>
    - <xs:sequence>
    <xs:element name="QAPicklist" type="qas:QAPicklistType" minOccurs="0" />
    <xs:element name="QAAddress" type="qas:QAAddressType" minOccurs="0" />
    </xs:sequence>
    <xs:attribute name="VerifyLevel" type="qas:VerifyLevelType" default="None" />
    </xs:complexType>
    </xs:element>
    <xs:complexType name="QAPicklistType">
    - <xs:sequence>
    <xs:element name="FullPicklistMoniker" type="xs:string" />
    <xs:element name="PicklistEntry" type="qas:PicklistEntryType" minOccurs="0" maxOccurs="unbounded" />
    <xs:element name="Prompt" type="xs:string" />
    <xs:element name="Total" type="xs:nonNegativeInteger" />
    </xs:sequence>
    <xs:attribute name="AutoFormatSafe" type="xs:boolean" default="false" />
    <xs:attribute name="AutoFormatPastClose" type="xs:boolean" default="false" />
    <xs:attribute name="AutoStepinSafe" type="xs:boolean" default="false" />
    <xs:attribute name="AutoStepinPastClose" type="xs:boolean" default="false" />
    <xs:attribute name="LargePotential" type="xs:boolean" default="false" />
    <xs:attribute name="MaxMatches" type="xs:boolean" default="false" />
    <xs:attribute name="MoreOtherMatches" type="xs:boolean" default="false" />
    <xs:attribute name="OverThreshold" type="xs:boolean" default="false" />
    <xs:attribute name="Timeout" type="xs:boolean" default="false" />
    </xs:complexType>
    <xs:complexType name="PicklistEntryType">
    - <xs:sequence>
    <xs:element name="Moniker" type="xs:string" />
    <xs:element name="PartialAddress" type="xs:string" />
    <xs:element name="Picklist" type="xs:string" />
    <xs:element name="Postcode" type="xs:string" />
    <xs:element name="Score" type="xs:nonNegativeInteger" />
    </xs:sequence>
    <xs:attribute name="FullAddress" type="xs:boolean" default="false" />
    <xs:attribute name="Multiples" type="xs:boolean" default="false" />
    <xs:attribute name="CanStep" type="xs:boolean" default="false" />
    <xs:attribute name="AliasMatch" type="xs:boolean" default="false" />
    <xs:attribute name="PostcodeRecoded" type="xs:boolean" default="false" />
    <xs:attribute name="CrossBorderMatch" type="xs:boolean" default="false" />
    <xs:attribute name="DummyPOBox" type="xs:boolean" default="false" />
    <xs:attribute name="Name" type="xs:boolean" default="false" />
    <xs:attribute name="Information" type="xs:boolean" default="false" />
    <xs:attribute name="WarnInformation" type="xs:boolean" default="false" />
    <xs:attribute name="IncompleteAddr" type="xs:boolean" default="false" />
    <xs:attribute name="UnresolvableRange" type="xs:boolean" default="false" />
    <xs:attribute name="PhantomPrimaryPoint" type="xs:boolean" default="false" />
    </xs:complexType>
    here the attributes like FullAddress, PostcodeRecodedare , etc. are not being return by the web-service when it is getting the default value false. But, if it gets true then , it is being displayed at the BPEL console.
    Do you have any idea how can I catch the attributes and its value even when it gets the default value which is already set. Previously, it was returning(it was not being displayed at the console).
    Thanks once again for your valuable suggestions...!!!
    Chandrachur.

  • Facing Problem in SAP PM

    Dear SAP PM Gurus,
    I am new user in SAP PM facing problem in T_Code IW21 for the field "Person Responsible" can't find  where the customisation to be done for possible entries for this field.
    Thank You in Advance.
    Regards
    Rajesh Pagar
    9890413929.

    hi,
    In HR - Personal Management-->Administration> HR Master Data--
    > Maintain HR Master Data (PA30)
    They have to maintain the Organization Assignment. Then only you can use the Employee name in Person Responsible field.
    Or else you can uset the User id
    Sam

  • HT201272 Hi, i am facing problem when i try to copy an App from itunes to my iphone 3GS.... when i try to apply changes the process bar complete but apps not copied in my iphone.. plz help

    Hi, i am facing problem when i try to copy an App from itunes to my iphone 3GS.... when i try to apply changes the process bar complete but apps not copied in my iphone.. plz help

    Will the app run on iPhone3GS. Some of the newer apps require IOS 5 or later. This info should be displayed witht the app in itunes store

  • Problem when applying a custom stamp, it shows on my document on the screen but when I print it, the stamp is not there.

    I have my pdf open, I created a custom stamp.  Applied the stamp to the document and I see it.  Save my document and then do either a print preview or print it and the stamp is not showing!  This method of applying stamps used to work but something has changed.  I thought it even worked when using Acrobat Standard X but can't be sure.  Really need help as even documents I created previously with stamps applied and I have proof that they printed with the stamp, won't print with the stamp on it.  Thank you.

    You don't even need to use a third party tool.
    Open the JavaScript Console (Control+J)
    Type the text string below in the JavaScript Console and hit Control+Return key.
    this.flattenPages();
    It will flatten all of the annotations and fields within the document to ensure that all the comments and stamps print.

  • You may not apply more than the receipt amount

    Hi All,
    I am applying the invoice to a receipts.
    senario is -->
    i am having to debit lines of amount 60 and 70
    and one credit memo of amount 80 for the same customer.
    through api i need to apply the invoices to the receipt.
    creating the receipt for amount of (60 + 70) - 80 is 50
    when i am trying to apply the line of the invoices through api its giving an error as below
    the same senario from the front end we add 60, 70, -80 that equals to 50 and receipt will be applied.
    Customer transaction identifier has taken a precedence over the transaction number.
    Customer transaction line identifier has taken precedence over the line number.
    Cash receipt identifier has taken a precedence over the receipt number.
    You may not apply more than the receipt amount.
    Hope for early reply
    regards
    vali

    We faced the same problem, where we contacted Oracle Metalink and go the fix.
    Regards,
    Sridhar

  • I'm facing problem while applying OSS Note 1046758

    Hi gurus,
    I'm facing problem while applying OSS Note 1046758. That note is asking to create <b>J_1IEWT_ACKN_N</b> table.
    After creating the table I went to the UTILITIES menu => TABLE MAINTENANCE GENERATOR.
    Then OSS Note 1046758  is asking us to give the function group name as <b>J_1IEFILE</b>.
    Next Choose <b>One Step</b>.
    and then <b>Find Screen Numbers</b>.
    While clicking the CREATE button it is not allowing me to assign the function group group J_1IEFILE.
    How to overcome this problem.
    Very urgent.
    Any answers are welcome and will be rewarded .
    Regards,
    Jacob Charles S.

    Hi Sheeba,
    I have applied the follwoing notes.
    1046758 -- To display acknowledgement number in Form No 16A
         558469
         983795
         498087
         912767
         773171
         891923     -- 452805  (Correction Made)
    905220 -- Blank Values for TDS, Surcharge & Ecess in new certificate
         923216
         833092
    984623 -- J1INCERT:Consolidated Issues - SEP 2006
    Eventhough I'm not getting the those values in the respective fields.
    I mean, TDS Rate, ECESS Rate and CHENCK NUMBER.
    More over, I want the FROM 16A should contain the Higher Education CESS field with values.
    any notes has to be applied apart from this or what....
    Wht are the table I have to maintain for this in SM30.
    Kindly help me... It's urgent...
    Regards,
    Jacob Charles S.

  • Why when using Adobe Bridge,  I apply a star rating,  the rating does not show up in Photoshop Elements? [tags]

    Why when using Adobe Bridge,  I apply a star rating,   the rating does not show up in Photoshop Elements.  I use Elements as my organizer and Bridge to view as it is much more user friendly.  Anyone any solutions??

    Most likely you have set the wrong file as the external editor. You don't want the obvious one; that's just a link to the welcome screen. Go back and choose this one, which is hidden away inside the folder Support Files:

  • HT2292 hello i'm facing  problem  i downloaded iTunes version 11 32bit  and after i installing the set up when i opened the iTunes a massages  occur saying i tunes could not connect to iTunes store an unknown error occurred (-3212) even  though my interne

    Hello i'm facing  problem  i downloaded itunes version 11 32bit for windows 7 and after i installing the set up when i opened the iTunes a massages  occur saying i tunes could not connect to iTunes store an unknown error occurred (-3212) even  though my internet is on

    Try this...
    Triple click anywhere in the line below to select it and press Ctrl+C to copy it.
    cmd /k netsh winsock reset
    Press the WinLogoKey+R to open the run dialog, then Ctrl+V to paste, then press enter/return.
    You should get something similar to this:
    Reboot the computer and the problem should be resolved.
    If it doesn't work then perhaps a full tear down and rebuild of iTunes will fix things. See Troubleshooting issues with iTunes for Windows updates for details.
    tt2

  • SBS 2011 GPO for changing the default save path applying to Win7 but not working

    So this is a strange one. I've got an SBS 2011 server that's the only domain controller in the org. I've created a GPO to change the default save location for Excel 2013 and Word 2013 using the Office 2013 ADMX files which were installed to the PolicyDefinitions
    folder.
    The GPO (U-Office2013 Default Save Location) only contains:
    1. User Configuration - Microsoft Excel 2013/Excel Options/Save - Default file location - Enabled - Z:\
    2. User Configuration - Microsoft Word 2013/Word Options/Advanced/File Locations - Default file location - Enabled - Z:\
    The GPO is linked at the OU that contains my users for my SBS organization.
    When I do a gpupdate /force on a windows 7 system with office2013 installed, and then run a gpresult/rsop, the policy appears to be applied successfully as it lists my GPO under the Applied GPOs list on the workstation:
    Applied GPOs
    Default Domain Policy dyndns.local AD (24), Sysvol (24)
    U-Office2013 Default Save Location domain.local/SBSusers AD (6), Sysvol (6)
    In the gpresult report, the applied settings appear under:
    Administrative Templates
    Extra Registry Settings
    software\policies\microsoft\office\15.0\excel\options\defaultpath Z:\ U-Office2013 Default Save Location
    software\policies\microsoft\office\15.0\word\options\doc-path Z:\ U-Office2013 Default Save Location
    BUT, when I go to the workstation, and check office->options-Save-default file path, the path has not been changed to what the GPO is pushing.
    The strange thing is that in my test environment running 2008R2 server and Win7 with Office 2013 and identical settings the default save location is applied and works as expected.
    Any ideas?
    I've already tried re-installing the ADMX templates and re-created the GPO's several times.
    Thanks in advance.

    When a group policy is not applying, it is often that it has been linked to the wrong OU. Please first check this.
    You might also check the apply status on the client site based on the GPSVC.log.
    How to enable GPO logging:
    http://blogs.technet.com/b/csstwplatform/archive/2010/11/09/how-to-enable-gpo-logging-on-windows-7-2008-r2.aspx
    It looks more like an issue on server side than an issue of Office Group Policy settings. Try to post in Server forum and see if there is any luck:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?category=windowsserver

  • Dear Apple Good Morning Greetings from me. i use  IPHONE 5 in bangladesh. but now i facing a problem that is the signing problem the phone is not open even i cannot enter this phone is says Sign in to ICLOUD but i dont know the password what i do

    Apple please help me
    Good Morning
    Greetings from me.
    I used last 3 month  IPHONE 5 in bangladesh. but now i facing a problem that is the signing problem
    the phone is not open even i cannt enter this phone
    is says
    Sign in to ICLOUD
    Enter the Apple ID password for
    but i dont know the password. Please brother help me to use this phone. i brought this phone from some one 355pound. so i am in helpless.i am facing big trouble i dont have enough money for purchase another one. please help me...........................
    <E-mail Edited by Host>

    You need the previous owner to unlock it, unless they do you have a brick there is no other way .
    iPhone was probably stolen if you purchased on eBay, claim and get your money back
    See here
    http://support.apple.com/kb/HT5818
    for explanation of Activation lock
    APPLE will not help you

Maybe you are looking for

  • How to display page no for different master pages in one adobe form application

    Hi All, we have requirement where we need to  display page nos in different master pages in one single adobe form. For the First form the page nos should be displayed pgno of total pages and for 2nd form the page no shuld be displayed as pgno of tota

  • Sap script creation for SO & PO

    external subroutine creation for displaying Sales Order & Purchase Order scheduling details in the SAP script.

  • How do i make use of smileys using vivaz pro?

    Hello, My name is Umar Bakari, i have been a fan of sony ericsson for about 5years now, i am so much in love with the product. i have a problem using emotions simileys on vivaz pro unlike the k810i i use to have. Any solution to my problem? Best rega

  • Custom Library 'Adobe LiveCycle Workflow Fields'

    Hello, I'm just reading through the document 'creating_workflows.pdf' of Workflow 7.0. In the chapter about designing forms for workflow it says that the custom library is available with the SDK, however I was not able to locate the library. There ar

  • Customer exit Variable to split single date value into a range

    Hi All, we have a requirment where user will enter a date(01/21/2010) value in the variable input screen, it should be single value and mandatory, and the query output should have data for the Preceding 24 months for all 6 Key figures.  (e.g. user ch