How OWB follow

Hi
I am new to OWB.Can any body please tell me about following concepts how we can do it in OWB ?
These all are we can do in informatica.I want to know about these concepts in OWB.
1. Variables & Parameters
2. Tolerance level / Error Limits
3. Can the system defined repositories be named by the user ?
4. User permission and access
5. Sharing projects
6. Reusable objects
Thanks&Regards,
Kamineni.Ashok Kumar
Saksoft Ltd
+91 44 24614501 Ext:205
Mobile:9841183133

Hi
Performance tunning guide link.
http://oracle.su/server.111/b28274/toc.htm

Similar Messages

  • How to follow a question and not a whole community?

    How to follow a question and not a whole community?
    THanks.

    If that's not the problem turn off all the blue checks and bookmark the question. To view tap your name then bookmarks, unfortunately with this method you don't get the email updates.
    Michael Vallance

  • How to follow/trace an event in Xcode

    How do you trace a Cocao event/message? For example, how do you follow a touch event on a UITableView cell on the iPhone screen up to the tabbleView:didSelectRowAtIndexPath: callback of a UITableViewController based class?
    If I put a breakpoint in the tabbleView:didSelectRowAtIndexPath: callback I can see a call stack. How can I put breakpoint within the Cocoa/Core/Library stuff ? It seems like I can only see source code for either bottom end ( int main(int argc, char *argv[]) or top end ( didSelectRowAtIndexPath ... ) It does not seem possible to put a breakpoint on th Cocoa/core/library functions in in between.
    I did figured out I could add breakpoints for something like the global 'sendEvent' but that is quite low level and still pretty far from an actual target object. How can I trace objects in between?

    OOPS!!
    I posted my question in the wrong community

  • How to follow best coding practices and make this code runable.

    How to change this code to make it work and follow best coding practices.
    This code is to add fields to internal table LIST which already exist.
    In the loop are all the selections which are to be made.
    But i am new to ABAP and not sure how to make this work.
    please help me.
    DATA: wa_list LIKE LINE OF list,
          l_v_index TYPE i.
    DATA: t_price_result1 TYPE STANDARD TABLE OF komv WITH HEADER LINE INITIAL SIZE 0.
    DATA: wa_result LIKE LINE OF t_price_result1.
    LOOP AT list INTO wa_list.
      l_v_index = sy-tabix.
    *GET MATERIAL DOCUMENT(MBLNR) AND DELIVERY NUMBER(XBLNR)
      SELECT  mkpf~mblnr
              mkpf~xblnr
       into (wa_list-mblnr, wa_list-xblnr )
    *            INTO i_list
       from mkpf inner join mseg
    *   up to 1 rows
        on mkpf~mandt = mseg~mandt
        and mkpf~mblnr = mseg~mblnr
        and mkpf~mjahr = mseg~mjahr
        where mseg~matnr = wa_list-matnr
         and mseg~charg = wa_list-charg
         and mseg~kunnr = wa_list-kunnr
         and mseg~sobkz = wa_list-sobkz
         and mseg~werks = wa_list-werks
         and mkpf~budat in budat.
                                                                "RFC3762
      ENDSELECT.
      wa_list-mblnr = list-mblnr.
      wa_list-xblnr = list-xblnr.
    * GET POSNR FROM TABLE LIPS
      SELECT posnr
      FROM lips
      INTO list-posnr
      up to 1 rows
      WHERE vbeln = wa_list-xblnr AND
                 matnr = wa_list-matnr.
      ENDSELECT.
      wa_list-posnr = list-posnr.
    * GET SALES ORDER #
      SELECT vbelv
      FROM vbfa
      INTO list-vbelv
      up to 1 rows
    *        INTO wa_list
      WHERE vbeln =  wa_list-xblnr.
      ENDSELECT.
      wa_list-vbelv = list-vbelv.
    *GET PO
      SELECT bstkd
      FROM vbkd
      INTO list-bstkd
      up to 1 rows
      WHERE vbeln =  wa_list-vbelv
          AND posnr = 0.
      ENDSELECT.
      wa_list-bstkd = list-bstkd.
    *get serial number
      SELECT SINGLE obknr
       FROM ser01
       INTO list-obknr
       WHERE lief_nr = wa_list-xblnr
           AND posnr = wa_list-posnr.
    wa_list-obknr = list-obknr.
    SELECT sernr
    FROM objk
    INTO list-sernr
    up to 1 rows
    WHERE obknr = wa_list-obknr.
    ENDSELECT.
    wa_list-sernr = wa_list-sernr.
    *get date
    SELECT budat FROM mkpf
    INTO list-budat
    up to 1 rows
    where mblnr = wa_list-mblnr.
    ENDSELECT.
    wa_list-budat = list-budat.
    *get CLP
    SELECT   vkorg vtweg spart
    INTO (list-vkorg, list-vtweg, list-spart)
    up to 1 rows
    FROM vbak WHERE vbeln = wa_list-vbelv.
    ENDSELECT.
    wa_list-vkorg = list-vkorg.
    wa_list-vtweg = list-vtweg.
    wa_list-spart = list-spart.
    SELECT pstyv
    INTO list-pstyv
    FROM  vbap
    up to 1 rows
    WHERE vbeln = wa_list-vbelv AND posnr = wa_list-posnr.
    ENDSELECT.
    wa_list-pstyv = list-pstyv.
    CALL FUNCTION 'Z_SD_PRICING_CONDITION'
    EXPORTING
    i_organization                  = wa_list-vkorg
    i_dist_channel                  = wa_list-vtweg
    i_division                      = wa_list-spart
    i_customer                      = wa_list-kunnr
    i_plant                         = wa_list-werks
    *      i_pricng_date                   = sy-datum
    i_material                      = wa_list-matnr
    *   I_SALES_UNIT                    = 'EA'
    *   I_QUANTITY                      = '1.000'
    i_stor_loc                      = '0001'
    i_item_cat                      = 'TAN'
    *   I_AUART                         =
    *   I_REFRESH                       = 'X'
    *   I_KOMP                          =
    *   I_KOMK                          =
    * IMPORTING
    *   E_MES_TYPE                      =
    *   E_MES_NUMBER
    *   E_MESSAGE                       =
    TABLES
    t_price_result                  = t_price_result1
    * EXCEPTIONS
    *   CUSTOMER_NOT_FOUND              = 1
    *   PLANT_NOT_FOUND                 = 2
    *   MATERIAL_NOT_FOUND              = 3
    **   PLANT_MATERIAL_NOT_FOUND       = 4
    *   SALES_DATA_NOT_FOUND            = 5
    *   ORG_UNIT_NOT_FOUND              = 6
    *   UNABLE_TO_CALCULATE_PRICE       = 7
    *   UNABLE_TO_FORMAT_PRICE          = 8
    *   MANDATORY_INFOR_MISSING         = 9
    *   OTHERS                          = 10
    LOOP AT t_price_result1.
      IF  t_price_result1-kschl = 'ZPR2'.
        wa_list-kbetr = t_price_result1-kbetr.
      ELSE.
        wa_list-kbetr = 0.
      ENDIF.
    ENDLOOP.
    MODIFY list FROM wa_list INDEX l_v_index.
    ENDLOOP.

    Hi,
    Lets first start from your Select Statement.....Replace your SELECT ....ENDSELECT by SELECT Into Internal Table
    Your program is having a SELECT...ENDSELECT within LOOP...ENDLOOP........One should avoid doing this as far as possible.
    SELECT  mkpf~mblnr
                  mkpf~xblnr
    INTO itab
    for all entires i_list
    from    mkpf inner join mseg
        on   mkpfmandt = msegmandt
        and mkpfmblnr = msegmblnr
        and mkpfmjahr = msegmjahr
        where mseg~matnr = i_list-matnr
           and mseg~charg = i_list-charg
           and mseg~kunnr = i_list-kunnr
           and mseg~sobkz = i_list-sobkz
           and mseg~werks = i_list-werks
           and mkpf~budat in budat.
    Restructure youe complete code with this approach and Share your Finding's.
    You can also think of using a SAP Standard FM.
    Anyway..What is the objective/Output of this report?

  • How to follow data migration for Euipment Master

    Hi Friend
    We need to use data migration systm to transfer data for equipment master from legacy system to SAP.  We require to generate 3000 equipment master in SAP. Can you tell me what should I follow , BDC or LSMW? I am a functional consultant and have no knowldge in ABAP. I even cant get any support in ABAP.
    Pls also tell me the steps to execute the migration.
    Take Care
    Sangeeta
    Moved by moderator from the TDMS forum
    Edited by: Hilit Fisch on Apr 13, 2009 8:37 AM

    Hi Sangeeta,
    I would personally go for a BDC but LSMW should also be possible
    If you don't know how to do a BDC just drop me a mail and I send you the details.
    Hopefully this one is than solved by the EOD.
    Regards,
    Eddy

  • How to follow app downloads in iTunes 11?

    In iTunes 10, I could follow and manage app downloads via a "Downloads" item that would appear in the sidebar. With it I could pause, cancel, delete, restart various downloads. In iTunes 11, I can't find out how to do the same thing as no "Downloads" item appears. What did I miss in the Preferences to enable managing downloads?

    Found the answer on YouTube.

  • How to follow up on promotion result article/article group share of paper

    Hi
    How do we collect data and analyse benefit of specific articlegroups share of promotionpapers.
    further more we would like to have the data available and tools to analyze prior performance depending on the article group size and placement in paper.
    I can't find standard field in SAP but I have this naive beliefs that SAP made this posible in there retail solution....
    does anyone know how to do this..
    keel

    On my OJ Pro 8600, When I go to print a # 10 envelope, it feeds the envelope through and then prints the address on a letter page.  I was forced to set the printer preferences to #10 envelope, and within Word, set the paper type to # 10 envelope, set Word up for center feed, and then put everything back to print normally.  ON my 6500 all I had to do was hit print.  There must be a way to print single envelopes without jumping through all these hoops!!

  • How to follow up on a submitted application

    Hi, we submitted an application back in November 2009 for Texas Education Agency Texas ACE Podcasts and have not received any word or notification. Who would I contact to follow up on this application? Thank you.

    Patrick,
    I know the Apple higher-ed world much more than K-12, but I think the way Apple deals
    with schools is pretty much the same in North America…I "think" that there should be some
    kind of Apple K-12 account contact your area…an executive with whom you could speak
    about an iTunes U application. I suspect this person would represent all the K-12 schools
    in Ottawa and its environs. Seeing as Ottawa is the capital of Canada, I'd be…well…a little
    surprised if there wasn't some kind of local Apple presence…if only to deal with government
    accounts. I know that in the states we have a 1-800 style number that we can call to find out
    who our higher-ed representative is…dunno if that would work for you, but, if not, maybe
    the good folks on the other end could give you a good lead. In my opinion, even if a K-12 AE
    cannot directly help with iTunes U issues, it's good to know him/her for all kinds of other
    reason…it's definitely worth the effort to find him/her.

  • Safari: How to follow a link that looks like a phone number?

    When I try to log in to GrandCentral Mobile, it presents me with my phone number as a link after the log in page. If I touch the link to confirm and follow it, the iPhone recognizes the number format and offers to dial it for me. If I hit "cancel" it cancels, but does not follow the link.
    Any suggestions?
    -Peter

    OK, Matt. You finally beat it into me. I see the "other" field now. I tried that, but with the same results.
    However, I found the solution for this particular website: You actually have to tap the radio button to the left of the number, then tap the "Submit" button at the bottom of the list. That way the iPhone won't think you're tapping on a phone number. If I had more than a single number in my "list", I might have noticed that.
    It seems like this could still be an issue in other situations.
    Thanks for the help.
    -Peter

  • Ping - I don't understand? How to follow an artist?

    Windows 7 Professional / iTunes Ping
    I'm trying to give Ping a try, and I've done searches for Jeff Beck, John Mayer and Tal Wilkenfeld in the "Search for People or Artists" box. I get hits for Jeff Beck and John Mayer, but the results appear to be followers not the artist. How do I get to the artist? Is the artist population on Ping weak at this point?
    Side note, the Ping page appears to be dead at the moment, won't move off page 1 of "Artists we Recommend"? Thanks for your help, IM

    The artists or their record companies, yes. With thousands of artists, the iTunes Store can't possible do it all themselves, and some artists may not want to have their own pages, so a page must be requested, though I have no doubt that Apple's urged particularly prominent/popular artists to get on board. And with that many artists, it will take time for every artist who wants their own page to get set up.
    Regards.
    Message was edited by: Dave Sawyer

  • How to follow process chain execution history

    Hello All;
       I need to follow all process chain execution history, is there any way to follow a process chain execution for example over a week ?
    Example :
      Day 1 PC failes
      Day 2 PC success
      Day 3 ...
      Day 4 ...
      Day 5 ...
    Regards
    Anis

    Go to tcode RSPC and open your process chain and select log view icon .
    check the logs as follows

  • How to Follow a new collection to a group of users?

    hi,
       The problem I'm having is we have a new site collection with a couple of sub-sites and each sub-site has a newsfeed web-part. However when a user posts on the newsfeeds it doesn't show up in the My Sites Newsfeeds which is in another site collection.
    Is there a way to enable it so any users posts by a users would  feed up to the user's My Site Newsfeed without having the user Following the site themselves? Thanks as always.
    SPYliu

    SPYliu,
    Based on my test, if we want to show the posts in newsfeed web part (site feed feature) on each reuqired user's My Site Newsfeed page, we have to let those users to follow these site, the the posts in this web part will display on user's newsfeed
    page, the following article should be useful.
    http://radutut.wordpress.com/2013/02/01/following-sites-in-sharepoint-2013/
    http://technet.microsoft.com/en-us/library/jj219572.aspx
    http://technet.microsoft.com/en-us/library/jj219700.aspx#arch
    Thanks
    Daniel Yang
    TechNet Community Support

  • HT204370 check for available downloads for the store menu appears when i try to download my copy of Ted? why and how to follow through?

    im trying to download my free copy of Ted when i purchased the blu ray copy, and i cant seem to get it to download, i seem to have it, i run windows 7 and use itunes most current version as well. i try to download it and i get a window that pops up and says: You have already purchased this item. You have already purchased this item but it has not been downloaded. To download it, select Check For Available Downloads from the Store menu.
    after that i just don't know where to goe, where available downloads are located in the store, i look up the movie and it just says to purchase, i already have so i just need to downloade my copy, any help or advice?

    http://www.apple.com/support/mac/app-store/contact.html?form=account

  • How resolve following error

    Msg 7601, Level 16, State 2, Line 4
    Cannot use a CONTAINS or FREETEXT predicate on table or indexed view 'HumanResources.JobCandidate' because it is not full-text indexed.

    Hello Conrad
    Newbie to SQL Server. Was using AdventureWorks2012 db.
    I hit the same error when using the below example:
    USE AdventureWorks2012;
    GO
    DECLARE @SearchWord nvarchar(30)
    SET @SearchWord =N'performance'
    SELECT Description
    FROM Production.ProductDescription
    WHERE CONTAINS(Description, @SearchWord);
    Msg 7601: as the table ProductDescription  wasn't full text indexed
    So i ran the below code to create a full text index on ProductDescription table
    CREATE FULLTEXT INDEX ON Production.ProductDescription
      Description Language 1033  
        KEY INDEX PK_ProductDescription_ProductDescriptionID
          ON production_catalog;
    And the original query executed just fine with the below result:
    Description
    This bike delivers a high-level of performance on a budget. It is responsive and maneuverable, and offers peace-of-mind when you decide to go off-road.
    Top-of-the-line competition mountain bike. Performance-enhancing options include the innovative HL Frame, super-smooth front suspension, and traction for all terrain.
    Superior shifting performance.
    High-performance carbon road fork with curved legs.
    The ML frame is a heat-treated aluminum frame made with the same detail and quality as our HL frame. It offers superior performance. Men's version.
    The ML frame is a heat-treated aluminum frame made with the same detail and quality as our HL frame. It offers superior performance. Women's version.
    High-performance mountain replacement wheel.
    Our lightest and best quality aluminum frame made from the newest alloy; it is welded and heat-treated for strength. Our innovative design results in maximum comfort and performance.
    High-performance mountain replacement wheel.

  • How to use UoM in following case...?

    We have following requirements so Can you please share with me how the following requirement is supported by Standard SAP.
    “Currently we are using Materials with single UOM on the Procurement side, the material is received in single UOM and the issuance is done accordingly. Where as in reality the actual receipt are in different forms.
    (For Food Items ordered in KG but are received in Cases, or the UOM of the Vendor usually differs from our UOM)
    Below is one example for the same.
    Product: Tomato ketchup
    Usage 1: 10 ltr drums/ 9.7 ltr drums/ 15 ltr drums
    Used in contracts with sizeable dining facilities
    Price very low
    Usage 2: 12x 250 ml bottles/ 10x 320 ml bottles/ 12x 375 ml squeeze plastic bottles/ 6x 720 ml bottles
    Used in contracts where we are allowed to place this sku on tables or on a separate table
    Regular price (average 50% more expensive per ltr than the drums)
    Usage 3: 1000 x 10 ml sachets/ 1200 x 10 ml sachets/ 2000 x 7 ml sachets
    Used in contracts where the SOW specifically requests portion control and sachets to be made available
    Price more than double of the drums

    "(For Food Items ordered in KG but are received in Cases, or the UOM of the Vendor usually differs from our UOM)"
    For handling different UoM from Vendor, you can check Batch Specific unit of measurement.
    Batch-Specific Units of Measure - Batch Management (LO-BM) - SAP Library
    Check this document too by Naveena Shetty. You will find a lot of discussion too.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a021e088-3428-2d10-799d-a69349248f10?quicklink=index&…

Maybe you are looking for

  • Outgoing payment error: invalid payment to name

    Hello, We are trying to do a outgoing payment error. Everything seems to be allright (dates, amounts...), but when adding the payment the following error is appearing in red in the status bar: "Invalid payment to name" Do you know why? Version is 200

  • Confused by the removal of aggregate/index tables in HANA

    Hiya, I've heard that HANA removes the need for aggregate and index tables like BSIS, BSAS, VRPMA etc. Is HANA smart enough to do this? Or does Simple finance (sFIN) do this? I mean if we were to replace our Oracle DB with HANA would the index tables

  • Another problem with images

    Hi all, I'm new here I need to retrieve images list from database and to show them on JSP. Images are saved in MySQL database as BLOB. Any idea how to do this? I searched for similar topic here, but couldnt find anything... Any tips&tricks are more t

  • Adobe CS5 files will not save and crash on Yosemite

    I have a brand new Macbook Pro 15" running the latest version of Yosemite. I have my Adobe CS5 Web Premium system installed and when using Illustrator, I can not save any files--when I go to save and choose where to save the document, the program fre

  • Difference between  crm 3.0  and crm  4.0  and crm 5.0

    Please  tell  what is diff  between  crm  3,4,5. Thanks