Performance when OUTER JOINS are used

Hello Everyone,
I have read in asktom.com about the performance of an SQL query when OUTER JOINS are used. I am not able to find the same artical and would like any of you guys to clarify if the sql that I have written would be better or not.
1. I haven't used OUTER JOINS in an SQL query. The query used 3-4 tables.
In those 3-4 tables one table is transaction table (big one) and the other are tables like transaction_type.
2. The transactions tables thas the typ_code and the typ_desc is present in transaction_type. It is one(transaction_type) to many(transactions) relationship
3. And also as all the typ_code of transactions tables has definte value in transaction_types table, I thought of not usng OUTER JOINS.
Would you guys agree with me?

I have read in asktom.com about the performance of an
SQL query when OUTER JOINS are used. I am not able to
find the same artical and would like any of you guys
to clarify if the sql that I have written would be
better or not.The first thing to consider using outer joins or not - is whether the required business functionality needs them or not? Performance should be only the second thing because getting invalid results VERY FAST doesn't make any sense :)
Gints Plivna
http://www.gplivna.eu

Similar Messages

  • Problems performing an outer join

    I added some criteria to the following sql statement to get the relationship.
    ie ('Husband', 'Wife','Father','Mother','Step Mother','Step Father','Father in-law','Mother in-law')
    The problem is that I also want to beable to display those that are not in this category. So I thought that I could do and outer join such as
    and hcr.relationship_name(+) in ('Husband',
    'Wife',
    This does not work. Can anyone recommend how I can perform an outer join to get that information that does not meet the in statement?
    thanks
    select      hac.case_id,hac.relation_to_hoh_id,hcr.RELATIONSHIP_NAME,
              decode(ha.GENDER_ID,1,'(F)',2,'(M)',3,'(T)') || ' Adult ' ||
              round((trunc(sYSdate) - ha.DATE_OF_BIRTH) / 365,0) info, 0 sort_by
    from      dpss_hts.hts_applicant ha,
              dpss_hts.hts_applicant_case hac,
              dpss_hts.certa_relationship hcr          
    where      ha.applicant_id = hac.applicant_id
    and      round((trunc(sYSdate) - ha.DATE_OF_BIRTH) / 365,0) > 17
    and      hac.relation_to_hoh_id = hcr.RELATIONSHIP_ID
    and hcr.relationship_name in ('Husband',
    'Wife',
    'Father',
    'Mother',
    'Step Mother',
    'Step Father',
    'Father in-law',
    'Mother in-law')

    If I understand correctly, you want to display the relationship_name only if it is one of those in the list. If it is not, then you want to display the rest of the data, but not the realtionship_name.
    Two approaches spring to mind. You can use an in-line view to select only the relationship_names you are interested in, then outer join to that in-line view like:
    SELECT hac.case_id, hac.relation_to_hoh_id, hcr.relationship_name,
           DECODE(ha.gender_id, 1, '(F)', 2, '(M)', 3, '(T)')||' Adult '||
           ROUND((TRUNC(sysdate) - ha.date_of_birth) / 365, 0) info, 0 sort_by
    FROM dpss_hts.hts_applicant ha, dpss_hts.hts_applicant_case hac,
         SELECT relationship_id, relationship_name
         FROM dpss_hts.certa_relationship
         WHERE hcr.relationship_name in ('Husband', 'Wife', 'Father', 'Mother',
                                         'Step Mother', 'Step Father',
                                         'Father in-law', 'Mother in-law') hcr
    WHERE ha.applicant_id = hac.applicant_id and
          ROUND((TRUNC(sysdate) - ha.date_of_birth) / 365, 0) > 17 and
          hac.relation_to_hoh_id = hcr.relationship_id(+)Another alternative would be do leave the current join intact, lose the predicate on relationship_name and do the dciding in the SELECT list.
    Something like:
    SELECT hac.case_id, hac.relation_to_hoh_id,
           CASE WHEN hcr.relationship_name IN ('Husband', 'Wife', 'Father',
                                               'Mother', 'Step Mother',
                                               'Step Father', 'Father in-law',
                                               'Mother in-law') THEN hcr.relationship_name
                ELSE NULL END relationship_name,
           DECODE(ha.gender_id, 1, '(F)', 2, '(M)', 3, '(T)')||' Adult '||
           ROUND((TRUNC(sysdate) - ha.date_of_birth) / 365, 0) info, 0 sort_by
    FROM dpss_hts.hts_applicant ha, dpss_hts.hts_applicant_case hac,
         dpss_hts.certa_relationship hcr
    WHERE ha.applicant_id = hac.applicant_id and
          ROUND((TRUNC(sysdate) - ha.date_of_birth) / 365, 0) > 17 and
          hac.relation_to_hoh_id = hcr.relationship_idHTH
    John

  • Toplink outer join issue using ExpressionBuilder getAlllowingNull

    I am trying to retrieve some records through a Toplink outer join expression using ExpressionBuilder's getAllowingNull() with an IN clause but I don't get the correct results.
    In my setup I have the following structure
    CREATE TABLE BOX
    MY_BOX_ID NUMBER(10) PRIMARY KEY
    , MY_CODE VARCHAR2(30) NOT NULL CONSTRAINT u_code UNIQUE
    CREATE TABLE ITEM
    MY_ITEM_ID NUMBER(10) PRIMARY KEY
    ,MY_TYPE NUMBER(6) NOT NULL
    ,BOX_ID REFERENCES BOX(MY_BOX_ID)
    INSERT INTO BOX values (1, '001');
    INSERT INTO ITEM values (1, 1, 1);
    INSERT INTO ITEM values (2, 1, null);
    The Toplink mappings are the most common ones and the code that retrieves the results is
    Vector vals = new Vector();
    vals.add(new String('001'));
    Vector dbList = null;
    try
    DatabaseSession dbSession = getToplinkSession();
    ReadAllQuery query = new ReadAllQuery();
    query.setReferenceClass(Item.class);
    ExpressionBuilder expBuilder = new ExpressionBuilder();
    Expression exp = expBuilder.getAllowingNull("Box").get("myCode").in(vals);
    query.setSelectionCriteria(exp);
    dbList = (Vector) dbSession.executeQuery(query);
    catch(Exception e)
    e.printStackTrace();
    When I run the piece of code Toplink generates the following DB query
    SELECT t1.MY_ITEM_ID, t1.MY_TYPE FROM BOX t0, ITEM t1 WHERE ((t0.MY_CODE IN ('001')) AND (t0.MY_BOX_ID (+) = t1.BOX_ID))
    which returns just the record for which the foreign key is not null
    MY_ITEM_ID MY_TYPE
    1 1
    However I would have expected to get back two records including the one where the foreign key box_id is null. That have happened if the generated SQL would have been:
    SELECT t1.MY_ITEM_ID, t1.MY_TYPE FROM BOX t0, ITEM t1 WHERE ((t0.MY_CODE (+) IN ('001')) AND (t0.MY_BOX_ID (+) = t1.BOX_ID))
    with the outer join operator applied to the query key as well.
    I was wondering if someone could provide some advice on how to get the correct result.
    Thanks for any help,
    Lucian

    Hello,
    Calling builder.getAllowingNull("name_of_field_in_MyJDO"); returns an expression that is not used anywhere in the following code, and so it is not used in the query.
    The addJoinedAttribute(String) on ReadAllQuery will make a simple join expression using the String as the query key. If you want to use an outerJoin instead of the simple inner join created, try:
    readAllQry.addJoinedAttribute(builder.getAllowingNull("name_of_field_in_MyJDO"));
    instead. You will also want to remove any joining statements added at the mapping level made in trying to get this to work, otherwise the inner join specified though those options will still be used.
    Best Regards,
    Chris

  • TS4002 when to persons are using one apple ID and they sync their contacts to gather then first sync contacts are deleted. how we get it back?

    when to persons are using one apple ID and they sync their contacts to gather then first sync contacts are deleted. how we get it back?

    You can share the same Apple ID for purchasng form the iTunes and app stores without any problems, but you should all used separate iCloud accounts with separate Apple IDs.  (You are not required to use the same ID for iCloud and other services as you do for the iTunes store.)  This will prevent you from ending up with merged data.  You should also use separate Apple IDs for iMessage and FaceTime or you will end up getting each other's text messages and FaceTime calls.
    This article may be of interest: http://www.macstories.net/stories/ios-5-icloud-tips-sharing-an-apple-id-with-you r-family/, as well as this video: http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l.

  • CS-5 Crashes when Edit / copy are used for pasting a new selection

    Good morning,
      I have downloaded CS5-Extended onto my PC as an upgrade to elements premiere 8.  I still have the entire elements suite on my PC and functioning.  The PC is a new Dell 4 core with windows 7, six G of RAM, and lots of HD space.
      CS-55 works fine but has one very serious problem that seems to be a regular (several tests produce the same result) occurrance.
      Selecting "edit" then "copy" when a selection is completely ready for copy/paste to a new layer freezes the entire program.  No controls will do anything to the program no matter how long or what buttons are pushed.  The PC stil works however with other programs which surprises me (I'm very computer literate).
      The only method that I can find to close and "fix" the problem with CS5 after a crash is to completely shut down the entire PC and force a shutdown at that time (to get the PC to log off and shut down).
      The real difficulty now occurs on re-starting the PC.  The system seems to completely fill RAM on a re-start which makes the entire PC slow and almost non-responsive.  This took some experimenting to "figure out."  Starting regular office programs (Word, excel, etc) takes very long, and I get an intermittent "program not responding" display during the program start.
      When started, the program(s) are extremely sluggish, and mouse pointers are not linear movement but "bounce" from place to place on the screen.
      I considered doing a system restore to place the system back to a state before CS5 installation, but did more experimenting before this (in order to preserve the downloaded trial version of CS5 before my (already purchased) box arrives in the mail.
      When starting CS-5 (after a crash and restart), it takes over a minute to start and does not respond well at all once started.  When trying to open the previous file then "closing all files" the system seems to "unlock" all RAM and places the entire PC back to normal function.
      This is a continuous problem affecting my system and all stems from an "edit / copy" set of commands.
      Please help with this one.  This problem is obviously a serious one and cannot continue with my set up.
      My e-mail address is [email protected].
    Thanks for the help;  any other information you need to help diagnose this situation for a repair.
    regards,
    Peter 1269

    Chris,
      Thanks for the fast response.  In answer to your questions, I’m using the 64 bit version of the CS-5 software.  I have not received any bad “news” or reports about “bad ram.”  This from IOLO system mechanic 10, and windows performance itself.
    Let me try task manager / performance both before any Photoshop use, and after a crash.  I’ll also get some information from system mechanic and any other sources that I can come up with.
      I’m not sure why this crash happens after an “edit / paste” sequence and (possibly) not anything else.  I just did however find the program crash under these circumstances:
    Photoshop running with a (7mg picture loaded).  Turn on elements organizer with a 35,000 picture catalog that I’ve been using in elements 7 and 8 (and premiere 8 ).  Turn off organizer and return to Photoshop only to find that Photoshop is now frozen with a dual vertical arrow instead of a mouse pointer.  No action will recover the program at this point.
    Question:
    Will my “preferences” in photoshop set to a very high ram allowance affect crashes in the program?  What other preferences settings might be causing a problem.
    I can talk to Dell tech support if need be as this PC is only 4 months old.
    Thanks for ongoing help,
    Peter1269

  • Alternative for OUTER Join for use in fast refresh materialized view

    Hi ,
    I have two tables as :
    CREATE TABLE TEST_SANDY1
    COL1 NUMBER
    CREATE TABLE TEST_SANDY2
    COL1 NUMBER,
    COL2 VARCHAR2(10 BYTE)
    Data for the tables are :
    INSERT INTO TEST_SANDY1 ( COL1 ) VALUES (
    1);
    INSERT INTO TEST_SANDY1 ( COL1 ) VALUES (
    2);
    INSERT INTO TEST_SANDY1 ( COL1 ) VALUES (
    3);
    COMMIT;
    INSERT INTO TEST_SANDY2 ( COL1, COL2 ) VALUES (
    1, 'a');
    INSERT INTO TEST_SANDY2 ( COL1, COL2 ) VALUES (
    2, 'b');
    INSERT INTO TEST_SANDY2 ( COL1, COL2 ) VALUES (
    4, 'd');
    COMMIT;
    Now when I run the following select statement :
    select
    b.col1
    from
    test_sandy1 a,
    test_sandy2 b
    where
    b.COL1 = a.COL1(+)
    I get :
    COL1
    1
    2
    4
    I want to build a materialized view to generate the same values but it has to be fast refresh. But since I am using outer join I am unable to create a fast refresh one.
    Can someone suggest an alternate select to create fast refresh materialized view.
    Thanks,
    Sandipan

    The select statement was not fitting my problem , so I'll change it as :
    select
    a.col1, nvl(b.col2, 'DEFAULT')
    from
    test_sandy1 a,
    test_sandy2 b
    where
    b.COL1(+) = a.COL1
    I get :
    COL1     VAL
    1     a
    2     b
    3     DEFAULT
    How do I this ?

  • Need to specify LEFT OUTER JOIN while using data from logical database BRM?

    I'm trying to extract data for external processing using SQVI. The fields required are in tables BKPF (Document Header) and BSEG (document detail) so I'm using logical database BRM. Note: required fields include the SPGR* (blocking reasons) which don't appear to be in BSIS/BSAS/BSID/BSAD/BSIK/BSAK, hence I can't just use a Table Join on any of these but have to use BSEG, hence BRM.
    If the document type is an invoice, I also need to include the PO number from table EKKO (PO header), if present, hence I'd like to add this to the list. However, if I do this, it seems that some records are no longer display, e.g. AB documents.
    The interesting thing is that not all records are suppressed, so it's not a simple case of the logical database using an effective INNER JOIN, but the effect is similar.
    In any event, is there a way to specify that the link to table EKKO should be treated as an effective LEFT OUTER JOIN, i.e. records from BKPF/BSEG should be included irrespective of whether any records from EKKO/EKPO exist or not?
    Alternatively, is there some other way to get the SPGR* fields (for example) from BSEG and still join the BKPF? Of course, one solution is to use multiple queries, but I was hoping to avoid this.

    Thanks for everyone's responses, I know how to work around the problem with sql, I am wanting to see if there is a way to make the outer joins filter go in the join clause instead of the where clause with Crystal Reports standard functionality. 
    We have some Crystal Reports users that are not sql users, i.e. benefit specialists, payroll specialists and compensation analysts who have Crystal Reports.  I was hoping this functionality was available for them.  I just made my example a simple one, but often reports have multiple outer joins with maybe 2 or three of the outer joins needing a filter on them that won't make them into an inner join. 
    Such as
    Select person information
    outer join address record
    outer join email record
    outer join tax record (filter for active state record & filter for code = STATE )
    outer join pay rates record
    outer join phone#s  (filter for home phone#)
    I thought maybe the functionality may be available, that I just don't know how or where to use it.  Maybe it is just not available.
    If it is not available, I will probably need to setup some standard views for them to query, rather than expecting them to pull the tables together themselves.

  • Cisco IronPort Plug-In 7.3 breaks when multiple profiles are used?

    In our testing of the Cisco IronPort Plug-In 7.3 we found that if seperate Outlook profiles are used that are configured to different e-mail accounts the plug-in gives an error.
    Here's the scenario.
    Profile A configured with [email protected] up and running receives the BCS Configuratoin File and the plug-in recognizes it and enables the ENCRYPT button.   User1 can use Outlook along with ENCRYPT and all works well.
    But, if that same workstation users opens a different Outlook mail profile is opened that is configured to a different e-mail account.  Profile B configured with [email protected] the following error is generated:  "An error occurred during C:\ProgramData\Cisco\Cisco IronPort Email Security Plug-in\user1\config_2.xml configuartion file initialization.  Some settings have been set to the default values."   Outlook works fine, the decrypt button is greyed out, which is expected, [email protected] is not ENCRYPT enabled.
    The problem is when the user opens up Profile A again, a different error occurs "
    "An error occurred during C:\ProgramData\Cisco\Cisco IronPort Email Security Plug-in\user1\config_1.xml configuartion file initialization.  Some settings have been set to the default values." and the ENCRYPT button is still disabled, even though this user is authorized for ENCRYPTION.   At this point the user has to open the BCS Configuration File again, which does give the message 'This message contains a secure attachment with settings for [email protected]  Do you want to apply these settings?".   If they answer YES, the ENCRYPT button is re-enabled.
    Is Cisco aware of this?   What is the resolution?
    Thanks.

    Same workstation AD login that has full access to both e-mail accounts. 
    Email account A profile A is the same as the workstation login used.   Email account B profile B is a different e-mail address / AD object but user A has full access to the mailbox.
    I would expect Encryption to work for Profile A and not for Profile B, e-mail address B was never sent the configuration file.  But when I go back to use Profile A, encryption is no longer enabled, requireing me to run the configuration again.

  • Performance for outer join

    Hello expert,
    following statement is left outer join or right outer join? and comparing with statement " from PCM RIGHT OUTER JOIN R ON PCM.practice_state_code = R.practice_state_code ", whose performance is better? Appreciate very much.
    PCM.practice_state_code (+) = R.practice_state_code

    Hi,
    843178 wrote:
    Hello expert,
    following statement is left outer join or right outer join?
    PCM.practice_state_code (+) = R.practice_state_codeNeither. It's the old outer join notation. Using that syntax, the order in which you put the tables in the FROM clause doesn't matter.
    and comparing with statement " from PCM RIGHT OUTER JOIN R ON PCM.practice_state_code = R.practice_state_code ", whose performance is better? They're equal.

  • Why we are using SID in DSO when there we are using star schema in BI

    can anyone answer me why we are using SID in DSO also, i mean what is the need of SID in DSO?

    The reason basically is that the entire query api in BW is based on SIDs
    If you look at a sql of a query that is generated when you run a report you can see this
    Example..
    If you put a selection of period = 02.2009
    In the SQL you will not see "where period = 02.2009" you will see "where sid.period = '000100001010" or something like that
    The whole query  is like this for Infoproviders of DSOs and Infocubes
    Yes it is annoying - but that't  the way it is..
    So if you have a DSO you wish to report on you need the SID for the SQL to fire..!
    On an operational daya to day side - if my cubes are 1:1 granularity with my DSOs then I prefer to put SID activation on the DSOs - two reasons
    1. so the cube load is quicker because the SID generation has already taken place (is this important? never sure but I always do it)
    2. future use of the DSO as a reporting object (this was before the days of the operational store as part of a LSA structure)

  • Generated file becomes empty when date parameters are used

    Hi,
    I have a concurrent program which when run should generate a file. The From and To date parameters make use of a value set (FND_STANDARD_DATE_REQUIRED) whose format type is the 'standard date' and maximum size is 11.
    When I run the program in APPS, the format for the FROM and TO date parameters I use is 'DD-MON-YYYY'.
    The package which is being called by this program has this in the select statement: and ct.trx_date BETWEEN p_begin_date AND p_end_date
    ct.trx_date field type is DATE
    Each time I comment out this part of the select statement then compile the package and run the program, I am able to generate the file with the expected records. But when I use this part of the select statement, the genereted file is empty.

    Yes, I expect 12 records to be in the file.
    Am just not sure if the problem has something to do with the data type being passed. In the package that is being called, the from and to date parameters in the procedure are 'VARCHAR2'. While in apps, the concurrent program's from and to date parameters were assigned a value set whose custom type is 'CURRENT DATE' with format 'DD-MON-YYYY'.

  • Changing the value of the login URL when load balancers are used?

    Howdy,
    We are running Sun access manager 7 and web policy agent 2.2 on two Sun One web servers. Both of these servers sit behind a load-balancer, and the load-balancer is terminating SSL. The servers are named server1.domain and server2.domain, and the load-balancer FQDN customers access is vip.domain (the servers and the VIP are both in the same domain). Our configuration is currently not working, and it looks like the AMAgent.properties "com.sun.am.policy.am.login.url" value is to blame. When we set AMAgent.properties to the value of one of the hosts, the login redirect sent to clients contains the FQDN of one of the hosts. When we change the name of AMAgent.properties to the load-balancer VIP, the policy agent is no longer to talk to the access manager. After spending a ton of time reading through the forums and the available documentation, it looks like the property "com.sun.am.policy.am.library.loginURL" would fix our problem. Well, we set this value to the name of the server, but for some reason the policy agent is still trying to contact the load-balancer using the value that is listed in the com.sun.am.policy.am.login.url property (we verified this by setting the debug level to all:256). Given this information, is there a way to configure the policy agent use a URL that contains the name of the host it resides on, and have clients use a login URL that contains the FQDN of the VIP? I have looked everywhere for an answer to this, but cannot seem to locate one.
    Thanks for any insight,
    - Ryan

    1. have you configured an Access Manager site?
    2. The root CA cert should be imported in to the keystore in use wherever the agent has been installed.
    3. on the AM servers, put in an fqdn map for the loadbalancer...
    When installing an agent, have it point to the load balancer FQDN, along with https as a protocol.
    Hope some of this helps.

  • Acrobat 10 crashes when excel files are used in the Merge Files function

    When using the Combine Files into a PDF function of Acrobat 10, Acrobat constantly crashes the moment it encounters and excel file in the list of files to be merged. So far the only way to fix this has been to export the excel file, from Excel 2013, as a PDF and then merge with that, but that can't be the only solution. Anyone have any luck with this or is it just an innate problem with Acrobat 10 and Office 2013. I should also mention both Office and Acrobat are on their latest updates and this is on a Window 7 64 bit system.

    Acrobat X PDFMaker (involved in the "combine" process) does not support Office 2013.
    See:
    Compatible web browsers and PDFMaker applications
    Be well...

  • Problems with Compiled files when Adobe Jetforms are used

    Hi,
    I am taking outputs of Customer Facing Documents from SAP R/3 using Jetform Output Designer Version 5.4.0.130.
    The printer I am using is HP LaserJet 5100 Series. From the information I gathered this uses PCL 6. Therefore I compiled the file with the presentment target HP Laserjet 5000/5000N(PCL6)-[hp5000x]. When I use the PDF viewer as the default it gives me perfect alignment of the various fields. However when I take a printout everything is disturbed.
    Can you please suggest, what is the best approach to take.
    Thanks in advance.
    Regards,
    Paul

    There is a difference in resolution between PDF print and PCL print. E.g. PDF is default 1000 dpi, which is fine for screen view, yet most printers are 300 dpi or 600 dpi.
    If you make a copy of the PDF.ICS to apv_PDF.ICS. You can change the resolution by opening the file with a text editor like Notepad. Set the value to match your printer. Choose your custom PDF printer driver in Output Designer and recompile the form.
    You'll find it in the \Config directory where your designer is installed. ..\JetForm\Output Designer\Config

  • Extremely slow performance when external drives are plugged in.

    I've had lots of freezing issues during startup just recently. After a lot of messing around I removed an iOmega Firewire HDD that was constantly plugged in and the freezing issues have gone. Great! But as I tried to plug it back into my machine once everything had loaded up, the machine became unusably slow.
    I've also tried plugging in USB drives, like my iPhone, camera and memory stick and it has the same effect.
    Anyone else had this same problem or any ideas how to fix it?

    HI,
    *"I've also tried plugging in USB drives, like my iPhone, camera and memory stick and it has the same effect."*
    How much free space on the startup disk? Might be an underlying issue ...
    Right or control click the MacintoshHD icon. Click Get Info. In the Get Info window you will see Capacity and Available. *Make sure you always have a minimum of 10% to 15% free disk space at all times.*
    If you need to free up space on the startup disk go here.
    http://www.thexlab.com/faqs/freeingspace.html
    If free space is not an issue, then boot from your install disc and run Disk Utility.
    Insert Installer disk and Restart, holding down the "C" key until grey Apple appears.
    Go to Installer menu and launch Disk Utility.
    Select your HDD (manufacturer ID) in the left panel.
    Select First Aid in the Main panel.
    *(Check S.M.A.R.T Status of HDD at the bottom of right panel. It should say: Verified)*
    Click Repair Disk on the bottom right.
    If DU reports disk does not need repairs quit DU and restart.
    If DU reports errors Repair again and again until DU reports disk is repaired.
    When you are finished with DU, from the Menu Bar, select Utilities/Startup Manager.
    Select your start up disk and click Restart
    Carolyn

Maybe you are looking for

  • Problems with Default Encoding in Mail

    I have been trying to change my default encoding settings in Apple Mail to Unicode-8. It has become necessary because some of the outlook clients that my colleagues use see my messages with control-characters/question marks. I know that this problem

  • How do I sort all of my photos alphabetically by title?

    I need to be able to sort my photos by title. This is critical to my business. I can't find a way to do that. It appears that Photos automatically sorts by date which is problematical when I have 10,000 photos. I want to be able to sort by: title dat

  • Email unable to be retrieved unless I go to Verizon.co​m

    Ever since yesterday, August 2nd, all of my outside devices are telling me unable to retrieve email, check that username and password are correct.  The email is able to be retrieved from the Verizon website but not from outside devices.  I don't thin

  • Info record against one time vendor

    Dear Experts Good Evening can we create purchase info record against one time vendor Regards Rajeev

  • Material Replication from R/3 to SRM -  Object status stuck in Running mode

    Hi Experts, I am new to this Forum and I am facing the following issue, System Info : SRM 5.0 ECC 6.0 I am trying to replicate two materials from the backend R/3 system and have set material filters on the SRM side. The filters are Table: MARA, Field