Address type

AS per the requirement i need to fetch the Address details of employees from PA0006.
we have a field ADDRESS TYPE (ANSSA).
1) First need to check whether employee has "PERMANENT ADDRESS or not, if it is there display it. (ANSSA = 1)
2) If any employee doesn't contain "Permanent Address" then check for his TEMPORARY ADDRESS. if it is there display it. (ANSSA = 9001)
3) if "Temporary address" is not there then Display EMERGENCY ADDRESS.
(ANSSA = 4).
I have written the code for this. but Eventhough the Employee has Permanent Address(ANSSA =1) it is taking Emergency Address(ANSSA = 4) for some of the records.
i'm attaching the code.
Please verify and suggest me the right way.
Reading Personal No. from Flat file and storing into Internal table t_txt_upload.
using FOR ALL ENTRIES fetching corresponding the records associated with that personal numbers from PA0006 and storing into IT_p0006.
Read table it_p0006 with key pernr = t_txt_upload-pernr binary search.
  if sy-subrc eq 0.
    it_final-pernr = it_p0006-pernr.  "Employee No
    it_final-begda = it_p0006-begda.  "Date From
    it_final-endda = it_p0006-endda.  "Date To
      if it_p0006-anssa = 4.
         it_final-anssa = 'E'.
         it_final-stras = it_p0006-stras.
         it_final-locat = it_p0006-locat.
         it_final-ort01 = it_p0006-ort01.
         it_final-ort02 = it_p0006-ort02.
         it_final-pstlz = it_p0006-pstlz.
         it_final-telnr = it_p0006-telnr.
         it_final-land1 = it_p0006-land1.
       elseif it_p0006-anssa = '9001'.
         it_final-anssa = 'T'.
         it_final-stras = it_p0006-stras.
         it_final-locat = it_p0006-locat.
         it_final-ort01 = it_p0006-ort01.
         it_final-ort02 = it_p0006-ort02.
         it_final-pstlz = it_p0006-pstlz.
         it_final-telnr = it_p0006-telnr.
         it_final-land1 = it_p0006-land1.
       elseIF.
         it_p0006-anssa = '1'.
         it_final-anssa = 'P'.
         it_final-stras = it_p0006-stras.
         it_final-locat = it_p0006-locat.
         it_final-ort01 = it_p0006-ort01.
         it_final-ort02 = it_p0006-ort02.
         it_final-pstlz = it_p0006-pstlz.
         it_final-telnr = it_p0006-telnr.
         it_final-land1 = it_p0006-land1.
endif.

HI earlier i have tried like that itself. it always going to 4. so have given first condition as 4.
Thanks for your help.
i will give you the record pattern in DB. it will give clarity on my problem.
Personal No.     BeginDate            EndDate       AddressType
01                    01.03.1998            25.07.2006         1
01                   26.07.2006             31.12.9999         1
01                   12.09.2004             31.12.9999         4
For each personal No. there are two to three records in the DB.
I'm sorting based on Personal Number.
and Deleting Adjacent Duplicates.
This will make you very clear and please give the Reply.
Thanks in advance.
if not t_txt_upload[] is initial.
Get the data from table PA0006.
select  pernr
        begda
        endda
        anssa
        stras
        locat
        ort01
        ort02
        pstlz
        land1
        telnr
        com01
        num01
        com02
        num02
              from pa0006
        into table it_p0006
     for all entries in t_txt_upload
       where pernr eq t_txt_upload-pernr.
  if sy-subrc eQ 0.
   append it_p0006.
    else.
      MESSAGE I030 WITH IT_P0006-PERNR.
  endif.
  sort it_p0006 by pernr.
  delete adjacent duplicates from it_p0006 comparing pernr.
endif.
loop at t_txt_upload.
Read table it_p0006 with key pernr = t_txt_upload-pernr binary search.
  if sy-subrc eq 0.
    it_final-pernr = it_p0006-pernr.  "Employee No
    it_final-begda = it_p0006-begda.  "Date From
    it_final-endda = it_p0006-endda.  "Date To
      if it_p0006-anssa = 1.
         it_final-anssa = 'P'.
         it_final-stras = it_p0006-stras.
         it_final-locat = it_p0006-locat.
         it_final-ort01 = it_p0006-ort01.
         it_final-ort02 = it_p0006-ort02.
         it_final-pstlz = it_p0006-pstlz.
         it_final-telnr = it_p0006-telnr.
         it_final-land1 = it_p0006-land1.
       elseif it_p0006-anssa = 9001.
         it_final-anssa = 'T'.
         it_final-stras = it_p0006-stras.
         it_final-locat = it_p0006-locat.
         it_final-ort01 = it_p0006-ort01.
         it_final-ort02 = it_p0006-ort02.
         it_final-pstlz = it_p0006-pstlz.
         it_final-telnr = it_p0006-telnr.
         it_final-land1 = it_p0006-land1.
       else .
         it_p0006-anssa = 4.
         it_final-anssa = 'E'.
         it_final-stras = it_p0006-stras.
         it_final-locat = it_p0006-locat.
         it_final-ort01 = it_p0006-ort01.
         it_final-ort02 = it_p0006-ort02.
         it_final-pstlz = it_p0006-pstlz.
         it_final-telnr = it_p0006-telnr.
         it_final-land1 = it_p0006-land1.
endif.

Similar Messages

  • PL/SQL Network Address Type Functions

    Hi,
    I'm wondering if anyone knows of a PL/SQL package(s) that provides similar capabilities as the following postgreSQL network address type functions:
    http://www.sql.org/sql-database/postgresql/manual/functions-net.html
    I don't see anything in the standard Oracle 10g packages, so I'm wondering if anyone else has dealt with this problem and posted the package.
    Thanks,
    - Greg.

    I think the easiest way of getting some of this functionality would be to write a PL/SQL wrapper to a Java Stored Procedure that implements calls to the Java InetAddress class. It doesn't haven't the full set of operators but I'm not sure what 'less than' actually means in the context of an IP address . If you really need them you could always extend the InetAddress class to implement such tests.
    Cheers, APC

  • Javax.mail.NoSuchProviderException: No provider for Address type: rfc822

    Use JavaMail 1.2 send Mail Errors:
    "javax.mail.NoSuchProviderException: No provider for Address type: rfc822"
    Why?
    Can you supply a stmp server name?
    Thanks.

    [skyask],
    Honestly, I am not very sure where the JVM is located for the WebLogic 5.1 application server. You probably need to contact your local BEA rep office for support.
    The jar file for the JavaMail API is either mail.jar (contains the API libraries) or mailapi.jar (contains the API libraries and all the providers), so I guess if you search the WebLogic directories, you might be able to locate it.
    It also depends on the OS platform that you are working on and the WebLogic installation documentation may give a clue or two where the .jar files for optional Java packages are found.
    HTH.
    Allen Lai
    Developer Technical Support
    SUN Microsystems
    http://www.sun.com/developers/support/

  • Is it possible to use HTTPS in HTTP recv adapter using Address type as URL

    Hi All,
    If some one who has tried HTTPS communication using HTTP receiver adapter using URL address as Address type can you please guide me what are the steps need to be done.
    Address type is a parameter in HTTP adapter setup .
    Regards,
    Reddy

    Use the below code to get the reference of EntityManagerImpl and get the reference of Session from EntityManagerImpl and then you can call the Stored Procedure.
    private EntityManagerImpl emImpl;
    emImpl = (EntityManagerImpl)Persistence. createEntityManagerFactory("TFDModel").createEntityManager();
    Session session= emImpl.getActiveSession();
    StoredProcedureCall call = new StoredProcedureCall();
    call.setProcedureName("CONVERT_FEET_TO_METERs");
    call.addNamedInOutputArgumentValue(
    "LENGTH", // procedure parameter name
    new Integer(100), // in argument value
    "LENGTH", // out argument field name
    Integer.class // Java type corresponding to type returned by procedure
    ValueReadQuery query = new ValueReadQuery();
    query.setCall(call);
    Integer metricLength = (Integer) session.executeQuery(query);
    Regards,
    Vinay

  • HTTPS communication using HTTP receiver adapter URL address as Address Type

    Hi All,
    If some one who has tried HTTPS communication using HTTP receiver adapter using URL address as Address type can you please guide me what are the steps need to be done.
    Note : Address type is a parameter in HTTP adapter setup .
    Regards,
    Reddy

    Hi,
    Check this,
    Configurations in Integration Directory
    The plain HTTP adapter gives the receiver system the following specifications:
    — Specifications for addressing using a URL address:
    Target host, service number, and path prefix including query string:
    http://<hostname:port>/<path>?<query-string>
    You can identify the target host (HTTP port) of a SAP Web Application Server using
    the
    ICM monitor
    Host and port of the HTTP proxy (optional if there is a firewall between the plain
    HTTP adapter and the receiver system)
    Authentication data for the receiver system.
    See also: transaction Display and Maintain RFC Destinations (SM59).
    &#151; Specifications for addressing using an HTTP destination:
    HTTP destination
    &#151; Parameters from the communication channel for technical routing
    Content type (the entry text/XML is expected as default)
    Specifies the format that the message contents (the payload) should have.
    Optional header fields for the receiver-specific protocol
    Attributes for the query string
    1. Sender party
    2. Sender service
    3. Receiver Interface
    4. Message ID
    5. Quality of service
    6. Queue ID
    All attributes are selected except for the queue ID. If you do not want a value to be
    transferred to the receiver, deselect it. The queue ID is only required if the quality of
    service is EOIO.
    Specifications for payload manipulation
    XML code (default UFT-8)
    Specifies the character set.
    URL escaping
    Presents the XML in a URL-enabled format. Special characters that could be
    interpreted as control characters are replaced with escape characters (masked).
    Prolog
    Enhances the payload for particular servers (optional, see below).
    Epilog
    Enhances the payload for particular servers (optional, see below).
    Enhancing the Payload
    Regards
    Seshagiri

  • Multiple Valid Addresses of a specific address type -- SD Customer

    Hi Gurus -
    My customer wants to add a new address type called "Job Site Address" (ZJ) which they want to attach to all customers. I believe this is standard functionality.
    However, they have a situation where the customer could have many valid Job Site address at the same time. Does SAP allow maintaining many valid addresses of a specific address type? I did not think so but just wanted to reconfirm.
    Thanks in advance for taking the time to answer this
    Regards,
    Pradhip.S

    hi,
    this is to inform you that,
    SAP has provided name1/2/34 fields there in the place of address.
    if that is not sufficient you can treat contact person total tab page for your ZJ that is site address.
    or
    this is a development,  sit with abaper
    say him to create a push button in the address tab page called ZJ for which addational tab page will be assigned to fill the site address.
    hope this helps.
    regards,
    balaia

  • Problem in printing Address Type 3

    Hi Experts,
    This post is in context of Address type 3 (Contact Person).
    Please see the below mentioned code  which has been coded in the script :
    /:           IF &VBDKA-ZZADRND& EQ &SPACE&
    /:           IF &VBDKA-ADRNP_2& EQ &SPACE&
    /:           ADDRESS *TYPE 3* PARAGRAPH AS
    /:             FROMCOUNTRY &VBDKA-SLAND&
    /:             PERSONNUMBER &VBDKA-ZZPRSNR&
    /:             ADDRESSNUMBER &VBDKA-ADRNR&
    /:            ENDADDRESS
    /:           ELSE
    /:           ADDRESS *TYPE 2* PARAGRAPH AS
    /:             FROMCOUNTRY &VBDKA-SLAND&
    /:             PERSONNUMBER &VBDKA-ZZPRSNR&
    /:            ADDRESSNUMBER &VBDKA-ADRNP_2&
    /:            ENDADDRESS
    /:           ENDIF
    Now as per the above code, Address of Type 2 is coming fine but when it comes to Address TYPE 3 i.e. Contact Person address is not getting displayed on the form. I have checked in ADRC table, record exists.
    Can I have some valuable inputs  on the same and please let me know if you need any other relevant info.
    THanks in Advance!!!
    Cheers
    VJ

    Check the standa saphelp for priority and number of lines toprint it correctly.
    Thanks
    Nabheet

  • Address number , person number and address type in Ship to address

    HI All,
    We  are working on SRM 6.0.
    In our system we have ship to address as partner function 27 in  shopping cart line item  .
    If all the line items in the same shopping cart have same address  then also we are getting different  address number , person number and address type in the partner functions of SC line items.
    In ship to partner function,  how the address number , person number and address type is decided?
    Your inputs will be valuable for us.
    Thanks
    Snehal

    Hi
    Ship to address no is set up at company level - you can also create a ship to address and you can main in the attribute ship to address.
    if you enter the ship to address manually then new address number might be created.
    What is the setting in your existing system.
    for eg. create a sc with 2 line item  let one from inherited ship to address and anothe ritem you undo them and enter new address.
    and click partner function 27 for line item 1 and 2 in the bbp_pd and it takes you to crmd_partner table and show you different address no.
    br
    muthu

  • No provider for Address type : rfc822

    In my workflow, after instantiating the EJBs, I send a request mail to the
    Manager through the WLPI workflow. Everything was going fine. But, ever
    since we have moved our SMTP server to a new location, (maintaining the same
    host name ), I have been getting errors from WLPI when the mail is to be
    sent.
    If I remove the Action which sends the mail (in the Start Node), I don't get
    these errors, the instance of the flow is created and all is fine MINUS the
    mails being sent.
    But in presence of the action with mail sending functionality, neither the
    flow instance is created, nor is the mail sent.
    I suspected the problem to be linked with :
    1. The SMTP server setup (which does not seem to be the case looking at the
    Stack Trace) OR
    2. With the problem of the mail.JAR or activation.JAR files in the CLASSPATH
    (both of these are in my WEBLOGIC_CLASSPATH variable. mail.JAR is the first
    entry and activation.jar is the second entry)
    I get the following stack dump:
    No provider for Address type: rfc822
    at
    com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBean.executeActions(W
    orkflowProcessorBean.java, Compiled Code)
    at com.bea.wlpi.server.workflow.Start.activate(Start.java:124)
    at com.bea.wlpi.server.workflow.Workflow.instantiate(Workflow.java, Compiled
    Code)
    at
    com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBean$1.invoke(Workflo
    wProcessorBean.java:709)
    at
    com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBean.performWithError
    Handling(WorkflowProcessorBean.java:1098)
    at
    com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBean.instantiate(Work
    flowProcessorBean.java:705)
    at
    com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBeanEOImpl.instantiat
    e(WorkflowProcessorBeanEOImpl.java:466)
    at
    com.bea.wlpi.server.eventprocessor.EventListener.checkTrigger(EventListener.
    java, Compiled Code)
    at
    com.bea.wlpi.server.eventprocessor.EventListener.onMessage(EventListener.jav
    a, Compiled Code)
    at weblogic.jms.client.JMSMessageConsumer.readQueue(JMSMessageConsumer.java,
    Compiled Code)
    at weblogic.jms.common.MessageQueue.execute(MessageQueue.java:748)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled Code)
    Any help will be highly appreciated. Kindly mail to [email protected]
    Thanks
    Preyas

    In my workflow, after instantiating the EJBs, I send a request mail to the
    Manager through the WLPI workflow. Everything was going fine. But, ever
    since we have moved our SMTP server to a new location, (maintaining the same
    host name ), I have been getting errors from WLPI when the mail is to be
    sent.
    If I remove the Action which sends the mail (in the Start Node), I don't get
    these errors, the instance of the flow is created and all is fine MINUS the
    mails being sent.
    But in presence of the action with mail sending functionality, neither the
    flow instance is created, nor is the mail sent.
    I suspected the problem to be linked with :
    1. The SMTP server setup (which does not seem to be the case looking at the
    Stack Trace) OR
    2. With the problem of the mail.JAR or activation.JAR files in the CLASSPATH
    (both of these are in my WEBLOGIC_CLASSPATH variable. mail.JAR is the first
    entry and activation.jar is the second entry)
    I get the following stack dump:
    No provider for Address type: rfc822
    at
    com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBean.executeActions(W
    orkflowProcessorBean.java, Compiled Code)
    at com.bea.wlpi.server.workflow.Start.activate(Start.java:124)
    at com.bea.wlpi.server.workflow.Workflow.instantiate(Workflow.java, Compiled
    Code)
    at
    com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBean$1.invoke(Workflo
    wProcessorBean.java:709)
    at
    com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBean.performWithError
    Handling(WorkflowProcessorBean.java:1098)
    at
    com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBean.instantiate(Work
    flowProcessorBean.java:705)
    at
    com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBeanEOImpl.instantiat
    e(WorkflowProcessorBeanEOImpl.java:466)
    at
    com.bea.wlpi.server.eventprocessor.EventListener.checkTrigger(EventListener.
    java, Compiled Code)
    at
    com.bea.wlpi.server.eventprocessor.EventListener.onMessage(EventListener.jav
    a, Compiled Code)
    at weblogic.jms.client.JMSMessageConsumer.readQueue(JMSMessageConsumer.java,
    Compiled Code)
    at weblogic.jms.common.MessageQueue.execute(MessageQueue.java:748)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled Code)
    Any help will be highly appreciated. Kindly mail to [email protected]
    Thanks
    Preyas

  • No provider for Address type :

    In my workflow, after instantiating the EJBs, I send a request mail to the
    Manager through the WLPI workflow. Everything was going fine. But, ever
    since we have moved our SMTP server to a new location, (maintaining the same
    host name ), I have been getting errors from WLPI when the mail is to be
    sent.
    If I remove the Action which sends the mail (in the Start Node), I don't get
    these errors, the instance of the flow is created and all is fine MINUS the
    mails being sent.
    But in presence of the action with mail sending functionality, neither the
    flow instance is created, nor is the mail sent.
    I suspected the problem to be linked with :
    1. The SMTP server setup (which does not seem to be the case looking at the
    Stack Trace) OR
    2. With the problem of the mail.JAR or activation.JAR files in the CLASSPATH
    (both of these are in my WEBLOGIC_CLASSPATH variable. mail.JAR is the first
    entry and activation.jar is the second entry)
    I get the following stack dump:
    No provider for Address type: rfc822
    at
    com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBean.executeActions(W
    orkflowProcessorBean.java, Compiled Code)
    at com.bea.wlpi.server.workflow.Start.activate(Start.java:124)
    at com.bea.wlpi.server.workflow.Workflow.instantiate(Workflow.java, Compiled
    Code)
    at
    com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBean$1.invoke(Workflo
    wProcessorBean.java:709)
    at
    com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBean.performWithError
    Handling(WorkflowProcessorBean.java:1098)
    at
    com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBean.instantiate(Work
    flowProcessorBean.java:705)
    at
    com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBeanEOImpl.instantiat
    e(WorkflowProcessorBeanEOImpl.java:466)
    at
    com.bea.wlpi.server.eventprocessor.EventListener.checkTrigger(EventListener.
    java, Compiled Code)
    at
    com.bea.wlpi.server.eventprocessor.EventListener.onMessage(EventListener.jav
    a, Compiled Code)
    at weblogic.jms.client.JMSMessageConsumer.readQueue(JMSMessageConsumer.java,
    Compiled Code)
    at weblogic.jms.common.MessageQueue.execute(MessageQueue.java:748)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled Code)
    Any help will be highly appreciated. Kindly mail to [email protected]
    Thanks
    Preyas

    In my workflow, after instantiating the EJBs, I send a request mail to the
    Manager through the WLPI workflow. Everything was going fine. But, ever
    since we have moved our SMTP server to a new location, (maintaining the same
    host name ), I have been getting errors from WLPI when the mail is to be
    sent.
    If I remove the Action which sends the mail (in the Start Node), I don't get
    these errors, the instance of the flow is created and all is fine MINUS the
    mails being sent.
    But in presence of the action with mail sending functionality, neither the
    flow instance is created, nor is the mail sent.
    I suspected the problem to be linked with :
    1. The SMTP server setup (which does not seem to be the case looking at the
    Stack Trace) OR
    2. With the problem of the mail.JAR or activation.JAR files in the CLASSPATH
    (both of these are in my WEBLOGIC_CLASSPATH variable. mail.JAR is the first
    entry and activation.jar is the second entry)
    I get the following stack dump:
    No provider for Address type: rfc822
    at
    com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBean.executeActions(W
    orkflowProcessorBean.java, Compiled Code)
    at com.bea.wlpi.server.workflow.Start.activate(Start.java:124)
    at com.bea.wlpi.server.workflow.Workflow.instantiate(Workflow.java, Compiled
    Code)
    at
    com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBean$1.invoke(Workflo
    wProcessorBean.java:709)
    at
    com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBean.performWithError
    Handling(WorkflowProcessorBean.java:1098)
    at
    com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBean.instantiate(Work
    flowProcessorBean.java:705)
    at
    com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBeanEOImpl.instantiat
    e(WorkflowProcessorBeanEOImpl.java:466)
    at
    com.bea.wlpi.server.eventprocessor.EventListener.checkTrigger(EventListener.
    java, Compiled Code)
    at
    com.bea.wlpi.server.eventprocessor.EventListener.onMessage(EventListener.jav
    a, Compiled Code)
    at weblogic.jms.client.JMSMessageConsumer.readQueue(JMSMessageConsumer.java,
    Compiled Code)
    at weblogic.jms.common.MessageQueue.execute(MessageQueue.java:748)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled Code)
    Any help will be highly appreciated. Kindly mail to [email protected]
    Thanks
    Preyas

  • NoSuchProviderException: No provider for Address type: rfc822

    this is the stack : No provider for Address type: rfc822
    javax.mail.NoSuchProviderException: No provider for Address type: rfc822
         at javax.mail.Session.getTransport(Session.java:475)
         at javax.mail.Transport.send0(Transport.java:154)
         at javax.mail.Transport.send(Transport.java:80)
    I know what it means....but why it happens?
    please help!!!!!!!!!!!!

    [joyrex75],
    I suspect that the CLASSPATH settings on the machine that you are using is pointing only to the mail.jar file. If you are setting up the Java runtime environment that includes only the mail.jar file, your runtime environment will not have the mail providers such as the POP3, IMAP or SMTP .jar files.
    Point your CLASSPATH to the mailapi.jar file which contains the JavaMail APIs and all the mail protocol providers that SUN supports i.e. POP3, IMAP and SMTP. Try to execute the java command on your JavaMail application and see if throws out the Exception again.
    HTH.
    Allen Lai
    Developer Technical Support
    SUN Microsystems
    http://www.sun.com/developers/support/

  • Address type XXDEFAULT does not exist

    Hi Gurus,
    i am working on crm 2007 web Ui.
    when i try to create a new corporate account from masterdata>accounts>corporate account, i just provided name and country and click on save.
    Getting following error.
    """ Address type XXDEFAULT does not exist: Address usage XXDEFAULT cannot be created ""
    Any idea why i am getting this suddenly.
    to know the solution, i got componet and view names from the WEB ui screen using F2 technical attributes.put a break point in all of those methods and dubugged, but could not find the solution
    i appriciate your help.
    thanks
    seema

    Hi,
           This may be a R/3 to CRM download configuration issue. See if this thread if it helps.
    [Problem with initial download;
    Regards,
    Arun Prakash

  • Receiver ABAPProxy-Addressing Type parameter

    Hi,
    In receiver ABAPProxy, we have Addressing Type parameter, which has two options 1. URL Address and 2. HTTP destination.
    What is difference between two and when to choose?
    Thanks,
    Pragathi.

    we have 1. SDN and 2. help.sap.com
    What is difference between two and when to choose?
    http://help.sap.com/saphelp_nwpi71/helpdata/EN/85/78af1bf407434796aaf8dbd6d4e7b7/frameset.htm

  • My apple tv and my macbook share the same itunes e-mail address type login.  The apple tv does not see my macbook.  I have been into itunes and set home sharing but I still have no access to my music or pictures.  any ideas?

    my apple tv and my macbook share the same e-mail address type login.  I have been into itunes and set to allow home sharing.  my devices do not see each other.  Any ideas?

    Have you enabled home-sharing on the ATV?
    See if this helps
    http://support.apple.com/kb/TS2972?viewlocale=en_US&locale=en_US

  • Table that maintain address type corresponding to value in PA0006

    Hi,
    I am looking for a table that maintains different address type with description. Can anyone help me?
    Sunny

    Hi Sunny
    The field in PA0006 is ANSSA which is for address type. But the back end table for values T591A.
    If you create any record in PA0006 with the address type 05 mailing address, then you can view the same in pa0006 table under the field ANSSA.
    But Here the Adress type is nothing but your subtype.
    Regards
    Suresh

  • Maintaining Service Arrangement for Employees: Address type-ID not availabl

    Hello,
    I´m facing the following problem while implementing CRM Service via Best Practices for CRM V1.70:
    Building Block Configuration Guide C26 CRM SERVICE:
    Section 3.3.3 WFM Core Settings:
    3.3.3.1     Maintaining Service Arrangements for Employee
    Assignment Block u2018Service Arrangementsu2019:
    In Assignment block Location there is no address type-ID u2018XXDEFAULTu2019 for adress source u2018Organizationu2019. Thus I receive the following error message: u2018Enter a valid address usage typeu2019. Address type-ID u2018XXDEFAULTu2019 is only available for adress source u2018Individualu2019.
    What exactly do I have to do in order to make address type-ID u2018XXDEFAULTu2019 also available for adress source u2018Organizationu2019.
    Thanks in advance.
    Best regards,
    AEV

    Hi,
    I am facing similar problem what did you do to resolve it.
    Thanks in advance.
    Rahul

Maybe you are looking for

  • ITunes won't find new iPhone and update invalid signature

    Trying to restore from iPhone 4 Restore backup to new iPhone 6 (Windows 7) and encountered the following...... When trying to connect the new iPhone 6 to my existing iTunes account, iTunes would not show the device (couldn't find it). Received a popu

  • Cannot connect to Oracle through ODBC.

    Please help, I don't know what else to try. I'm writing automated test scripts and frequently need to access the database to verify data values. These scripts run under multiple environments and have to validate several different flavors of database

  • Deductable and Non deductable Control function for CVD A/C during Import Procurement.....

    Hi Expert, I have a requirement like my client needs to take credit availed on CVD (JCV1), ECess on CVD (JECV) and H&SECess on CVD (J1CV) in Import procurement for one Company code. for 1000, however client doesn't want to take credit availed for ano

  • Sending IDOC while creating a transport order (WM)

    Hi, I'm looking for the customizing options which let me configure that an (WMTOID) IDOC is generated while creating an transport order based on a transport request... Transaction for this is LT04 Thanks a lot. Kind regards Markus

  • "must fill all requiered fields" - how can i push button multiple selection

    hi friends, i have a selection screen: subty for pa0001-subty obligatory. so_persk for pa0001-persk pa_vac as checkbox. the user have to fill subty and (so_persk or pa_vac.). the user want that when she push the "multiple selection" it wont give her