Transaction Code to determine the Names of Lock boxes

Hi ,
Is there any Transaction Code to determine the names of Lock boxes and to which Co-Code they belongs to?

OB10

Similar Messages

  • Transaction code for checking the capacity of  a job

    Hi,
      Can anybody tell me if there is a transaction code for viewing the capacity of Job.
    Thanks and regards,
    Avinash.S

    Hi Avinash,
    I am not geeting what you want normally CM01 for w/c vise Load you can use.
    Pls elaborate yr problem a little bit.
    Umesh

  • T-code to edit the name of company

    T-code to edit the name of company-
    I have a smartform  which picks the name of a company. But it is too long.
    I want to edit the company name so that is is shown in the form.

    Hi Malvika,
    if company name is too big than you can use split  command in your code to split company name and display in smartform.
    Examples
    DATA: NAMES(30) TYPE C VALUE 'Charly, John , Peter',
    NAMES2 TYPE STRING,
    ONE(10) TYPE C,
    TWO(10) TYPE C,
    THREE TYPE STRING,
    FOUR(4) TYPE C VALUE 'FOUR',
    DELIMITER(2) VALUE ','.
    SPLIT NAMES AT DELIMITER INTO ONE TWO.
    ONE contains 'Charly' and TWO contains 'John , Pet'.
    SY-SUBRC is 4, because TWO was not large enough to
    accommodate the whole of the remaining string
    SPLIT NAMES AT ',' INTO ONE TWO THREE.
    ONE contains 'Charly', TWO contains ' John',
    THREE contains ' Peter'.
    SPLIT NAMES AT ', ' INTO ONE THREE TWO.
    ONE contains 'Charly', THREE contains 'John',
    TWO contains 'Peter'.
    CONCATENATE NAMES '' INTO NAMES2 SEPARATED BY SPACE.
    SPLIT NAMES2 AT DELIMITER INTO ONE TWO THREE FOUR.
    ONE contains 'Charly', TWO contains 'John',
    THREE contains 'Peter ', FOUR is empty.
    SPLIT NAMES2 AT DELIMITER INTO ONE FOUR THREE.
    ONE contains 'Charly', FOUR contains 'John',
    THREE contains 'Peter', SY-SUBRC is 4, since
    FOUR was not large enough (spaces are significant
    characters!)
    Thanks
    Ankur Sharma

  • Calling a transaction code in between the program and use the output

    Hi frnds,
              i want to call a transaction code in between the program   and pass the input .After getting the output, use that output in the program

    Hi Navin,
                     Why don't you sit with ABAPer he can explain better.
    Regards,
    HAri.

  • What is the transaction code to set the download directory?

    What is the transaction code to set the download directory?

    SO21 is the Maintain PC Work directory transaction
    Cheers,
    Ben

  • Transaction Code for seeing the files in the  Application Server

    Hello All,
      Can anybody please give me the transaction code for seeing the files in the Application Server
    Thanks in Advance,
    Regards,
    LIJO.

    hi
    good
    try with tcode AL11.
    thanks
    mrutyun^

  • Determining the name of the jar file running from JAVA

    Hi everyone,
    This is probably a silly question, but how do you determine the name of the jar file running from within the jar file.
    E.g. If I'm running the jar file "Test.jar", then how can I get the String value "Test.jar" from within my program?
    Any help would be appreciated! Thanks:)

    I think that you can use the solution above to get the jar file resources associated with a particular jar file, and then use the JarFile class to get a manifest of whats in there, and then find your class?
    This is only off of the top of my head, and I haven't tested it. Let me know if it works

  • Determining the name of listeners

    DB version: 10.2.0.1.0, 11.1.0.6.0
    If there are two listeners running on the same machine. How can i determine the name of each listener?

    Go into $ORACLE_HOME/network/admin/listener.ora - You will all listeners definitions there
    LISTENER =
      (ADDRESS_LIST =
            (ADDRESS= (PROTOCOL= IPC)(KEY=EXTPROC))
            (ADDRESS= (PROTOCOL= TCP)(HOST=testdb)(PORT=1521))
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = ORA816)
          (ORACLE_HOME = /u01/app/oracle/product/8.1.6)
        (SID_DESC =
          (SID_NAME = PLSExtProc)
          (ORACLE_HOME = /u01/app/oracle/product/8.1.6)
          (PROGRAM = extproc)
      )the istener= part will be there for each listener defined.
    Oded
    [www.dbsnaps.com]
    [www.orbiumsoftware.com]

  • How to hide transaction codes that i have worked in command box

    Hi ,
    Is there any possible way not to display the transaction codes that i have worked in command box . ex: i have used SPRO ,CRMD_ORDER and other transaction codes to open requred screens.Now i can see last 10 transaction codes  in command box  that i have worked but i dont want to display them .
    Please suggest me the solution not to show them.
    Points will be rewarded.

    hi sap crm,
    the command box is the create button, isn't it?
    if yes, you can remove it by removing authorization for the user that create the order
    hopes it helps
    cheers

  • How to change the name of a Box Object in Crystal Reports 2008

    I am trying to change the name of a box object in a crystal report - 2008. This report was originally developed by consultants and requires that certain boxes be named according to a specific naming convention. I am making a change to the report and need to add a box with a name that matches the naming convention.  This is so some program functionality will work for the new box.  I can't contact the consultants because they don't work with our company anymore.
    Does anybody have any ideas? I've tried 'Format Box', but it won't let me change the name from there. I also tried it in the Report Explorer but to no avail.
    Thanks,
    Joanne

    Hi Joanne,
    Boxes do not actually have a 'name'. When you add a Box in a report, it will be called 'Box 1' by default. And the only place this name is visible is under the Report Explorer.
    Or do you mean to say 'Text Object'?
    -Abhilash

  • How to find Transaction code from Report/program name ?

    Dear all,
    How to find Transaction code if i know Report/program name ?

    Hi,
    In se 38 when u open ur program,in the application toolbar u have a button beside the where-used list button as display object list.on clicking this button,a window will be opened at the left most corner for repository browser,in this u can find any tranasctions,fileds,screens,dictionary structures defined for the program.
    if any transaction is created for the program u can find it under the transaction folder.
    revert back for further queries.
    Regards,
    Sravanthi

  • "Who ran me" - how to determine the name of the dbms_scheduler job that ran me

    Hi Community
    I can see plenty of examples out on the interweb which shows how you can use dbms_utility.format_call_stack to find the hierarchy of procs, functions and packages that got me to a particular point in my code.
    For example, if proc (procedure) A calls proc B, which in turn calls proc C, in the code for proc C, I can query the call stack to find out that proc C was called by proc B which in turn was called by proc A
    However, I want to extend this further.
    For example, using the example above, if proc A in turn was started by a dbms_scheduler job, I want to determine (within proc C) the name of the dbms_scheduler job which started the whole process off.
    The reason I want to do this is that I have inherited a (massive) system which is undocumented. In many places within the code, email alerts are sent out using a custom "MAIL" package to designated users (now including me) when certain long-running processes reach certain milestones and/or complete.
    I have added to the custom "MAIL" package a trailer on the mails to show the call stack. I also want to show the name of the dbms_scheduler job which started it all.
    Over time, this info may help me in building the "map" of how the whole undocumented system hangs together and in the meantime, to assist in troubleshooting problems
    Looking forward to hearing from you
    Alan

    Use USER_SCHEDULER_RUNNING_JOBS or DBA_SCHEDULER_RUNNING_JOBS there is column SESSION_ID and when you know your session ID build query is very simple.
    select owner, job_name
    into ...
    from dba_scheduler_runnig_jobs
    where session_id=sys_context('USERENV','SESSIONID');
    You must declare local variables in PL/SQL procedure to read owner and job_name into them. Second thing, you must handle possible exception no_data_found than can be raised when procedure is not run from job.

  • Transaction code to get the User Log details..

    Hi Friends,
    I need a transaction code or the process to get the User information for the past 40 days..
    I need a details such as, which user has logged in at what time and used what transactions in the past 40 days..
    Reagards,
    Navaneeth.

    Hi dear,
    USER LOGS CHECKS:
    1. ANALYSE APPLICATION LOGS
       TR: SLG1     (Do not select Read from Archive)
    2. READ SYSTEM LOGS
       SM21    (Selected problem and warning only)
    3. User Information Systems
       SUIM    (Select Last one Change Documents for Users)
               (Select then all Selection Criteria for changed Header Data)
    4. IF SUIM doesn't show then trun on Security Audit logs:
       SM19    (Selected All Audit Classes) & Create display profile name
    5. CHECK THE AUDIT LOGS:
       SM20    (Check the audit logs)
    6. SELECTION STATISTICAL RECORDS
       STAD    (selected all posible check and hit Enter)
    Regards
    Angeline

  • Material Valuation Transaction Codes to fill the new records in MBEW table

    Hi Experts,
    May i know the Material Valuation Transaction Codes because i want to fill the MBEW table with changed(new) records.
    Thanks in advance.
    Regards,
    <BMP>

    Hi,
    Please check the T-codes as follows which be helpful to you :----
    ME61                 Maintain Vendor Evaluation                        
    ME62                 Display Vendor Evaluation                         
    ME63                 Evaluation of Automatic Subcriteria               
    ME64                 Evaluation Comparison                             
    ME65                 Evaluation Lists                                  
    ME6A                 Changes to Vendor Evaluation                      
    ME6B                 Display Vendor Evaln. for Material                
    ME6C                 Vendors Without Evaluation                        
    ME6D                 Vendors Not Evaluated Since...                    
    ME6E                 Evaluation Records Without Weighting              
    ME6F                 Print                                             
    ME6G                 Vendor Evaluation in the Background               
    ME6H                 Standard Analysis: Vendor Evaluation              
    ME6Z                 Transport Vendor Evaluation Tables                
    Hope this helps........
    Regards,
    Suman

  • Need help regarding report ( i need the transaction code copy of the query)

    Hi,
    I want to copy the query designer fields and those field i have to use another query for that can any one give me the transaction code for copy query
    thanks
    phanidhar

    RSZC = to coy quer from on infoprovider to another..
    HOpe it helps
    Thanks for points assigned

Maybe you are looking for

  • Credit Notes on Dunning Letters

    Hi experts, I have created dunning letters to print from the dunning wizard but I have a problem. The credit notes (credit amounts) are grayed out in the Recommendation Report step and I can't tick / untick them. Also, the Credit Notes do not appear

  • Q190 unable to get video from HDMI

    I originally set up my Q190 using VGA out to the monitor. After purchasing a HDMI to DVI cable and connecting it, I have been unable to get any video to display on the monitor via the HDMI port. I have rebooted several times, checked every setting I

  • Xcode crashed while building the hello world app

    I installed xcode 5.0.2 on imac 2013 with osx 10.9. Created a new helloworld xcode project. While creating no issues, while building the app getting the following error. XCode quit unexpectedly. Why it happens and what is the solution. Tried all work

  • JSF output not displaying properly in IE6

    I've create an application using JSC and developed a few CSS templates to go along. I've notice that the formatting look fine on Firefox and IE7 but not IE6 - I saved the generated JSF output page (from the browser), remove the first line: <?xml vers

  • Any way to lock iPod controls on the earphone's remote?

    I keep activating the iPod fuction when the iPhone is in my pocket via in-line earphone remote control. I like to keep the earphone plugged in at all times. Any way to temp lock it?