Reconcilation via lookups

hi ,
Can anyone tell me how can u do reconcillation by lookups thru ODS ,
Step by step procedure is appreciated ..
regards

Hi,
Reconcillation is the process of validating the data that is loaded into BW.
This can be done in several ways .
Generally it is done by using the reports developed.
A. By using the reconcillatuion reports.
B.By comparing thr RSA3 count with the data in the PSA.
C.With a particular field in the Source to the corresponing object in the report .
Reach us if any help required
Regards,
Sarvepalli.

Similar Messages

  • Assign task to user (via lookup) in SP Designer workflow

    I would appreciate advice on the best way to assign tasks to specified users via a workflow.
    For example, I would like to assign a task to the manager of each department, depending on various values checked in a workflow. The best solution I have come up with is to create a lookup table that includes two fields:
    1. Department
    2. User
    The workflow would check for a match on Department, and then assign the task to the corresponding user.
    Is this a reasonable solution, or does anyone have a better option?
    Many Thanks

    Hi,
    Based on your description, my understanding is that you want to assign a task to the manager of each department via a workflow.
    I have did a test with your method, it is reasonable.
    Create a custom list named ‘custom’, create two columns, ‘department’ with the type of “Single line of text” and ‘manager’ with the type of “Person and Group”.
    Create another custom list named ‘custom12’.
     Create a Lookup column called ‘Department’, Get information from: ‘custom’, In this column: ‘department’. 
    The ‘manager’ column with the type of “Person and Group” can’t be lookup
    Open your site with sharepoint designer, choose the ‘custom12’ to create an approval workflow.
    Click those user->Workflow Lookup For a user->Data source: custom; Field from source: manager; Return field as: Display Name. Field: department; Value: Lookup for Single line of text. Please refer to the screenshot.
    5. Publish the workflow.
    Please don’t hesitate to let me know if there still exist some confuse.
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Error reconciling AD Lookups OIM 11g IBM JDK 6 64 bit

    Hi,
    I'm setting up SSL from OIM 11g to AD 2008, my environment is OIM 11g+ Weblogic 10.3.3 generic on IBM AIX 6.1 + IBM JDK 6 64 bit. I imported the certificate as described in AD connector documentation with "keytool". I'm getting the following ERROR when I try to run the scheduled jobs in order to perform lookup reconciliation (groups and organizations)
    <Mar 6, 2011 3:11:51 AM CST> <Error> <OIMCP.ADCS> <BEA-000000> <com.thortech.xl.integration.ActiveDirectory.tcADUtilLDAPController : addSecurityProvider : ClassNotFoundException has occured com.sun.net.ssl.internal.ssl.Provider>
    <Mar 6, 2011 3:11:51 AM CST> <Error> <OIMCP.ADCS> <BEA-000000>
    I have reviewed "java.security" in the IBM JRE and there is nothing about SUN JSSE provider. I understand I need to setup Sun JSSE in the IBM JDK but I'm not able to find information about that. I dont know if it's possible to use Sun JSSE provider in IBM or if I need to change the security provider to IBM's implementation. How to do that? I think somewhere in the weblogic configuration.
    Please helps me, how can I set up the correct configuration.
    Regards
    Juan

    From Sun JDK 1.6 updae 18+ 64 bit, copy the jsse.jar in the OIM_HOME/server/ThirdParty and restart the servers

  • EJB called via JNDI in a Repository Service :: ClassCastException

    Hi SDN,
    I've got a problem in calling an EJB from a Repository Service...
    Here the steps I've follow:
      -  An EJB has been created with some Business Methods in it; it has been packaged in an EAR and deployed;
      -  This EJB is looked up succesfully via JNDI in a WDJ application and also in an Abstract Portal Component; I use the following guides:
    [Accessing EJB Apps using JNDI|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/0736159e-0301-0010- 9ea4-c63d83d0797b?QuickLink=index&overridelayout=true]
    [Referencing an EJB in an Abstract Portal Component|http://wiki.sdn.sap.com/wiki/display/HOME/ConnectingEJBUsing ExternalJars]
      -  A Repository Service has been created and registered on "CREATE_CHILD_TEMPLATE" ResourceEvent; I can see from logs that this service works correctly;
       -  I've copied in the PAR lib and private/lib folders two jars (ejb20.jar and the JAR created building the EJB) and they are added to the build path;
      -  If I try to look up the EJB via JNDI in the received service method, I get a ClassCastException...
    Here some code:
    try {
         //I use System.err to see log in the Default Trace
         System.err.println("Initialize EJB");
         //TestJNDIHome class seems to be visible at runtime, following instruction does not throw any exception
         System.err.println("ToString TestJNDIHome: " + TestJNDIHome.class.toString());
         //EJB and PAR are on the same J2EE engine, so no InitialContext parameters, I'm right?
         InitialContext context = new InitialContext();
         Object jndiobj = context.lookup("altevie.com/testear/TestJNDIBean");
         System.err.println("Classe oggetto recuperato da lookup: " + jndiobj.getClass());
         TestJNDIHome home = (TestJNDIHome) javax.rmi.PortableRemoteObject.narrow(jndiobj, TestJNDIHome.class);
         testJNDI = home.create();
    } catch (NamingException ex) {
         System.err.println("NamingException :: " + ex.getLocalizedMessage());
    } catch (RemoteException ex) {
         System.err.println("RemoteException :: " + ex.getLocalizedMessage());
    } catch (CreateException ex) {
         System.err.println("CreateException :: " + ex.getLocalizedMessage());          
    Here the portalapp.xml (in the same PAR there are two objects, the Repository Service and an Abstract Portal Component, but I've got the same problem also removing the Abstract Portal Component...):
    <application>
      <application-config>
        <property name="com.sap.engine.interfaces.cross.ObjectReferenceImpl" value="SAPJ2EE::altevie.com/testEAR"/>
        <property name="SharingReference" value="usermanagement, knowledgemanagement, landscape, htmlb, exportalJCOclient, exportal"/>
        <property name="PrivateSharingReference" value="SAPJ2EE::altevie.com/testEAR"/>
      </application-config>
      <components>
        <component name="TestJSP">
          <component-config>
            <property name="ClassName" value="com.comer.eps.epcomp.TestJSP"/>
          </component-config>
          <component-profile/>
        </component>
      </components>
      <services>
        <service name="RFServiceWrapper">
          <service-config>
            <property name="className" value="com.sap.netweaver.rf.wrapper.RFServiceWrapper"/>
            <property name="startup" value="true"/>
          </service-config>
        </service>
      </services>
    </application>
    javax.rmi.PortableRemoteObject.narrow method call throws a ClassCastException...
    From the previous println I can see the lookup method returns a com.sap.engine.interfaces.cross.ObjectReferenceImpl object, I do not know if it is correct...
    I've tried to lookup the Local (localejbs/altevie.com/testear/TestJNDIBean) and Remote (altevie.com/testear/TestJNDIBean) JNDI Bean name, but I get the same error...
    I'm sure the JNDI name is correct (it works with WDJ and Abstract Portal Component... I've also tested via LOOKUP command using telnet to connect to J2EE AS and I've checked JNDI Registry and EJB Container services in Visual Admin)...
    Here the stack trace of the error:
    java.lang.ClassCastException: com.comer.eps.ejb.AccessiEJBHome
         at com.sap.engine.services.cross.PortableRemoteObjectContainer.narrow(PortableRemoteObjectContainer.java:179)
         at com.sap.engine.system.PortableRemoteObjectProxy.narrow(PortableRemoteObjectProxy.java:24)
         at javax.rmi.PortableRemoteObject.narrow(PortableRemoteObject.java:134)
         at com.comer.eps.repsrv.onsave.RipubblicaByDE.initializeEJB(RipubblicaByDE.java:145)
    Can you help me? Why JNDI lookup works in an Abstract Portal Application and doesn't in a Repository Service (same code...)?
    Thank you so much and best regards,
    Manuel
    Text Formatted: Manuel Xiccato on Sep 27, 2011 12:29 PM

    Hi SDN,
    I've got a problem in calling an EJB from a Repository Service...
    Here the steps I've follow:
      -  An EJB has been created with some Business Methods in it; it has been packaged in an EAR and deployed;
      -  This EJB is looked up succesfully via JNDI in a WDJ application and also in an Abstract Portal Component; I use the following guides:
    [Accessing EJB Apps using JNDI|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/0736159e-0301-0010- 9ea4-c63d83d0797b?QuickLink=index&overridelayout=true]
    [Referencing an EJB in an Abstract Portal Component|http://wiki.sdn.sap.com/wiki/display/HOME/ConnectingEJBUsing ExternalJars]
      -  A Repository Service has been created and registered on "CREATE_CHILD_TEMPLATE" ResourceEvent; I can see from logs that this service works correctly;
       -  I've copied in the PAR lib and private/lib folders two jars (ejb20.jar and the JAR created building the EJB) and they are added to the build path;
      -  If I try to look up the EJB via JNDI in the received service method, I get a ClassCastException...
    Here some code:
    try {
         //I use System.err to see log in the Default Trace
         System.err.println("Initialize EJB");
         //TestJNDIHome class seems to be visible at runtime, following instruction does not throw any exception
         System.err.println("ToString TestJNDIHome: " + TestJNDIHome.class.toString());
         //EJB and PAR are on the same J2EE engine, so no InitialContext parameters, I'm right?
         InitialContext context = new InitialContext();
         Object jndiobj = context.lookup("altevie.com/testear/TestJNDIBean");
         System.err.println("Classe oggetto recuperato da lookup: " + jndiobj.getClass());
         TestJNDIHome home = (TestJNDIHome) javax.rmi.PortableRemoteObject.narrow(jndiobj, TestJNDIHome.class);
         testJNDI = home.create();
    } catch (NamingException ex) {
         System.err.println("NamingException :: " + ex.getLocalizedMessage());
    } catch (RemoteException ex) {
         System.err.println("RemoteException :: " + ex.getLocalizedMessage());
    } catch (CreateException ex) {
         System.err.println("CreateException :: " + ex.getLocalizedMessage());          
    Here the portalapp.xml (in the same PAR there are two objects, the Repository Service and an Abstract Portal Component, but I've got the same problem also removing the Abstract Portal Component...):
    <application>
      <application-config>
        <property name="com.sap.engine.interfaces.cross.ObjectReferenceImpl" value="SAPJ2EE::altevie.com/testEAR"/>
        <property name="SharingReference" value="usermanagement, knowledgemanagement, landscape, htmlb, exportalJCOclient, exportal"/>
        <property name="PrivateSharingReference" value="SAPJ2EE::altevie.com/testEAR"/>
      </application-config>
      <components>
        <component name="TestJSP">
          <component-config>
            <property name="ClassName" value="com.comer.eps.epcomp.TestJSP"/>
          </component-config>
          <component-profile/>
        </component>
      </components>
      <services>
        <service name="RFServiceWrapper">
          <service-config>
            <property name="className" value="com.sap.netweaver.rf.wrapper.RFServiceWrapper"/>
            <property name="startup" value="true"/>
          </service-config>
        </service>
      </services>
    </application>
    javax.rmi.PortableRemoteObject.narrow method call throws a ClassCastException...
    From the previous println I can see the lookup method returns a com.sap.engine.interfaces.cross.ObjectReferenceImpl object, I do not know if it is correct...
    I've tried to lookup the Local (localejbs/altevie.com/testear/TestJNDIBean) and Remote (altevie.com/testear/TestJNDIBean) JNDI Bean name, but I get the same error...
    I'm sure the JNDI name is correct (it works with WDJ and Abstract Portal Component... I've also tested via LOOKUP command using telnet to connect to J2EE AS and I've checked JNDI Registry and EJB Container services in Visual Admin)...
    Here the stack trace of the error:
    java.lang.ClassCastException: com.comer.eps.ejb.AccessiEJBHome
         at com.sap.engine.services.cross.PortableRemoteObjectContainer.narrow(PortableRemoteObjectContainer.java:179)
         at com.sap.engine.system.PortableRemoteObjectProxy.narrow(PortableRemoteObjectProxy.java:24)
         at javax.rmi.PortableRemoteObject.narrow(PortableRemoteObject.java:134)
         at com.comer.eps.repsrv.onsave.RipubblicaByDE.initializeEJB(RipubblicaByDE.java:145)
    Can you help me? Why JNDI lookup works in an Abstract Portal Application and doesn't in a Repository Service (same code...)?
    Thank you so much and best regards,
    Manuel
    Text Formatted: Manuel Xiccato on Sep 27, 2011 12:29 PM

  • Lookup Idea??

    We are using OWB repository 10.2.0.2.0 and OWB client 10.2.0.2.8. The Oracle version is 10 G (10.2.0.2.0). OWB is installed on Sun 64 bit server.
    As we use lookup in OWB mapping, We have a situation to create lookup from same table for different results in same OWB map. Here is the situation.
    1) Table Ltab
    Lookup key = sourcekey1
    and lookupcode in ( 'A', 'M')
    2) Table Ltab
    Lookup key = sourcekey1
    and lookupcode in ( 'K', 'V')
    We can use ( lookupcode= 'A' OR lookupcode = 'M') instead lookupcode in ( 'A', 'M') as well.
    I do not see a way to code as above in OWB lookup operator.
    Is it doable in OWB via lookup operator?
    Alternatevely, we could create multiple views to support above situation and attach the corresponding views to lookup.
    Did any one in this forum use above approach in large projects?
    Any idea?
    Thanks in advance.
    RI

    Hi,
    I suggest using a joiner operator instead of the lookup. The lookup operator generates a left outer join anyway and in the join condition you have much more flexibility.
    I would not recommend using views, since this splits your etl logik into two different locations.
    Regards,
    Carsten.

  • PeopleSoft Reconciliation via Compent Interface

    All,
    I would like to know if anyone has performed reconciliation using the PeopleSoft Component Interface Adapter in IdM 6.0 or IdM 6.0 SP1.
    Would like to get an idea of what the performance is when reconciling at high volumes (e.g. 100,000 - 600,000 records). Also, would like to konw if anyone has tried reconciling via the Database Table Adapter against a DB2 PeopleSoft person table with the same record load and if the performance was better, if so, by how much.
    Please let me know if I can provide more details.
    Thanks,

    hi
    check out whether this path can help you
    Time Management --> Integrating Time Management with Other SAP Applications --> Define External Application for Integration with Personnel Time Management

  • RMI lookup, NoSuchObjectException

    Hello!
    I have a problem with RMI. And I hope someone is able to help me!
    I have a running Server, wich opens a UnicastRemoteObject and binds it to the registry.
    My client is running in a NSI CrEme VM. The clients connects to the regitry via lookup.
    My Problem case: If the device is turn off and then turned on again (On Windows CE the app is still running), the network connection was lost for a little time. So the RMI connection could not send the least signals any more (So after the set least time... the connection expired). So the objects are not available any more and on a call of the remote object a RemoteException occurs.
    What I do then is, I connect the remote object again via lookup. This works, but now each call on the remote object takes a long time to proceed.
    So I turned on the log calls from RMI on the server... and they say, that there is a NoSuchObjectException is thrown. But I am wondering why after a little time the call on the remote object is successfull. Each call now takes time, because each time it is trying to find the object and says, that it's not found. Anyway the call is successful.
    If I restart the app, all works fine... but what I want is to reconnect without restarting the app.
    What can I do? The thing I want to do is to "reconnect" without starting the VM again after the least time is expired. To lookup won't work. Or am I doing anything wrong?
    Thanks for your answers!
    Yves

    Hello!
    What I have just done was to make the server stub as static.
    My code, whicht does it:
    LocateRegistry.createRegistry(MyServer.getRMIPort());
    serverInterface = (MyServerInterface)UnicastRemoteObject.exportObject(server, MyServer.getUnicastRemotePort());
    Naming.bind("rmi://localhost:" + MyServer.getRMIPort() +  "/myServer", serverInterface);
    public SessionInterface getSession(String userName, String clientName,
              Locale locale) throws ClassNotFoundException,
              IllegalAccessException, InstantiationException, RemoteException {
         logger.info("User " + userName + "@" + clientName + " tried to connect.");
         SessionInterface session = new Session();
         return (SessionInterface) UnicastRemoteObject.toStub(session);
    }And my client reconizes the NoSuchObjectException and then does a reconnect via a new lookup.
    Client-Code:
    try {
         instance.getRMISession().isAlive();
         System.out.println("ALIVE");
    } catch (RemoteException ex) {
         System.out.println("REMOTE EXCEPTION");
         instance = null;
         System.gc();
         instance = new RMIConnector(MyClient.getInstance()
                        .getHostconnectionData().getIpAdress(),
                             MyClient.getInstance().getHostconnectionData()
                                  .getPort());
         instance.tryLookup(); // HERE IS DONE A NEW LOOKUP - WHICH JUST WORKS FINE!!!
    }And the code which gives me the class from the factory:
    if (session == null) {
         if (!connected)     {
              this.tryLookup();
         System.out.println("RMI: getting Session Object.");
         session = server.getSession(ClientConnectionData.getInstance()
                        .getLoginData().getLogInName(), ClientConnectionData
                             .getInstance().getHostNameIpAdress(), null);
         // we must resend the logindata any time we connect to host
         sendLoginData();
    connected = true;
    return session;After this the connection works, just with the situation explained above. (First post)
    The NoSuchObjectException now is not thrown to the client. I just see the Exception if I turn on the logs and exceptions for RMI on the server.
    There I get the following message:
    Feb 27, 2009 9:38:35 AM sun.rmi.transport.Transport serviceCall
    FINE: RMI TCP Connection(49)-10.28.17.20: [10.28.17.20] exception:
    java.rmi.NoSuchObjectException: no such object in table
            at sun.rmi.transport.Transport.serviceCall(Transport.java:129)
            at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:4
    66)
            at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport
    .java:707)
            at java.lang.Thread.run(Thread.java:595)The intresting thing is, all just works fine, each call on the functions and the return values... BUT every time it takes a long period to proceed (about 10seconds). What I also can see in the RMI loggings on the server, ist that first the function is executed and after this it says a few times the NoSuchObjectException exception before the Client goes on.
    I hope you can help me!!!
    Yves

  • Re-lookup possible ?

    I have the following scenario:
    A RMi Server bound to Registry and a client who has get the Remote Object via Lookup.
    All works fine, but then the server was killed and restarted.
    If the client calls now a method of the Remote Object a ConnectionError occurs.
    How can I get the new Remote Object from the Server?
    Regards,
    Geri

    I new lookup doesn't work.
    I made a new lookup and get no error. But if I call a remote method a get a
    ConnectionException. Any ideas?
    Regards,
    Geri

  • Custom HR Database Reconciliation Task

    Hi everyone,
    I have custom resource.
    I have implemented custom reconciliation task, and I upload this.
    I have implemented custom scheduler config file of this task,then uploaded this to MDS.
    My task has this code :
    reconService.createReconciliationEvent(resourceObject, dataMap, true);
    dataMap is hashMap and have all data that I want to reconcile.
    I want to use a reconciliation attribute map.
    I prepared this recon lookup. I want to execute reconcilation via recon lookup.
    Is there anything that I have to do?
    Thanks.
    Best regards.

    Try to first search for you sch task:
    hashMap.put("Task Scheduler.Name", scheduleTaskName);
    tcSchOperations.findScheduleTasks(hashMap);
    Get sch key from above results...getLongValue("Task Scheduler.Key")
    and tcSchOperations.getScheduleTaskAttributes(taskSchedulerKey) to get sch task attributes
    Iterate over task attributes by:  .getStringValue("Task Scheduler.Task Attributes.Name")
    and find your attr and get attr key : getLongValue("Task Scheduler.Task Attributes.Key")
    Construct a  update hashmap  with ..put("Task Scheduler.Task Attributes.Name", your attr name);
    Update sch task with : tcSchOperations .updateScheduleTaskAttribute(taskSchedulerKey, attributeKey, updateMap);
    Hope this helps

  • LSMW-Uploading G/l master Data

    Hello,
    we are migrating Data from R/3 4.6 to ECC 6.0.We need all the G/l from 4.6  exactly same way in ECC 6.0 without new G/l features.
    Please let me which table I should use to extract  g/l master  data (SKA1or SKB1) from 4.6.I am going to do recording with  Tcode FS00 at the time of uploading.
    If any one is having document on G/l uploading please share with me.share the useful points relating to this.
    Many Many Thanks
    Moderator: Please, search SDN

    Hi,
    You will neet to extract data from both SKA1 and SKB1 and need to compile (via lookup etc.) to make a single file for uploding in LSMW.
    Regards,
    Gaurav

  • Send all line items of a sales order to IPC along with condition lines data

    We wrote some pricing routines in R/3, where while doing he calculations for condition line item, we needed to pull in the material information for previous line items. So we exported vbap and imported it inside the routine to be able to have access to all the line items in the sales order. Now, we need to put in the same kind of logic in CRM/IPC. My question is what would be the equivalent of SAP's(import/export) commands for internal tables in case of IPC. I looked at the BADI CRM_COND_COM_BADI but still do not see how I can send all the line items  data to IPC. So I guess, the question comes down to, how do I send all the line items of the sales order (whole VBAP in R/3 terms) to IPC along with the condition line data? Can someone please help?
    Thanks

    Hi Vaibhav,
    If you can get the list of Sales orders which has deleted line items and force completion status. You can manage them in BI via lookup  or navigation attribute.
    Just my views I am sharing .
    Thanks,
    KDJ

  • Creating multiple stateful session beans from a java client. (EJB 3.0)

    I'm having difficulties with the following:
    To access the ShoppingCartBean, I have to put the following annotation in my standalone java client:
    @EJB
    private static ShoppingCartRemote shoppingCartBean;
    The static must be there, thus only one ShoppingCartBean will exist within my java client. But as the ShoppingCartBean is a stateful session bean, I want to be able to get different beans of the same type.
    What is the correct way to do this in EJB 3.0?

    Great question. Because Home interfaces have been removed for the EJB 3.0 simplified
    API, stateful session bean creation happens as a side-effect of injection. However, the
    same is true of EJB 3.0 business interface lookups. The easiest way to create additional
    stateful session beans is to lookup the same dependency that was declared via your
    @EJB annotation.
    E.g.,
    // Assuming the declaring class is pkg1.ShoppingCartClient.java
    InitialContext ic = new InitialContext();
    ShoppingCartRemote scr1 = (ShoppingCartRemote)
    ic.lookup("java:comp/env/pkg1.ShoppingCartClient/shoppingCartBean");
    Note that the name relative to java:comp/env is the default associated with your
    @EJB annotation since the name() attribute wasn't used. Alternatively, you
    could have used :
    @EJB(name="scb") private static ShoppingCartRemote shoppingCartBean;
    InitialContext ic = new InitialContext();
    ShoppingCartRemote scr1 = (ShoppingCartRemote) ic.lookup("java:comp/env/scb");
    Yet another alternative is to declare the @EJB at the class-level. This just defines
    the dependency without any injection, which is fine if you want to create a bunch of
    them via lookup anyway.
    @EJB(name="scb", beanInterface=ShoppingCartRemote.class)
    public class .... {                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Due to deleted Sales order line items and Archived Sales order is still showing as Incomplete in BW as Open Order reports because of Incorrect SAP R/3 Rejection Status("A") in VBUP table.

    In a archived saler Order user had deleted Line Item and completed overall sales order. Now this sales order is archived, but it is stll appearing in BW report as open order because of deleted item  with rejection Status is maintained as “A” (Not yet Processed).
    We want to change this status from "A" (Not yet Processed) to "C" as completed.
    I have tried to reload Archive data but due to some limitation I was not able to do it. Also I feel this will like this s not the proper way to do it.
    Could you please help me to correct way to do it???
    Thanks in advance....

    Hi Vaibhav,
    If you can get the list of Sales orders which has deleted line items and force completion status. You can manage them in BI via lookup  or navigation attribute.
    Just my views I am sharing .
    Thanks,
    KDJ

  • DB view was enhanced in R/3 - how to get new fields in view based ds

    Hi Folks,
    in R/3 a database view was changed - there two new fields.
    How do I get this two new fields into the data source structure and automatically extracted?
    Do I have to delete and re-create the data source?
    Or do I have the ability to "update the strucutre" via rsa6
    I don't have a development key so I can't check myself but I have to give detail description how to do it to folks that got a development key
    All replies appreciated.
    Thanks and best regards,
    Axel

    Hi Axel,
    1.I think first you need to update view .Go to SE11 and update view by adding new fields coming in your view .
    2.If fields are coming from same table on which table is build then you need to click on table fields button and then add those fields to your view .Then you need to update your data source table (extract structure for same).
    3.If your fields are not coming from same table or you want them to populate via lookup to some other table or via Function module then in your extract structure you need to append fields in append structure via RSA6 or RSO2 .You can also use RSA2 for changing structure .
    4.You don't need to delete and recreate data source .Just need to change view and update data source accordingly .
    Please go through this doc you will find it helpful .
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/10a89c00-7dd7-2d10-6f83-cd24ee6d517c?quicklink=index&overridelayout=true
    Hope this will be helpful .
    Regards,
    Jaya Tiwari

  • Working with XI Message and Sender Mail Adapter

    Hello
    I have a task - To use one email address for several interfaces. In this case I think XI Message is the choice.
    The question is How to tie payload and SOAP header?
    Do I need to pass SOAP Header as mail message body and payload as mail attachent?

    hi,
    >>>>I have a task - To use one email address for several interfaces. In this case I think XI Message is the choice.
    you can store the address anywhere
    (in XI table, in R3 table)
    and just get if from the mapping (via lookup)
    and then put it in the adapter specific identifirers
    (THeaderTO field)
    then mail adapter will use it
    Regards,
    michal

Maybe you are looking for

  • HT201442 My phone wont restore. It is showing error 3194. How do I fix this?

    My battery went flat. I charged the phone (Iphone 5) up again and tried to open using my fingerprint. Got a message that I needed to enter the PIN because it was restarting. Entered the PIN - a number engraved on my mind for years - but it would not

  • JAG errors by Default Application

    Hello, I'm traying to create the Default Application: Create Application Workspace (JSF, ADFBC) in JDev Create default business components for all HR tables (except for JOB_HISTORY) in Model project. Edit the Application Module, add nested view objec

  • Adobe Distiller 6.0

    My company is urgently trying to source Adobe Distiller 6.0, does anyone have any advice as to where we can purchase a copy?

  • Icons in Forms 6i

    I have an application which is working on Windows NT/workstation (client server) and forms 6i Now the problem is the icons in the menus and other places are not appearing .. only some icons like save clear have appeared others like query etc do not a

  • I can't install my itunes. why is that?

    when i'm half through my installing the itunes on my laptop, a pop-up appears that says: Error writing to file:C:\Program files(x86)\iTunes\iTunes Resources\nl.proj\DevicePrefsRentalItem.itxib. Verify you have access to that directory." What should i