How do I open a form specific to particular user?

Hi All,
Please answer below questions:
1) How do I open a form specific to particular user?i.e I want to open a form as enterable mode for one user and non-enterable mode for another user.
2) How do I run a report specific to the particular user? i.e I want to run a report for one user here other user can not see the report.
Thanks in Advance,
Dhana

1) How do I open a form specific to particular user?i.e I want to open a form as enterable mode for one user and non-enterable mode for another user.Create a new responsibility, and set QUERY_ONLY=YES -- See old threads for similar discussion.
QUERY_ONLY
http://forums.oracle.com/forums/search.jspa?threadID=&q=QUERY_ONLY&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
2) How do I run a report specific to the particular user? i.e I want to run a report for one user here other user can not see the report.Through "Concurrent: Report Access Level" profile option.
Concurrent Report Access Level [ID 736547.1]
R12 View Concurrent Requests FAQ [ID 1261985.1]
Can't View Request's Output Submitted By Others [ID 949703.1]
How to View the Output of a Request Launched by Someone Else [ID 413382.1]
Thanks,
Hussein

Similar Messages

  • How can I open a Form located in UNIX

    Hi all,
    I have a problem!
    The system in my company is a 3-tier architecture:
    Database-tier: SUN SOLARIS
    Middle-tier (Oracle Application 11i): SUN SOLOARIS
    Clien-tier: Windows 2000/98
    I want to customize the Oracle application's forms. How
    can I open the forms source located in the UNIX (middle tier)
    with forms 6i in Windows 2000?
    If I FTP the source forms from UNIX to my working environment
    (windows 2000), the attached library will be lost. How can
    I easily do the development in such situation?
    Thank you very much!!!!!!

    Just remember,
    the binaries will not be compatible. You can open an .fmb file and modify it on windows machine (assuming you are going to use the same version of developer), after the modifications are don on the windows end, you need to move (copy, ftp, your choice) back to Solaris, and recompile the same form on Solaris to generate a binary (.fmx) for that particular platform. If you made modifications on libraries and/or menus of the same application on windows end, you need to do the same thing - recompile it on the unix end to have the related plx and mmx files.

  • How can i open period for specific user in OB52.

    Hi Expert,
    How can i open period for specific user in OB52.  As 'Authorisation Group' field is there in OB52, how can i use this field to restrict the specific user to post for particular period.  How can i creat authorisation group and where can i assign it to the particular user...
    Please let me know?
    Thanks and regards,
    Sam.

    Hi,
    Here is the detailed process as outlined in SAP help.
    Procedure
    If only a limited set of users is to be able to post in a particular posting period, proceed as follows:
    Add the posting period authorization (authorization object F_BKPF_BUP) to the authorizations of the selected users. Assign an authorization group (e.g. '0001').
    Enter the account type '+' for the posting period variant to which the restriction is to apply. Enter the period(s) whose use is to be restricted in the first period, those which are available to all users in the second period, and the authorization group (e.g. '0001') in the last column.
    Examples
    A posting period can be successively restricted. If, e.g. 10 users have the posting period authorization with authorization group '0001', and 3 of these 10 users also with authorization group '0002'.
    If the period is only to be accessible to the 10 selected users the authorization group '0001' is entered in the posting period variant. Access can later be restricted to the remaining 3 users by entering '0002'.
    Thanks
    Venkata Ganesh Perumalla

  • How to get a organization name for a particular user using API's

    Hi alll,
    How to get a organization name for a particular user using API's

    You need to do something like this:
    SearchCriteria criteria = new SearchCriteria("User Login", "XELSYSADM", SearchCriteria.Operator.EQUAL);
                   UserManager usrService = oimClient.getService(UserManager.class);
                   Set<String> retAttrs = new HashSet<String>();
                   retAttrs.add(UserManagerConstants.AttributeName.USER_ORGANIZATION.getId());
                   List<oracle.iam.identity.usermgmt.vo.User> users = usrService.search(criteria, retAttrs, null);
                   System.out.println("ORG KEY :: " + users.get(0).getAttribute("act_key"));

  • How to assign the status profile to that particular user..?*

    Hello Everyone..
    I have created a status profile for the particulat sales order type so that a particular user can confirm the sales order and the pass it,so that further changes can be avoided.The profile has been assigned to Item category also.
    Now My problem is ,How to assign the status profile to that particular user..?
    so that only the user is allowed to change the order.
    Thanks

    Hi,
    Maintain authorization key (authorization code)  in status profile.
    We do not assign directly to user. We assign to role E.g sales manager / sales employee etc...
    We assign T.codes to role and assign role to user.
    Goto Role T.code PFCG. Enter role and click on change button.Goto Authorizations tab.
    Click on authorization data .
    Expand the  Cross-application Authorization Objects tree. Expand Status Management: Set/Delete User Status using Transaction.
    Click on Authorization key button, assign Authorization key.
    Click on status profile. assign status profile.
    Regards,
    Chandra

  • How do I open to a specific page or destination in a pdf file using Buddy API Xtra?

    Hello,
    I'm working with a CD ROM catalog that utilizes the Buddy API Xtra to open PDF files when a link is clicked. The client would like to be able to open to a specific page within a pdf file.
    I can open a pdf file using the Buddy API baOpenfile() function but I'm having trouble opening to a specific page when I add #page=4:
    baOpenfile("@\pdfs\Powder Cores\Magnetics_Powder_Core_Catalog_2011.pdf#page=4","normal")
    I've also tried working with the code below which seems to me like it should work... I didn't realize that the "open..." part of it was a function in Director.
    on mouseUp me
      pageNum = 4
      theApp = baShortFileName(baFindApp("pdf"))
      theDoc = baShortFileName("@\pdfs\Powder Cores\Magnetics_Powder_Core_Catalog_2011.pdf")
      theArgs = "/s /A page=" & string(pageNum)   & "&pagemode=bookmarks"
      -- (translates to "/A page=4" in this example)
      open theApp && theArgs && theDoc
    end
    Thoughts?
    Thank you in advance!

    Thank you Dee! This works perfect!
    It would be cool to know how to use bashell() for this.
    The help files give the following examples:
    Result = baShell( Operation, Filename, Args, WorkDir, State )
    ok = baShell( "open", "c:\windows\notepad.exe", "myfile.txt" , "", "normal" )
    ok = baShell( "edit", "myfile.htm" , "", "", "normal" )
    So I tried:
    on mouseUp me
      -- Close the program group
      tWindowList = baWindowList( "" , "pdf" , false )
      if tWindowList <> [] and count(tWindowList) > 0 then  baCloseWindow(tWindowList[1])
      pageNum = 4
      theApp = baFindApp("pdf")
      theDoc = _movie.path & "pdfs\Powder Cores\Magentics Powder Core Catalog.pdf"
      theArgs = "/A "&QUOTE&"page="&string(pageNum)&"=OpenActions"&QUOTE
      baShell( "open", theApp, theDoc , theArgs, "normal" )
    end
    It opens the pdf file without going to a specific page. Any thoughts as to why it wouldn't accept theArgs?
    Thanks again!

  • How i can open the form in Internet Explorer

    Dears.
    I am using Developer 6i and Oracle8. I want to learn how i can execute my form in IE. Please teach me about that how i can be able to execute my form in IE.
    waiting for reply
    Zaheer

    Forms 6i can be web deployed, if you noticed there's a red button under the run button in forms builder, which says "Run form in web" this will open your form in a browser.
    But if you want to run production application in a browser then you need to have OAS (Oracle Application Server)
    As for 9i and above they can only be run in web, you either need Application Server with the compatible version or OC4J for testing.
    Tony
    PS: Do not duplicate your post
    Want to open the forms in internet explorer

  • How do I open up a specific port in the Application Level Firewall?

    Currently, my system blocks port 2336 and I want to open this up. To be precise: port 2336 is listening on the local system, both on 127.0.0.1 and its 192.168.x.x address, but no client on the LAN can connect to port 2336.
    IPFW and PF are not running. When I turn ALF off in System Preferences, I can connect to port 2336 from a LAN client. So ALF is blocking port 2336. How can I open this up?

    Linc, thatnks for the reply. I dived into this a bit more and studied the setup of the ALF. I find it confusing, on the one hand it is mentioned in the packet filter firewall setup in /etc/pf.anchors/com.apple:
    # Application Firewall anchor point.
    anchor "250.ApplicationFirewall/*"
    OTOH, such an entry is nowhere to be found on my system and the ALF command socketfilterfw somehow seems to suggest it is a socket filter and not a packet filter and that it is indeed working at a different level, namely the level that decides which executable is allowed to listen on which socket (port).
    I am trying to find out what program is being started when I connect to port 2336 (service appleugcontrol according to /etc/services) so I can enable it with socketfilterfw. But I can't find out which program I have to enable.
    I can turn off my ALF altogether, but I am used to running a firewall on my system, even if it is behind a NAT and ports are not as easily reached from the outside. I want my internal network to have some security too. In the 10.6 days, that was ipfw. Now it is PF which is off by default. I tried IceFloor to manage the PF firewall (so I can turn the ALF off) but the result was negative. Whatever I put in the settings, it blocked about everything.
    The reason I want to open this port is that without it server-side file tracking for mobile home sync does not work and mobile home syncing by clients becomes very slow. Server-side file tracking for mobile home syncing requires that the FileSyncAgent on the client is able to create a SSH connection to port 2336 on the server. But as it stands now, ALF is blocking that.

  • How can i open oracle forms in windows 7

    Dear Members
    i was install windows 7 professional edition and install oracle database and forms 10 last edition from oracle.com
    now , when i open the forms application and open any form message appear inform me that stopped working and windows can check online for solution
    i am trying to open any form by many ways but all my tries failed
    can any one help me .
    Regards

    The picture you provided is so small it cannot be seen. So, it does not help.
    There are numerous reasons why a module would not be able to open, but because you are on an unsupported platform it may be difficult to determine as this may be the cause. Other reasons might include the following:
    1. You can only open source files. You cannot open compiled modules. In other words, only FMB, MMB, PLL, and OLB files will open in the Builder. FMX, MMX, and PLX will not.
    2. Files are of an new version. Meaning, you cannot open a version 11.1.1 FMB in a version 10.1.2 Builder
    3. Attempting to access files stored on network shares (mapped drives) may sometimes fail due to delay access times (timeout). This is most common in Windows networks.
    4. If the module has dependencies on other modules, but those modules cannot be found or accessed, a failure to open may occur.
    There are a variety of other causes, but these are the most common. However, the fact that you are using an old Forms version on a new Operating System, which we know to have problems is not a good idea.

  • How do I create a form that enables the user to save the form filled in?

    When I create the form, save it and open it later, I get the message that the form can only be saved empty - without whatever the user filled into the text fields. Why is this and how can I enable the form to be saved including the content of the fields?

    It should only say that when used with Reader versions prior to version 11. If you have Acrobat, you can Reader-enable the form, allowing it to be saved in versions prior to 11, and 11 as well. Exactly how you do this depends on what version of Acrobat you're using:
    A9: Advanced > Extend Features in Adobe Reader
    A10: File > Save As > Reader Extended PDF > Enable Additional Features
    A11: File > Save as Other > Reader Extended PDF > Enable More Tools (includes form fill-in & save)

  • How do i open up wireless internet to another user

    how do i open a wireless internet to another user

    1) Tell the other person the "name" of your wireless network so that they can locate it among the other wireless networks that may be in range
    2) Tell the other person the "password" of your wireless network so that they can log on to it once they locate it

  • How to hide part of search results to particular users?

    Hi,
    Is it possible to hide part of search results to particular users? If it possible can you please tell how to implement? 
    Thanks, Chinnu

    Hi,
    According to your post, my understanding is that you wanted to hide part of search results to particular users.
    You can use the security trimming to achieve it.
    By default, Enterprise Search results are trimmed at query time, based on the identity of the user who submitted the query.
    When results are returned for a user's search, the Query engine performs an access check for the user's identity against the security descriptor stored in the content index for each item in the search results. The Query engine then removes any items in the
    search results that the user does not have access to, so that the user never sees these results.
    SharePoint uses the access control list (ACL) associated with each document to trim out query results that users have no permission to view,
    but the default trimming provided by SharePoint (out-of-box trimming) may not always be adequate to meet data security needs.
    In that case, you can custom the security trimming to meet your requirement.
    There are some articles for your reference.
    Trim SharePoint Search Results for Better Security
    http://msdn.microsoft.com/en-us/magazine/ff796226.aspx
    Writing a Custom Security Trimmer for SharePoint Server Search
    http://msdn.microsoft.com/en-us/library/ee819930(v=office.14).aspx
    Walkthrough: Using a Custom Security Trimmer for SharePoint Server Search Results
    http://msdn.microsoft.com/en-us/library/office/ee819923(v=office.14).aspx
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • How to make a folder invisible of a particular user

    Hi All,
    I want to make a folder/report invisible for a particular user, but I want to access that report through hyper link of another report.
    Is this possible?? can anyone suggest me?

    Hi,
    What version are you on?
    If you deny access to the folder in which the report is placed the user should not be able to see the report. If you then provide view access to the user on the report explicitly (you might have to turn off inheritance for the object), then this should override the deny and you shouldbe able to hyperlink to it. So the user has access to the report but has no way of getting to it, except through your hyperlink
    Let me know how you get on
    Regards
    Alan

  • How to get open calender of specific date from adf-mobile

    HI,
    I have 2 variablesin my bean class. 1st contains the date and 2nd contains the event name.
    in my poc when user click on a commandLink it opens the calender with that date selected and with an event which is in our second variable.
    Kindly help me in this, how can i do this with ADF-Moble on AMX or HTML page.
    Thanks and Regards,

    Hi,
    Please try this.
    PARAMETERS: P_START LIKE SY-DATUM,
                P_END   LIKE SY-DATUM.
    DATA: DAYS    TYPE I,
          WEEKDAY LIKE DTRESR-WEEKDAY.
    DAYS = P_END - P_START.
    DO DAYS TIMES.
      CALL FUNCTION 'DATE_TO_DAY'
        EXPORTING
          DATE    = P_START
        IMPORTING
          WEEKDAY = WEEKDAY.
      IF WEEKDAY = 'Sat.'.
        WRITE: / P_START.
      ENDIF.
      P_START = P_START + 1.
    ENDDO.
    Regards,
    Ferry Lianto

  • How can I open XML form in the Adobe reader, but not through the browser extention

    I am saving the document as Adobe Dynamic XML Form (useing Adobe LiveCycle Designer), When I open the document I get this error and I do have a Adobe reader installer.
    Please wait...
    If this message is not eventually replaced by the proper contents of the document, your PDF
    viewer may not be able to display this type of document.
    You can upgrade to the latest version of Adobe Reader for Windows®, Mac, or Linux® by
    visiting http://www.adobe.com/go/reader_download.
    For more assistance with Adobe Reader visit http://www.adobe.com/go/acrreader.
    Windows is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. Mac is a trademark
    of Apple Inc., registered in the United States and other countries. Linux is the registered trademark of Linus Torvalds in the U.S. and other
    countries

    Open the form in Adobe Reader.

Maybe you are looking for