No VAT by a german customer but with a dropship out of EU

Hello Experts,
is it possible to say the system (without programming) that if a customer is located in Germany but the shipment is from a dropship warehouse out of EU, that in this case the VAT should not be added?
Thanks for your helps and best regards,+
Vural

Hi Vural,
Just Copy below code and paste it in sql select your database and run procedure. I checked it is working properly as per your condition (If selected warehouse is '03' and taxcode is other than 'A0' then system will popup 'Bitte geben Sie als Steurcode A0 ein.' message.)
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER proc [dbo].[SBO_SP_TransactionNotification]
@object_type nvarchar(20),                     -- SBO Object Type
@transaction_type nchar(1),               -- [A]dd, <u>pdate, [D]elete, [C]ancel, C[L]ose
@num_of_cols_in_key int,
@list_of_key_cols_tab_del nvarchar(255),
@list_of_cols_val_tab_del nvarchar(255)
AS
begin
-- Return values
declare @error  int                    -- Result (0 for no error)
declare @error_message nvarchar (200)           -- Error string to be displayed
select @error = 0
select @error_message = N'Ok'
--     ADD     YOUR     CODE     HERE
If @object_type='13'
BEGIN
If Exists (Select T1.TaxCode from [dbo].[OINV] T0 Inner Join INV1 T1
On T0.DocEntry=T1.DocEntry
Where T1.WhsCode = '03'  and T1.TaxCode!='A0'
And T0.DocEntry = @list_of_cols_val_tab_del)
BEGIN
Select @error = -1,
@error_message = 'Bitte geben Sie als Steurcode A0 ein.'
End
End
-- Select the return values
select @error, @error_message
end
Thanks
Sachin

Similar Messages

  • .exception.JspParseExcept Cannot parse custom tag with short name [out].

    Hi
         I have almost migrated an application from jboss to CE 7.1 sp3 maxdb 32 bit
         however I am getting the following error on c:out tag of standard jslt.
    Runtime error in processing of the JSP file [C:\usr\sap\CE1\J00\j2ee\cluster\apps\<....>\servlet_jsp\<application_context_name>\root\jsp\view\<jsp_name>.jsp].
    Line:----
    The error is: com.sap.engine.services.servlets_jsp.jspparser_api.exception.JspParseException: Cannot parse custom tag with short name [out].02004C4F4F50001F0000002D000012B000B0688132009833
    Line:----
    Do anybody have some idea why is it happening.
    My guess would be because of jslt version mismatch. but its working fine in jboss. I am not sure what version cE 7.1 support may be 1.2. any idea how to chek the supported version in the server.
    The jsp code is something like
    Line:----
    <code>
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
    <%@ taglib prefix="c_rt" uri="http://java.sun.com/jstl/core_rt" %>
    <c:url var="thumbnailStream" value="/do/<action_tag>">
               <c_rt:param name="stream_id"      value="<%= <variable1> %>"/>
               <c:param    name="stream_id_type" value="<variable2>"/>
               <c:param    name="content_kind"   value="<variable3>"/>
            </c:url>
    <img border="0" src="<c:out value="$"/>">
    </code>
    Line:----
      from the SAP help text its said that jslt is being overrided by server to use from global library rather than local webapplication library. Couls woud explain where is this global library located in the server directory.
    Thx.
    Ashutosh

    Hi are you able to solve this issue.I am getting similar kind of issue.
    Logs for the same are ::
    Caused by: com.sap.engine.services.servlets_jsp.jspparser_api.exception.JspParseException: Cannot parse custom tag with short name out.
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.xmlsyntax.CustomJspTag.action(CustomJspTag.java:183)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.ElementCollection.action(ElementCollection.java:59)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.JspIncludeDirective.action(JspIncludeDirective.java:51)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.ElementCollection.action(ElementCollection.java:59)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.JspElement.customTagAction(JspElement.java:994)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.JspElement.action(JspElement.java:228)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.ElementCollection.action(ElementCollection.java:59)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.ElementCollection.action(ElementCollection.java:69)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.GenerateJavaFile.generateJavaFile(GenerateJavaFile.java:72)
    at com.sap.engine.services.servlets_jsp.server.jsp.JSPProcessor.parse(JSPProcessor.java:270)
    at com.sap.engine.services.servlets_jsp.server.jsp.JSPProcessor.generateJavaFile(JSPProcessor.java:194)
    at com.sap.engine.services.servlets_jsp.server.jsp.JSPProcessor.parse(JSPProcessor.java:126)
    at com.sap.engine.services.servlets_jsp.jspparser_api.JSPChecker.getClassName(JSPChecker.java:319)
    at com.sap.engine.services.servlets_jsp.jspparser_api.JSPChecker.compileAndGetClassName(JSPChecker.java:248)
    at com.sap.engine.services.servlets_jsp.jspparser_api.JSPChecker.getClassNameForProduction(JSPChecker.java:178)
    at com.sap.engine.services.servlets_jsp.jspparser_api.JSPChecker.processJSPRequest(JSPChecker.java:109)
    at com.sap.engine.services.servlets_jsp.jspparser_api.JspParser.generateJspClass(JspParser.java:154)
    at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:193)
    ... 47 more
    Caused by: com.sap.engine.services.servlets_jsp.jspparser_api.exception.JspParseException: Attribute value of <c:out> can accept only static values.
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.taglib.TagBeginGenerator.calculateAttributeValue(TagBeginGenerator.java:476)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.taglib.TagBeginGenerator.generateSetters(TagBeginGenerator.java:394)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.taglib.TagBeginGenerator.generateServiceMethodStatements(TagBeginGenerator.java:562)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.taglib.TagBeginGenerator.generate(TagBeginGenerator.java:678)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.xmlsyntax.CustomJspTag.action(CustomJspTag.java:181)
    ... 64 more

  • How to make copy client with customizing but with no deleting appl.data

    Hello,
    Which profile of copy client i need if i want make copy customizing without deleting application data in target client.
    regards,
    Denis

    hello dennis,
    There is no way you can do that, you cannot copy only customizing onto a client without deleting the application data since there is no such profile in the client copy profiles to do so.
    Also, to me it seems a bit strange to keep the application data (which depends on customizing for integrity) and update the customizing with something else!
    However, still if you wish to do this, there is a crude way of doing it (theoratically). You could use the client copy by a transport request where in you club all your customizing transport requests into one single transport request using transport of copies and then use the client copy via transport request to copy the customizing.
    Here are the steps:
    1. Create transport of copies [click here|http://help.sap.com/saphelp_nw70/helpdata/EN/57/38e1a94eb711d182bf0000e829fbfe/frameset.htm]
    2. Copy the newly created transport request into the target client via copy by a transport request functionality.
    click the following link for the same:
    [client copy via transport request|http://help.sap.com/saphelp_nw70/helpdata/EN/69/c24c754ba111d189750000e8322d00/frameset.htm]
    Regards,
    Siddhesh

  • Taglib problem: Cannot parse custom tag with short name table

    Hello!
    I am having problems deploying a jsp tag in web as. The same war file works fine on websphere, jboss. SAP web as seems to be complaining about the short name in the tld.
    Can any body me to any known web as issues with jsp tags?
    Thanks
    [code]
    Application error occurs during processing the request.
    Details: com.sap.engine.services.servlets_jsp.server.exceptions.WebIOException: Internal error while parsing JSP page /usr/sap/J2E/JC00/j2ee/cluster/server0/apps/sap.com/dispear/servlet_jsp/disp/root/test.jsp.
         at com.sap.engine.services.servlets_jsp.server.jsp.JSPParser.parse(JSPParser.java:85)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.getClassName(JSPServlet.java:207)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.compileAndGetClassName(JSPServlet.java:369)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:164)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:385)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:263)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:340)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:318)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:821)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:239)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:147)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    Caused by: com.sap.engine.services.servlets_jsp.lib.jspparser.exceptions.JspParseException: Cannot parse custom tag with short name table.
         at com.sap.engine.services.servlets_jsp.lib.jspparser.syntax.xmlsyntax.CustomJspTag.action(CustomJspTag.java:129)
         at com.sap.engine.services.servlets_jsp.lib.jspparser.syntax.ElementCollection.action(ElementCollection.java:52)
         at com.sap.engine.services.servlets_jsp.server.jsp.JSPParser.initParser(JSPParser.java:307)
         at com.sap.engine.services.servlets_jsp.server.jsp.JSPParser.parse(JSPParser.java:74)
         ... 18 more
    Caused by: com.sap.engine.services.servlets_jsp.lib.jspparser.exceptions.JspParseException: Unknown class name java.lang.Object.
         at com.sap.engine.services.servlets_jsp.lib.jspparser.taglib.TagBeginGenerator.convertString(TagBeginGenerator.java:365)
         at com.sap.engine.services.servlets_jsp.lib.jspparser.taglib.TagBeginGenerator.generateSetters(TagBeginGenerator.java:187)
         at com.sap.engine.services.servlets_jsp.lib.jspparser.taglib.TagBeginGenerator.generateServiceMethodStatements(TagBeginGenerator.java:212)
         at com.sap.engine.services.servlets_jsp.lib.jspparser.taglib.TagBeginGenerator.generate(TagBeginGenerator.java:269)
         at com.sap.engine.services.servlets_jsp.lib.jspparser.syntax.xmlsyntax.CustomJspTag.action(CustomJspTag.java:127)
         ... 21 more
    [/code]

    Hi Ray,
    I am facing similar kind of issue.
    Can you please help to resolve it?
    Thanks in advance.
    Logs are as below [Here I am using standard tag lib]::
    Caused by: com.sap.engine.services.servlets_jsp.jspparser_api.exception.JspParseException: Cannot parse custom tag with short name [out].
         at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.xmlsyntax.CustomJspTag.action(CustomJspTag.java:183)
         at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.ElementCollection.action(ElementCollection.java:59)
         at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.JspIncludeDirective.action(JspIncludeDirective.java:51)
         at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.ElementCollection.action(ElementCollection.java:59)
         at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.JspElement.customTagAction(JspElement.java:994)
         at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.JspElement.action(JspElement.java:228)
         at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.ElementCollection.action(ElementCollection.java:59)
         at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.ElementCollection.action(ElementCollection.java:69)
         at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.GenerateJavaFile.generateJavaFile(GenerateJavaFile.java:72)
         at com.sap.engine.services.servlets_jsp.server.jsp.JSPProcessor.parse(JSPProcessor.java:270)
         at com.sap.engine.services.servlets_jsp.server.jsp.JSPProcessor.generateJavaFile(JSPProcessor.java:194)
         at com.sap.engine.services.servlets_jsp.server.jsp.JSPProcessor.parse(JSPProcessor.java:126)
         at com.sap.engine.services.servlets_jsp.jspparser_api.JSPChecker.getClassName(JSPChecker.java:319)
         at com.sap.engine.services.servlets_jsp.jspparser_api.JSPChecker.compileAndGetClassName(JSPChecker.java:248)
         at com.sap.engine.services.servlets_jsp.jspparser_api.JSPChecker.getClassNameForProduction(JSPChecker.java:178)
         at com.sap.engine.services.servlets_jsp.jspparser_api.JSPChecker.processJSPRequest(JSPChecker.java:109)
         at com.sap.engine.services.servlets_jsp.jspparser_api.JspParser.generateJspClass(JspParser.java:154)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:193)
         ... 47 more
    Caused by: com.sap.engine.services.servlets_jsp.jspparser_api.exception.JspParseException: Attribute [value] of [<c:out>] can accept only static values.
         at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.taglib.TagBeginGenerator.calculateAttributeValue(TagBeginGenerator.java:476)
         at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.taglib.TagBeginGenerator.generateSetters(TagBeginGenerator.java:394)
         at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.taglib.TagBeginGenerator.generateServiceMethodStatements(TagBeginGenerator.java:562)
         at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.taglib.TagBeginGenerator.generate(TagBeginGenerator.java:678)
         at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.xmlsyntax.CustomJspTag.action(CustomJspTag.java:181)
         ... 64 more
    Regards,
    Sankalp

  • Role without Tcode but with customized "Z" Object only

    Hi all,
    Please help my querry is that with a Single Role as while seeing that role in PFCG in Menu Tab no Tcode is assigned and in the Authoriztion Tab -> change authorization tab just a single(one) Z auth object is maintained with Display actvt and i am not able to understand how this is going how the user are able to access the the Role without TCODE assigned but with just a Z authobject. please tell How this is going and working .
    Your help will be greatly appreciated and pleas tell how this Z auth object are created.
    Thanks,
    Chandresh.

    >
    > You need to provide more infos (from the system) and just asking on site is a good idea (as mentioned by Alex).
    >
    > Cheers,
    > Julius
    I agree that asking onsite could give more insight into the Z-Object usage. I can explain the probable reason of having the Z-Object as a stand alone authorization
    In a role inheritance scenario, when you have roles with 100+ transactions (role A, B,C, .......) which act as the master roles and the derived roles being A1,A2,A3...... depending on the number of inherited roles you have in the set-up, authorization objects like customer authorization group or vendor authorization group can be a tough task (as these are not called in the organization level values) - in this situation as the authorization groups would have to maintained individually in the inherited roles and can be a time consuming task with the additional risk of passing down the values of the master role every time it is generated and inherited - a better option could be to maintain a non-existent value in the master role , inherit it so the non-existent value is passed down to the inherited roles. To give access on the specific authorization groups , create a role with only the object F_KNA1_BED or F_BKPF_BED as might be the case and maintain organization specific values in these object and assign it to the users who need it
    My guess would be that the Z-object the operator mentions is something that is developed to address such an issue

  • Customer Statement with opening and closing balances

    Dear Forum,
    The users want to generate the Customer Statement with opening and closing balances like the traditional one. The statement now generated gives the list of all open items as on date, but the users want the statement with opening balances as on the date of the begining of the range specified and the closing balance at the end of the period for which the statement is generated. Is there a way to generate the same from the system.
    Thanks for the help.
    Regards,

    Hi,
    SPRO> Financial Accounting (New) > Accounts Receivable and Accounts Payable > Customer Accounts > Line Items > Correspondence > Make and Check Settings for Correspondence
    You can use the program RFKORD10 with correspondance type SAP06 for your company code
    This program prints account statements and open items lists for customers and vendors in letter form. For account statements, all postings between two key dates, as well as the opening and closing balance, are listed.
    Regards,
    Gaurav

  • Is there a way to create a custom screensaver with pics/slides that display for different amounts of time?

    Is there a way to create a custom screensaver with pics/slides that display for different amounts of time? Or even add a "video slide" into the screensaver?
    My business has 3 TVs displayed in our lobby, each with its own apple TV and they are all linked to the same photo stream. Currently the Atv screensaver displays the photostream pictures of our products for the default 3 seconds. We just added pics/slides that now display messages and useful info for our customers but I want that info to be displayed for a longer period of time than the pictures to give people a chance to read it.
    I tried using flickr and powerpoint as a work around but no luck.  I created a slide in powerpoint with play length of 15 secs and saved it as a wmv file.  I added that file to a "screensaver" set in flickr and pointed the Atv screensaver to that flickr set.  It still displays everything, pics and the wmv file at the default 3 sec.
    I know I can increase the duration of all pics in the screensaver to display for longer but the goal is to have the pics display at 3 secs and the info slides to display at 15 secs.

    Welcome to the Apple Community.
    No that's not possible.
    If you have any suggestions that you think might enhance the Apple TV you can send Apple your feedback here 

  • Can't make a workable custom codec with ProRes 422 (HQ)

    I've only just now found that there is a Support Community for Compressor.  Wish I'd known sooner.
    I see my version of Compressor is 3.5.3.
    I've been on a little saga.
    I started out with the challenge of converting some MP4 files from a Blackberry Playbook into ProRes 422 (HQ) for editing in Final Cut. I used Compressor and the task looked fairly straight forward. I used the ProRes setting in the Compressor, converted my files and imported them into Final Cut. Video was fine but I soon found out that the audio needed rendering every time I put a clip into the Timeline. I went on-line to various chat rooms with this problem. Pretty soon a fellow was telling me that the ProRes 422 (HQ) setting in Compressor had "Audio Pass-through" as default and that this was the cause of my problem. Change it, he said, to "Linear PCM".
    It took me a fair while to figure out that the ProRes setting in Compressor did not allow itself to be modified and that I'd have to create a custom preset if I was to make these changes. I set about to do that. I was able to select "QuickTime Movie" and then in "Video/Settings" choose "ProRes 422 (HQ)", in "Audio", "Linear PCM". This did solve the audio problem. Now files imported into Final Cut did not need rendering. But another problem became evident.
    Whereas the ProRes 422 setting that came with Compressor in its summary page listed: "Width" and "Height" as "(100% of source)", the custom ProRes 422 (HQ) setting I'd just created has "Width" and "Height" as "320" and "240". In short the 19:9 aspect ratio of the original footage was lost. What I got both in the conversion and in Final Cut was a squished SD image.
    I've played like heck with Compressor trying to see if there was some place I could get this custom version of ProRes to correspond to the aspect ratio seen in the Audio Pass-through version that came loaded in Compressor. No luck. All very mysterious.
    My next step was to look to create another custom codec that would have the proper 1280 X 720 ratio. Turns out  "HDV 720p 30fps" does, so now I've been converting to that. Looks fine in Final Cut - proper picture and sound.
    I've been playing around a bit more and see now that I can create a custom setting using "Apple Intermediate Codec". I've tried it and it works too.
    So after all this, my question: Should I be using that codec instead? Or does it really matter what codec I use for editing? Is the only real issue what codec I decide to use to output?
    And while I'm at it: Does anybody have ideas why trying to create a custom setting with ProRes 422 (HQ) does not work - for my purposes at least.
    I must admit this converting codecs is pretty new to me. Hopefully with time this experience will get easier and clearer.
    John

    Setting a Compressor ProRes Custom Setting:
    1) Pick Apple ProRes 422...
    2) Drag the PreRes 422 setting to the Bach Window. You can only make a custom setting from the Batch Window...
    3) Select enable for the audio. Click on setting to make sure it is set right. Uncheck Allow Job Segmenting... Make sure Streaming is set to none*....
    4) Select the Geomenty tab... Pick Custom (16:9):
    5) Click Save As and name your custom setting...
    6) You new custom setting will show up in the Custum folder for later use:
    Another thing you can do is make Droplet of this custom setting. Menu... File... Create Droplet... Save the Droplet into a folder somewhere on your computer.
    A Droplet will start the transcoding automatically. Drag the Droplet onto a video icon and let it do it's job.
    * ProRes doesn't need the Fast Start setting. If this is set it will take almost twice as long to do the encoding. Same with Allow Job Segmenting using Qmaster.
    I did the above on the fly and hope everything is clear for you to understand.

  • Is it possible to create a customized survey with our organizations logo at the top?

    Is it possible to create a customized survey with our organizations logo at the top? I'm trying to create a survey for our members but instead of using a template we would like to use something simple with our logo included at the top.

    Just create a blank form and click Add Header at the top of the form page:

  • Customer Experince with nokia N76 from may 2007 ti...

    Customer Experince with nokia !!!!
    today 20-09/2008 and still under progress!!!!!
    they wait till my warrenty end to reply to my problem...
    this just simple of emails i have the rest.....
    Till now more than 20 day's investagtion?what a careline ur just lazy and careless line but promise u will have a very big problem.bye
    @nokia.com wrote:
    > Dear Samir,
    > Thank you for emailing Nokia Careline.
    > With regarding to your inquiry kindly note that I did check the case again for you and it is still under process and once we got any new feedbacks be sure that we will come back to you, we are so sorry for being late.
    > Should you require any further assistance, please do not hesitate to contact the Nokia Careline and speak to any of our Customer Service Executives on 19876, between the hours of 9am and 8pm (local time), Saturdays to Thursdays. For online assistance, please visit http://www.nokia.com/mea/contactus.
    > Register with Nokia Connections and you will receive a bimonthly fun newsletter about the latest products and events. Click below to register.
    > http://www.nokia.com/mea/nokiaconnections
    > Kind regards,
    > Nokia Careline
    > Nokia Middle East & Africa
    >
    > [THREAD ID:2-48X8FP]
    > -----Original Message-----
    > From: @yahoo.com
    > Sent: 28/03/2008 04:46:14
    > To:
    > Subject: Nokia Careline - Samir Khalil - Nokia N76
    > Dear Mr. *****,
    > from you sent case no. 2-262950130 u told me 48hrs and
    > i will have reply till now 10 days no one from your
    > team call me or told me anything about my complaont is
    > it Nokia cant find any answer or what? u will
    > investigate forever and ur careline number in Egypt
    > doesnt work its give Error which means NO nokia at all
    > in Egypt so plz dont send ur customer service in ur
    > emails its just Fake number not working number i hope
    > if u in egypt to try it by yourself.
    > i will print all emails about my case today and all
    > paper's related to my esclate and insurance and the
    > warranty and will wait Last 48hrs am sorry i will take
    > legal action to nokia Egypt & middle east,hope to
    > contact me with final result not to wait anymore not
    > accepted by any mean.
    > ***This msg. to Mr.
    > Samir Maher
    > EGYPT
    Dear Samir,
    Thank you for emailing Nokia Careline.
    With regards to your enquiry, kindly be informed that your case is still under investigation and a resolution is expected shortly. Rest assured, your case has not gone forgotten and we will revert as soon as a resolution is achieved.
    Should you require any further assistance, please do not hesitate to contact the Nokia Careline and speak to any of our Customer Service Executives on 19876, between the hours of 9am and 8pm (local time), Saturdays to Thursdays. For online assistance, please visit ‘ASK Nokia’ at our website www.nokia.com.
    Register with Nokia Connections and you will receive a bimonthly fun newsletter about the latest products and events. Click below to register.
    http://mea.nokia.com/A4211102
    Kind regards,
    Nokia Careline
    Nokia Middle East & Africa
    [THREAD ID:2-48X8FP]
    -----Original Message-----
    From: @yahoo.com
    Sent: 20/03/2008 06:12:29
    To:
    Subject: complian is done
    Dear ,
    48hrs passed and nothing happen no one come back tome
    with any feedback frpm complain department actualy its
    72hrs my case no. 2-262950130 for nokia n76.
    that's the maximum respect you show to you customer's?
    am asked lot's to call me or your manager to call me
    samir or the resposible to this
    department call me and nothing happen.
    Dear Samir,
    Thank you for emailing Nokia Careline.
    Thanks you for your cooperation, I do appreciate that
    and I did a
    complain for you and here is the Service Requisite
    for you complain:
    2-262950130. our complain department will come back
    to you within maximum 48
    Hours.
    Should you require any further assistance, please do
    not hesitate to
    contact the Nokia Careline and speak to any of our
    Customer Service
    Executives on 19876, between the hours of 9am and 8pm
    (local time),
    Saturdays to Thursdays. For online assistance, please
    visit
    http://www.nokia.com/mea/contactus.
    Register with Nokia Connections and you will receive a
    bimonthly fun
    newsletter about the latest products and events.
    Click below to register.
    http://www.nokia.com/mea/nokiaconnections
    Kind regards,
    Nokia Careline
    Nokia Middle East & Africa
    [THREAD ID:2-48X8FP]
    -----Original Message-----
    From: @yahoo.com
    Sent: 16/03/2008 23:46:13
    To:
    Subject: Advice about your complian
    Dear ,
    this 2nd time i send this information in 3 weeks :
    Nokia N76:
    1. Job Order Number./1526584 & 1537749
    2. Authorized Service Center./Raya
    3. your full name and your phone number./Samir Maher
    Khalil-
    4. issues./1. Camera with very bad Quality &
    resultion. 2.Voice incoming calls&outgoing calls. 3.
    Material of the mobile its very very bad & not safty
    for humane being for use it.. 4. Its restart suddenly
    wizout any reason manytimes on daily basis .
    5.Software not helpful at all very completcated & have
    errors cant be able to download any new proudcts.
    6.low or NO at all performence battery there no
    battery u can say so empty every 12hrs maybe less
    maybe more deping. 7.Handfree with errors in the
    cable. 8.sms date not accurate with local time .
    9.high price with no need 3650 LE in 25/05/2007.
    my mobile after this date sent to Raya to fix it
    twice everytime not less than week with very bad
    customer service attuide which bad experince for
    customer nokia(could u plz visit any of them as
    mystery shopper)let's feel as customer,after all they
    changed for me the battery & handfree & sent my mobile
    again for the same problem's till now suffring from
    this mobile while my job at Mobinil which means
    Egyptian mobile opertator,i think now u got it how
    much my mobile important in my life & my work.please i
    need a help from Nokia i have been esclated from 3
    weeks and till now u didnt solve anything 4 me or even
    give me any helpful feedback.waiting ur feedback plz
    offer me solve for every problem from those and
    clairfy with details in ur email ok.
    5. faulty.
    6. Serial Number./
    7. Date of purchase./ 25-05-2007
    8. Date of send to repair./1st. time : 16/06/2007 &
    2nd. time: 19/06/2007
    9. Person name that you did contact with./sure can't
    remmber but i contact with Raya- Mesadak shop manager.
    ****Case no. : 2-258561699
    ***I will wait call from you
    Thanks
    Samir
    Mpderator note: personal information removed. It is unwise to publish personal contact information and unique serial numbers on the internet.
    Message Edited by michaels on 20-Sep-2008 03:25 PM

    The issue of firmware on operator-variant models is a common sore point on these boards.
    Unfortunately, Nokia's hands are tied. The operators have to approve new versions of the software before they can be applied to any phone sold to them by Nokia as their own variant.
    You will probably find that the operators' customer service staff are trained only to give advice on network services, if you want answers on issues other than that you need to locate the operator's head office and pester them. If you are a contract customer, that address should appear on your bill.

  • I'm not sure if I am writing this in the correct area (this is my second attempt at posting a question), but I have a comment about a recent store experience in Sandusky, OH.  I am not a current Verizon customer, but I was visiting friends and we had to g

    I'm not sure if I am writing this in the correct area (this is my second attempt at posting a question), but I have a comment about a recent store experience in Sandusky, OH.  I am not a current Verizon customer, but I was visiting friends and we had to go to the store to get something taken care of.  First off, allow me to compliment the nice, new store.  Boy, its changed over the past few years ago when I was in last. My comment is mostly directed to one specific employee.  When we entered the store, we were "welcomed" by a sloppy dressed gentlemen (his clothes were probably two sizes two small), which really struck me as unusual because every other employee in the store was dressed really "casual" with nice sporty clothing and red shoes.  Either way, after being entered into the computer, the gentlemen told me to wander around or have a seat in the back and someone would be with us soon.  As soon as we walked away from the door, the gentlemen handed his "duty" off to another employee who took over welcoming people coming in.  For whatever reason, I felt glued to him as he stood out to me.  After leaving the door, he immediately went to the back of the room, hunched over a cabinet, where he stood for the next 30+ minutes playing on his phone, frowning and not speaking to anyone around him.  Again, I found this unusual because everyone else was overly friendly and smiling.  I finally decided to walk by and see what he was doing.  It appeared that he was texting someone.  He paid no attention to me whatsoever as I walked by, just continued to frown and text on his phone.  I did take not of his name tag for future reference.  His name was Justin.  I am assuming he's the manager of the location as he was just standing around while everyone else worked.  I do understand that managers aren't necessarily doing the "dirty work" of the employees, but he could have at least found some better fitting clothing (I find it hard to believe Verizon doesn't supply it), been a little friendly, pretended to be busy, and not been texting the entire time we were there.  Again, the store was great, the other employees were very helpful, but the manager seemed to be doing is own little thing and it didn't put off a good image for the rest of the store.  Just wanted to share my comments.

    lisab101,
    We appreciate you reaching out to us. We greatly appreciate the feedback that you have provided us. Please know that we will lift this up to management and the issues will be addressed.
    Thank you,
    RobinD_VZW
    Follow us on twitter @VZWSupport

  • Custom PC with ATI 5670 xfx is not working with APPLE cinema 24"

    I need help using my apple cinema 24"
    my setup is the following:
    i7 custom built with ati 5670 xfx (with display port)
    running windows 7 64 bit ultimate
    I bought a displayPort to mini-display port cable. When I plug everything in, my apple 24" cinema is not turning on ?
    can someone please help me out, Thank you.
    PS. Seem like people are saying the new ATI radeon 5000 series is not compatible with apple 24" Anybody has a solution to this ? Thank you.

    Hi,
    I already reply you in fredtorrey post.
    But if you don't want change that card you will need buy atlona adaptor.

  • Account determination for customer account with ZERO value

    Hi Friends,
    My clint requirement is to sell product free of cost to customer but per accounting purpose taxes need to be calculated.Any possible solution guide us per acheving this challenge.
    Accounting needs to be trigger like below
    DR.customer     $0.00
    DR Free of charge account      $100.00
    CR. output vat 18%                   $18
    CR EXCISE DUTY  12%(IF APPLICABLE)  0.00
    CR un relized revenue                         $82.00
    Thanks in advance
    Srinivasa

    Hi,
    If your configuration is correct, an accounting document will get created during invoice creation even if the value is zero. Acct doc is created not based on the value, but based on the account key to which the condition type is linked.
    Generally in free goods, there will be net price (gross price- discounts). You can link this netprice condition type to an account key. The netprice will anyway be nullified by NB00 condition type which is applicable for free goods pricing. You can also link NB00 to another account key.
    Now the values will nullify each other in invoice. Similarly the values will be nullified in accountnig doc also and they can be posted to any GL account you wish.

  • Customer master with holding tax data

    Hi,
    I am working on customer master transaction 'XD01'. I want add new fields to the existing subscreen 'with holding tax' and new fields in the new subscreen. There is  no enhancement is available for this, but there a BADI 'CUSTOMER_ADD_DATA_CS'. But with this we can not update the data to table KNBW(with holding tax data). Can anybody worked on this type of requirements.
    Thanks in Advance
    Rajavardhana Reddy

    Hi Rajavardhana
    Here there two interfaces you can use for transfering data to database and getting data from database.
    SET_DATA     Data Transfer
    GET_DATA     Transfer Data
    Hope this helps you.
    Cheers
    Manohar

  • Help needed in URM German translation override with XLF file translation

    I have a problem in URM 11.1.1.3 German translation override through a custom component.
    I have a OOTB German context localization ww_strings.xlf file present in <oracle middleware home>/ucm/idc/components/Localization/lang/de in URM with a translation entry as
    <trans-unit id="wwWarehouse@002frm">
    <source>Warehouse</source>
    <target>Warehouse</target>
    </trans-unit>
    The Warehouse storage type name is referring to the key 'wwWarehouse' and so i see 'Warehouse' as name in the storage pages.
    when i am overriding this entry key using a custom component with the following entry it does not work and the original translation is shown in the page.
    <@de.wwWarehouse=Archiv@>
    I have checked that the loadOrder is not the issue here and issue is the presence of @002frm keyword.The entry <@de.wwWarehouse@002frm=Archiv@> also does not work
    Any Idea how can i override the translation key.
    Any help would be greatly appreciated.
    Thanks
    Ayaskant

    Are you trying to translate a BI report, or the string in the web interface?
    I have to ask first:
    - Have you enabled the German locale for Content Server?
    - In your user profile, have you selected German?
    Assuming both answers are yes...
    I wouldn't worry about the XLF/XLIFF file if you are changing the caption in a report - provided the caption can even be translated in the report. URM does some black-magic translation for "certain" select strings in reports. Not sure "Warehouse" is one of them, though.
    I'd avoid trying the <@lang_code.string@> route -- sometimes it works, sometimes not. In your custom component, create a folder structure like "resources/lang/de/ww_strings.htm", and put <@wwWarehouse=Archiv@> in that file.

Maybe you are looking for

  • SRM 7.0 Process Controlled Workflow-Level Type in Process level config

    Hello Experts, In SRM 7.0 for Process controlled workflow,for Level Type in Process Level configuration we have 3 different options 1) Approval with Completion 2) Approval 3) Automatic(System User) Can you plz explain what is the difference between t

  • Acrobat Toolbars gone haywire

    It seems my Acrobat toolbars in Word have developed a life of their own. the acrobat and the acrobat and acrobat meeting (never saw this one before) toolbars appear below my other toolbars everytime I bring a word window to the front. I can go into t

  • Installing Python Idle

    I'm an aerospace engineer and I just want to use Python to crunch numbers as a cool freebie Matlab alternative. I don't want to learn Java so I do not need or want any of the Mac OS cocoa hooks. I do need numpy and matplotlib. Xcode 3.0 has no simple

  • How Can I get Alert for specific error occurs in ULS logs ?

    I am looking for either OOB functionality or Tool which could send me the email notification/Alert when specific error occurs in ULS Logs ? Please advice!

  • Sample versions of songs I bought are in my library

    Bought a full album and somehow, every other track is the 90 second sample from the store. I right clicked, and delete wasn't an option. How can I remove this crap to enjoy my album?