Doubts Plz urgent

hi,
when delta fails from ODS to ODS what we will do?
can we do reair full request to
O to O
O to C
C to O
C to C ?
init with out data transfer how many records will bring?

HI
Lets take a scenario where an ODS A is giving data with ODS B and the delta had been failed.
You have to go to ODS B mark the red request's OM status as  red manully. then go to ODS A, and failed req mark the data mart management as red and delete the delta from there. (tick mark for data mart delta). now just run the delta upload. it should work fine.
Repair full request is usefull while loading data into ODS.
Init without data transfer will bring ONE record.
Hope it helps.
Please assign points and close the threads when ever your doubts are cleared.
Darshan
Edited by: Darshan Joshi on Jun 14, 2008 11:22 AM

Similar Messages

  • How can write our z program in standard print prog RVADOR01 plz urgent

    hi Guru
    What is requirment i developed on zsmart form. for this i have one Zprint program.
    I want assing this zprint proram in entry form . But it gives dump like conflict type.. what may be problem . I copied stand. RVADOR01 in this I write one perform. In this perform i write smart form code. Is it wrie way or not give me suggestions.Plz very urgent. I only pass vbeln in this .plz give me suggestions.
    Plz urgent
    Durgesh

    Hi ,
        I assume that you have  : 
        smartform   
        driver program  of type subroutone pool
        their is  one main subroutine in driver program entry_xyz or whatever which calls
        other subroutines .
        Now go to nace assign smartform name , to print program name and     subroutine name ex . entry_xyz .
    It it does not works ask your function consultunt to configure driver program , smartform and entry routine in nace .
    regards
    Regards

  • Using unicode in sms sending :)plz. urgent reply is needed.

    when i want to send a sms of string of unicode. is it necessary to encode it in UTF8 or UTF16 ???
    when i encode it then the length of the string comes larger.
    can i send sms as a string of unicode without changing its length????
    like this:
    String str="\u270F";
    // now str's length is 1
    str = new String(str.getBytes("UTF16"));
    //now str's length is 4!!!!!!!!
    plz. urgent reply is needed.
    best regards
    tanvir

    By default SMS has it's own text encoding and therefore you cannot use UTF8 nor UTF16. There is a special UCS2 encoding, alowing for 70 unicode characters to be send (per sms). See: http://www.dreamfabric.com/sms/

  • Unable to get Rmi program working. Help plz - urgent.

    Any help to get this problem resolved would be of help.
    I get the error as below:
    D:\test\nt>java Client
    Server
    Client exception: Error marshaling transport header; nested exception is:
    javax.net.ssl.SSLException: untrusted server cert chain
    java.rmi.MarshalException: Error marshaling transport header; nested exception is:
    javax.net.ssl.SSLException: untrusted server cert chain
    javax.net.ssl.SSLException: untrusted server cert chain
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a([DashoPro-V1.2-120198])
    at com.sun.net.ssl.internal.ssl.ClientHandshaker.a([DashoPro-V1.2-120198])
    at com.sun.net.ssl.internal.ssl.ClientHandshaker.processMessage([DashoPro-V1.2-120198])
    at com.sun.net.ssl.internal.ssl.Handshaker.process_record([DashoPro-V1.2-120198])
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a([DashoPro-V1.2-120198])
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a([DashoPro-V1.2-120198])
    at com.sun.net.ssl.internal.ssl.AppOutputStream.write([DashoPro-V1.2-120198])
    at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:76)
    at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:134)
    at java.io.DataOutputStream.flush(DataOutputStream.java:108)
    at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:207)
    at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:178)
    at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:87)
    at Server_Stub.passArgs(Unknown Source)
    at Client.main(Client.java, Compiled Code)
    the server was invokde as:
    D:\test\nt>java -Djava.rmi.server.codebase="file:/d:/test" -Djava.policy=d:/test/policy Server a b c
    Server bound in registry
    where policy had allpermission
    The server program is given as below:
    import java.net.InetAddress;
    import java.rmi.Naming;
    import java.rmi.registry.LocateRegistry;
    import java.rmi.registry.Registry;
    import java.rmi.RemoteException;
    import java.rmi.RMISecurityManager;
    import java.rmi.server.UnicastRemoteObject;
    public class Server extends UnicastRemoteObject implements Message
         private static String[] args;
         public Server() throws RemoteException
              // super();     
              super(0, new RMISSLClientSocketFactory(),
                   new RMISSLServerSocketFactory());
         public String[] passArgs() {
              System.out.println(args[0]);
              System.out.println(args[1]);
              System.out.println(args[2]);
              System.out.println(args.length);
              System.out.println();
              return args;
         public static void main(String a[])
              // Create and install a security manager
              if (System.getSecurityManager() == null)
                   System.setSecurityManager(new RMISecurityManager());
              args=a;
              try
                   Server obj = new Server();
                   // Bind this object instance to the name "Server"
                   Registry r = LocateRegistry.createRegistry(4646);
                   r.rebind("Server", obj);
                   System.out.println("Server bound in registry");
              } catch (Exception e) {
                   System.out.println("Server err: " + e.getMessage());
                   e.printStackTrace();
    The RMISSLServerSocketFactory class is as below:
    import java.io.*;
    import java.net.*;
    import java.rmi.server.*;
    import javax.net.ssl.*;
    import java.security.KeyStore;
    import javax.net.*;
    import javax.net.ssl.*;
    import javax.security.cert.X509Certificate;
    import com.sun.net.ssl.*;
    public class RMISSLServerSocketFactory implements RMIServerSocketFactory, Serializable
         public ServerSocket createServerSocket(int port)
              throws IOException     
              SSLServerSocketFactory ssf = null;
              try {
                   // set up key manager to do server authentication
                   SSLContext ctx;
                   KeyManagerFactory kmf;
                   KeyStore ks;
                   char[] passphrase = "passphrase".toCharArray();
                   ctx = SSLContext.getInstance("TLS");
                   kmf = KeyManagerFactory.getInstance("SunX509");
                   ks = KeyStore.getInstance("JKS");
                   ks.load(new FileInputStream("testkeys"), passphrase);
                   kmf.init(ks, passphrase);
                   ctx.init(kmf.getKeyManagers(), null, null);
                   ssf = ctx.getServerSocketFactory();
              } catch (Exception e)
                   e.printStackTrace();
                   return ssf.createServerSocket(port);
    The RMIClientSocketFactory is as below:
    import java.io.*;
    import java.net.*;
    import java.rmi.server.*;
    import javax.net.ssl.*;
    public class RMISSLClientSocketFactory     implements RMIClientSocketFactory, Serializable
         public Socket createSocket(String host, int port)
              throws IOException
              SSLSocketFactory factory =(SSLSocketFactory)SSLSocketFactory.getDefault();
              SSLSocket socket = (SSLSocket)factory.createSocket(host, port);
                   return socket;
    And finally the client program is :
    import java.net.InetAddress;
    import java.rmi.registry.LocateRegistry;
    import java.rmi.registry.Registry;
    import java.rmi.RemoteException;
    public class Client
         public static void main(String args[])
              try
                   // "obj" is the identifier that we'll use to refer
                   // to the remote object that implements the "Hello"
                   // interface
                   Message obj = null;
                   Registry r = LocateRegistry.getRegistry(InetAddress.getLocalHost().getHostName(),4646);
                   obj = (Message)r.lookup("Server");
                   String[] s = r.list();
                   for(int i = 0; i < s.length; i++)
                        System.out.println(s);
                   String[] arg = null;
                   System.out.println(obj.passArgs());
                   arg = obj.passArgs();
                   System.out.println(arg[0]+"\n"+arg[1]+"\n"+arg[2]+"\n");
              } catch (Exception e) {
                   System.out.println("Client exception: " + e.getMessage());
                   e.printStackTrace();
    The Message interface has the code:
    import java.rmi.Remote;
    import java.rmi.RemoteException;
    public interface Message extends Remote
         String[] passArgs() throws RemoteException;
    Plz. help. Urgent.
    Regards,
    LioneL

    hi Lionel,
    have u got the problem solved ?
    actually i need ur help regarding RMI - SSL
    do u have RMI - SSL prototype or sample codings,
    i want to know how to implement SSL in RMI
    looking for ur reply
    -shafeeq

  • Lo cockpit---doubt plz

    Hi All,
    i have changed a Datasource in Lo cockpit...by adding a field to the extract structure
    and then i even regenrated the datasource in Dev as well and then activated it now after the change its green and i even checked the datasource in rsa3
    now my doubt is when importing it to production.
    i will lock the users
    make sure no updating is being done
    keep all the queues empty (extraction and Delta)
    and then import i think i am on right track
    so my question is as i have already done the regenerating of the datasource after changing the extract structure in dev and attached it to the request.
    so do i need to again regenerate the datasource once i import the request is it necessary or else i just import the request with changes and then check the datasource and just start the V3 update and then replicate it in BWPRD becoz i have already regenrated thedatasource and activated it.
    below i am giving the list of the contents in my transport, ( JUST TO CONFIRM I HAVE ONLY ADDED A FIELD TO THE EXTRACT STRUCTURE FROM THE RIGHT PANE TO LEFT IN MAINTANCE SCREEN)
    <b>TMCEXACT---100MC13VD0ITM
    TMCEXCFS---MCVBRK  -- RFBSK (This is the field i added MC13VDITM
    Active version of Datasource--2lis_13_vditm and  a table with --ZZMC13VD1ITM</b>
    How to Stop the V3 update where can i find the option....if i am not wrong...is it the one in lbwe with a pencil mark after the datasource name.
    am i right. plz confirm
    thanks and regards
    harish
    Message was edited by: H.B

    H B
    Just to confirm again you are on right track. Just transport your changes from Dev to Production system in R/3 side, when you do next delta in BW you will get  for the new fields data in your next extraction.
    Hope this helps
    Thanks
    Sat

  • Plz Urgent in BADI

    In production server in vl01n transaction server some one put BREAK-POINT  out bound delivery order when item level badi implementation..
    I used all method but its not showing in Method code.
    How i can find zbadi implementation where break point is set.
    Very urgent.
    Plz reply as sooon as possible.
    Durgesh

    Hi dugesh,
                       you can put the break point  in se19  --interface ---under the method <b>change_input_header_items</b>.The pariculer BADI will trigger when you click on PGI(post goods issue from the outbound delivery(VL02N).
    Hope now you have catch my point.
    and you can develop any objects in developemen server.In production server you can test the object only .You have no rights access Functional T.codes .
    regards

  • Logical Database Plz Urgent

    Hi,
    i want to access KONV which is cluster table and the field is KWERT.
    The thing is that i want to access it by taking customers from KNVV and giving it to VBRK (SALES Table). Now in VBRK i want to have a selection on FKDAT to get a list of Customers stored in the field called KUNAG.
    on VBRK-KUNAG basis i want to access the table KONV-KWERT.
    If i am doing queries then the System stops responding cuz it has got alot of overhead. So i tried to use Logical Database called VFV.
    If this is the best solution means using LDB then how to use it, can anyone help me with this. I tried it by Function module but it is showing all data without considering selection criteria.
    If anyone can help me then plz do answer or refer me to any web site so that i can figure this thing out. If anyione has got a good book on that then plz feel free to mail me.
    Thanks,
    Muhammad Usman Malik
    ABAP Consultant
    Siemens
    [email protected]
    +92-333-2700972

    Write the entire logic between
    GET event and END-OF-SELECTION.
    and call your smartform in the event END-OF-SELECTION.
    START-OF-SELECTION.
    GET PERNR ..
    *your logic ..
    END-OF-SELECTION.
    call function'yoursmartform'

  • MM Help plz Urgent

    Hi,
    I want to see Purchase order wise report. The report should show PO wise payment in FI.
    PO field is EBLEN and i am unable to find its link to BSIK or BSAK. The reason is that they are not maintaining EBELN in both these table. I tried on LIFNR but LIFNR is for Vendor only and the requirement is for EBELN means in PO.
    Please anyone help me out in this regard and also plz tell me any detail tables hierarchy of all modules.
    Thanks
    Usman Malik

    hi,
    to get payment details w.r.t. PO, you can use the table BSEG, field ZUONR.
    this field contains PO number concatenated by item no. Eg: 450001728600020
    here 00020 is item no. you can mention BUKRS, GJAHR  and SHKZG as 'S'  in selection criteria for BSEG. Get the accounting document ' BSEG-BELNR' and BSEG -GJAHR. Concantenate this and input in BSIK-ZUONR to get the required data.
    hope it helps.

  • Collaboration Rooms problem/info - plz urgent

    dear friends,
    I am working on EP developement and now i am working on Collaboration rooms.
    I want some info as for below:
    I am using EP 6.0 with SP2
    1. Where exactly the user's information will be stored in EP server?
    2. I understand the purpose of SAP R/3 System in UM Configuration, but what is the purpose of LDAP Server?
    3. Is LDAP Server configuation is required to work on Collaboration Rooms?
    4. Is it possible to work with Collaboration Rooms without LDAP Server/configuration?
    Please do reply anybody with positive answers
    urgent reply appricated
    thanks in advance
    Kantha
    cheers
    Kantha

    Hi Kantha,
    > Where exactly the user's information
    > will be stored in EP server?
    I don't know exactly what you mean. If no specific user backend store is defined, the users created are stored within the database for the portal server.
    > I understand the purpose of SAP R/3 System in UM
    > Configuration, but what is the purpose of LDAP Server?
    There is no need to have a SAP R/3 in the background for UM, you could also just have a LDAP server where the users of the company are stored in. This LDAP you can use for UserManagement.
    > Is LDAP Server configuation is required
    > to work on Collaboration Rooms?
    A simple No.
    > Is it possible to work with Collaboration Rooms
    > without LDAP Server/configuration?
    From the last answer a simple Yes follows.
    CollabRooms do not need any specific User Backend Store; the UserManagement works as in the rest of the portal on the UME, which again is bound to an LDAP - or not.
    Hope it helps
    Detlev

  • HI PLZ URGENT

    HI ALL
      SELECT SINGLE  knumh FROM a081 INTO wf_knumh WHERE datbi < idate AND
      datab > idate AND KONT_PACK  = WF-PCKG_NO  AND KONT_ZEILE = WF-LINE_NO
    INPUT IS IDATE,THERE  is one record in datbase table for this condtion.
    but i am not getting. i dont  how the dates r compared?
    plz give me ur suggestions

    Hi,
    SELECT SINGLE knumh
    FROM a081
    INTO wf_knumh
    WHERE
    datbi < idate AND datab > idate
    AND KONT_PACK = WF-PCKG_NO
    AND KONT_ZEILE = WF-LINE_NO
    I believe you are checking whether
    datab > idate < datbi
    You should be checking
    datab < idate < datbi
    So try this:
    SELECT SINGLE knumh
    FROM a081
    INTO wf_knumh
    WHERE
    datab < idate AND idate < datbi
    AND KONT_PACK = WF-PCKG_NO
    AND KONT_ZEILE = WF-LINE_NO
    Take care of the boundary conditions, i. e. what should happen if <b>idate</b> = <b>datab</b> or <b>idate</b> = <b>datbi</b>?
    If you are working with the ABAP data type DATE (A081-DATAB) is of that type, then the internal format of the variables is <i>always</i> YYYYMMDD. Sometimes this is displayed in other formats - depending on cultural and/or language settings, but the internal format is always the same.
    Hope this helps (please reward me if it does).
    Regards, Joerg

  • Plz urgent help about HTMLDb

    dear members
    i have install 10g database successfully...........now when i have install 10g HTMLDB i see a error
    connection refused (description=(temp=)
    (vsnum=134238208)(err=12514)(error-stack=(erroe=
    (code=18514)(emfi=4)))
    when i have put database services name then i have see error
    plz help me
    Thanks

    you might try adjusting your ORACLE_HOME and/or TNS_ADMIN environment variables. the person at...
    HTML DB INSTALL
    ...found that unsetting his ORACLE_HOME worked. and the person at the bottom of...
    Windows 10G HTMLDB Install Error
    ...made adjustments according to his TNS_ADMIN setting. anyhow, please see if using/adjusting/setting those env variables works for you.
    thanks,
    raj

  • Plz urgent help me

    while processing termination for this employee i selected all plans for stop participation however got the response 0 plans selected from 9 plans and plans that are not selected, could you plz help me

    Hi,
    For termination use the Feature MSN20
    OK
    REWARD POINTS

  • Boolean Array-- Help Plz Urgent

    Can i create and initialize an array of booleans like this ?
    Boolean[51] Position = true;
    Thanks... Plz help

    This works:Boolean[] bools = {
        new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true),
        new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true),
        new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true),
        new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true),
        new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true),
        new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true),
        new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true),
        new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true),
        new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true),
        new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true),
        new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true),
        new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true),
        new Boolean(true), new Boolean(true), new Boolean(true)
    };... and, fortunately, so does this:Boolean[] bools = new Boolean[51];
    java.util.Arrays.fill(bools, new Boolean(true));I hope you find this of some help.

  • Plz urgent

    Hi friends,
                Issues related to GL, AR, AP.( plz send me if you have)
    issues receiving tools.what are the tools we use to receive issues?
    isuues solving methdology?
    What is procurement?( current business process)
    standar reports?
    conduct various test like unit, scenario and regression means

    Hi,
    1 - U can refer to this forum for real time scenario issues
    2. Most commonly used tool is Remedy
    3. Through Incident management system (tickets)
    4. U can refer to P2p cycle - Puchase requistion - Approval - Purchase order - Shipment - Receipt of goods - Verification with Invoice - Payment
    5. Many standard reports are available. E.g. FS10N -GL; FBl1N / FBL5N - Vendor /customer
    6. Unit testing - Testign single scenario.  Go hands with coding.  Regression testing - vigourous testing all scenarios and its integration.
    Thanks,
    Sridevi
    <i><b>* Pls. assign points, if useful</b></i>

  • Gudevening sd gurus  i have some doubts plz help me out

    1.how do u settle rebate
    2.how the item condition type in pricing picks the price without assigning the acesssequence to condition type?
    3. why do we maintain pricing  pricing procedure for free  good delivery?
    4. we  can six different kind of dates in sales  oder , how these  dates are determined in sales order plz in detail?
    5. how can link the delivery document to shipping doc where do we have connection?
    5.if i want to change the moment type 601 to 523 , what are thing need to be done?

    Dear Venkat
    Please dont post too many questions in one thread as you will not get feedback to all questions.
    1)  Rebate Settlement
    You can partially or fully settle a rebate agreement.
    The system uses the services rendered date (which is the billing date, if you are shipping products) to determine whether a billing document qualifies for rebate processing. To qualify, the date must fall within the validity period of one or more rebate agreements.
    Since it is possible for the billing date to be later than the services rendered date, you may need to allow some time after the end of a rebate agreement's validity period before final processing of the rebate agreements. If the volume of your sales rebate processing is high, you can collectively process rebate settlements as a background task.
    2.  Condition type in pricing
    If I understood your question correctly, I dont think without maintaining proper access sequence, your pricing condition type will flow into sale order / billing
    3)  Free Goods Delivery
    If you want to generate a sale order in SAP, you have to have a pricing procedure with respective condition types
    5)  Movement Type
    Please check with your MM / FI on the impact.  You can change the movement type in your schedule line category
    thanks
    G. Lakshmipathi

Maybe you are looking for

  • Dreamweaver 8 bindings - to MySQL, error code 500

    Hello! Well, I've spent five days searching online forums, and a few posts come close to my problem, but not getting any clues to a solution. I hope one of the resident experts or members could shed some light... Windows XP Dreamweaver 8.0.2 (just up

  • Tab canva disapear whith stacked canvas

    hi guys, in my form there is: 1. content canvas 2.tabbed canvas when i put a stacked canvas the tabbed canvas disapear. any help?

  • Font Problem in SmartForm

    Hi, We have developed an Invoice in SmartForm which will display data in English and Thai Language. We have seperate Paragraph and Character Formats for them defined in one SmartStyle. Now depending on the language some free text are maintained we ha

  • ITunes Temporarily Unavailable

    I am helping my mom make an iTunes account but everytime we try and login it comes up with a iTunes is Temporarily unavalible. I have a Windows 8 and have tried uninstalling and reinstalling iTunes, up dating my computer and reseting cache but none o

  • Catalogue error message

    After moving all photographs from my first catalogue, which was a mess, to a new catalogue, it all worked fine. Until that is I tried to open the new catalogue, which had worked OK all day. I now get a window that says "Unexpected error, select anoth