Hi all requrement urgent

from table vbfa, i require three fields (vbelv,rfmng,matnr) . for particular vbelv and matnr, sum of rfmng is needed.
that is in particular if there are different materials for particular vbelv the rfmng of the material should be displayed. if there are same materials for a particular vbelv sum of rfmng should be displayed.
regards,
Santosh.

Hi
Something wrong with your Requirement or your approach.
VBFA is for documnet flow
So in which type of documents are you interested? in orders, deliveries, billing doc's or what?
beacuse this table consists of all differents types of sales documents/
Which one to consider?
be clear
Reward points for useful Answers
Regards
Anji

Similar Messages

  • I need to change my account name but even if I updated it in the Adobe website, Revel still does not update my name at all! ***Urgent***

    I need to change my account name but even if I updated it in the Adobe website, Revel still does not update my name at all! ***Urgent***

    Good morning,
    Glad your account is up and running!
    As a note, the Revel service is not going away any time in the near future. The apps that are no longer available as of Dec. 8 are Grouppix and VideoBite
    Glenyse

  • Can anyone let me know ..what is this all about---urgent

    import java.io.InputStream;
    public class I
    public I()
    public static final synchronized String I(int i)
    int j = i & 0xff;255
    if(getResourceAsStream[j] != i)
    getResourceAsStream[j] = i;
    if(i < 0)
    i &= 0xffff;65535
    String s = (new String(FYFG, i, FYFG[i - 1] & 0xff)).intern();255
    getClass[j] = s;
    return getClass[j];
    static byte FYFG[];
    static String getClass[] = new String[256];
    static int getResourceAsStream[] = new int[256];
    static
    try
    InputStream inputstream = (new I()).getClass().getResourceAsStream("" + 'I' + '.' + 'g' + 'i' + 'f');
    if(inputstream != null)
    int i = inputstream.read() << 16 | inputstream.read() << 8 | inputstream.read();
    FYFG = new byte;
    int j = 0;
    byte byte0 = (byte)i;
    byte abyte0[] = FYFG;
    while(i != 0)
    int k = inputstream.read(abyte0, j, i);
    if(k == -1)
    break;
    i -= k;
    for(k += j; j < k; j++)
    abyte0[j] ^= byte0;
    inputstream.close();
    catch(Exception exception) { }

    If it is so urgent, this remark might come too late. I take the risk though.
    Analyze the code and tell me what u understand by thishttp://www.catb.org/~esr/faqs/smart-questions.html#writewell
    How To Ask Questions The Smart Way
    Eric Steven Raymond
    Rick Moen
    Write in clear, grammatical, correctly-spelled language
    We've found by experience that people who are careless and sloppy writers are usually also careless and sloppy at thinking and coding (often enough to bet on, anyway). Answering questions for careless and sloppy thinkers is not rewarding; we'd rather spend our time elsewhere.
    So expressing your question clearly and well is important. If you can't be bothered to do that, we can't be bothered to pay attention. Spend the extra effort to polish your language. It doesn't have to be stiff or formal — in fact, hacker culture values informal, slangy and humorous language used with precision. But it has to be precise; there has to be some indication that you're thinking and paying attention.
    Spell, punctuate, and capitalize correctly. Don't confuse "its" with "it's", "loose" with "lose", or "discrete" with "discreet". Don't TYPE IN ALL CAPS; this is read as shouting and considered rude. (All-smalls is only slightly less annoying, as it's difficult to read. Alan Cox can get away with it, but you can't.)
    More generally, if you write like a semi-literate b o o b you will very likely be ignored. So don't use instant-messaging shortcuts. Spelling "you" as "u" makes you look like a semi-literate b o o b to save two entire keystrokes.

  • Hello All, an urgent issue:- Currency Format

    Hello All,
    I created one program which download & printed the report after selecting the correspondence Radio button.
    While I am downloading the file on local system it will download as .txt file format & while I select the radio button “printed report” it will do it for correspondence invoice number.
    My issue is.
    In output I have few currency values in diff field. Now User want those value should come in this format (1.000.000,00) every time.
    So is there any function module which can convert the currency value format which user want? Or do I have to do some coding, if yes then what it should be.
    Because here user want whatever system format should be but value come in that format only in both condition either downloading the file or printed one.

    Sonu,
    Try with below example.
    Currency Conversion:
    Use the function module
    CONVERT_TO_LOCAL_CURRENCY
    Writing currency amount to string without thousands seperator
    This is usefull e.g. i connection with batch input/call transaction.
    GI_OUTPUT-WRBTR: Field type Currency with amount
    L_AMOUNT_STRING: Field type c with amount
    PERFORM AMOUNT_TO_STRING USING GI_OUTPUT-WRBTR
    CHANGING L_AMOUNT_STRING.
    FORM AMOUNT_TO_STRING USING P_AMOUNT
    CHANGING P_AMOUNT_STRING.
    DATA L_SEP(1) TYPE C.
    PERFORM GET_THOUSAND_SEPERATOR USING L_SEP.
    WRITE P_AMOUNT TO P_AMOUNT_STRING.
    REPLACE L_SEP WITH ' ' INTO P_AMOUNT_STRING.
    CONDENSE P_AMOUNT_STRING NO-GAPS.
    WRITE P_AMOUNT_STRING TO P_AMOUNT_STRING RIGHT-JUSTIFIED.
    ENDFORM.
    FORM GET_THOUSAND_SEPERATOR USING P_SEP.
    DATA: L_AMOUNT LIKE BSEG-DMBTR,
    L_AMOUNT_STRING(15) TYPE C.
    Find 1000 seperator. If decimal seperator = . then
    1000 seperator = , else 1000 seperator = .
    L_AMOUNT = '1.00'.
    WRITE L_AMOUNT TO L_AMOUNT_STRING.
    IF L_AMOUNT_STRING CS ','.
    P_SEP = '.'.
    ELSE.
    P_SEP = ','.
    ENDIF.
    ENDFORM.
    Convert amount to/from string
    CALL FUNCTION 'HRCM_AMOUNT_TO_STRING_CONVERT'
    EXPORTING
    betrg = 3000
    WAERS = 'DKK'
    NEW_DECIMAL_SEPARATOR =
    NEW_THOUSANDS_SEPARATOR =
    IMPORTING
    STRING = slam
    CALL FUNCTION 'HRCM_STRING_TO_AMOUNT_CONVERT'
    EXPORTING
    string = slam2
    DECIMAL_SEPARATOR = '.'
    THOUSANDS_SEPARATOR =
    WAERS = 'HUF'
    IMPORTING
    BETRG = b2
    EXCEPTIONS
    CONVERT_ERROR = 1
    OTHERS = 2
    Language depending formatting
    To format a currency amount with decimals according to the currency use
    WRITE and the CURRENCY option.
    Currency keys an d numbers of decimals are defined in table TCURX Decimal
    Places in Currencies.
    E.G.
    Formatting an amount in Kuwatian Dinars:
    Dmbtr = 123456.
    Write dmbtr currency 'KUD'
    123.456
    Write dmbtr currency 'USD'
    1234.56
    Note that the formatting does not depend on the number of decimals in the
    number in the program.
    Dmbtr = '12.3456'.
    Write dmbtr currency 'USD'
    1234.56
    To format the decimal and thousand sepearators according to the settings for
    a specific country,
    use the statement SET COUNTRY <country key>
    Settings for countries are defined in table T005 Countries.
    The country key used in the statement is field LAND1
    E.g.
    set country 'US'
    Don't forget to reward if useful....

  • Requesting all for urgent help ...Designing a new GUI for KM docs.

    Hi all,
    As i know the KM docs are opened in a new browser ( IE or Firefox ) can we display them in a sort of GUI which can have limited options like " No File save as ", or "Print " etc, can this be done? Can someone give me a workflow as to how these are fetched and executed in browser and **if i have the JSP scripts for blocking some browser options and keyboard keys where do i write them ?**
    Requesting your help please ,
    Many thanks in advance
    SantoshKumar Adapa
    Edited by: Santosh Kumar Adapa on Mar 25, 2008 7:49 AM

    Hi Sumit,
    Thanks for the reply the blog was a great starter for me, but my primary concern is like when u open a KM doc its displayed in a browser right like IE or Firefox, which has all file options like save as, print etc, now my task is to make the docs available to only a limited no of ppl who can only see them but cannot save it, for this i have been asked to display the KM docs in a new GUI which lacks all these options.I know tht we can use some scripting to block the browser options and disable the keyboard strokes even but i donot know how to integrate these scripts to where and how far is this approach feasable?
    Can you please help me out with this or else suggest me an alternate method of doing this using out KM layouts?
    Thanks in advance
    Santosh

  • "You have not completed all characteristics" - Urgent

    Hi all,
    I want to do a quality inspection in qa32. I select the lot and click "Usage Decision" button,when "record usage decision" screen appears,  it is written that "You have not completed all characteristics" with inspection end date.
    Please tell me what is the problem.
    Regards,
    AI.

    Hi,,
    Go tot QE51 and enter the characteristics and save
    then  enter  QA32  and take UD (user Decision)
    G.Ganesh Kumar

  • XSD get all node and all leaf of all node URGENT please!

    I am want write a java program that will parse an xml schema and obtain all nodes and all leaf of all nodes
    samebody can help me?

    i use this, but i can only can print this:
    /quotazione
    /quotazione/ORG_ID
    /quotazione/CUSTOMER_ID
    /quotazione/quot
    /quotazione/customer
    but the schema is:
    <xs:schema
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:xdb="http://xmlns.oracle.com/xdb"
    xdb:storeVarrayAsTable="true">
         <xs:element name="quotazione" type="quotaioneType" xdb:defaultTable="QUOTAZIONE"/>
         <xs:complexType name="quotaioneType" xdb:SQLType="QUOTAZIONE_T">
              <xs:sequence>
                   <xs:element name="ORG_ID" type="xs:integer" xdb:SQLName="ORG_ID"/>
                   <xs:element name="CUSTOMER_ID" type="xs:integer" xdb:SQLName="CUSTOMER_ID"/>
                   <xs:element name="quot" type="quotType" xdb:SQLName="QUOT"/>
                   <xs:element name="customer" type="customerType" xdb:SQLName="CUTOMER"/>
              </xs:sequence>
         </xs:complexType>
         <xs:complexType name="quotType" xdb:SQLType="QUOT_T">
              <xs:sequence>
                   <xs:element name="QUOTATION_ID" type="xs:integer" xdb:SQLName="QUOTATION_ID"/>
                   <xs:element name="STATUS" type="xs:string" xdb:SQLName="STATUS"/>
              </xs:sequence>
         </xs:complexType>
         <xs:complexType name="customerType" xdb:SQLType="CUSTOMER_T">
              <xs:sequence>     
                   <xs:element name="TITLE_CODE" type="xs:string" xdb:SQLName="TITLE_CODE"/>
                   <xs:element name="CUSTOMER_NAME" type="xs:string" xdb:SQLName="CUSTOMER_NAME"/>
              </xs:sequence>
         </xs:complexType>
    </xs:schema>
    the java class is:
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              XMLSchema schemadoc=null;;
              XSDBuilder builder;
              URL url;
              int i=0;
              try{
                   builder = new XSDBuilder();          
                   url = new URL("file://c:\\quotazione.xsd");               
                   schemadoc = (XMLSchema)builder.build(url);
              }catch(Exception ex){
                   System.out.println("Errore file xsd--");
              //si prende lo schema
                   String[] NS = schemadoc.getAllTargetNS();
                   XMLSchemaNode Nodo = new XMLSchemaNode();//nodi schema
                   XSDNode[] uno;     
                   XSDNode[] childElements;
                   Nodo = schemadoc.getSchemaByTargetNS(NS[ i ]);
                   uno = Nodo.getElementSet();
                   XSDElement elem = schemadoc.getElement(NS, uno[0].getName());
                   childElements = elem.getChildElements();
                   System.out.println("/"+uno[0].getName());
                   for (i=0;i<childElements.length;i++){
                             System.out.println("/"+uno[0].getName()+"/"+childElements[i].getName());
    can somebody help me abount print the children of /quotazione/quot/ for example?

  • Hi All..urgent please respond

    HI I am very new to ABAP Webdynpro, can anyone you please let me a link for detailed development of Webdynpro apart from SAP help( I am going through it now...)
    Regards,
    Pratima Jain.

    Hi Pratima Jain,
    Please check these links
    https://www.sdn.sap.com/irj/sdn/nw-development?rid=/webcontent/uuid/512040e1-0901-0010-769c-c238c6ca35d9 [original link is broken]
    http://help.sap.com/saphelp_nw04/helpdata/en/a5/1a1e3e7181b60ae10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/77/3545415ea6f523e10000000a155106/frameset.htm
    First ABAP WebDynpro - simple WebDynpro to display 'Hello world
    http://www.sapdevelopment.co.uk/webapps/webdynpro/wdp_helloworld.htm
    PPT
    http://wendtstud1.hpi.uni-potsdam.de/sysmod-seminar/SS2005/presentations/12-WebDynpro-Overview.ppt
    Hope this helps...
    Best regards,
    raam

  • HI ALL ..URGENT PLEASE HELP...

    I installed 11g in windows 2003 server for studying 11g administration. and of course a test application development also.
    I am able to login to SYS schema in sqlplus and EM ...but I am not able to change the passwords/unlock the default user acocunts.
    ora-01031 insufficient privileges error is coming up.
    please advice. waiting for reply...
    I have also installed DB Vault and given a username and password for Vault administrator.
    Does that make any problem.

    In fact I was about to create an application in 11g. using APEX. I read the Vault docs, then came to know that "alter user" and "drop user" privilege will be revoked from SYS.
    I could change the password by logging in to Vault Administrator account.
    Thanks for your help.

  • Menu: Background color covers all! Urgent

    Made a DVD with a nice menu.
    Next day, when I wanted to change some detail, it had "disappeared", i.e. it was covered by backgropund color matte (Color could be changed in Preferences, but matte could not be removed).
    Templates dragged-dropped into Menu are also immediately covered by background color.
    Can’t work on the menu, - but can see it in Connections pane.
    Any suggestions, please? I have to deliver a DVD this weekend.
    aabenhus

    cool! many thanks, got it. ;-)

  • EDI WE21 requrement Urgent...

    Hi,
    I have a requirement in the EDI,
    I need to create a “.txt” file in AL11 transaction. For this I have configured in WE21 transaction and created a file port. In that I have chosen IDoc record type SAP Release 4.x. and Physical directory.
    Given some path “/usr/sap/interfaces/” in the Directory box.
    In the Outbound file I have given RECON.TXT.
    Now I have created the IDOC and the file is generated Recon.txt. I have a problem here. When ever the next IDOC is coming, it is overwriting. I have seen the function module which has been provided by SAP in WE21. But the client requirement is whenever first idoc is generated RECON1.txt should be created and when the next idoc is coming RECON2.txt shouldbe created in AL11.  Other wise the file name should be  Ordernumber_recon.txt.
    If any one has gone trough the same scenario please through some lights on that.   
    Thanks and Regards,
    Manohar

    In WE21, you might have noticed there is a field called "Function Module" while defining "File" port. In this field we can define a function module to create a file name. Several function modules are available such as following
    EDI_PATH_CREATE_CLIENT_DOCNUM     Directory + file name in format T_Client_Docnum
    EDI_PATH_CREATE_DATE_TIME     Directory + file name in format T_CCYYMMDD_HHMMSS
    EDI_PATH_CREATE_LENGTH_LE_8     Directory + file name in format NTHHMMSS.T
    EDI_PATH_CREATE_USERNAME     Directory + file name in format SY-UNAME
    However none of these will fulfill the requirement raised by client for filenames as RECON1.txt, RECON2.txt etc...
    So i suggest you should copy a standard function module for example EDI_PATH_CREATE_DATE_TIME and modify its abap code to fulfill your needs. In your case you simply need a running counter (1,2,3...)as the first part of filename is constant (RECON). So in your copied function module you can use a customized Z table to store the latest value of counter or else you can use SAP number range object (you have to create a number range for that transaction SNRO and know how to call it in your abap code, normally with function module NUMBER_GET_NEXT)
    After creating the function module remember to register it first in transaction WE55 and you will be able to use it in WE21.
    I hope this will help you.

  • Help needed in HTTP Tunneling - urgent

    Hi all,
    I urgently need a working code sample of a client which sends requests to a server that redirects the request to an RMI server via RMI servlet.
    Does any of you familiar of such a code sample?
    Thanks

    I'm sorry, but HTTP Tunneling is not working for me. I must have done something wrong.
    Let me describe my configuration:
    I have a server behind NAT router which connected to apache2 and tomcat 4.1 web servers. The apache2 and tomcat are not connected between them.
    I deployed war file on tomcat which contains the servlet for the HTTP Tunneling which its code is:
    public class RmiHttpTunnelerServlet extends HttpServlet
        public void init(ServletConfig config) throws ServletException
            super.init(config);
            System.out.println("Simplified RMI Servlet Handler loaded successfully.");
        public void doPost(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException
            try
                String queryString = req.getQueryString();
                String command, param;
                int delim = queryString.indexOf("=");
                if (delim == -1)
                    command = queryString;
                    param = "";
                else
                    command = queryString.substring(0, delim);
                    param = queryString.substring(delim + 1);
                if (command.equalsIgnoreCase("forward"))
                    try
                        ServletForwardCommand.execute(req, res, param);
                    catch (ServletClientException e)
                        returnClientError(res, "client error : " + e.getMessage( ));
                        e.printStackTrace();
                    catch (ServletServerException e)
                        returnServerError(res, "internal server error : " + e.getMessage());
                        e.printStackTrace();
                else
                    returnClientError(res, "invalid command: " + command);
            catch (Exception e)
                returnServerError(res, "internal error: " + e.getMessage());
                e.printStackTrace();
        public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException
            returnClientError(res, "GET Operation not supported: Can only forward POST requests.");
        public void doPut(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException
            returnClientError(res, "PUT Operation not supported: Can only forward POST requests.");
        public String getServletInfo()
            return "Simplified RMI Call Forwarding Servlet Servlet.<br>\n ";
        private static void returnClientError(HttpServletResponse res, String message) throws IOException
            res.sendError(HttpServletResponse.SC_BAD_REQUEST,
                          "<HTML><HEAD><TITLE>Java RMI Client Error < / TITLE > < / HEAD > < BODY > " +
                          "<H1>Java RMI Client Error</H1>" + message + "</BODY></HTML>");
            System.err.println(HttpServletResponse.SC_BAD_REQUEST + "Java RMI Client Error" + message);
        private static void returnServerError(HttpServletResponse res,
                                              String message) throws IOException
            res.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR,
                          "<HTML><HEAD>< TITLE > Java RMI Server Error < / TITLE > < / HEAD > < BODY > " +
                          "<H1>Java RMI Server Error < / H1 > " + message + " < / BODY > < / HTML > ");
            System.err.println(HttpServletResponse.SC_INTERNAL_SERVER_ERROR + "Java RMI Server Error : " + message);
        }There is also a utility class:
    public class ServletForwardCommand {
        public static void execute(HttpServletRequest request, HttpServletResponse response, String stringifiedPort)
            throws ServletClientException, ServletServerException, IOException {
            int port = convertStringToPort(stringifiedPort);
            Socket connectionToLocalServer = null;
            try {
                connectionToLocalServer = connectToLocalServer(port);
                forwardRequest(request, connectionToLocalServer);
                forwardResponse(response, connectionToLocalServer);
            } finally {
                if (null != connectionToLocalServer) {
                    connectionToLocalServer.close();
        private static int convertStringToPort(String stringfiedPort) throws ServletClientException {
            int returnValue;
            try {
                returnValue = Integer.parseInt(stringfiedPort);
            } catch (NumberFormatException e) {
                throw new ServletClientException("invalid port number: " + stringfiedPort);
            if (returnValue <= 0 || returnValue > 0xFFFF) {
                throw new ServletClientException("invalid port: " + returnValue);
            if (returnValue < 1024) {
                throw new ServletClientException("permission denied for port: " + returnValue);
            return returnValue;
        private static Socket connectToLocalServer(int port) throws ServletServerException {
            Socket returnValue;
            try {
                returnValue = new Socket(InetAddress.getLocalHost(), port);
            } catch (IOException e) {
                throw new ServletServerException("could not connect to " + "local port");
            return returnValue;
        private static void forwardRequest(HttpServletRequest request, Socket connectionToLocalServer)
            throws IOException, ServletClientException, ServletServerException {
            byte buffer[];
            DataInputStream clientIn = new DataInputStream(request.getInputStream());
            buffer = new byte[request.getContentLength()];
            try {
                clientIn.readFully(buffer);
            } catch (EOFException e) {
                throw new ServletClientException("unexpected EOF " + "reading request body");
            } catch (IOException e) {
                throw new ServletClientException("error reading request" + " body");
            DataOutputStream socketOut = null;
            // send to local server in HTTP
            try {
                socketOut = new DataOutputStream(connectionToLocalServer.getOutputStream());
                socketOut.writeBytes("POST / HTTP/1.0\r\n");
                socketOut.writeBytes("Content-length: " + request.getContentLength() + "\r\n\r\n");
                socketOut.write(buffer);
                socketOut.flush();
            } catch (IOException e) {
                throw new ServletServerException("error writing to server");
        private static void forwardResponse(HttpServletResponse response, Socket connectionToLocalServer)
            throws IOException, ServletClientException, ServletServerException {
            byte[] buffer;
            DataInputStream socketIn;
            try {
                socketIn = new DataInputStream(connectionToLocalServer.getInputStream());
            } catch (IOException e) {
                throw new ServletServerException("error reading from " + "server");
            String key = "Content-length:".toLowerCase();
            boolean contentLengthFound = false;
            String line;
            int responseContentLength = -1;
            do {
                try {
                    line = socketIn.readLine();
                } catch (IOException e) {
                    throw new ServletServerException("error reading from server");
                if (line == null) {
                    throw new ServletServerException("unexpected EOF reading server response");
                if (line.toLowerCase().startsWith(key)) {
                    responseContentLength = Integer.parseInt(line.substring(key.length()).trim());
                    contentLengthFound = true;
            while ((line.length() != 0) &&
                (line.charAt(0) != '\r') && (line.charAt(0) != '\n'));
            if (!contentLengthFound || responseContentLength < 0)
                throw new ServletServerException("missing or invalid content length in server response");
            buffer = new byte[responseContentLength];
            try {
                socketIn.readFully(buffer);
            } catch (EOFException e) {
                throw new ServletServerException("unexpected EOF reading server response");
            } catch (IOException e) {
                throw new ServletServerException("error reading from server");
            response.setStatus(HttpServletResponse.SC_OK);
            response.setContentType("application/octet-stream");
            response.setContentLength(buffer.length);
            try {
                OutputStream out = response.getOutputStream();
                out.write(buffer);
                out.flush();
            } catch (IOException e) {
                throw new ServletServerException("error writing response");
    }I checked also with packets monitoring tool, I couldn't see any http transportation.
    Any help will be appreciated.

  • Urgently required Crystal Reports 2008 FixPack_03 for SAP B1 8.8

    Dear All,
    I Urgently need Crystal Reports 2008 FixPack_03 for SAP B1 8.8. It is unavailable on the following link:
    Crystal Reports 2008 Reference [original link is broken]
    I have also searched it but unable to find it. If anyone has this, kindly share it.

    Hi Iqbal,
    There is a service pack in the following link
    https://www.sdn.sap.com/irj/sdn/businessone?rid=/webcontent/uuid/807d22cb-cb1d-2b10-8794-fb76d7feca88 [original link is broken]
    There is a fix pack 03 included in the folder, I don't know if this is relevant.
    Cheers

  • DB Adapter not returning all columns from a sql table type

    Using Soa Suite 10.1.3.4.
    Calling DB Adapter from bpel to a database package procedure with an OUT NOCOPY parameter based on a TABLE OF type.
    It works fine except that I only get the first 14 columns out of 55.
    Can query all columns from Sqldeveloper or Sqlplus.
    XML skema reflects all columns correct.
    Same result without NOCOPY in parameter.
    HaveI missed some details/limitations?

    hi
    here is how I solved it.
    first create custom view that will find all requred data.
    in my case it was
    tables :
    ADRCITYT
    ADRCITY
    ADRPCDCITY
    T005S
    T005U
    joins :
    ADRCITY     CLIENT     =     ADRCITYT     CLIENT
    ADRCITY     COUNTRY     =     ADRCITYT     COUNTRY
    ADRCITY     CITY_CODE     =     ADRCITYT     CITY_CODE
    ADRCITY     CLIENT     =     ADRPCDCITY     CLIENT
    ADRCITY     COUNTRY     =     ADRPCDCITY     COUNTRY
    ADRCITY     CITY_CODE     =     ADRPCDCITY     CITY_CODE
    T005S     MANDT     =     ADRCITY     CLIENT
    T005S     BLAND     =     ADRCITY     REGION
    T005S     MANDT     =     T005U     MANDT
    T005S     LAND1     =     T005U     LAND1
    T005S     BLAND     =     T005U     BLAND
    and finaly searh help
    ORT01     3     3     PAD_ORT01
    CITY_CODE     0     2     CITY_CODE
    PSTLZ     1     1     PSTLZ_HR
    STATE     4     4     REGIO
    BEZEI     5     5     BEZEI20
    COUNTRY     0     6     LAND1
    LANGU     0     7     LANGU

  • Count all rows in user_tables

    Hi,
    Any one could help me to write a pl/sql procedure to get the total number of all the rows of user_tables?
    Thanks!

    Have a look at the following thread:
    'count rows of all rows of all tables urgent'
    count rows of all rows of all tables urgent

Maybe you are looking for