Could someone let me know the steps in configuring documentum with weblogic

Could someone let me know the steps in configuring documentum with weblogic server

http://www.apple.com/itunes/content-providers/book-faq.html
Michi.

Similar Messages

  • Can anyone let me know the step by step procedure for creating userexits?

    Hi all,
    can anyone let me know the step by step procedure for creating user exits? for any transaction code like mm01 or vd01. If you have any docs send it across to my email id : [email protected]
    thanxs in advance
    hari

    Hi,
    *& Report  ZEXITFINDER
    *report  zexitfinder.
    *& Enter the transaction code that you want to search through in order
    *& to find which Standard SAP User Exits exists.
    *& Tables
    tables : tstc, "SAP Transaction Codes
    tadir, "Directory of Repository Objects
    modsapt, "SAP Enhancements - Short Texts
    modact, "Modifications
    trdir, "System table TRDIR
    tfdir, "Function Module
    enlfdir, "Additional Attributes for Function Modules
    tstct. "Transaction Code Texts
    *& Variables
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    *& Selection Screen Parameters
    selection-screen begin of block a01 with frame title text-001.
    selection-screen skip.
    parameters : p_tcode like tstc-tcode obligatory.
    selection-screen skip.
    selection-screen end of block a01.
    *& Start of main program
    start-of-selection.
    Validate Transaction Code
    select single * from tstc
    where tcode eq p_tcode.
    Find Repository Objects for transaction code
    if sy-subrc eq 0.
    select single * from tadir
    where pgmid = 'R3TR'
    and object = 'PROG'
    and obj_name = tstc-pgmna.
    move : tadir-devclass to v_devclass.
    if sy-subrc ne 0.
    select single * from trdir
    where name = tstc-pgmna.
    if trdir-subc eq 'F'.
    select single * from tfdir
    where pname = tstc-pgmna.
    select single * from enlfdir
    where funcname = tfdir-funcname.
    select single * from tadir
    where pgmid = 'R3TR'
    and object = 'FUGR'
    and obj_name = enlfdir-area.
    move : tadir-devclass to v_devclass.
    endif.
    endif.
    Find SAP Modifactions
    select * from tadir
    into table jtab
    where pgmid = 'R3TR'
    and object = 'SMOD'
    and devclass = v_devclass.
    select single * from tstct
    where sprsl eq sy-langu
    and tcode eq p_tcode.
    format color col_positive intensified off.
    write:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    skip.
    if not jtab[] is initial.
    write:/(95) sy-uline.
    format color col_heading intensified on.
    write:/1 sy-vline,
    2 'Exit Name',
    21 sy-vline ,
    22 'Description',
    95 sy-vline.
    write:/(95) sy-uline.
    loop at jtab.
    select single * from modsapt
    where sprsl = sy-langu and
    name = jtab-obj_name.
    format color col_normal intensified off.
    write:/1 sy-vline,
    2 jtab-obj_name hotspot on,
    21 sy-vline ,
    22 modsapt-modtext,
    95 sy-vline.
    endloop.
    write:/(95) sy-uline.
    describe table jtab.
    skip.
    format color col_total intensified on.
    write:/ 'No of Exits:' , sy-tfill.
    else.
    format color col_negative intensified on.
    write:/(95) 'No User Exit exists'.
    endif.
    else.
    format color col_negative intensified on.
    write:/(95) 'Transaction Code Does Not Exist'.
    endif.
    Take the user to SMOD for the Exit that was selected.
    at line-selection.
    get cursor field field1.
    check field1(4) eq 'JTAB'.
    set parameter id 'MON' field sy-lisel+1(10).
    call transaction 'SMOD' and skip first screen.
    look in txn CMOD or SMOD, check enhancement 0VRF0001. It uses function module EXIT_SAPL0VRF_001. It is used to manipulate route determination for SD.
    Here is the code
        DATA: ls_xvbpa LIKE xvbpa,
              lf_aland LIKE tvst-aland,
              lf_azone LIKE tvst-azone,
              lf_lland LIKE trolz-lland,
              lf_lzone LIKE trolz-lzone,
              ls_vbadr LIKE vbadr,
              ls_xvbap LIKE xvbap,
              ls_tvst LIKE tvst,
              lv_route LIKE trolz-route.
        LOOP AT xvbap INTO ls_xvbap.
          IF NOT ls_xvbap-vstel IS INITIAL.
            SELECT SINGLE * FROM tvst
              INTO ls_tvst
             WHERE vstel EQ ls_xvbap-vstel.
            IF sy-subrc = 0.
              lf_aland = ls_tvst-aland.
              lf_azone = ls_tvst-azone.
            ENDIF.
          ENDIF.
          READ TABLE xvbpa INTO ls_xvbpa WITH KEY vbeln = ls_xvbap-vbeln
                                                  posnr = ls_xvbap-posnr
                                                  parvw = 'Q1'.
          IF sy-subrc = 0.
            CALL FUNCTION 'SD_ADDRESS_GET'
              EXPORTING
                fif_address_number      = ls_xvbpa-adrnr
              IMPORTING
                fes_address             = ls_vbadr
              EXCEPTIONS
                address_not_found       = 1
                address_type_not_exists = 2
                no_person_number        = 3
                OTHERS                  = 4.
            IF sy-subrc <> 0.
              MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                      WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            ELSE.
              lf_lland = ls_vbadr-land1.
              lf_lzone = ls_vbadr-lzone.
            ENDIF.
          ENDIF.
          CALL FUNCTION 'SD_ROUTE_DETERMINATION'
            EXPORTING
              i_aland             = lf_aland
              i_azone             = lf_azone
              i_lland             = lf_lland
              i_lzone             = lf_lzone
            IMPORTING
              e_route             = lv_route
            EXCEPTIONS
              no_route_found      = 1
              departure_error     = 2
              destination_error   = 3
              invalid_generic_key = 4
              customer_exit_error = 5
              OTHERS              = 6.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ELSE.
            ls_xvbap-route = lv_route.
            MODIFY xvbap FROM ls_xvbap TRANSPORTING route.
          ENDIF.
        ENDLOOP.
    For information on Exits, check these links
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sapgenie.com/abap/code/abap26.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    http://www.easymarketplace.de/userexit.php
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sappoint.com/abap/userexit.pdfUser-Exit
    http://www.planetsap.com/userexit_main_page.htm
    User-Exits
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sap-img.com/ab038.htm
    http://www.planetsap.com/userexit_main_page.htm
    http://www.sap-basis-abap.com/sapab013.htm
    http://sap.ittoolbox.com/documents/popular-q-and-a/user-exits-for-the-transaction-code-migo-3283
    <b>Reward points</b>
    Regards

  • Please let me know the TCODE for configuring Unit of Measure with settings

    Dear All,
    Please let me know the TCODE for configuring Unit of Measure with settings.
    Thanks

    Dear All,
    Please let me know that can we get PO amount with Taxes included in report ME80FN.
    Is there ant other standard report to get the same?
    Please help.
    Thanks.
    Shreya

  • May someone let me know the meaning of "ocspd: Error opening DB"

    Hi there,
    I open the console and it keeps displaying this message: ocspd: Error opening DB.
    What does it mean and should I do anything to take care of it?
    Your help is much appreciated.
    Thanks,
    Chris

    Back up all data, then triple-click anywhere in the line of text below on this page to select it:
    /var/db/crls
    Copy the selected text to the Clipboard (command-C). In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.
    Move all the files in the folder that opens to the Trash. You’ll be prompted for your administrator password. Reboot, empty the Trash, and test.

  • Need to know the steps to setup 'Configurable Search' in PeopleSoft CRM 8.8

    Hi,
    Could you please let me know the steps to setup 'Configurable Search' in PeopleSoft CRM 8.8(PeopleTools 8.48)?
    Thanks

    PeopleBooks > PeopleSoft Enterprise CRM Automation and Configuration Tools PeopleBook > Configuring Search Pages
    Nicolas.

  • When opening my lightroom 5- It pops up Lightroom encountered an error when reading its preview Cache and needs to quit.... Can someone walk me through the steps!?

    Opening my lightroom 5.. I get a message that Lightroom encountered an error when reading its preview Cacge and needs to quit.
    Can someone walk me through the steps. Im dealing with MAC computer

    Go to the folder containing your catalog and delete the folder with the extension .lrdata. Then start Lightroom, and it will begin creating a new cache file.
    If you need to know where the files are: Preference and other file locations in Lightroom 5

  • Can anyone let me know how to integrate crystal reports with bi 7?

    HI all,
    Can anyone pls let me know the steps involved in integrating crystal reports with bi 7?
    thanks
    Pooja

    1.install BO client tools
    2. install crystal reports
    3.install sap integration kit
    once you install in above sequence you will be able to pull data from BW system.

  • Steps to configure JDeveloper with iSupplier Application

    I need some help in configuring my Standalone JDeveloper Environment for iSupplier Portal e-business application customization such as JAVA_TOP and POS_TOP files directories.

    Hi,
    I am looking for a similar thing.It would be greatly helpful if you could let me know the steps
    Thanks in Advance

  • Could someone please let me know the best external hard drive for a Mac Pro 17 in. ? Thank you .

    Hi,
    I am new to the community and need advice as soon as possible . I have been using the iMac hard drive , but need a external hard drive to put on the Mac Pro and dont know what kind to get . Could someone please let me know the best for the Mac Pro ? I was told to get the 500 MB external back up , but when searching for it on the internet I saw different ones that had other things with the 500 MB . Some had 300 or 200 something else along with them and I dont know which to purchase .
    I will appreciate more than you know if you could help me with this , as the Pro is needing backed up now.
    Thank you ,

    I appreciate all the great advice here , but all this is overwhelming to me , as you all are so intelligent with these things and this causes me to feel more dumb about a Mac than I was already .
    I paid for a One on One to learn these things , but I have a Immune Disorder and wasn't able to attend one class , so its not that I didn't try , I am just not able to travel . I don't like asking others for help , but at this point I don't have a choice.
    I called Apple store and was told to get a External Back-up for the Macbook Pro to back up the info. on the device in the event it crashed . And another reason was "they " said to get this was I have a 2 TB backup on the iMac desktop and that using it to back up things on the Macbook would take up all the space of the backup on the desktop . I hope I am saying these things right for others to understand me as I said I don't know much about these things , at all really . I am wondering if I should have ever bought these products as it seems they are much harder to learn than I thought . I do admire all the brains you all have here and wish I knew just a little of what you all know.
    Someone ask the kind of Macbook Pro I have , it was bought in August of 2011 , but sat all those times , was only updated when needed to be , as I was trying to learn on the desktop Mac and with this illness I live in bed more than up , so I couldn't learn on both devices . I should also say at this time I paid for an extra 3 yrs. to have the opportunity to call in for advice , but was only given 15 min. of talk time , and I can't complain as the Techs were very supportive , but the problem was and is I can't be out of bed long enough to learn things I need to with only getting to call Techs , maybe every 3 or so months and sometimes I didn't call for 5 or so months , now that has expired and I don't have a choice but to ask for help .
    I know some might wonder why I went to the trouble to have these devices with being sick , but I would like to live some with what time I have left in life . I am not searching for pity here , just wanting to clarify what has happened and why I am having to bother others . With this out of the way now I can get onto the other things here.
    I am afraid I might have messed up the backup on the Macbook Pro was trying to make a back up and clicked on something saying do not use this , meaning the device from the desktop again . I had connected the backup device from the desktop , trying to make a backup of things on the Macbook Pro and also cant get the Time Machine turned back on , once I turned it off .
    I am sorry I have taken so much time to try and explain this to you all , but I am not computer savvy as you are and have had a hard time explaining all this .
    I noticed also someone said this isn't the right forum for this , and would like for someone to point me to the right one if you don't mind.
    I appreciate all the good advice here and all the trouble you all went to for me .
    Thank you , thank you all .

  • I have forgotten the passcode of the iPod and now its locked, I can't even remember the iTunes log in so someone please let me know the procedure how to recover the iPod

    My 8 year old daughter has forgotten her passcode for her iPod touch and got it locked in the process of trying to recover. now after resetting its requesting for a iTunes login but i tried both mine and my wives and its not accepting. please someone let me know how to proceed with recovering this.

    Hi maveric19,
    If you can't recover the passcode, follow the steps in this article.
    iOS: Forgot passcode or device disabled
    That should get you going again.
    Best Regards,
    Nubz

  • How can i connect my mac book pro with retina display 2014 Mid to 5.1 channel? what is the connector am i to use? i wonder if anybody could probably let me know?

    how can i connect my mac book pro with retina display 2014 Mid to 5.1 channel? what is the connector am i to use? i wonder if anybody could probably let me know?

    https://www.youtube.com/watch?v=72l_FLsXNAg
    I use Hercules found here http://www.hercules.com/us/Sound-Cards/bdd/p/123/gamesurround-muse-xl-pocket-lt3 /
    also read this helpful thread Outputting 5.1 Channel Surround Sound from your Mac

  • Can someone let me know if this is true, ive read that iphone are replacing the 3gs 8gb for the iphone 4 8gb is this at all true?

    can someone let me know if this is true, ive read that iphone are replacing the 3gs 8gb for the iphone 4 8gb is this at all true?

    You do realize that this article ( form August -beofore Apple announced the new iphone) was simply speculating on what the next iphone to be released would be.
    You do not have to guess any longer.  Apple has allready released the iphone 4s.
    You seem to be very confused about what this is saying.
    This article simply guessed that maybe iphone was going to announce a new cheap iphone at the conferance which happend a couple of months ago.
    We now know that this was completely wrong.  Apple released the iphone 4s.
    The article does not mean that they would give iphone 3gs users a iphone 4 as  a replacement.  It meant that they would not make 3gs any longer and would now make a cheaper iphone 4 instead.
    We now know that this was incorrect.

  • I am having problems transefering contacts to my I pod when syncing the message comes back with contact in use by I pod please close and try again, please could you let me know how to close contacts on the  pod or is there a setting that is wrong etc,

    I am having problems transfering contacts to my I pod when syncing the message comes back with contacts in use by I pod please close and try again, please could you let me know how to close contacts on the  pod or is there a setting that is wrong etc, i have restored the device. if i go to contact via settings the screen comes on for about 2 seconds and then goes off - Help

    Single click on the Home button. Then double click on the Home button. In the recently used row, touch and hold the Contact app till they start to wiggle and then tap the minus sing by the contacts app.
    Also make sure the Contact program on your computer is closed.

  • HT201320 I have an Apple Ipad.  I was having problems receiving and sending emails via my yahoo email account.  I deleted the account and then tried to install it but it won't connect to server. Could you let me know what I do please?

    I have an Apple Ipad.  I was having problems receiving and sending emails via my yahoo email account.  I deleted the account and then tried to install it but it won't connect to server. Could you let me know what I do please?

    I think you have to turn off Private Browsing.
    Tap "Private" on Safari Screen to disable Private Browsing. When top of screen is white, Private Browsing is off.
    http://i1224.photobucket.com/albums/ee374/Diavonex/547958b4a8c01ac084dd6649e8386 a0f_zps12fa0cca.jpg

  • Let me know the BIW 7.0 flow

    Dear All,
    I am new to this BIW 7.0, before i was working with 3.0B. Kindly let me know the difference between this two. I could see here in the Modelling area Data Sources, DTP, Transformations and so many areas here. Let me know this flow in detail. Kindly help me in this regard.
    Regards
    Sathiya

    Hi Sathiya,
    1.     I want to know the difference between the transformation field in the data source and transformation field in the data target also.
    [Anil]: Qn is not that clear, but just in case if you want to know about transformations then below are the links.
    Transformations
    http://help.sap.com/saphelp_nw2004s/helpdata/en/d5/da13426e48db2ce10000000a1550b0/content.htm
    Routines
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/857adf7d452679e10000000a1553f7/content.htm
    Difference in Transfer/Update rules routines to Transformations of nw2004s
    http://help.sap.com/saphelp_nw2004s/helpdata/en/44/bd9b5be97c112ce10000000a11466f/content.htm
    2.     Why there is a field in transfer rule in data source tree?
    [Anil]: If you are in BI 7.0 you don’t need transfer rule. You can map the fields in the data source to the data target with transformations. Right click the data target and choose transformations and give the data source name and you will be guided.
    3.     What is migrate in the data source tree?
    [Anil]: Below are few important points:
    •If you want to migrate your 3.x DataSource into a SAP NW 2004s BI DataSource, then use the inbound adapter functionality – which will mean losing your DataSource, Transfer Rules and PSA. Bear this in mind if there is complicated logic within your transfer rules. You will need to migrate this earlier into a transformation. Then you can do the DataSource migration. This will mean a new PSA table will be generated. There should not be data in your PSA table when you do the migration, as it will be lost.
    •You do not have to migrate all your update/transfer rules to the new concept. You could still define update/transfer rules in SAP NW 2004s, although this is a little more hidden – available via Additional Functions in context menu.
    4.     What is data transfer process in data source tree?
    [Anil]: Here is the Step by step process to create DTP -
    http://help.sap.com/saphelp_nw04s/helpdata/en/42/fa50e40f501a77e10000000a422035/content.htm
    5.     How to load master data is this same like 3.0b??
    [Anil]: No, it is not the same. But for loading hierarchy we still follow the 3.x procedure. Below are the steps for loading master data:
    1. Create the infoobjects you might need in BI
    2. Create your target infoprovider-Infoobject
    3 Create a source system
    4. Create a datasource or use replicated R/3 datasource
    5. Create and configure an Infopackage that will bring your records to the PSA
    6. Create a transformation from the datasource to the Infoprovider
    7. Create a Data Transfer Process (DTP) from the datasource to the Infoprovider
    8. Schedule the infopackage
    9. Once successful, run the DTP to get data from PSA to Infoobject
    10. Check Infoobject for data
    loading Infoobject using Flat-File
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/01ed2fe3811a77e10000000a422035/content.htm
    6.     If we are taking from more than one data source then how we have to process?
           [Anil]: Below are different scenarios in using data source.
    http://help.sap.com/saphelp_nw04s/helpdata/en/44/0243dd8ae1603ae10000000a1553f6/content.htm
    Assign points if this helps.
    Regards,
    Anil

Maybe you are looking for

  • Pdf file in ALV  TOP OF PAGE

    Hi,   Could any one tell how to use cl_gui_dialogbox_container  to display pdf in a ALV top of page

  • Why is Bridge CS6 not opening images in PS CS6?

    Recently, Bridge has stopped opening pictures in Photoshop CS6. Each time I try the screen signals that Photoshop has to close down. However, I can open the pictures in ACR 7.4, but again, those images will not open in Photoshop. If I use the Mini Br

  • Error in sql statement using names having '&'

    I am trying a query to update name to "WALK & TALK"..It gives me error as it considers Talk as input parameter..and expects its value ..when try to execute

  • Is this a hoax or spam or real

    [6/28/2012 11:12:37 AM] *** Call from SYSTEM NOTICE - URGENT ONLINE REPAIR ***

  • BCC takes 5min+ to load the assets tab or to paginate

    Hi, We have implemented all of the ATG support magic of 1038123.1 (BCC is slow when viewing product catalog assets), that is, add indexes against dcs_prd_chldsku, dcs_cat_chldprd and dcs_cat_chldcat. We are using MS SQL so we have already have loadIt