How to check object code

Dear Team,
I want to check Object Code  of T_Code:OMJJ.
In T_code:SE93.it not showing .
How I check Perticulater Object Code for Transastion  OMJJ
thanks
kallis

In SU24 it show
@5B\QMaintained@     S_CTS_ADMI     Administration Functions in Change and Transport System     Check     NO
@5B\QMaintained@     S_DATASET     Authorization for file access     Check     NO
@5B\QMaintained@     S_DEVELOP     ABAP Workbench     Check     NO
@5B\QMaintained@     S_DOKU_AUT     SE61 Documentation Maintenance Authorization     Check     NO
@5B\QMaintained@     S_GUI     Authorization for GUI activities     Check     NO
@5B\QMaintained@     S_PRO_AUTH     IMG: New authorizations for projects     Check     NO
@5B\QMaintained@     S_PROJECT     Project Management: Project authorization     Check     NO
@5B\QMaintained@     S_TABU_DIS     Table Maintenance (via standard tools such as SM30)     Check     NO
@5B\QMaintained@     S_TABU_RFC     Client Comparison and Copy: Data Export with RFC     Check     NO
@5B\QMaintained@     S_TCODE     Transaction Code Check at Transaction Start     Check     NO
@5B\QMaintained@     S_TRANSLAT     Translation environment authorization object     Check     NO
@5B\QMaintained@     S_TRANSPRT     Transport Organizer     Check     NO
It show So many Object  and it standed object .and at last it show NO in Proposal Colom
Thanks
kallis

Similar Messages

  • How to check postal code contains only 0 to 9

    Hi all,
    How to check postal code contains only 0 to 9
    thank you

    Hi
    Check the below link.It may help you out.
    http://help.sap.com/saphelp_47x200/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm
    Cheers,
    Hakim
    mark all useful answers

  • How to check the code of spawned report

    Hi All,
    I've to modify a standard report from PA module.The report name is "PRC: Distribute Usage and Miscellaneous Costs"
    The executable method is SPAWNED.The executable name is PASDUC.
    Please let me know how to check the code of this report and in which path can I locate the report.
    Regards,
    Mahi.

    Does this mean can I tell to my client that "This is being a spawned program, any customizations to this report needs full report development efforts"?I believe yes.
    Before I state this to my client I want to verify with this forum. Please suggest me in either case.Would your client trust my reply on here :) ?
    I would suggest you log a SR and confirm this with Oracle support, that would be a better proof.
    Thanks,
    Hussein

  • How to Check Exit Code on WINNT

    Hi there,
    Do you know how to check the exit code of the sql*loader on WinNT? In my Java program, I start the sql*loader like this,
    Runtime.exec( "sqlldr ..." );
    Thanks,
    Louie
    null

    Hi,
    If u see the java documentation Runtime.getExec returns a Process Object which has a method getExitValue. If u need More Info Pls Refer to http://developer.java.sun.com
    Regards,
    Ganesh R

  • How to check view code

    Hi all
    I have A view invoice_track
    i want to check the code of this view please guide me how i will check
    Thanks And Regards
    Vikas singhal

    vikas singhal wrote:
    Hai asif same result
    SQL> set linesize 1200
    SQL>  SELECT owner, text
    2   FROM all_views WHERE owner = 'NEERAJ'
    3    AND view_name = 'INVOICE_TRACK';
    OWNER                          TEXT
    ZENSOL1                        SELECT id as invoice_no, customer_name,
    nvl(dispatch_date,invoice_note_date) as
    SQL> Regards
    VikasUse
    SET long 100000

  • How to check the code source of some function in the portal.

    hi all.
    i have some problem  in the portal.
    i use the ESS in the portal, and now some people can not check their salary.
    i want to check the code source, but i do not know it uses which program.
    can some one tell me the way to check the program.
    best regards.

    If you want to access the source code of any ESS component, you will need access to NWDI. NWDI NWDI = NetWeaver Development Infrastructure, it provide the tools and process to build new / modify existing applications built using NWDS. There are plenty of threads discussing how to set up NWDI, you may search for the same.
    However if the payslip problem is only for some users, it could also be a pdf issue, have you tried running the payslip for those select users within ECC?
    Thanks,
    GLM

  • How to check object with boolean

    hi
    i have a JComboBox
    i have added the items to JComboBox as {"true", "false"}
    my problem is how check with boolean
    like i was trying like this
         public boolean getBooleanValuesOfComboBox() {
              if(Boolean.TRUE.equals(_comboBox.getSelectedItem())) {
                   return true;
              return false;
    how to do this JComboBox getSelectedItem will return object... how to check
    thank u
    null

    > i have a JComboBox
    i have added the items to JComboBox as {"true",
    "false"}
    You could store Boolean objects in that combo-box instead of Strings.

  • How to check redeem code

    how to check my redeem code

    If you are referring to the balance...
    See:  Check the balance of  a gift card here >  Account Home - Apple Store

  • How to check from code in Excel Addin that Excel is embedded in Microsoft word

    We've developed an Excel Addin in C# for Excel 2010 and it works perfectly OK. But one issue is reported very recently as below.
    1. Microsoft word document is created with an embedded excel work sheet.
    2. Save the document and close.
    3. Open the word document and try to edit the work sheet there.
    4. Following error comes.
    "The program used to create this object is Excel. That program is either not installed on your computer or it is not responding.
    To edit this object, install Excel or ensure that any dialog boxes in Excel are closed."
    5. This is because, our Addin is initialized and one excel process is running.
    6. If the Excel Addin is disabled, above work flow works correctly.
    Please let me know how to determine from the Excel Addin that the excel worksheet is embedded in another applicatoin. Because I want to disable the Addin in those cases and enable it if the Excel is opened standalone. The Addin is developed in C#.

    Hi,
    Since the error message, please try to install this Hotfix test if it works:
    http://support.microsoft.com/kb/2596494
    Note: Delete the Excel instance running in the background(Go to your task manager and delete it) before opening your Word document and edit your embedded Excel.
    If the issue still exists, please see the article and try the solution which I copied here:
    "The basic simple answer is to place a Marshal.ComReleaseObject(Wb) at the end (or better, in the Finally block) of your event handlers. This will properly allow Word and excel to handle the OLE communication by not having VSTO hang on to an instance
    handle of the workbook, therefore causing the error.
    And this is not carte blanche to start placing ComReleaseObject() all over your code. I have found VERY VERY few limited cases where using ComReleaseObject() in an add-in necessary. And this is one of them."
    http://davecra.com/2012/10/09/vsto-and-comole/
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Regards,
    George Zhao
    TechNet Community Support

  • How to check ascii code of each key stroke?

    Is here any method to trap ascii code of each key pressed by the user on the keyboard? Also I want to conditionally assign new code replacing the old one.
    Thanx for ur kind favor...

    you cannot check a keystroke after typing it.
    try a trick: create two items (Item 1 : maximum length 1, automatic skip = TRUE) (Item 2 : normal item, normal length, e.g. a char-item).
    Let's say the focus is in item 1. Now you have a WHEN-VALIDATE-ITEM-Trigger on this item. After each keystroke your item navigates to the next item (item 2). This Trigger adds the input of item 1 to item 2.
    :Block.Item2 := :Block.Item2 || :Block.Item1;
    In the WHEN-NEW-ITEM-INSTANCE of Item2 you go back with "go_item ('BLOCK.ITEM1')".
    In the KEY-NEXT-ITEM-Trigger of Item1 you go to another vaild item but not to item2 (because of the trigger WHEN-NEW-ITEM-INSTANCE of item2). e.g. "go_item ('BLOCK.ITEM3')"
    With this trick you can use each keystroke in item1 and display the apropriated value in item2.
    try it
    Gerd

  • How to check object privilege for procedure, packages?

    Dear Legends,
    what is the query to find the Grant Permissions provided to a User on particular object such as Procedure, Package and Function?
    DBA_TAB_PRIVS is not giving me the answer.
    Can any one help me on this?
    Thanks,
    Karthik

    Maybe something like this?
    SQL> create procedure p as
      2  begin
      3  null;
      4  end;
      5  /
    Procedure created.
    SQL> grant execute on p to scott;
    Grant succeeded.
    SELECT p.grantor, p.grantee, o.object_name, o.object_type, p.privilege
    FROM   all_tab_privs p
    JOIN   all_objects   o ON (p.table_name = o.object_name and p.table_schema = o.owner)
    WHERE  o.object_name = 'P'
    AND    p.grantor = 'SELSE';
    GRANTOR     GRANTEE    OBJECT_NAME   OBJECT_TYPE   PRIVILEGE
    SELSE       SCOTT      P             PROCEDURE     EXECUTE

  • How to Checked The Object Not Locked by Others in Transport

    Hi all,
    I have problem in transporting workbook to production, the question is:
    a. How to Solve Object that is locked by other transport requests
    b. How to Check Object Not Locked by Others Request before doing transport.
    Thanks in advance
    supriatna

    Hi Supriatna,
    In the same screen where you have been 'Search for Objects in Requests/Tasks' place your cursor in one of the empty fields (the second column, eg. PROG) and look up for XLWB. You have increase the number of displayed entries in the look up screen to atleast 1000 to find the R3TR XLWB entry (Excel workbook entry).
    Hope this helps.
    Thanks

  • How to find T.Code in user Role

    Dear Experts,
    How to check transaction code maintained for  user Role.
    For Example I have one User X who have Authorization of T. Code J1ID
    is it possible to find out T. Code J1ID is maintained in which role, User have No of Roles in his ID I dont want to search it by open each and every Role. is there any short way to search T. Code.
    Thanks,
    JA

    Hi Javeed,
    There are many ways to do it.
    Go to SUIM>> Roles> Complex Selection Criteria>
    Enter the User ID: USERX
    In the Objects enter: S_TCODE (Press Enter)
    Enter the Tcode as the field value of this object.
    Then click on execute, you will get the list of roles assigned to this userX having above mentioned Tcode. Let me know if you need any more information on this.

  • Plz tell me how to create authority check objects and how to usein prg

    dear sir,
    plz tell me how to create authority check objects and how to usein prg

    http://help.sap.com/saphelp_46c/helpdata/en/5c/deaa74d3d411d3970a0000e82de14a/content.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/52/6716a6439b11d1896f0000e8322d00/content.ht
    Create custom authorization – Customer specific object
    If you have requirements that cannot be met using the P_ORGIN and P_ORGXX authorization objects (for example, because you want to build your authorization checks on additional fields of the Organizational Assignment infotype (0001) that are customer-specific), you can include an authorization object in the authorization checks yourself.
    Create the authorization object using transaction SU21. Make sure you keep to the customer name range (Z/Y). To be able to use the new authorization object you have created in the master data authorization check, the object must contain the INFTY, SUBTY, and AUTHC fields. You can use any of the fields of the Organizational Assignment infotype (0001) for the other fields. You can also use customer-specific additional fields provided they are CHAR or NUMC type fields.
    After you have created the object, you must start the RPUACG00 report. This report overwrites the MPPAUTZZ standard include with the code that is needed to evaluate the authorization object you created. Note: Technically speaking, this involves a modification. However, SAP fully supports this procedure. And you should not have more maintenance work as a result of this modification.
              Note: that if you use customer-specific authorization objects, you must maintain these objects in transaction SU24 (Maintain Assignment of Authorization Objects to Transactions) in the same way as you maintain the authorization objects P_ORGIN, P_ORGXX, and P_PERNR
    AUTHORITY CHECK OBJECT Object_name
                ID fieldname1 FIELD fieldvalue1
                ID fieldname2 FIELD fieldvalue2
                ID fieldname3 FIELD fieldvalue3.
                 If sy-subrc eq 0.   "Authorization exists
                 Endif.
    http://articles.techrepublic.com.com/5100-6329_11-5110893.html
    Edited by: JackandJay on Jan 16, 2008 10:21 AM

  • Transaction code to repair/check objects

    Hello
    Can somebody remind me transaction code to repair/check objects in BW?
    Thanks

    hi
    you can use rsrv. it  is  for bw objects consistency analysis and repair.
    from transaction code RSRV doc itself :
    Transaction RSRV: BW Data and Metadata Test and Repair Environment.
    Transaction RSRV checks the consistency of data stored in BW. It mostly examines the foreign key relationships between individual tables in the enhanced star schema of the BW system.
    The transaction interface was re-designed for SAP Portals release 3.0A. A brief guide about how to use the transaction follows.
    Starting the Transaction
    You can reach the test and repair environment
    By entering the transaction code RSRV
    From InfoObject maintenance (Transaction RSD1)
    By clicking on the "Analyze" button in the intial screen.
    After selecting a characteristic in the maintenance screen via the "Processing -> Analyze InfoObject" menu option.
    The Initial Screen
    When using the test and repair environment for the first time, the message "Values were not found for all setting parameters" draws your attention to the fact that there aren't any saved settings for your user.
    After confirming the dialog box, you reach the initial screen of the transaction. This is divided into two parts:
    1. On the left-hand side, you can see a tree structure with the pool of available tests.
    2. The right-hand side is empty at first. The tests you have selected will be put here. A selection of tests is called a Test Package here.
    Combined and Elementary Tests
    An Elementary Test is a test that cannot be divided into smaller tests and that can therefore only be executed as a whole.
    In this regard, a Combined Test determines which elementary tests are to be executed after entering the parameters. You can remove individual elementary tests from the test package before carrying out the actual test run, in order to reduce run time, for example.
    Combining a Test Package and Executing it.
    Firstly select one or more tests with drag&drop or by double-clicking. Each selected test appears as a closed folder in the view of your test package. (An exception is elementary tests without parameters: These do not appear as a folder). You can also drag a whole folder of tests from the test pool across to the right-hand screen area; all tests that are located in the hierarchical structure under this folder are then added to the test package. You can also display a short description of the test, if required. Do this right-clicking on a test and choosing "Description" from the context menu.
    Afterwards, you must supply the tests with parameters. Tests without parameters must not be given parameters. You are given notification of this when selecting them. You can enter parameters by double-clicking on a test (or a test package) or by expanding the folder of the test.
    A dialog box appears in which you must enter the required parameters. Input help is often available. After entering the parameters, a folder with the name "Parameter" is added under the test. This contains the parameter values. The test name can change in some circumstances, enabling you to see at first sight for which parameter values the test is to be executed. It is possible to select the same test several times and give it different parameters, which may even be preferable in some situations. When you have supplied the combined test with parameters, the folder with the name "Elementary Tests" is added under this one. It contains the elementary tests, from which the combined test is built. You can delete individual elementary tests in the test pool using drag & drop.
    After supplying all tests with parameters, you can start the test run by clicking on the "Execution" button. After execution, the test icons change from a gray rhombus to a red, yellow or green one, depending on whether the test had errors, warnings or was error-free.
    Test Results
    The test results are written to the application log. Depending on the settings, the system jumps automatically to this display, or you can reach it by clicking on the "Display" button. The results are saved in the database, and can therefore be compared later with additional test runs.
    In the left-hand side of the window, you can see an overview of the most recent test runs. Double-clicking on a folder displays all messages under these nodes as a flat (non-hierarchical) list in the right-hand screen area. Long texts or detail data may be available for individual messages, which can be displayed with a mouse click.
    Repairs
    Some tests can repair inconsistencies and errors. Automatic correction is generally not possible: If entries are missing from the SID table for a characteristic, in which case the lost SIDs are still being used in a dimension table (and the corresponding dimension keys are still being used in the fact table) of an InfoCube, you can only remove the inconsistency by reloading the transaction data of the InfoCube. Also note that you must make repairs in the correct sequence. You must always read the documentation for the test and have a good idea about how the error occured, before making the repairs.
    After executing the test run, go from the application log back to the initial screen to make these repairs. Click on the "Fix Errors" button to start an error run. Since the dataset could have changed between the test and the repair run, the required tests are executed again before the actual repair. The results can be found in the application log once again.
    Test Packages
    The test package is deleted if you do not save the test package in the display before leaving the test environment. Choose "Test Packages -> Save Test Package" in the option menu. You can do the following via options in the "Test Package" menu:
    Load packages
    Load for processing - the package is then locked against changes by others.
    Delete and
    Schedule execution at a later date or at regular intervals in background processing
    Settings
    In the "Settings" menu option, you can make settings (adjust the size of the screen areas, for example) and save them. The settings are automatically read when starting the test environment. Support packages are being delivered with additional settings options since the test environment is under development at the moment. A message notifies the user at the start if there aren't any values for the setting options.
    Jobs Menu Option
    You can access the job overview via the Jobs -> Job Overview menu. Use this when you want to check the status of a test package you have scheduled.
    Application Log Menu Option
    You can display old logs from previous test runs in the dialog box, as well as scheduled ones. The option of deleting test logs can also be found here.
    New Selection Button
    The currently selected test package is deleted when you press this button.
    Filter Button
    After a test run, click on this button to remove all elementary tests without errors or warnings from the test package.
    Executing Test Packages in Process Chains
    You can add a process chain to the ABAP Programm RSRV_JOB_RUNNER in the process chain maintenance transaction, RSPC. To do this, use drag & drop to select the process type "ABAP Program" under "General Services" in the process type view. When maintaining process variants you will be asked for the program name and a program variant. Enter RSRV_JOB_RUNNER for the program name. Choose a program variant name and click on "Change". In the next screen you are able to either change or display an already existing variant, or create a new variant. When creating a new variant you will be asked for the following: Package name (an imput help on this is available), the detail level for the log to which the RSRV log in the process chain log is to be integrated, and a message type severity at which process chain processing should be terminated.
    The RSRV process log in the process chain is built as follows:
    First is a summary specifying whether errors, warnings, or no errors occurred for each elementary test.
    A log view of the RSRV test package at the specified detail level follows.
    Example: If you choose the value '3' for the detail level, only messages up to and including detail level 3 will be included in the log processes for the process chain. Messages occuring at a lower layer of the test package test are not displayed in this log. Please note that, unlike the application log, the process log does not propagate errors from deep detail levels to low detail levels. For example, if a single detail level 4 error occurs the summary will show that the relevant test delivered an error. However, this error will not be listed in the second part of the log.
    A complete log is always written independantly of the RSRV process log in the process chain. You can view this in the menu option "Application Log->Display Log->From Batch".
    Please note that there is currently no transport object for test packages and that consequently these cannot be transported. Process chains that execute RSRV test packages must therefore be manually postprocessed after a transport to a different system: The relevant test packages must be created.

Maybe you are looking for

  • Can't figure out how to reduce size of printed jpeg

    I have a jpeg image I want to print.  When I click on it on my desktop, it comes up in Preview.   The image as printed is too big, so I want to reduce it.  I thought I could do this by lowering the percentage of the "Scale" radio button (this is part

  • Reading Xml file using File Adapter

    Hi I have added a file adapter to my process to read out a emp.xml from the location C:\inputDir. Also i have added transformation activity to map the variables. But the problem is iam not able read the values from emp.xml;File adpater giving me as e

  • Is there any way to display pictures in a report program...

    Is there a way to display some pictures say background or foreground pics in a report program ?? Kindly help me in this. Thanks in advance, Krishna, 9986023724

  • The tabs aren't at the very top in windows 7 for me, they are just below the top

    The firefox button is at the top, but the tabs aren't. Where then name of the program normally is, and the minimize buttons on the left are. Like in chrome it works, but not here.

  • Deploying web applications

    Hi to all, I am a new Coldfusion developer coming from Java EE world. I am looking for hints on how to manage the deployment lifecycle of a CF website. Instead of direct editing (with Dreamweaver) cfml files on server, what are the best practices? I