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

Similar Messages

  • How do I view code in FlashCS4?

    Hi,
      How do I view code in Flash CS4? I am wondering if it's even possible but I am new to Flash so I guess anything is possible, haha. I need to fix my actionscript and this is one of the ways I was told to do it was to look at the code first.
    Thanks,
    ashmic19

    There weren't any "a"'s shown in the timeline so I am wondering if the actionscript I created really applied itself?
    But the protocal you gave helped because now I know how to view the actions applied to various parts so thank you.
    ashmic19

  • 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 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

  • 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 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 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 views of a Standard SAP Defined table?

    Hi Every body
    How to see the views of a table?

    Hi Sandeep
      A table can be used in more than one view.
    1. Go to SE11
    2. Enter the Table Name
    3. Click on "Where-Used List"
    4. Select "Views" from the popup screen.
    5. OK
    This will display the list of views where the table is used.
    Kind Regards
    Eswar

  • 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 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.

  • How to create transaction code for maintenance view

    hai friends,
    i hope every thing goes good.
    i have doubt, how to create transaction code for maintenance view. I created view for tranperant table and now i want to create transaction code for the view.
    i tried and i donot know the screen number and program name and where can i give the view name.
    if any one know please post in details.
    thanks in advance.

    Hi Elam,
    You need to create a "Parameter Transaction".
    What this means is that you will have a transaction (let's call it "ZMAINT") which calls "SM30" and passes in your table name.
    Go to transaction SE93 and enter your new transaction code. Enter in the Tcode description and choose "Transaction with Parameters" (it shouldbe the last radio button).
    Enter in the default transaction "SM30" and tick the "Skip Initial Screen" check box. Hit Enter.
    Now scroll to the bottom of the screen and you will see a Table Control where you will need to enter in the values to the SM30 selection screen.
    Because you hit ENTER, the program will have loaded in the Selection Screen parameters into it's memory. Hit the drop down for "Name of Screen Field" and select "VIEWNAME" and then enter in your Z Table in the "Value" column.
    Now go to the next line and hit the drop down and select "UPDATE" in the "Name of Screen Field". Enter in a "X" in the value column.
    Now save the transaction and there you have it.
    Hope this helps.
    Cheers,
    Pat.
    PS. Kindly assign Reward Points to the posts you find helpful.

  • Please help me how to check a material does existed group code in system (w

    Hi all,
    Please help me...
    I have inputted quantity for  tx MC 94  but when I input them into  tx MC94, I met  a message " Structure  not yet maintained for  this conbination characterstics". Step by step to show a error message as below:
    Step 1: Launch MC 94
    step 2: Enter Planning
    Step 3: Enter  Prod.Code. Material (ex: enter material code :0101010260008, this code is existed  Prod.Code )
    Step 4: Click on "Inactive Version " button
    ==> A error message is showed.
    Please help me how to check a material does existed group code in system (which table to  check  it)?
    How to record the message" Structure  not yet maintained for  this conbination characterstics" to catch up it in my program?
    Thank in advance.

    Karenloria,
    1. Check in MC8C, which Infostructure is used for Planning type "Planning" or the one you are entering in the intial screen of MC94.
    2. Using transaction MC63 for the infostructure identified in step 1, check the planning hierarchy maintained. If this product is not maintined maintain using MC62.
    You can also check using SE16 transction the current infostructe records(Plan) for the table name = infostructure identified in step 1.
    Regards,
    Prasobh

  • I didnt konw how to make a new account for my iTues card so i did it with a diffrent email but that email doesnt exist and when i tried to make it on a real email i just sai invalid code check the code and try again and can u please help me

    please help me it is a card of 25 dollars and i dont want it to go to waist i by mistake thought you used a frake email so i made one up i thought i was going to have a new one but then it said it was going to send a verifaction to my email so then i tried to use a real email and put in the code but it just kept on saying invalid code. check the code and try again. and i dont know what to do can u please please help me it was a gift and i really dont want it to go to waist please i need help

    for #1
    Frequently asked questions about Apple ID - Apple Support
    I have multiple Apple IDs. Is there a way for me to merge them into a single Apple ID?
    Apple IDs cannot be merged. You should use your preferred Apple ID from now on, but you can still access your purchased items such as music, movies, or software using your other Apple IDs.
    If you are wondering how using multiple Apple IDs relate to iCloud, see Apple IDs and iCloud.
    for #2
    Apple does not accept unsolicited ideas see Apple - Legal - Unsolicited Idea Submission Policy

Maybe you are looking for

  • How can I hook up my iPad 3 to a tv.

    Is there an adapter to go from ipad3 to HDMI?  I have a camera connection kit if that helps get to USB....  I have a 1st gen Apple TV but I guess it doesn't support air play.

  • I am trying to set up iCloud on my iMac - how can I do it?

    I am trying to set up iCloud on my iMac. When I follow the Apple instructions and go to "System Preferences" I do not have an icon for iCloud but I do have MobileMe icon. Can anyone help me?

  • Panasonic 16/9 1024x768 plasma monitor

    I have a TH-42PHD8UK professionnal plasma display from Panasonic. This display has VGA, Component, Composite and HDMI inputs. I would be interested in connecting a Mac Mini to this display to set up a Media Center. My question is : Will I get any dis

  • Urgent : Can BPEL humantask link up with Oracle roles & responsibilities?

    Hi, We are designing a bpel human task workflow for an approval process for an Oracke application. The requirement is such that the approval responsibility in the current system is available to only certain users and the list of these approvers keeps

  • Firefox sync fails while syncing passwords

    Hi all, I have this problem on all but one of my computers. Firefox sync constantly nags about "Error while syncing" and gives further details "sync encountered an error while syncing: unknown error." When I check about:sync-log I see: "2011-01-14 10