Great britain E filling-add recipient type in distribution list

Hi,
My client is about to file e filling but her name needs to be added in distribution list through t code sbwp,but the problem is that in the drop down value of recipient type for all the employees who can file Ereturns an addition value-'via internet' is displayed but for the employee whom I want to add this value is not there in the drop down of recipient type.Can any body tell me what all configurations I need to do for this .
Quick responce is greatly appreciated.
Cheers
Rajeev

check link:-
[http://help.sap.com/saphelp_nw04/helpdata/en/a8/809d1dfc8711d2a2b400a0c943858e/frameset.htm]
Also check In transaction-SO23

Similar Messages

  • When to add message type to distribution model

    hi
    i am bit confused on when to add a custom/std message type to distribution model. what are the conditions. is that always necessary to add the message type to distribution model.
    thanks

    [http://sap.ittoolbox.com/groups/technical-functional/sap-interfaces/add-message-type-in-ale-distribution-model-1192885]
    [http://docs.sun.com/app/docs/doc/820-5014/ggcpd?a=view]
    [http://publib.boulder.ibm.com/infocenter/wtxdoc/v8r2m0/index.jsp?topic=/com.ibm.websphere.dtx.packsapxi.doc/tasks/t_pack_sapxi_Create_a_Destination_Model_BD64.htm]

  • Exchange 2010 : Doubt with recipient type and problem with disappearance of the original recipient in the mail relay

    Hello. First of all, thank you very much for your attention.
    After that, I will expose the problem:
    I have a user domain called "comercial" with a corresponding mailbox "[email protected]"
    . This user
    has assigned multiple emails such as "[email protected]", "[email protected]", "[email protected]" , having as default   email "[email protected] ".
    On
    the other hand,
    another domain user
    called
    "menganito" with it's mailbox  "[email protected]" account, also has a few mail accounts "[email protected]", "[email protected]", " [email protected]"
    ...having
    as default   email "[email protected]
    The user "Comercial" is forwarding
    all of it's mails to the user "menganito".
    The problem is that "menganito" is not receiving the exact
    "comercial"
    sender email, but the email which appears by default ("[email protected]").
    "Menganito" would like to know
    from which email exactly the mails he is receiving have been sent ("[email protected]",
    or "[email protected]"
    or "[email protected]"). 
    Also, he would like to knowthe email of the original sender (from the outside of the domain) whom the user "Comercial"
    have received the email from.
    In another type of email servers (Kerio,...)
    this is not a problem, because forwarding by
    defaultis always showing
    the original sender and original receiver.
    Maybe the problem comes from the recipient type I'm using.
    Should I use another type of recipient? should I use a transport rule?
    Any idea ? Thanks again in advance.

    Hi Simon. First of all thanks for your answer.
    This happens with all accounts. I tried with news accounts and different browsers for OWA and Outlook anywhere and happens the same. Is not a cache problem
    The problem is
    when "[email protected]"(default
    and set as default answer
    account by
    exchange)
    receives
    a message in  "[email protected]" when
    forwards to "Menganito"
    this message will appear from"[email protected]"
    instead of "[email protected]".
    This happens with all accounts.
    I can understand that i can't avoid
    default reply address on the same
    domain, but also with different domains happens
    the same?
    The platform is only one clean and updated server 2012 as dc and another clean and updated server 2012 with exchange 2010 sp3 directly and after rollup 4 for exchange SP3, no previous versions and servicepacks of exchange 2010 was installed before. Before
    install exchange 2010 sp3, i installed all the filterpacks (3) and .net 3.5 and all updates that i finded for 2012 server (i tried for 2 days): No more updates for sure.  After, in powershell, i put this:
    Add-WindowsFeature NET-Framework-Core,RSAT-ADDS,Web-Server,Web-Basic-Auth,Web-Windows-Auth,Web-Metabase,Web-Net-Ext,Web-Lgcy-Mgmt-Console,WAS-Process-Model,Web-Mgmt-Tools,Web-ISAPI-Ext,Web-Digest-Auth,Web-Dyn-Compression,NET-HTTP-Activation,Web-Asp-Net,Web-Client-Auth,Web-Dir-Browsing,Web-Http-Errors,Web-Http-Logging,Web-Http-Redirect,Web-Http-Tracing,Web-ISAPI-Filter,Web-Request-Monitor,Web-Static-Content,Web-WMI,RPC-Over-HTTP-Proxy
    -Restart
    The machine and exchange works good (i3 with 4gb ram, and raid 1 1tb of HD) and the organization only has 15 mailboxes. No problems with even viewer and all is correct.
    Thanks again.

  • How to add Material type(MTART) field on Selection screen of MB5B transaction code.

    Hi All,
        Please let me know how to add material type field on selection screen of MB5B transaction
    For that i made copy ZMB5B_COPY of original report RM07MLBD.
    Thanks in adv .
    Samadhan

    Hi,
    Once you copied the standard report to Z report, you can MTART in selection screen like below.
    and in order to inlcude the same in programming logic, we have three option.
    1) Check all related select queries, and include MTART in SELECT query using inner join with MARA.
    2) In START-OF-SELECTION event fill MATNR as shown below.
    3) If user entered any value in MTART, then before displaying the report just check material type of each material in the final internal table(which is used to display report) delete enteries from internal table accordingly.
    START-OF-SELECTION.
    IF MTART[] IS NOT INITIAL AND MATNR[] IS INITIAL.
        SELECT MATNR FROM MARA INTO MATNR-LOW WHERE MTART IN MTART.
          MATNR-OPTION = 'EQ'.
          MATNR-SIGN = 'I'.
          APPEND MATNR.
          CLEAR MATNR.
        ENDSELECT.
    ENDIF.
    The above option has one limitation: The selection screen variables has some restriction, please read the below thread.
    Facing problem in select statement dump DBIF_RSQL_INVALID_RSQL CX_SY_OPEN_S
    Getting Dump in the select query has more than 2000 entries
    Hope this will work for you .
    regards,
    Rajesh Sadula.

  • Using SPmanagementshell to create library ,version enable & Add content type

    Hi Folks,
     How to create library document,enable version, add content type in every site using SPmanagementshell.
    Now i am doing user interface,it is  taking more time to do this task.
    Please give solution using SPmanagementshell to do this task.
    I would be great if someone help.

    Hi,
    Please try code given below:
    $spWeb = Get-SPWeb -Identity http://SPServer
    $listTemplate = [Microsoft.SharePoint.SPListTemplateType]::DocumentLibrary
    $spWeb.Lists.Add("My Documents","My Doc Library",$listTemplate)
    $spDocumentLibrary = $spWeb.GetList("My Documents")
    $spDocumentLibrary.EnableVersioning = $true
    $spDocumentLibrary.ContentTypesEnabled = $true
    $spDocumentLibrary.Update()
    #Add site content types to the list
    $ctToAdd = $site.RootWeb.ContentTypes["<NAME OF ContentType>"]
    $ct = $spDocumentLibrary.ContentTypes.Add($ctToAdd)
    $spDocumentLibrary.Update()
    Hope it helps!
    Thanks,
    Avni Bhatt
    If this helped you resolve your issue, please mark it Answered

  • IPhone 6 plus not possible to add recipient to messages

    I have an iPhone 6 Plus. A big display that I thought would add great possibilities to the iPhone. But among other issues there is one annoying issue that sticks out:
    when I try to forward a picture from another message, or try to send a picture from the pictures app, it is impossible to add recipient to the message that I want to send. You can see this on the picture I've added to this post. I use the Swype keyboard, as I simply find it far better and more usable than the standard keyboard. Could you, Apple, please make this work? So I don't have to open the messages app and create a new message and adding recipients before I can add picture?
    Another issue is that often the keyboard will not show when I open the messages app to answer a message. I then have to manually close the app and reopen it in order for it to show the keyboard.

    Hey PsychMA,
    Thanks for the question. If I understand correctly, the iPhone is not restoring from an iCloud backup. Is it that the process is taking a long time to finish? I would recommend that you read this article, it may be able to help you isolate or resolve the issue.
    If you need help restoring an iCloud backup - Apple Support
    Thanks for using Apple Support Communities.
    Have a great day,
    Mario

  • There is no "Great Britain" in the German version of icloud.

    Hi, I use the German version of icloud. In the address section there is no chance to choose "Great Britain". I cannot type it either. What went wrong?

    That's great! But hopefully it is still afloat as my son lives there.
    And no: There is no England, Wales or even Scotland at hand. The map seems to be totally blank in this area. And guess what: As I tried Great Britain: the next available country in this list was chosen. It is Malaysia.
    I am grateful for your support and I do love Your humour!
    Cheers.
    Andreas

  • Experience of traveling through Great Britain and Germany with my iPad

    I wanted to share my experiences regarding traveling through Great Britain and Germany with my iPad.
    It should be noted that my son brought his netbook with iTunes on it so it was simple to get the carrier file for microsims. I think if you are travelling without an additional system for the update, a quick visit to an apple store would take care of it.
    *First stop: Scotland/England*
    The day after I got to Scotland we found a 3 store. I walked in found a iPad specific sim hanging on the wall, took one and brought it to a rep who took my ten pounds and activated the sim. All in all, it took about five minutes. It popped it in when we got back to the hotel and connected the iPad to my son’s netbook, iTunes popped up, I told it not to sync and then it offered to update the carrier file. I clicked okay and a few minutes later I had 3G up and running with 250 megs of pre-paid data. In my last few days in London I did another 10 pound top-up as we found ourselves relying on the mapping functionality a lot.
    Coverage-wise, 3 was quite good. The only places I had problems was when we were on a four-day hike along Hadrian’s Wall where I found the signal coming and going.
    All in all it was a great experience and I give it an A.
    *Second stop: Germany*
    Germany was a completely different thing.
    Both Vodaphone and O2 shops do not have sims in stock. You need to pre-order the sims and have them mailed to a German address. On top of that, one of them (I can’t remember which) wanted 25 euro just for the sim. The reps in the store were always unhelpful, many did not even know that iPad sims were available form their respective companies and several mentioned that because “no one wanted an iPad in Germany” they didn’t see the point in carrying the sims. So no 3G in Germany for me.
    On top of that, WiFi was not all that common. Even places that advertised free wifi often told us it was currently broken.
    So, iPad travel experience in Germany: D-

    I just returned from 1 of only 2 carriers(telcel main office only)where I live in Los Cabos, Mexico, I just paid $149 pesos/$11.60 US for a sim and I was told they needed me to bring my ipad in, after about 1 hour they finally gave me my sim, and then said at least 24 hours for activation. There is no easy way from what I have been told to add money/time, you can go to their main office and pay for exactly whatever plan you want, you must return to their office to renew using this method, the other way is to buy a prepaid card and supposedly enter the code into the ipad, but none of the cards denominations correlate with the plans that are offered. I have lived here 20 years so nothing surprises me anymore. It was basically a cluster---, due to the fact nobody seemed to have a clue about the ipad, I jokingly asked if I was their first ipad customer, they said I was their 2nd. So it seems to me, if you had planned to use this "magical ipad" for travels in different countries, you had better make sure you have wifi, or take your laptop instead. I am somewhat disappointed that apple wants to sell millions of these, yet does not make sure their carriers know what is going on. Either I misunderstood all the hype and ad's, or this thing probably is best used only where you know you can receive wifi. I bought 3 ipads, this last one a 3g, I can see I will have to bring my laptop on all travels if I want to be assured of having internet, it seems apple should concentrate a bit more on customer service instead of sales. I will update when and if I get a connection.
    buenos suerte…

  • Add content type to Team Discussion List

    Hi
    I was create a content type with some culoms. then I was add content type on the Team Discussion List and was set as a default item.
    i was add item and filled it and saved
    but there aren't any view! perhaps there don't save!! Where  this item are saved?  

    Hello,
    How did you create that content type? By default all the post gets saved in message content type and display in subject view. Have you tried to open each view ? if not then do so.
    I have also found one similar thread for you info:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/7b074ba1-aed0-49af-8685-0e206001f5d0/custom-discussion-content-type-in-sharepoint-2010?forum=sharepointgeneralprevious
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • How to create recipient type and communication route for T code S023

    Hi Can any body help me create new recipient type and communication route in T code S023,
    Quick responce is greatly appreciated.
    Cheers
    Rajeev

    You can just right click on the distribution List. Click on Change button. From here you can click on the respective Recipient Type and populate the Distribution list.
    Thanks
    Arghadip

  • Cannot add hub-managed content type with external list lookup columns to a list -- Error:Id field is not set on the external data field

    This is a variation on the issue mentioned in this
    post
    We are using SP 2010 Content Hub to manage our content types.  On the content hub we've created a couple of exteranl lists, and then created some site columns as lookups against these lists.  We then added the columns to one of our content types
    and set it to publish.
    After the publishing job executed, I tried adding the content type (which now appears on the subscriber sites) to one of the document libraries on one of the subscriber sites.  When I did that it threw the following error:
    Microsoft.SharePoint.WebControls.BusinessDataListConfigurationException: Id field is not set on the external data field    
    at Microsoft.SharePoint.SPBusinessDataField.CreateIdField(SPAddFieldOptions op)     
    at Microsoft.SharePoint.SPBusinessDataField.OnAdded(SPAddFieldOptions op)     
    at Microsoft.SharePoint.SPFieldCollection.AddFieldAsXmlInternal(String schemaXml, Boolean addToDefaultView, SPAddFieldOptions op, Boolean isMigration, Boolean fResetCTCol)     
    at Microsoft.SharePoint.SPContentType.ProvisionFieldOnList(SPField field, Boolean bRecurAllowed)     
    at Microsoft.SharePoint.SPContentType.ProvisionFieldsOnList()     
    at Microsoft.SharePoint.SPContentType.DeriveContentType(SPContentTypeCollection cts, SPContentType& ctNew)     
    at Microsoft.SharePoint.SPContentTypeCollection.AddContentTypeToList(SPContentType contentType)     
    at Microsoft.SharePoint.SPContentTypeCollection.AddContentType(SPContentType contentType, Boolean updateResourceFileProperty, Boolean checkName, Boolean setNextChildByte)     
    at Microsoft.SharePoint.SPContentTypeCollection.Add(SPContentType contentType)     
    at Microsoft.SharePoint.ApplicationPages.AddContentTypeToListPage.Update(Object o, EventArgs e)     
    at System.Web.UI.WebControls.Button.OnClick(EventArgs e)     
    at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument)     
    at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)     
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)    b55297ed-717f-466d-8bdc-297b20344d3f
    I checked the external  content type configuration and it did specify an "id column".  Anyone know if what I am attempting to do is possible and if so, what special configurations are required?
    Thanks

    The issue is not External Content type or external list but the look up column.
    It's not possible to publish a look up column via the Content Type Hub.
    If you need to do this then an alternate way is to use a Managed Metadata column instead, otherwise you will have to implement this via a feature.
    Varun Malhotra
    =================
    If my post solves your problem could you mark the post as Answered or Vote As Helpful if my post has been helpful for you.

  • How do I add a type tag to my enclosure with iWeb?

    I encode my video with QuickTime, manage my website with iWeb, and upload it to the web with Transmit.
    A few episodes ago, my podcasts stopped updating on Podcast Alley. Tech support pointed out the problem: There are no type tags on any of my enclosures.
    From what I gather, the type tag tell you what kind file it is - ie, a .m4v
    I don't have any idea how to add a type tag to an enclosure using iWeb, and I don't even know if its possible. I would think that iWeb would do it automatically.
    Also, how do I change my feed? I originally just used the feed iWeb created:
    http://www.leilajones.com/jonescast/...esCast/rss.xml
    But then set up a feedburner feed - which I now submit when I submit anywhere new.
    http://feeds.feedburner.com/jonescast
    But how do I change the rss feed on my website with iWeb... I love the simplicity of it, but it's so limiting...
    Also, how do I change the feed in iTunes to the Feedburner feed?
    Thanks for your help,
    http://www.jonescast.com

    Page 215 might help:  http://manuals.info.apple.com/en_US/iPhone_iOS4_User_Guide.pdf

  • We are going to Great Britain this summer.  Do we need voltage converters as we'll plug adapters for our iPads (one is 2nd generation and one 4th)

    We are going o Great Britain this summer.  Do we need voltage converters as well as plug adapters for our iPads (one is 2nd generation and one 4th)

    No. Since Apple power converter work from 110 to 240 volts, no power converter is reguired.
    You will need a pin adaprt. I have found my local Ace hardware store to have the best deal on them.
    Allan

  • EWT - Report on basis of Recipient Types

    Hi Gurus,
    How can we can report on basis of Recipient types in EWT?
    Recipient types consist of Company and Non Company.
    Please revert asap.
    Thank You

    check this and do modifications as per ur requirement.
    https://www.sdn.sap.com/irj/sdn/wiki?path=/pages/viewpage.action&pageid=15856
    get the PRDHA of MARA then report.
    Regards
    Prabhu

  • Recipient type not maintained in Vendor master  During TDS deduction

    Hello Gurus,
    My client Posted somany Documents deducting TDS, but  during deduction  time all other vendor masters (except one or vendors) were not maintained with Recipient type. due to this system has taken posting date as due date for challan payment.
    for example if the document was posted on 10 Oct 2009, system showing due date as 10 Oct 2009 in t Code J1INMIS ( challan update tab). Documets pertaining to those vendors maintained with Recipient type is correctly showing due date as 06 Nov 2009.
    now when i want to make challan in J1INCHLN documets pertaing to the correct vendors are being up by the system. but other line items are not picked up..
    how to solve this problem >?//
    Please advise..
    Mamillapalli V

    No i thought  so,, but system picked up the posting date as due date. this happend only for those vendors in whose vendor masters the recipient type was not maintained.
    For two three vendors where Recipient type was maintained those TDS line items due date is correctly showing as 06 Nov 2009. this iam telling for the same TAX TYPE (ex. IE.).
    now, these few  line items are only displayed in J1INCHLN. the input i have given is
    Posting date 01 Oct 2009 to 31 Oct 2009
    Section - 194C
    iam still not convinced, Please advice..
    Thanks in advance

Maybe you are looking for