I need access for BD56 maintaintace transacti code in production system

Dear Team,
  I would like to maintain the entries in BD56 transaction in production system,coul you please help me for what role i should request for basis team, please assist.
Thanks & Regards,
MK

- Start transaction BD56
- immediately after the "no permission" error comes execute /nSU53
Give that output to your basis guys to determine which role they need to create with what kind of permissions.
Markus

Similar Messages

  • SOD matrix for solution manager Transaction codes

    Hi Experts
    Does anyone have SOD matrix for solution manager transaction codes or an idea where I can get the same . we need this to design SOD free roles in Solution manager .
    Cheers
    Aditya
    Edited by: Adityatd on Aug 16, 2011 8:30 AM

    Hello,
    Perhaps you may wish to follow this thread SoD Matrix, as it seems they were asking the similar question.
    Regarding Transaction codes, you can list them all with SE16m tables TSTC abd TSTCT
    Regards,
    Paul

  • Generic Object Services for a standard transaction code

    Hi,
    We have a requirement where we are depreciating the assets (standard transaction ABAA) using a custom BDC program. We need to maintain a history (called audit trail) for the particular asset that has been depreciated using this program. For this audit trail we have been asked to use "Generic Object Services" in transaction code ABAA.
    Unfortunately, Generic object services are not available in this transaction code. Can you please suggest me how to create "Generic Object Services" for a particular standard transaction code. Also, we have show the details of custom workflow that handles the approval process in order to depreciate the asset. How to show this workflow details using Generic Object Services. This is a very critical issue, any help will be very help ful.
    Please let me know should you require more information on this topic.
    Thanks,
    Ashish

    Hello Ashish,
    i dont think activating of GOS will solve ur probs..... GOS wont create a WF item ...... try to get some kind of GOS before u do anything in SAP systems.
    u can do like this ......
    1 create custom screen where u can enter asset details and store in custom tables....and generate one custom doc.number to track.
    2. trigger WF when user submits it for approvals.
    3.Upon final approvals.--->run BDC to do postings......
    4.Give a Option to attach documents to the parking documents. ( that GOS ).
    regards
    Prabhu

  • Is there any view for  table TSTCT (transaction code text )

    Hi,
    I need to display the transactions allowed per a user , in that i need to display transaction codes along with the text.
    In this report selection screen contains user as select option, when the user enters group of users as selection it is consuming a lot of time to get the t codes and to get the text from the table tstct. is there any way so that i can reduce the the runtime of this program.

    I am not sure abt the view but Try to use the key fields in the where clause of select statement. This you can do to have a good performance or restrict the user to enter few entries in that select option. Instead of select-options you can use parameters options also.

  • After an update to firefox I keep getting a warning from my Firewall (McAfee) "Program wants internet access". I have permission set at outgoing for firefox and updates checking off, to check that request is valid so what does it need access for

    After an update to firefox I keep getting a warning from my Firewall (McAfee) "Program wants internet access". I have permission set at outgoing for firefox and updates checking off, to check that request is valid so what does it need access for

    This was not a Firefox update, but a piece of malicious software you have inadvertently downloaded from a site called http://ffftp.co.cc/ which is impersonating Firefox. I discovered this as soon as my Zonealarm requested permission for "Golds" to access the internet. Golds??!! However I couldn't find a file with this name installed on my computer.
    You should delete the file you downloaded and certainly do not allow internet access to any suspicious program. If you have already given permission, scan your PC immediately for any virus, malware, etc. Best of luck.

  • Need descriptions for data quality error codes

    I'm getting the following address error codes and I don't have the corresponding messages: F440, F441, F505. I have the descriptions for all the other codes.
    Thanks,
    Nathan

    Nathan,
    Can you tell me which data quality product you are using? If this is for International Address Correction & Encoding you can find all error codes in the Quick Reference for Views and Job-File
    Products. A copy should be installed with your software. Otherwise you may locate a copy at http://help.sap.com/ > Business Objects > Data Quality > Quick Reference for Views and Job-File
    Products
    F440 - Insufficient input data; cannot choose between multiple street-level matches.
    F441 - Insufficient input data; street level match occurred using partial-range matching.
    F505 - Matched to undeliverable default record. The generated undeliverable (F505) has no ZIP+4 listed, an invalid CART, and is flagged as undeliverable.(United States)
    Regards,
    Bob Minard
    Engineer, Technical Customer Assurance

  • BAPI for calling Z transaction From NON-SAP system

    hi all, am new to BAPI i want to know that can we call any standard or Z transaction from NON-SAP system using BAPI if yes then plz let me know how.???
    thanx...

    BAPI's are not used for calling transactions. They have the same result though, a business partner for example kan be created, and maintained via the GUI, but it can also be done via a BAPI. These BAPI's are created for calling them from (non-) SAP systems since they are remote enabled. However, this means that the calling application / party will have to 'build' some sort of application themselves in order to call these BAPI's from 'outside' of the SAP system.
    The calling application will have to have access to the system, which can be maintained in the remote destination transaction SM59.
    But enough of this, there are lots and lots of posts on SDN about BAPI's, remote destination etc.

  • Need help for  the message flow in sap xi system?

    Hello All,
    My requirement is some wat different............in the existing production system the message flow is 3500 per hour......... now we want to develop new scenario and the message flow will be 8500 message per hour.
    Client is not giving me the system details ...like network details and i need to say that can we send 8500 messages in the existing system with out changing the process speed or data base.
    also please advice the best ways to increase the performance in the sap xi system when the message flow is huge.
    thanks in advace.
    Thanks and Regards,
    chinna

    >
    chinnasapxi wrote:
    > Hello All,
    >
    > My requirement is some wat different............in the existing production system the message flow is 3500 per hour......... now we want to develop new scenario and the message flow will be 8500 message per hour.
    > chinna
    3500 to 8500 is not a message count tht needs to be worried about
    but to be on the safer side what is the average size of a single message?
    if the size is not a significant one u can go ahead

  • Need help for converting c# encryption code to javascript

    I have this below code in c# i need to convert it into nodejs i would really appriciate some help in this.
    Rfc2898DeriveBytes passwordDb2 = new Rfc2898DeriveBytes(passphrase, Encoding.ASCII.GetBytes(DeriveSalt(grains)));
    byte[] nonce = passwordDb2.GetBytes(NonceSize);
    AesManaged symmetricKey = new AesManaged { Mode = CipherMode.ECB, Padding = PaddingMode.None };
    _encryptor = symmetricKey.CreateEncryptor(_nonces[0], null);
    public byte[] Encrypt(byte[] plainText, int blockIndex)
    byte[] nonceEncrypted = new byte[NonceSize];
    byte[] outputData = new byte[_chunkSize];
    _encryptor.TransformBlock(_nonces[blockIndex], 0, NonceSize, nonceEncrypted, 0);
    for (int i = 0; i < _chunkSize; i++)
    outputData[i] = (byte)(plainText[i] ^ nonceEncrypted[i % NonceSize]);
    return outputData;
    public byte[] Decrypt(byte[] encryptedText, int blockIndex)
    byte[] nonceEncrypted = new byte[NonceSize];
    byte[] outputData = new byte[_chunkSize];
    _encryptor.TransformBlock(_nonces[blockIndex], 0, NonceSize, nonceEncrypted, 0);
    int index = 0;
    for (int i = 0; i < _chunkSize; i++, index++)
    if (index == NonceSize)
    index = 0;
    outputData[i] = (byte)(encryptedText[i] ^ nonceEncrypted[index]);
    return outputData;
    Currently i have the below code from what i understood (I am quite new to nodejs)
    var crypto = require("crypto");
    var nonce = crypto.pbkdf2Sync(passphrase, "grains", 1000, NonceSize);
    _encryptor = crypto.createCipheriv('aes-128-ecb', binkey, "");
    _decryptor = crypto.createDecipheriv('aes-128-ecb', binkey, "");
    Encrypt: function (plainText, blockIndex) {
    var nonceEncrypted = [NonceSize];
    var outputData = [_chunkSize];
    var crypted = Buffer.concat([_encryptor.update(plainText), _encryptor.final()]);
    for (var i = 0; i < _chunkSize; i++) {
    outputData[i] =(plainText[i] ^ nonceEncrypted[i % NonceSize]);
    var x = new Buffer(outputData);
    return x;
    Decrypt: function (encryptedText, blockIndex) {
    var nonceEncrypted = [NonceSize];
    var outputData = [_chunkSize];
    var decrypt = Buffer.concat([_decryptor.update(encryptedText), _decryptor.final()]);
    var index = 0;
    for (var i = 0; i < _chunkSize; i++, index++) {
    if (index == NonceSize)
    index = 0;
    outputData[i] = (encryptedText[i] ^ nonceEncrypted[index]);
    var x = new Buffer(outputData);
    return x;

    Maybe, you should post to the Javascript secition of the ASP.NET forum.
    http://forums.asp.net/

  • Need help for creating a Transaction iView

    Hi all,
    I wish to make a Transaction iView using a transaction from the SAP BW system. Our SSO is working fine (since we are able to run the BI Reports in Portal).
    When I use SAP GUI for Windows in my Transaction iView, then the transaction is shown alongwith the header including the transaction input field. I basically want the transaction without this header.
    When I use SAP GUI for HTML in my Transaction iView, then everytime I run this iView, I am being asked for the R/3 user id and password. (See this [screenshot|http://img171.imageshack.us/my.php?image=transactioniviewzw8.jpg]). Once I give the user id and password, the transaction runs without the header. But in this case, I want to open the transaction directly without the need to give the user id and password.
    Can you please help me as to what can be done?
    Regards,
    Ankur

    Hello Ankur,
    Please go through the link below.
    [To remove transaction bar from the R/3 Reports shown on Portal.|To remove transaction bar from the R/3 Reports shown on Portal.]
    I had the same issue.
    Cheers-
    Pramod

  • How can I set a passcode that is only required at certain times of the day. Ie: my child needs access for school use, but don't want her playing iPad in the middle of the night. I cannot identify a way to have the iPad turn off or require a password

    I cannot find a way to enable my child's iPad to require a passcode only at certain times of the day.
    Yes I have used the clock/timer/ countdown - great to restrict how many minutes of iPad usage they get a day.
    But as my child requires the iPad in school for class lessons the usage at school varies maybe 30 mins 1 day and a few hrs on other days
    I want the ability to say set the iPad to not work between say 7pm and 7am, ( unless a passcode is entered) so my child isn't playing games on it in the middle of the night...
    Apple I cannot see anything in the settings that performs this function
    Help

    You can Remote Lock his iPad with Find My iPad using a computer at whatever time you like.
    http://support.apple.com/kb/PH2700
    Note: The iPad may be disabled if he tries the passcode too many times.

  • Why is the tab functionality not working in Responsive layout? I need accessibility for non-mouse users.

    I have generated Responsive HTML5 output. The tab key does not do anything. I want users to be able to tab through the topics and expand or collapse the drop-down hotspots. Tab appears to do nothing. If I generate the same content in WebHelp output users can tab between topics and expand/collapse drop-down hotspots. Is there some sort of setting I have to select to get it to work in Responsive HTML5?

    Thanks Phil Flowers !
    Good tip !
    I' ll be ****.....it actually works too !
    This solves the issue of repetatively unplugging  and plug back in the wired USB keyboard to the TB display. 
    Now...if only the Apple support team would acknowledge the problem in the iMac community at large and step up with a hardware / software fix! 
    Love the TB display......but really...............a non funtioning USB keybord ( apple product )  ???  
    Maybe they missed the Computer Design & Engineering class that day.....or medicinal marijauna in the valley ? 
    The support from Apple on this issue reminds me of the 70's video game system ATARI.......The video game PONG comes to mind ....blip....blip....blip.....back and forth with the ball.......  And yet we were entertained & amused at the time !
    Oh well......they got my dollars too !   Just another unit sold !
    Cheers !

  • Need to change hierarchy node description in the production system

    Hi Gurus,
    Can any one tell me how to change the Hierarchy node description in the BW production system.
    Points will be assinged.

    Hi,
    goto RSD1 with your characteristic; hierarchy; maintain hierarchy; choose your hierarchy; change; right click the node; change; activate.
    Olivier.

  • Authorization access Issue for Transaction Codes PA10 to PA40

    Hi Experts,
    I have created Custom role for accessing ALL HR Transaction codes in IDES System and added to the user & Tested.
    All transactions codes are working fine except PA10,PA20,PA30 &PA40
    We have new installation of ECC6.0 (HR) IDES System.
    I am new to HR Security.
    Here anything needs to configure in HR System for accessing transaction code PA10 to PA40.
    Please help me regading this.
    Advance Thanks,
    BBC

    I have checked in SM01, Transaction codes PA10 to PA40 are not locked.
    We are facing two issues
    1) when accessing T- Codes PA10 to PA40, System showing message: You are not authorized to use Transaction code.
    Thatz the reason i suggested you to check with basis consultant. Becuas he is the power user he can only see that from his window all the autharizations
    May be you checked from your user your user might have autharization. that user  might be end user who getting msg might not have authorizatoins.
    2) function module : HR_READ_INFOTYPE.
    When Debuging this, It calls internal FM
    HR_CHECK_AUTHORITY_INFTY and returns exception
    no_authorization=1
    See this means that that user have NO autharizatoins
    Best Regards

  • Authorization Issue for Transaction Codes PA10,PA20,PA30 &PA40

    Hi Experts,
    I have created Custom role for accessing ALL HR Transaction codes in IDES System and added to the user & Tested.
    All transactions codes are working except PA10,PA20,PA30 &PA40
    Please help me regading this.
    Advance Thanks,
    BBC

    Hi,
    I had check with basis Team, they told that I have all authorizations.
    This is New Installation for R/3 HR IDES System. even basis Team  also created role for above transaction code but not getting access.
    We can accesss all transaction codes except these.
    All are new for HR. here anything needs to  be configure for access PA10 to PA40 Transaction codes.
    Please advice me.
    Thanks & Regards,
    BBC

Maybe you are looking for

  • Do I need to install PPAPI plug-in of Adobe Flash Player?

    Currently using NPAPI Plug-in version 17.0.0.169 with Safari in Yosemite 10.2.2.  I noticed there is an option to install a PPAPI plug in.  Is that just for Chrome (which I don't use), or do I need it for Safari or Firefox?  A few sites have indicate

  • A heartfelt thank you to Renee and Terry

    My woes began in December, when I first switched to Verizon Fios. My phone number was not ported correctly, so instead of getting a Triple Play rate, I got a Double Play together with an extremely expensive land line rate. After the shock of the firs

  • Dynamically updating members in SmartView

    Hi all, I've got a pretty simple requirement that I've been trying to thrash out in SmartView with Smart Slices and Queries but I'm just missing something obvious I'm sure. I'm trying to show my hierarchy in the columns with 2 unnecessary generations

  • How to pass output from one selection-as input to another selectiion??

    From a user prompt will iniate many user table selections.   And  the outputs  of each table selection will be used as inputs for the next table selection I reviewed variable Scope and inner and outer Declare—it would be a great help if some one coul

  • SAP Content Server

    Dear Experts, I got problem in installing SAP Content Server 6.30 in Solaris 9 (Unix-SPARC 64bit). After discus with OSS they sugest to review the Apache installation, i try to follow the OSS note number 664384, but i confused with some error about t