SP05 standard repository passwords - Will reward good points

Hi,
   We unarchived the standard repositories from Business content for SP05 patch 01 (materials, customers and vendors). In the console the repository is locked and needs login credentials. I could not find information on what user id and password to use for first time login.  Please tell me what user id / password to use for first time login to standard repositories (We have just unarchived the a2a files)
Will reward good points
Thanks
Harsha

Hi Harsh,
<b>"For unlocking  repository, Choose Login from the context menu and enter a username and password (for the standard repositories the default username is Admin without a password). Otherwise use the username and password that you have defined in the repository".</b>
This is mentioned in the Upgrade Guide of SP5 at page no 13. you can check using link <a href="https://websmp110.sap-ag.de/~sapidb/011000358700000271872007E">Upgrade Guide SP5</a>
Please try user Id "Admin" and password blank once more. If not successful this time then it seems that you have by mistake changed the password of the repository.
Hope this will help you. Please let me know the results.
Thanks,
<b>Shiv</b>

Similar Messages

  • Changing OWB Repository Password

    Hi,
    We are using OWB 10.1 version with Oracle 9.2. We maintain 3 repository users like OWB Designer, OWB RUN USER and OWB RUN OWNER. Whenever we get password expiry warning, our mappings fail and get aborted.
    As a part of the security policy, repository passwords will be changed regularly. We would like to know the implications of change in the repository passwords,
    whether we need to re-deploy the mappings, process flows or any other thing to be
    taken care specifically whenever it is changed.
    Please give all the details, suggestions related to this and what is the normal
    industry practice on this, thank you.
    Regards,
    Deva

    Change password of OWB Repository Owner
    The user password can be directly changed in the database using the following sql
    alter user <owb repository owner> identified by <password>
    Change password of Runtime Repository Owner
    Warehouse Builder has a specific procedure to do this for the runtime repository user. The steps are below:
    1. Logon to the runtime repository using the old password.
    2. Run script <owb home>/owb/rtp/sql/stop_service.sql
    3. alter user <repository owner> identified by <new password>
    4. Run script <owb home>/owb/rtp/sql/set_repository_password.sql
    5. When prompted, specify the new password
    6. Run script <owb home>/owb/rtp/sql/start_service.sql
    There are no additional steps for Runtime Access User (but if this user is used for starting mapping/processes in scheduling jobs then modified password should be updated in scheduling scripts - this depends on scheduler used)
    We dont have to do any deployments for the password changes.
    Regards,
    Mallee

  • Urgent please help will reward points

    How do i join two trans table with indexes.
    please help will reward points.

    Hi,
    Just copy paste this code, activate and test.
    INNER JOIN.
    TYPES: BEGIN OF  t_vbak,
                 vbeln TYPE vbeln,
                 END OF t_vbak.
    TYPES: BEGIN OF t_vbap ,
           vbeln TYPE vbeln_va,
           posnr TYPE posnr_va,
           END OF t_vbap.
    DATA: it_vbak TYPE STANDARD TABLE OF t_vbak.
    DATA: wa_vbak TYPE t_vbak.
    DATA: it_vbap TYPE STANDARD TABLE OF t_vbap.
    DATA: wa_vbap TYPE t_vbap.
    select-options:  s_vbeln for wa_vbak-vbeln.
    SELECT avbeln bposnr INTO table it_vbap FROM vbak AS a
                                INNER JOIN vbap AS b ON
                                avbeln = bvbeln WHERE a~vbeln in s_vbeln.
    loop at it_vbap into wa_vbap.
    WRITE:/ wa_vbap-vbeln, wa_vbap-posnr.
    endloop.
    LEFT OUTER JOINT.
    SELECT avbeln bposnr INTO table it_vbap FROM vbak AS a
                                 left outer join vbap AS b ON
                                 avbeln = bvbeln WHERE a~vbeln in s_vbeln.
    loop at it_vbap into wa_vbap.
    WRITE:/ wa_vbap-vbeln, wa_vbap-posnr.
    endloop.
    DIFFERENCE BETWEEN INNER AND LEFT OUTER JOIN.
    With respect to above example,
    INNER JOIN will fetch all those datas with reference to VBAK in VBAP.
    LEFT OUTER JOIN will also fetch all those datas with reference to VBAK in VBAP. But it will also fetch those data which are in VBAK, But not in VBAP.
    hope this helps.

  • J1IS (After GI in STO Process) will reward points for any helpful answers

    Dear Gurus,
    After Goods Issuance of Stock Transfer Order:
    I did a capturing and posting of Excise Invoice referencing the Goods
    Issuance Material Document (of STO) using transaction J1IS. Excise
    Document is created succesfully and displayed in the pop up message,
    but FI document is not displayed in the pop up message (but it actually
    got created in the system).
    The pop up message looks like this:
    "Excise invoice 001020026 generated. FI document is ."
    Is there a SAP note to enable the FI document number to be displayed in
    the pop up message?
    Will reward points for any helpful answers.
    Thanks,
    Jules

    Resolved with SAP's help:
    Run transaction FIBF.
    On the menu click on - Settings -> Products -> of a Partner -> Activate
    here maintain a new entry:
    Product Partner
    CIN INDIA

  • Transaction variant misunderstood. I will reward points !!!!!

    Hello Gurus, i am trying, for some time now, to create a transaction variant. The goal is to set a field read-only in the "ea13" transaction.
    When is use "se93" to create a transaction variant i have to fill in the transaction variant name, but when i do that it says that the transaction variat does not exist, confusing because i want to create a new transaction variant.
    When i use "shd0" and fill in the name of my new transaction variant and click create i don`t have any fields, everything is empty. Can anyone give me an exact example or something. I found on the forum a link to a step by step how to, but it didn`t work.
    Im working on R/3 Release 4.6C.
    Please help, i will reward lots of points !!!

    Hi,
    Starting Transaction Variants
    A transaction can be started with a variant:
    Using the Test function from the maintenance transaction
    By a program that includes a call to function module RS_HDSYS_CALL_TC_VARIANT
    Function module RS_HDSYS_GET_TC_VARIANT checks to see if a transaction variant is active and returns its name and (if possible) its current values (screen variants, inactive functions).
    Using its own transaction code as a variant transaction.
    When a transaction with variant is called using the Test function, for technical reasons it is started in call mode. Some transactions behave differently in call mode than when called directly.
    A variant transaction is started either in call mode or LEAVE TO TRANSACTION, depending to how it is called.
    If you call a transaction with variant from a program using the function module RS_HDSYS_CALL_TC_VARIANT, you can use the function module to determine which mode is called (call mode or LEAVE TO TRANSACTION).
    Variant Transactions
    A transaction with a variant can have its own transaction code, which you can then use to execute the transaction with the appropriate variant.
    To create a variant transaction, proceed as follows:
    Choose Goto ® Create vari. trans. from the initial transaction variant maintenance screen.
    Enter a transaction name and corresponding short text. Transaction type Variant transaction is already set. The following screen already contains default values for the name of the calling transaction, the variant name, and the client-specific or cross-client variant checkbox.
    Save your entries.
    Example:
    Variant ABC has been defined for transaction Z000. We now want to create the variant transaction ZVAR.
    Name of the new transaction: ZVAR
    Name of the calling transaction: Z000
    Name of the variant: ABC
    Transaction ZVAR starts transaction Z000 with variant ABC.
    If the variant specified for a variant transaction does not exist (in the current client), then the calling transaction will be started without variant.
    The Standard Transaction Variant
    Standard transaction variants have a special purpose. You can use any transaction variant as a standard variant. Use the Activate and Deactivate functions to use a specific transaction variant as a standard variant or to deactivate it.
    If a standard variant is active for a transaction, the system searches for the variant automatically whenever the transaction is started and adopts its values.
    If a transaction with an active standard variant is started with another variant, the values of the standard variant are not imported.
    If a transaction with an active standard variant is started in batch input mode, the values of the standard variant are not imported either.
    Variant Transactions and Parameter Transactions
    Variant transactions can be client-specific (this means that their corresponding variants can also be client-specific).
    In a variant transaction, several screens can be given pre-assigned values or suppressed. In a parameter transaction this can only be done for the initial screen.
    You can suppress as many screens as you like in variant transactions; in parameter transactions you can only suppress the initial screen. If a screen is suppressed in a variant transaction, it is never displayed. An initial screen that has been suppressed in a parameter transaction is only not displayed when the transaction is initially called.
    You can use the function Change transaction type during transaction code maintenance to convert a parameter transaction to a variant transaction. The system creates a transaction variant and a screen variant for its initial screen containing the values of the parameter transaction. The system suggests the name CV_P_ for these variants. The default name may be changed. The variant is created for the called transaction. It can be changed in Transaction Variant Maintenance and Screen Variant Maintenance. The transaction variant can be created in the current client or as a cross-client variant.

  • Change position of number sign in ALV (2-) into (-2). I will reward points.

    Hello Gurus, i need to change the position of the sign in a ALV list from the back of the number in the front of the number.
    eg. 2- i need it to be -2.
    Is there some way to do this without having to create a new field that is character type. I know the function CLOI_PUT_SIGN_IN_FRONT but it works only if my field is type char.
    Can anyone help ? I will reward points.

    In edit-mask you can force the position of the minus sign :
    USING EDIT MASK mask
    Effect
    Outputs f according to the formatting template mask.
    Without this addition, f is output in the standard format for that particular type or with a format defined in the ABAP Dictionary. The addition allows you to define a different format.
    You can specify the formatting template as follows:
    '_'represents one character of the field f
    or one digit with type P or I
    'V'only with fields of type P or I:
    output of leading sign
    'LL'at beginning of template:
    left justify (standard)
    'RR'at beginning of template:
    right justify
    '==conv'perform output conversion conv
    ':', ...separator
    (all other characters)
    Regards

  • Good points will be given if question sloved

    hello Gurus!
                       required Purchase requisation outstanding aging report code.
    plz help me in this.thnx in advance.Good points will be given if question sloved.
    regards
    Rakhi.

    hello Gurus!
                       required Purchase requisation outstanding aging report code.
    plz help me in this.thnx in advance.Good points will be given if question sloved.
    regards
    Rakhi.

  • I bought a 4yr replacemen​t plan and was promised triple rewards zone point yet I havent seen nothing

    I was given another reward accumulation points card awhile back. Now will It'll take 7-10 days to link past points. But was left on the cell phone line without a response or what I can do to retrieve my triple rewards points. In 2010 I paid for what I was then assured would be usable in 2014 however I can't believe the fine printed NEW rules break assured promise like agreements.

    Good morning TlalocSoria,
    Welcome to the Best Buy forum, and thank you for posting!
    If you purchased a Geek Squad Protection plan between 9/14/2008 - 7/14/2012, did not utilize the plan for service, and the plan has expired within the past 90 days, then you should be eligible for the Good Maintenance Reward.   This benefit would award you double points based on the plans original purchase price, so if you paid $100 for the plan in 2010, then you would receive 200 points.
    With that being said, I will be sending you a private message so that I can gather some information from you to determine whether or not you qualify for the reward.  To check your private messages, you would want to login to the forum and click on the yellow envelope icon located at the top of the page.
    Warm Regards,
    Derek|Social Media Specialist | Best Buy® Corporate
     Private Message

  • My AppStore id is my apple id n password which is good when purchasing. But when I am updating from update option it ask for a password. The user id I see there is not mine, it's different. How do I change that to my apple Id? Please help me resolve .....

    My AppStore id is my apple id n password which is good when purchasing. But when I am updating from update option it ask for a password. The user id I see there is not mine, it's different. How do I change that to my apple Id? Please help me resolve  this issue. I have tried resetting it but nothing... Either I'm doing something wrong or....

    I believe the issue is with the Apple ID that was used to purchase the App. If you download an App that was purchased under a different Appple ID then all updates will also be linked to the original purchaser's Apple ID. Your Apple ID is the the same ID as your iTunes, iCloud, etc. Some folks use different ID for the different Apple sites. No need for that One ID for all Apple Sites, and if someone else buys an App using their ID and they(you) download that App onto your device and that App requires an update it will ask for the purchasers Apple ID. This happens a lot when folks sell their iPad or give it to someone else and leave some purchased(free) Apps on the iOS device. You cannot change the original ID the App was purchased under. A suggestion would be if someone else has an App that you like but do not want to pay for use their ID or in the future have them gift the App to you.

  • When trying to launch iTunes it freezes and I get the message: "Authentication Required. To access this site you need to log in to area "100656 on mellor.co. Your password will be sent in the clear." I am unable to enter a uname or password. Please help!!

    When trying to launch iTunes on my PC running Windows 7 it freezes and I get the message: "Authentication Required. To access this site you need to log in to area "100656 on mellor.co. Your password will be sent in the clear." Because iTunes is frizen at this point I am unable to enter a username or password, or in fact do anything. Please help!! I have uninstalled and reinstalled iTunes numerous times as well as attempting all of the fixes that I could find on-line and still no joy.

    That sounds extremely phishy to me... iTunes does not require authentication simply to launch it. I suspect you've got something nasty intercepting network traffic. That server may be set up to log the Apple ID that you enter so it can be used fraudulently. Try ComboFix from Bleeping Computer.
    FWIW the domain mellor.co is registered to an accountants in Knutsford, Cheshire, UK, and produces the same authentication request if visited with a browser. There is no sign of a "real" publicly visible website at that domain which is a somewhat odd.
    tt2

  • Asking to enter a device password in the access point but I don't have an access point

    I installed the Intel Proseet Wireless Client and upon connection to my Linksys router a wizard comes up asking me to "enter the device password to my access point or external registrar".  It displays an 8 digit number in the device password field.  My only option at that point is to go "back", "next" or "cancel".  If I click "next" it eventually fails to connect to my wireless router.  I do not have an access point installed.  Only the router and cable modem.  Any suggestions would be appreciated.
    Message Edited by dougieg on 11-06-2009 05:12 PM

    If its asking you for the Access Point password when you are trying to connect to your Wireless Network, It means you need to input the Wireless Security Key which you have setup on your Router.
    When you are trying to connect to your Wireless Network and it ask you for the 8 digit password, you need to Flip your router upside down and below you will find a 8 digit pin number (0000-0000) it will be in these format. Just input the 8digit pin without (-) and click on Next and it will connect you to your wireless network. Once successfully connected to your Network wirelessly you should be able to go online Wirelessly from your Computer. 

  • How to retrieve work repository password in ODI 11g

    Hi,
    I have forgot my work repository password and unable to login.
    Please let me know if anyone come across similar situation and retrieve password. I tried change password option but it's asking first old password.
    Thanks,
    Nish

    Phani ,
    Go to your <ODI_11g_HOME>/oracledi/agent/bin
    and you will find agent.sh , agent_<standalone_agent>.sh and odiparams.sh and other agent files.
    Step 1. Update your odiparams.sh
    Step 2. Create the Physical and Logical Agent int your Topology using the same port_number and name provide while creating the Stand alone agent during installation ( or) create accordingly the agent in Topology with name and port number as required and make the modification in agent_<stand_alone>.sh file
    Step 3. After doing so start your agent_<stand_alone>.sh
    Step 4. Repeat the process 2-3 for any number of stand alone agent created on different ports and steps 1 to 3 for different Work repository
    Thanks
    Dev

  • Time constraint on repository password in obi 11g

    hi all
    can i set 60 day expiry limit on the repository password. i am talking about obi 11g.
    plz help guys
    regards
    mahi

    Hi Mahi,
    I guess it should be possible. Security in 11g is managed in the Weblogic Server. Please check the documentation.
    Good Luck,
    Daan Bakboord
    http://obibb.wordpress.com

  • Standard account password forgotten

    My daughter has forgotten her standard account password. Can I change her password (or find it) for her from my administrator account?
    Dave

    David
    Yes you can and the quickest way is via the Terminal application inside /Applications/Utilities. Launch it and at the prompt type:
    sudo passwd <yourdaughter's_accountname>
    Press return, key in your admin password and press return again (please note that when you type passwords in Terminal.app they do not echo, i.e. the cursor does not move; this is normal).
    You will then be asked to type a new password for you daughter's account and verify it. That is all.

  • Wyndham Rewards Promotional Points

    So last month I received the Barclay Wyndham Rewards Visa for the promotional sign up. The promotion states 30,000 points with first purchase and an additional 15,000 after making $1000 spend in the first 90 days. This is for the annual fee card, annual fee of $69 and like other hotel cards you get the annual bonus of 15,000 points on anniversary. I received the card about the time I was finishing my Venture spend requirement so by the first statement I had not made my 1k spend. I will hit it for this second statement due on 7/11. However I looked at my Wyndham Rewards account and they show 46,000 points, listed as Barclays Bonus of 30,000 and Barclays Promotion of 15,000 (the extra 1k is due to my first 500 ish spend). I am wondering where the extra 15k points came from, I have not met my spend, however I did pay the annual fee but that is supposed to be on your anniversary. Has anyone else that received this card had the same? I will take the points, and if it is just Barclay giving the 15k for 1k spend early that is fine but I would be rather surprised they would do that.

    This card and the points structure is quite rewarding. There is another promotion that Wyndham is running this summer, but this does not require the credit card, you just sign up for the Wyndams loyalty program then can add it to your loyalty account. You get a 3,000 points bonus for one stay (can be one night apparently) at qualified properties, when signed up by early September, completed by mid-September.The way these points work, most properties have a 15,000 point night cost, but you can do 3,000 points plus some cash and get a real deal. The 3,000 points can be worth several cents per point when used this way. Example:Travelodge Seatle by the Space Needle:Room is $263.46 or 15,000 points.if you go 3,000 points plus $75 cash, that means the 3,000 points is saving you $188.46, or over 6 cents per point. 

Maybe you are looking for