11 g oca path (pls clarify this; many thanks)

EXAM
1Z0-007 Introduction to Oracle9i SQL®
or
1Z0-047 Oracle Database SQL Expert
or
1Z0-051 Oracle Database 11g: SQL Fundamentals I
+
EXAM
Oracle Database 11g: Administration I
1Z0-052
=
oracle
Database 11g Administrator Certified Associate
now my question is can i take 1z0-052 before taking (1z0-007)
does it have to follow this sequence
or can i take 1z0-052 first before taking the other requirement before the exams
http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=198
thank you for any clarification on this mater
Edited by: oraclehelper on May 26, 2009 2:22 AM

The order in which you take exams is irrelevant. Feel free to take them in whatever order you would like.
Justin

Similar Messages

  • PLS-00307: too many declarations of ' F ' match this call

    Hi friends,
    I have created a package(OL) using procedure overloading.
    Package Specification:
    CREATE OR REPLACE package SDR_SPRUSR.ol as
    procedure f (p number);
    procedure f (p varchar2);
    procedure f (p varchar2,q number);
    procedure f (p number,q varchar2);
    procedure f (p number,q number,r varchar2);
    end;
    Package Body:
    CREATE OR REPLACE package body SDR_SPRUSR.ol as
    procedure f (p number) is
    begin
    dbms_output.put_line('f <number> called');
    end;
    procedure f (p varchar2) is
    begin
    dbms_output.put_line('f <varchar> called');
    end;
    procedure f (p varchar2, q number) is
    begin
    dbms_output.put_line('f <varchar> called,f <number> called');
    end;
    procedure f (p number,q varchar2) is
    begin
    dbms_output.put_line('f <number> called,f <varchar> called');
    end;
    procedure f (p number,q number,r varchar2) is
    begin
    dbms_output.put_line('f <number> called,f <number> called,f <varchar> called');
    end;
    end;
    But, here is the problem:
    When I pass NULL as a parameter like
    BEGIN
    SDR_SPRUSR.OL.F ( NULL );
    END;
    I'm getting an error in SQL*Plus:
    ERROR at line 3:
    ORA-06550: line 3, column 4:
    PLS-00307: too many declarations of 'F' match this call
    ORA-06550: line 3, column 4:
    PL/SQL: Statement ignored
    How can I catch this error? Please provide me an appropriate solution..
    (My requirement is to display a user friendly message when NULL is passed.)
    Thank you.
    Regards,
    Vivek
    Edited by: 847837 on Mar 28, 2011 1:35 AM

    Can't we display a user friendly message showing "PASS SUFFICIENT VALUES"? Why then no change your function as follows
    procedure f (p number) is
    begin
    if p is null then
      dbms_output.put_line('f <number> called ==> pass sufficient values');
    end if;
    end;But even in this case you need to qualify your input parameter with to_number of to_char for the overloading to work correctly
    or give default value for your parameter if possible
    Best regards
    Mohamed Houri

  • PLS-00307: too many declarations of 'DEFINE_COLUMN' match this call

    Compilation of this procedure issues 'PLS-00307: too many declarations of 'DEFINE_COLUMN' match this call'.
    Here is the code:
    PROCEDURE leggi_comp (tabella spre_005.nome_table%type, cen dinf_027.cd_centro%type, prat dinf_027.nr_pratica%type,
    serv dinf_027.cd_servizio%type, fase dinf_027.cd_fase%type, dt_ril dinf_027.dt_rilev%type,
    comp_out out dinf_027.cd_compilatore%type) IS
    source_cursor number;
    v_cen dinf_027.cd_centro%type;
    v_prat dinf_027.nr_pratica%type;
    v_serv dinf_027.cd_servizio%type;
    v_fase dinf_027.cd_fase%type;
    v_dt_ril dinf_027.dt_rilev%type;
    v_comp_out dinf_027.cd_compilatore%type;
    myreturn number;
    BEGIN
    source_cursor := dbms_sql.open_cursor;
    v_cen := cen;
    v_prat := prat;
    v_serv := serv;
    v_fase := fase;
    v_dt_ril := dt_ril;
    dbms_sql.parse (source_cursor,
    'select cd_compilatore from ' || tabella||' where
    cd_centro = :cen and
    nr_pratica = :prat and
    cd_servizio = :serv and
    cd_fase = :fase and
    dt_rilev = :dt_ril',dbms_sql.v7);
    dbms_sql.bind_variable(source_cursor, 'cen', v_cen);
    dbms_sql.bind_variable(source_cursor, 'prat', v_prat);
    dbms_sql.bind_variable(source_cursor, 'serv', v_serv);
    dbms_sql.bind_variable(source_cursor, 'fase', v_fase);
    dbms_sql.bind_variable(source_cursor, 'dt_ril',v_dt_ril);
    dbms_sql.define_column(source_cursor, 1, v_comp_out);
    myreturn := dbms_sql.execute(source_cursor);
    myreturn := dbms_sql.fetch_rows(source_cursor);
    dbms_sql.column_value(source_cursor,1,v_comp_out);
    comp_out := v_comp_out;
    dbms_sql.close_cursor(source_cursor);
    exception
    when others
    then if dbms_sql.is_open (source_cursor)
    then dbms_sql.close_cursor (source_cursor);
    end if;
    raise;
    END;
    Can anybody help me?

    From the documentation which is worth reading
    DBMS_SQL.DEFINE_COLUMN (c IN INTEGER,
                            position IN INTEGER,
                            column IN <datatype>)
    Where <datatype> can be any one of the following types:
    BINARY_DOUBLE
    BINARY_FLOAT
    BFILE
    BLOB
    CLOB CHARACTER SET ANY_CS
    DATE
    DSINTERVAL_UNCONSTRAINED
    NUMBER
    TIME_UNCONSTRAINED
    TIME_TZ_UNCONSTRAINED
    TIMESTAMP_LTZ_UNCONSTRAINED
    TIMESTAMP_TZ_UNCONSTRAINED
    TIMESTAMP_UNCONSTRAINED
    UROWID
    VARCHAR2 CHARACTER SET ANY_CS
    YMINTERVAL_UNCONSTRAINEDSo you need a call more like:
    dbms_sql.define_column(source_cursor, 1, dinf_027.cd_compilatore%type);because v_comp_out is not a datatype, it is a variable.
    John

  • MD5 PLS-00307: too many declarations of 'MD5' match this call

    Hi I wonder if any one can help, I am trying to write an equlivent of mysqls MD5 function.
    When I compile the following I get this error message:
    PLS-00307: too many declarations of 'MD5' match this call
    function MD5(str varchar2)
    RETURN VARCHAR2 IS
    md_str VARCHAR2(16);
    BEGIN
    md_str := dbms_obfuscation_toolkit.md5(str);
    return md_str;
    END;

    Looks to be like Oracle have bolloxed this one well and truly.
    A desc of the toolkit reveals this:
    PROCEDURE MD5
    Argument Name                  Type                    In/Out Default?
    INPUT                          RAW                     IN
    CHECKSUM                       RAW(16)                 OUT
    FUNCTION MD5 RETURNS RAW(16)
    Argument Name                  Type                    In/Out Default?
    INPUT                          RAW                     IN
    PROCEDURE MD5
    Argument Name                  Type                    In/Out Default?
    INPUT_STRING                   VARCHAR2                IN
    CHECKSUM_STRING                VARCHAR2                OUT
    FUNCTION MD5 RETURNS VARCHAR2(16)
    Argument Name                  Type                    In/Out Default?
    INPUT_STRING                   VARCHAR2                IN.
    i.e. two overloaded functions and two overloaded procedures with exactly the same signature. This is not supposed to handle, because the signature (number and type of parameters) is how the database deteremines which version of teh function to call. Identical signatures causes your PLS-307 error.
    If it's any consolation, they appear to have fixed it in Oracle 9i (there's a solitary MD5 procedure).
    Cheers, APC

  • PLS-00307: too many declarations of 'TO_CHAR' match this call

    Hi,
    I've got the error "PLS-00307: too many declarations of 'TO_CHAR' match this call" when I test to run a dynamic page portlet.
    Someone helps?
    Thanks.

    Hi,
    What is the version of portal you are using? Also please give the code in the dynamic page.
    Thanks,
    Sharmila

  • PLS-00307: too many declarations of 'INSERTXML' match this call

    Dear All,
    I need help to create a procedure. I am describing the scenario below.
    I have a table which is
    xml_clob(
    doc_id number,
    doc clob
    The above table contain an xml file in doc column. What i need is read the doc column and parse and insert the xml data to a table. For this purpose I am using a built-in package in oracle database 10g name dbms_xmlsave. To full fill my purpose i am going to create a procedure which is getting error. I am giving the procedure code
    CREATE OR REPLACE PROCEDURE loadxml1 AS
    fil clob;
    buffer varchar2(1000);
    len INTEGER;
    insrow INTEGER;
    BEGIN
    SELECT doc INTO fil FROM xml_clob WHERE doc_id=1;
    len := DBMS_LOB.GETLENGTH(fil);
    DBMS_OUTPUT.PUT_LINE('length '||len);
    DBMS_LOB.READ(fil,len,1,buffer);
    --xmlgen.resetOptions;
    --insrow := xmlgen.insertXML('xml_doc',buffer);
    insrow := dbms_xmlsave.insertXML('xml_doc',buffer);
    --insrow := dbms_xmlsave.insertXML('xml_doc',fil);
    DBMS_OUTPUT.PUT_LINE('length ins '||insrow);
    EXCEPTION
    WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE('In Exception');
    DBMS_OUTPUT.PUT_LINE(SQLERRM(SQLCODE));
    end;
    i am getting the error with the bold line
    insrow := dbms_xmlsave.insertXML('xml_doc',buffer);
    PLS-00307: too many declarations of 'INSERTXML' match this call
    I need help on this. Here the argument xml_doc is the table name where i want to insert data from xml.
    I am giving u the code of dbms_smlsave package which is at sys user.
    CREATE OR REPLACE PACKAGE DBMS_XMLSAVE AUTHID CURRENT_USER AS
    SUBTYPE ctxType IS NUMBER; /* context type */
    DEFAULT_ROWTAG CONSTANT VARCHAR2(3) := 'ROW'; /* rowtag */
    DEFAULT_DATE_FORMAT CONSTANT VARCHAR2(21):= 'YYYY-MM-DD HH24:MI:SS';
    MATCH_CASE CONSTANT NUMBER := 0; /* match case */
    IGNORE_CASE CONSTANT NUMBER := 1; /* ignore case */
    -------------------- constructor/destructor functions ---------------------
    FUNCTION newContext(targetTable IN VARCHAR2) RETURN ctxType;
    PROCEDURE closeContext(ctxHdl IN ctxType);
    -------------------- parameters to the save (XMLtoDB) engine ----------------
    PROCEDURE setXSLT(ctxHdl IN ctxType,uri IN VARCHAR2,ref IN VARCHAR2 := null);
    PROCEDURE setXSLT(ctxHdl IN ctxType, stylesheet IN CLOB, ref IN VARCHAR2 := null);
    PROCEDURE setXSLTParam(ctxHdl IN ctxType,name IN VARCHAR2,value IN VARCHAR2);
    PROCEDURE removeXSLTParam(ctxHdl IN ctxType, name IN VARCHAR2);
    PROCEDURE setRowTag(ctxHdl IN ctxType, tag IN VARCHAR2);
    PROCEDURE setSQLToXMLNameEscaping(ctxHdl IN ctxType, flag IN BOOLEAN := true);
    PROCEDURE setPreserveWhitespace(ctxHdl IN ctxType, flag IN BOOLEAN := true);
    PROCEDURE setIgnoreCase(ctxHdl IN ctxType, flag IN NUMBER);
    PROCEDURE setDateFormat(ctxHdl IN ctxType, mask IN VARCHAR2);
    PROCEDURE setBatchSize(ctxHdl IN ctxType, batchSize IN NUMBER);
    PROCEDURE setCommitBatch(ctxHdl IN ctxType, batchSize IN NUMBER);
    -- set the columns to update. Relevant for insert and update routines..
    PROCEDURE setUpdateColumn(ctxHdl IN ctxType, colName IN VARCHAR2);
    PROCEDURE clearUpdateColumnList(ctxHdl IN ctxType);
    -- set the key column name to be used for updates and deletes.
    PROCEDURE setKeyColumn(ctxHdl IN ctxType, colName IN VARCHAR2);
    PROCEDURE clearKeyColumnList(ctxHdl IN ctxType);
    ------------------- save ----------------------------------------------------
    -- insertXML
    FUNCTION  insertXML(ctxHdl IN ctxType, xDoc IN VARCHAR2) RETURN NUMBER;
    FUNCTION  insertXML(ctxHdl IN ctxType, xDoc IN CLOB) RETURN NUMBER;
    -- updateXML
    FUNCTION updateXML(ctxHdl IN ctxType, xDoc IN VARCHAR2) RETURN NUMBER;
    FUNCTION updateXML(ctxHdl IN ctxType, xDoc IN CLOB) RETURN NUMBER;
    -- deleteXML
    FUNCTION deleteXML(ctxHdl IN ctxType, xDoc IN VARCHAR2) RETURN NUMBER;
    FUNCTION deleteXML(ctxHdl IN ctxType, xDoc IN CLOB) RETURN NUMBER;
    ------------------- misc ----------------------------------------------------
    PROCEDURE propagateOriginalException(ctxHdl IN ctxType, flag IN BOOLEAN);
    PROCEDURE getExceptionContent(ctxHdl IN ctxType, errNo OUT NUMBER, errMsg OUT VARCHAR2);
    PROCEDURE useDBDates(ctxHdl IN ctxType, flag IN BOOLEAN := true);
    -------private method declarations------------------------------------------
    -- we must do this as a bug workaround; otherwise we get ora-600 [kgmexchi11]
    PROCEDURE p_useDBDates(ctxHdl IN ctxType, flag IN NUMBER);
    PROCEDURE p_setXSLT(ctxHdl IN ctxType, uri IN VARCHAR2, ref IN VARCHAR2);
    PROCEDURE p_setXSLT(ctxHdl IN ctxType, stylesheet CLOB, ref IN VARCHAR2);
    PROCEDURE p_propagateOriginalException(ctxHdl IN ctxType, flag IN NUMBER);
    PROCEDURE p_setSQLToXMLNameEsc(ctxHdl IN ctxType, flag IN NUMBER);
    PROCEDURE p_setPreserveWhitespace(ctxHdl IN ctxType, flag IN NUMBER);
    END dbms_xmlsave;
    CREATE OR REPLACE PACKAGE BODY DBMS_XMLSAVE AS
    FUNCTION insertXML(ctxHdl IN ctxType, xDoc IN VARCHAR2) RETURN NUMBER
    as LANGUAGE JAVA NAME
    'oracle.xml.sql.dml.OracleXMLStaticSave.insertXML(int, java.lang.String) return int';
    FUNCTION insertXML(ctxHdl IN ctxType, xDoc IN CLOB) RETURN NUMBER
    as LANGUAGE JAVA NAME
    'oracle.xml.sql.dml.OracleXMLStaticSave.insertXML(int, oracle.sql.CLOB) return int';
    END DBMS_XMLSAVE;
    /

    Hi,
    It's surprising (to me) that you're getting that particular error.
    It's not surprising that you're getting some error, since insertXML is expecting the first argument to be a ctxType, and you're passing a VARCHAR2 instead. Create a ctxType, and use it as the first argument. (Sorry, I'm not familiar with that package, so I can't give you any details.)

  • DBMS_SQL  PLS-00307: too many declarations of 'PARSE' match this call

    I try to accomplish the DDL in a program, i am here to ask the help in PLSQl since i have done very little. I did look up the oracle plsql docs though. Please do no ask the reaosn I have to do that in a program.
    alter system kill session '<sid>, <serial#>';
    sql> CREATE OR REPLACE PROCEDURE mykill(mysid IN NUMBER, myserial in number)
      2  AS
      3      cursor_name INTEGER;
      4      rows_processed INTEGER;
      5  BEGIN
      6      cursor_name := dbms_sql.open_cursor;
      7      DBMS_SQL.PARSE(cursor_name, 'ALTER SYSTEM KILL SESSION '':x', ':y''',
      8                     DBMS_SQL.NATIVE);
      9      DBMS_SQL.BIND_VARIABLE(cursor_name, ':x', mysid);
    10      DBMS_SQL.BIND_VARIABLE(cursor_name,':y', myserial);
    11      rows_processed := DBMS_SQL.EXECUTE(cursor_name);
    12      DBMS_SQL.CLOSE_CURSOR(cursor_name);
    13  EXCEPTION
    14  WHEN OTHERS THEN
    15      DBMS_SQL.CLOSE_CURSOR(cursor_name);
    16  END;
    17  /
    Warning: Procedure created with compilation errors.
    sql> show error
    Errors for PROCEDURE MYKILL:
    LINE/COL ERROR
    7/5      PL/SQL: Statement ignored
    7/5      PLS-00307: too many declarations of 'PARSE' match this call
    sql>

    SY, thanks
    SQL> CREATE OR REPLACE
      2    PROCEDURE mykill(
      3                     mysid IN NUMBER,
      4                     myserial in number
      5                    )
      6      IS
      7      BEGIN
      8          EXECUTE IMMEDIATE 'ALTER SYSTEM KILL SESSION ''' || mysid || ',' || myserial || '''';
      9  END;
    10  /
    Procedure created.
    SQL> exec (541,1655);
    BEGIN (541,1655); END;
    ERROR at line 1:
    ORA-06550: line 1, column 11:
    PLS-00103: Encountered the symbol "," when expecting one of the following:
    * & = - + < / > at in is mod remainder not rem
    <an exponent (**)> <> or != or ~= >= <= <> and or like like2
    like4 likec as between || multiset member submultisetplease advise.

  • Can you view text outside of the canvas? as with the view menu you can see animation paths, bounding boxes and handles??? many thanks

    re: Motion 5
    can you view text outside of the canvas? as when using the view menu you can see animation paths, bounding boxes and handles???
    I'm in the middle of a text animation design treatment and unless my memory is completely failing I thought this was an option.
    An example would be selecting all layers and being able to see all bounding boxes and animation paths while moving along the timeline.
    Of course this could be quite a mess if you couldn't selectively chose which layers, its just with this current project it would be so helpful if
    I could see the text beyond the canvas to aid in my animations.
    many thanks,
    robert
    Motion 5
    2014 MacBook Pro 2.6Ghz i7
    16GB RAM
    OS X 10.9.5
    2011 Mac Pro
    4 Boot drives OS X 10.9.4, 10.10, 10.7, 10.8
    960GB OWC Mercury Accelsior_E2 PCI Express SSD (Current screaming fast boot drive)
    64GB RAM

    thanks for both of your responses
    I do understand shift + v " to "Show Full View Area" and shift + z to fill screen, etc.
    and command + & - for zooming
    what I'd like to do is selectively view, say, the text outside of the canvas as you can see the bounding box
    which contains the text or object when selecting one or all layers in the layers column
    I haven't used this feature in a while though I do recall using it in the past.
    Any help would greatly appreciated
    thanks,
    R.

  • Settings in Jdeveloper - WebApplication. Mr. Frank Could u Pls check this

    Hi Mr. Frank,
    I m using Jdeveloper 9i version.
    I want to create a web application using Jdeveloper. is there any specified path is there to run suppose i want to run the project. ex: IDS home/J2ee/
    Something like that...
    Also another doubt. I hv already connected the db with server by configuring the tnsnames.ora file.. Is there any setting i will hv to do for Jdeveloper while i m creating the application.
    Here i m facing one error while i run ma application-----
    javax.servlet.jsp.JspException: REP-51002: Bind to Reports Server reportserver failed
    javax.servlet.jsp.JspException: REP-51002: Bind to Reports Server reportserver failed
    int oracle.reports.jsp.ReportTag.doStartTag()
    void MyReport.jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
    void oracle.jsp.runtime.HttpJsp.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
    void oracle.jsp.runtimev2.JspPageTable.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.String)
    void oracle.jsp.runtimev2.JspServlet.internalService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
    void oracle.jsp.runtimev2.JspServlet.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
    void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
    void com.evermind.server.http.ServletRequestDispatcher.invoke(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
    void com.evermind.server.http.ServletRequestDispatcher.forwardInternal(javax.servlet.ServletRequest, javax.servlet.http.HttpServletResponse)
    boolean com.evermind.server.http.HttpRequestHandler.processRequest(com.evermind.server.ApplicationServerThread, com.evermind.server.http.EvermindHttpServletRequest, com.evermind.server.http.EvermindHttpServletResponse, java.io.InputStream, java.io.OutputStream, boolean)
    void com.evermind.server.http.HttpRequestHandler.run(java.lang.Thread)
    void com.evermind.util.ThreadPoolThread.run()
    In this application i used 1 Jsp page(Attached a report created through Report Builder). While run the application I am facing this error.
    Could you please clarify this...
    Thanks in advance
    Jithesh.

    You might check the Reports related forum like this thread REP-51002: Bind to Reports Server <servername> failed
    --olaf                                                                                                                                                                                                                                                                   

  • Getting error PLS-00307: too many declarations while instantiating object.

    Hi,
    I'm using oracle 10.2.0.4.0
    I've created an object obj_bsk as follows:
    create or replace type obj_bsk as object
    (batch_set_key varchar2(64),
    constructor function obj_bsk
    return self as result,
    constructor function obj_bsk(p_batch_set_key in varchar2)
    return self as result,
    member procedure display_batch_set_key
    and object body as
    create or replace type body obj_bsk as
    constructor function obj_bsk
    return self as result is
    begin
    self.batch_set_key := sys_guid();
    return;
    end;
    constructor function obj_bsk (p_batch_set_key varchar2)
    return self as result is
    begin
    self.batch_set_key := p_batch_set_key;
    return;
    end;
    member procedure display_batch_set_key is
    begin
    dbms_output.put_line('batch_set_key is:' || self.batch_set_key);
    end;
    end;
    Then I've created a package test_obj as follows:
    specification:
    create or replace package test_obj is
    -- Author : TSHARMA
    -- Created : 31/01/2012 10:32:37
    -- Purpose : to test objects
    my_bsk obj_bsk;
    g_batch_set_key varchar2(64);
    procedure show_obj_val;
    end test_obj;
    body:
    create or replace package body test_obj is
    procedure show_obj_val is
    begin
    my_bsk.display_batch_set_key();
    end;
    begin
    -- Initialization
    if (g_batch_set_key is not null) then
    my_bsk := obj_bsk(g_batch_set_key);
    else
    my_bsk := obj_bsk();
    end if;
    end test_obj;
    When I'm compiling the package I'm getting following error:
    Compilation errors for PACKAGE BODY TSHARMA.TEST_OBJ
    Error: PLS-00307: too many declarations of 'OBJ_BSK' match this call
    Line: 12
    Text: my_bsk := obj_bsk(g_batch_set_key);
    Error: PL/SQL: Statement ignored
    Line: 12
    Text: my_bsk := obj_bsk(g_batch_set_key);
    Can anyone please explain why oracle is viewing it as too many call for constructor when both constructors are different.
    and how to resolve the issue.
    Thanks
    Tarun

    I've solved the problem. Though it is strange.
    The error occurred because I'm using p_batch_set_key as parameter constructor.
    i.e. constructor function obj_bsk(p_batch_set_key in varchar2)
    return self as result,
    once I changed it to the same name as variable name in object it compiled fine.
    i.e constructor function obj_bsk(batch_set_key in varchar2)
    return self as result,
    It is very strange. Can anyone plesae explain why the parameter name should be same as variable name in object.
    Thanks
    Tarun

  • Hi forum pls clarify the concept, about IDOC...pls

    hi forum pls clarify the concept,
    In a typical IDOC to XI scenario, when my XI receives an IDOC, how it makes out whether it is receiving the IDOC from the intended sender,
    does it sees the
    <SAP:SNDPOR>???</SAP:SNDPOR>
      <SAP:SNDPRN>????</SAP:SNDPRN>
      <SAP:SNDPRT>???</SAP:SNDPRT>
    in  the inbound message and matches it with the business system name in the SLD, to confirm.....
    if it is the case, then the name of the business system in the SLD cant be arbitrary, it should be the name that the sender SAP system attaches as the sender port/partner number, in the outbound IDOC. Coz, i think when an IDOC is sent from an SAP system, the System attaches the sender port and and partner number by defaullt, and that partner no./port may not be maintained.
    pls clarify

    ahmad pls read the following, and pls help ...as i m quite inexperienced::
    Let me put the case in this way…
    (I m a beginner and just testing already developed configuration)
    I have a IDOC to XI scenario, where an IDOC is being sent from a
    SAP system  System ID SD1, client 330,
    To my XI, with Syatem ID XD1, client 430,
    Now in the sender in SDI330, I made port/partner number for XD1430 as port=SAPXD1, Partner no.=XD1CLNT430, and partner_type=LS,
    Now when I sent this IDOC from SD1330 to XI, In the EDIDC I can see, details of both sender and receiver, but the sender details(port=SAPSD1, partner_no.=SD1CLNT330) appears, though they are not maintained(IS IT AUTOMATIC???).
    Now when the IDOC reaches XI, how it makes out whether it is receiving the IDOC from the intended sender,
    does it sees the
    <SAP:SNDPOR>SAPSD1</SAP:SNDPOR>
    <SAP:SNDPRN>SD1CLNT330</SAP:SNDPRN>
    <SAP:SNDPRT>LS</SAP:SNDPRT>
    in the inbound message and matches it with the business system name in the SLD, to confirm.....
    if it is the case, then the name of the business system in the SLD cant be arbitrary, it should be the name that the sender SAP system attaches as the sender port/partner number, in the outbound IDOC. Coz, i think when an IDOC is sent from an SAP system, the System attaches the sender port and and partner number by defaullt, and that partner no./port may not be maintained.
    pls clarify.
    Now if all above cases are true, I think that the XI system must have maintained a port/partner to connect to the sender SAP system (SD1CLNT330), to get the IDOC metadata. And can these port and partner nos be arbitrary named or should be named strictly as SD1CLNT330. And should I maintain this port for loading metadata in the IDX1.

  • Calling Overloaded Procedures from Table Adapter - PLS-00307: too many..

    I have called Overloaded Oracle Procs in .NET code in the past. I now want to add a procedure call to a table adapter. The proc is an overloaded proc and when I add it I get the following:
    PLS-00307: too many declarations of 'prc_[my proc name]' match this call.
    I looked in the designer class and all the parameters are there, just as I do in my own code, but it still gets the message above even with all the parameter names in place.
    Is there a way to call Overloaded Procs from a table adapter? ?

    Any Oracle folks care to provide some input on why Table Adapters cannot call Overloaded Stored Procs?
    Edited by: SURFThru on Jul 8, 2011 11:37 AM

  • I have a problem with wifi in my iphone 4s, i already try everything and download latest version 7.1(11D167) but wifi switch is not working, its my humble request to Apple support team that pls resolve this problem as soon as possible because

    I have a problem with wifi in my iphone 4s, i already try everything and download latest version 7.1(11D167) but wifi switch is not working, its my humble request to Apple support team that pls resolve this problem as soon as possible because its a prestiage of Apple Company.
    Pls inform me how can i resolve the problem of wifi.

    You have to go to autherized iPhone agent.

  • I need to upgrade my MacBook 13" white 2008 hard drive.  I have found a WD6400BPVT western digital Scorpio blue 640GB (5400rpm) SATA 8MB 2.5" will this fit and work? Many thanks for any help

    I need to upgrade my MacBook 13" white 2008 hard drive.  I have found a WD6400BPVT western digital Scorpio blue 640GB (5400rpm) SATA 8MB 2.5" will this fit and work? Many thanks for any help

    I had a 640GB HDD in my Early 2008 Macbook and it was just too much it would always freeze up the computer a bit for only a few seconds but ya. Then I realized that it was the size of the HDD that was causing it since the Early 2008 Macbook models can only handle a MAX od 500GB while the Early 2008 Macbook Pros could have a MAX of 640GB (Lucked out there!) lol But ya the Early 2008 Mocbooks can only handle a MAX HDD size of 500GB and that's it!! lol

  • Email wont send to my account unless i open the mail app pls fix this i have to goto email app everytime i need to check my email.

    Pls fix this in my title And why dont you support mirroring in other devices than ipad 2 And in ios 5 it keeps crashing

    bubbamj wrote:
    What is wrong here? Is there something I missed?
    Yes, you missed the fact that Mail has NEVER worked the way you describe. OS X is not iOS. There is absolutely no reason not to have Mail running all the time on your machine. I have Mail set to open at login and it stays open all the time. I never quit it. When an email comes in the Mail icon on the dock will reflect that by incrementing a little red number. This is how Mail has always worked. You need to have it open to receive emails.

Maybe you are looking for

  • Inter SAP clients FI/CO data transfer

    Dear all, I'm facing an atypic case where my customer is one legal entity but for business reasons has two sap clients. Therefore, FI/CO of both clients have to be interfaced. It includes, AR/AP, incoming payment and COA, vendor, customer master. (fo

  • Fault message types: Why do we need them?

    Hi guys, I have a bpm scenario created, tested and working. This bpm starts with a async receive, a Sync Send to a R3 system by an ABAP proxy and a final async send to the original system. I'm contemplating exception handling and other type of errors

  • VB or Powershell script that Authenticates a user in AD, and if successful will run a program

    I am looking for a script Powershell or VB that will authenticate a user to a group in AD, and if successful, kick off cscript X:\Deploy\Scripts\LiteTouch.wsf Any help would would be greatly appreciated 

  • How can I stop what appears to be a virus in my e-mail sending out e-mails

    Hi, I keep getting undeliverable messages from my service provider. It seems I have some virus that keeps sending out some spam about winning money. It is going out to addresses I do not have in my address book or have ever dealt with. I'm not sure w

  • Indesign CS4, text on path missing when printed.

    I have a very important book going to print, and some last minute changes were made directly after upgrading from CS3 to CS4, now that the file was converted to CS4, text on circular paths display in the program fine but do not print or appear in pdf