Transaction access from workitem

Hi all,
I am working on credit management workflow where i have requirement as below
- In user decision i have approve & reject options
- Before approve or reject workitem, i have been asked to provide approver the access of transaction FD33 from workitem.
Can any one help me in this regard.
Best Regards,
Ashwini Patil.

Hi,
Normally you use a display transaction task in dialog to the user in the workflow and the next step you put the user decision, when you have advance with dialog set, and use the same agent. The user will immediately see the user decision when he/she clicked back or abort in the display transaction.
However, what I usually do to speed up the business process is to simply put all of the data relevent for decision making in the user decision text. That way in one screen the person sees all of the relevant data and can make a decision based on that data.
I also include an option to see the data with the ususal SAP transaction.
Kind regards, Rob Dielemans

Similar Messages

  • Transactional access to Communications and System ID

    Hello Experts,
    Can the communications Id execute transactions in SAP other than performing RFC execution?
    Is it a suggested solution to let these non-dialog id's have transactional access from Audit perspective?
    Appreciate your inputs.
    Regards,
    Sandeep

    Sandeep,
    Communication users and system users are both non-interactive accounts. I
    consistently use system accounts. I found that communication accounts need to have their password changed on first logon, which is somewhat cumbersome with a non-dialog account....
    If you notice RFC user profiles, they usually have SAP_ALL ,SAP_NEW. __There are able to execute the transactions_.
    There are reasons for denying SAP_ALL in PS environment.
    no-one should have this in any system. SAP_ALL enables you to 'jump'
    systems using - for example - tx. SM59. they might in this way also jump to
    your PRD system AND -depending on the authorizations of the SM59 user- might then have another SAP_ALL again. this is not to be tolerated.
    If you are giving SAP_ALL in production for RFC users,then u need to convenice the aduitors.
    other Options for SAP_ALL is _firefighter role
    Communication
      For this kind of users:-
      GUI login is not possible.
      Users are allowed to change password through some software in middle tier.
      Usage:- These are used for login to system through external systems like web application
    System :
    GUI login is not possible.
      Initial password and expiration of passowrd are not checked.
      Usage:- These are used for internal use in system like background jobs.
    Service:
    GUI login is possible.
      Initial password and expiration of passowrd are not checked.
      Multiple logins are allowed.
      Users are not allowed to change the password. Only admin can change the password
      Usage:- These are used for anonymous users. This type of users should be given minimum authorization.
    dialog & service both are same,only difference in service user type is No password expiry.
    still user is able to logon thry GUI.
    Thanks,
    Sri

  • Accessing SAP Transaction screen from other application

    Hi Friends
    We have a requirement where we want to access a transaction screen from some other application.
    Is there any standard BAPI for doing this (R3 or CRM) ?
    Kindly help ....
    Best Regards

    Hello Pankaj,
    In CRM you can use Function Module TRANSACTION_CALL_VIA_RFC to open a transcation screen in another system. This FM takes RFC Target System and TCode as inputs and opens the transaction in the specified system (provided Logical System Name & RFC Connection has been properly made)
    If it is IC Web Client, you can use transaction Launcher to do the same, follow the blog created by Raja G for the same.
    The link to which I am providing underneath:
    /people/raja.g/blog/2007/01/24/displaying-r3-transaction-in-icwc-application
    Regards,
    Khushboo
    <b>Reward with points !</b>

  • Problem while  data processing TRANSACTION data from DSO to CUBE

    Hi Guru's,
    we are facing problem while  data processing TRANSACTION data from DSO to CUBE. data packets  processing very slowly  and updating .Please help me regarding this.
    Thanks and regards,
    Sridhar

    Hi,
    I will suggest you to check a few places where you can see the status
    1) SM37 job log (give BIrequest name) and it should give you the details about the request. If its active make sure that the job log is getting updated at frequent intervals.
    2) SM66 get the job details (server name PID etc from SM37) and see in SM66 if the job is running or not. See if its accessing/updating some tables or is not doing anything at all.
    If its running and if you are able to see it active in SM66 you can wait for some time to let it finish.
    3) RSMO see what is available in details tab. It may be in update rules.
    4) ST22 check if any short dump has occured.
    You can also try SM50 / SM51 to see what is happening in the system level like reading/inserting tables etc.
    If you feel its active and running you can verify by checking if the number of records has increased in the cube.
    Thanks,
    JituK

  • Tables stored in memory but may be accessed from other sessions

    Dear Oracle experts,
    it may be a stupid question but I'm searching for the best possibility to create a kind of temporary table which may be accessed from other sessions.
    Could you provide some hints/ catchwords to speed up my recherches.
    Thank you very much,
    Daniel

    danielwetzler wrote:
    danielwetzler wrote:
    I fear that the caching is not suitable for my case because of the reasons decribed in my other postings...First of all I don't think that you need to worry about the effectiveness of the caching in your particular case. In addition Oracle is very clever at when to actually write the dirty blocks from the buffer cache to the disks, so if your amount of data written to the result table is fairly small and no other activity is going on your system it won't get written to disk immediately anyway but stay in memory until any of the conditions are met that trigger the database writer to flush the blocks to disk.
    But there are options you could consider if you want to avoid as much of the overhead as possible and to write the results of your calculation to the result table as fast as possible.
    You could use direct-path inserts (INSERT /*+ APPEND */) and set the result table to "NOLOGGING". This way no undo and minimum redo is generated.
    Note however that there are certain caveats and restrictions to consider when using such an approach, e.g. your result table won't be recoverable (which you say is OK), only one direct-path insert is allowed simultaneously (it blocks the table exclusively, no other DML possible until you commit/rollback the transaction), and the direct-path insert has some restrictions. If any of these apply that prevent the direct-path operation then it silently falls back to "conventional" insert mode which generates undo and redo. One of the more annoying restrictions is that you can't read from a table that has been written to in direct-path mode within the same transaction, you first have to commit the transaction, otherwise you get "ORA-12838: cannot read/modify an object after modifying it in parallel". This means by simply adding the APPEND hint you might break existing logic.
    Finally the direct-path insert never re-uses free space in blocks below the current high-water mark, which means if you perform a direct-path insert and afterwards delete rows from the table and repeat again a direct-path insert operation your segment will grow and the empty space in the already used blocks won't get re-used. Best way would be to truncate the table rather than deleting rows from it.
    There are workarounds available to overcome some of these direct-path insert limitations (exclusive lock, truncate instead of delete etc.), like using a partitioned table (if you have a suitable edition/license), because direct-path inserts can be restricted to partitions. In this case you can do simultaneous direct-path inserts if you use different partitions, but you need then some kind of logic that determines which partition to use.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • Loadind transaction data from SAP ECC 6.0 system failed

    Hi!
    I have SAP ECC 6.0 IDES system with the following clients:
    100 DEV client
    200 BI client of SAP 6.0
    Now I would like to load the transaction data from InfoSources 0FI_AR_6 and 0FI_AR_4 from SAP ECC client 100.
    The extraction process has been frozen in status "yellow" and after a while changed the status to "red" with the following information
    Errors while sending packages from OLTP to BI
    Diagnosis
    No IDocs could be sent to BI using RFC.
    System Response
    There are IDocs in the source system ALE outbox that did not arrive in the ALE inbox of BI.
    Further analysis:
    Check the TRFC log.
    You can access this log using the wizard or the menu path "Environment -> Transact. RFC -> In source system".
    Error handling:
    If the TRFC is incorrect, check whether the source system is fully connected to BI. In particular, check the authorizations of the background user in the source system.
    The users BWREMOTE and ALEREMOTE seems to be ok and have the suitable authorization.
    The tcode SM58 does not show any entries.
    The tcode BD87 shows that the IDocs was sent (source system) and has been received on target system.
    Question:
    How can I solve my problem?  Please give me some technical information (tcode, report).
    Thank you very much!
    regards

    Walk through your basis set up and  check out
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0751ba5-b7a8-2b10-6d97-e91e85c0fafa
    pts appreciated.

  • How to pass work item id from  workitem to webdynpro form

    hi ,
    im working on  webdynpro. when the agent executes  the  workitem  it has to open one form designed with webdynpro screens. here i have to get the workitem id from workitem and basing on the workitem id , i will get other data , that i have to dispaly in the lay out of a view..
    how to pass this work item id to my view and how to display this...?
    Raghu

    Hi,
    Application parameters can be used for this accessed directly only in the Window. Follow these steps;
    1. get the application url using the following code,
    par_wrkitm is the application parameter ( which should also be declared in the HANDLEDEFAULT method of the window as importing parameter and aslo appended in the URL )
    g_wrkitm is a Component Controller attribute
    Data: my_url TYPE string.
    *Get the URL of the Application
    CALL METHOD cl_wd_utilities=>construct_wd_url
    EXPORTING
        application_name = 'ZWDRC_NEW_APP'
    IMPORTING
       out_absolute_url = my_url.
    2. Now pass the required parameter ( i.e in this case Workitem id ) to this URL
    3. In your webdybpro applicatio, Goto Application parameters and create a parameter for workitem id with the same name as used in the URL.
    4. In the HANDLEDEFAULT method of the window, create Importing parameters with same names as that of your application parameter.
    5. Now this variable will contain your workitem id.
    If you want to acess the variable in your views;
    2. create a attribute in the Component Controller( Component Controller->Attributes Tab; mark it as public )
    3. Now in the HANDLEDEFAULT method of the window, assign your application parameter values to the component controller attributes directly as shown below,
    wd_comp_controller->g_wrkitm = par_wrkitm
    Regards,
    Radhika

  • Removing posting access from txn codes (FBV2, FBV3 and MIR4)

    Hello all,
    There is a business requirement to remove the ability to post
    Financial documents from a particular FI role. We are using a
    job role (for the most part, one SAP role per user) approach.
    For the transaction codes FBV2, FBV3 and MIR4, they would like to
    remove the ability to post. The relevant auth. object for
    posting is object F_BKPF_BUK, Vendor: Account Authorization. In
    this role, the ability to post (which is actually activity 01,
    create), has been removed; however, the role still has the
    ability to post the documents.
    I executed an auth. trace for each transaction code and the only
    activities outside of 03 or 77 (pre-enter) are checked in this
    object. I also verified that none of the other roles assigned to
    the test ID (a FI reporting and display role) have this
    authorization object with 01 in the activity field.
    As a sanity check, if anyone has removed posting access from
    specific FICO roles, please confirm that this authorization
    object is the correct one. I believe I've done the standard
    security 'debugging' steps and now I am stuck.
    Also, other transactions with posting access FV60 and FBV6 are
    restriction from posting by removing activity 01 from objects
    F_BKPF_BLA and F_BKPF_KOA.
    Thanks in advance for your help!

    Hi, the authorizations were correct in the first place - ths issue is that they didn't test it fully because the post button was still visible. However, when I tested it via the instructions given by FICO, when I selected the post button, security prevented me from doing so and authorization object F_BKPF_BUK for activity 01 was checked.
    Next time, I will make sure the testers are testing properly.

  • SQVI Transaction access to Users or Z transaction code---- Urgent please

    Hi Experts,
    I need a information regarding ABAP Queries. I have created some SAP Queries in SQVI as per requirements from the endusers.
    We don't have the ABAPers at the site for this purpose we used the SAP Queries to users.
    So I need to give this SQVI transaction access to the Users is it good practice to give the authorization to end users(Some particular users)
    Just display of the queries is it possible.
    Is there is any option so that I can create the Z Transaction code in SE93 and include the tables in the Z transaction code to access so we can avoid any consequences on the SQVI transaction.
    Please provide me the details.
    rgds
    Swamy

    Hi,
    You can create a transaction that calls the query you developed. Then work on authorizations if you need.
    Get in touch for more info goncalo.garcia(AT)gmail.com.
    Cheers.

  • Way to identify transactions accessed by user using portal

    Hi,
    We are trying to obtain statistics of the transactions used by a user and frequency of use by the same user using the portal. We would like to obtain the user id and the transactions accessed.
    Is there a table or a log created by the EP to capture the same or is there any option in the settings which can capture the info going forward.
    We use EP to access BSP applications and ITS transactions.
    Any information on the logging capabilites of EP is appreciated.

    Hi,
    Check the link below on creating a portal activity report iView.
    http://help.sap.com/saphelp_nw04s/helpdata/en/fb/144120ea5b4e9c9385d493a578d6c9/frameset.htm
    Portal activities are obtained from the following set of tables(I guess)
    WCR_AGGINFO
    WCR_USERNODSTAT
    WCR_USERSTAT
    WCR_WEBCNODESTAT
    WCR_WEBCONTENTSTAT
    So you can write a custom code that could retrieve the values from the tables.
    The activity report can be found under the system configuration under system administration in portal
    System Administration -> System Configuration-> Service Configuration Editor
    Under Applications->com.sap.portal.activityreport.core-> Services->ActivityReport
    Hope this helps.
    Regards,
    Vijai Mohan

  • How do I setup my Time Capsule (3rd Generation) to be accessed from the internet while I'm traveling?

    How do I setup my Time Capsule (3rd Generation) to be accessed from the internet while I'm traveling? It is installed on my home network behind my TWC broadband router.

    Ok.. since the TWC modem is also a router.. all configuration takes place on this box.. NONE whatsoever takes place on the TC.
    There is no airport utility 7.7.3 but there is a firmware of that number for the latest AC model TC..
    Is it tall like this.
    Then it is Gen5.
    otherwise it will have a firmware.. 7.6.4 or earlier and the airport utility must be 6.3 or earlier.
    Open the Airport utility and give us a screenshot of the summary page.
    That will also help us determine that you have the TC, which version and how it is setup.
    You might want to press the edit and also give us the Internet and Network tab as they should be set correctly as well.
    I have created a DDNS through DYN.com although I am not sure how to implement this into the TC.
    You do not do anything in the TC.. set it up in the Ubee router.
    Port forward 548 to the TC in the Ubee router.
    And make sure the TC has a static IP in the Ubee router.
    Overall if you find this too hard I strongly recommend you buy a product designed for remote access .. eg WD MyCloud.. they are cheap and easy peasy to setup for remote access.. by PC or Mac and since it is built outside of Apple you not bound up in Apple limitations built into all their equipment to prevent you using it the way you want.. rather than apple want you too.. eg BTMM and iCloud being the only way apple provide for access to the TC and only when it is the main router of the network.
    You are fighting hard because Apple made this hard.. not easy.

  • Trying change my credit card info from previously lost credit card but can't since it says I'm accessing from new device and asks for security code for a card i no longer have. What can I do?

    I've recently gotten a new laptop and replaced my damaged iphone. Apparently these 2 scenarios qualify as "new devices". This is fine but I also had lost my credit card previously that was connected to my iTunes account, and got a new one with all different numbers. When I try to change my billing information to this new card it won't let me because it says
    "Your account has been accessed from a new device, and you must verify your payment information before you can make purchases."
    and it asks for the security code of the card I had lost and replaced! I am not able to change my billing info to my new card thus because I can't get past this.
    Can anyone please help?

    Contact iTunes Customer Service and request assistance
    Apple  Support  iTunes Store  Contact Us

  • I have an iTunes account where I have downloaded Digital movies & I am able to see the list on the desktop of the original downloads. When I log on another device with my login I do not see my list to access them. Why can't I access from another device

    I have an iTunes account where I have downloaded Digital movies & I am able to see the list on the desktop of the original downloads. When I log on another device with my login I do not see my list to access them. Why can't I access from another device

    Hey GingCarv,
    Great question. You'll want to download the movies from your purchase history. The following article explains how to do so:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/HT2519
    Note: At this time, movies are not available for automatic downloads.
    Thanks,
    Matt M.

  • Read-only file access from network volume

    I get an read-only file access from network volume problem while sharing a drive from Snow Leopard to a Tiger install. Most of files were opening well, but *.fp7 (FileMaker) and *.xls (Excel) files won't open dealing with a read-only error.
    As descibed in the last post of http://discussions.apple.com/thread.jspa?threadID=1406977 the client have the same share name of the server. Renomming it resolved the error!
    Thanks!

    right then, as it looks like I'm talking to myself....
    I have just wiped clean the Macbook Pro.
    I installed Leopard from scratch, then installed Office 2008.
    Logged back onto the network share, and the read-only error came up again, ONLY in Excel.
    bugger.
    Did the same thing with my Macbook and all is fine.
    Copy the file to the local hard drive, opens ok.
    I then copied the file to another Mac on the network.
    mmmm, opens fine.
    what's the difference....
    mmmm, the machine it opens fine from is running 10.4
    the machine which hosts all the data is running 10.3.9
    could this be the problem.
    Just done a software update check on the 10.3 machine and there are some security updates that need doing.
    Going to run that now and see what happens, otherwise I think the iMac running 10.3.9 is going to need to come up to 10.4 and fingers crossed this will solve it.

  • We have created shared folder on multiple client machine in domain environment on different 2 OS like-XP,Vista, etc. from some day's When we facing problem when we are access from host name that shared folder is accessible but same time same computer when

    Hello All,
    we have created shared folder on multiple client machine in domain environment on different 2 OS like-XP,Vista, etc.
    from some day's When we facing problem when we are access from host name that shared folder is accessible but same time same computer when we are trying to access the share folder with IP it asking for credentials i have type again and again
    correct credential but unable to access that. If i re-share the folder then we are access it but when we are restarted the system then same problem is occurring.
    I have checked IP,DNS,Gateway and more each & everything is well.
    Pls suggest us.
    Pankaj Kumar

    Hi,
    According to your description, my understanding is that the same shared folder can be accessed by name, but can’t be accessed be IP address and asks for credentials.
    Please try to enable the option below on the device which has shared folder:
    Besides, check the Advanced Shring settings of shared folder and confrim that if there is any limitation settings.
    Best Regards,
    Eve Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Maybe you are looking for

  • My neighbor gets service and AT&T cancels my account!

      Extraordinarily long story (15+ hours phone time). So, here's the quick version. ATT changed my service address at some point to my neighbors address. Billing address is of course correct as I had service at my address for years. Found this out the

  • I can't cut and paste any images into apple mail

    I have had my MacBook Pro for over three years now, without much trouble, but recently I've been unable to send images that I have cut and pasted into Apple mail. I can attach an image that I have saved in my photos and it will send but I can not sen

  • How to DELETE a message in mail

    Not how to delete the message after you read it...... I want to delete KNOWN spam emails before I open them.... On my samsung you just hold your finger on the email and the delete choice comes up BEFORE you open that spam mail. I use an Imap account

  • Using iPhone3Gs as a broadband wireless modem

    I read somewhere that it was possible to use the iPhone 3Gs as a broadband wireless modem for a notebook/laptop PC. Is this true, and can anyone verify that it works? I am thinking about getting a 3Gs for myself and giving my 3G to my wife. But in or

  • Merge two Apple-Accounts

    Hi, my daughter uses an iPhone and iTunes. I use an iPod (an iPad) and iTunes. We use iTunes with different Apple-IDs. Now, she leaves the apple-world :-(  and I use the iPhone. How can I merge the two Apple-accounts? Thanks for the answers. Olaf