Set transaction code property of PCD Iview

Hi ALL
I have a SAP transaction Iview sitting in my PCD. I want to access this Iview, set its transaction code property to the transaction that the user selects on the Iview of my web dynpro application.
The idea is to set the Tcode and then navigate to that Iview taking pcd location.
Please help on how to set the properties and invoke the iview

Sanjay,
   That's what the mentioned post talks about, isn't it?
You should pass the parameter while doing a portal navigation.
Go through the following blogs:
1. /people/prakash.singh4/blog/2005/10/07/how-to-launch-sap-transaction-pass-parameters-via-url
2. /people/durairaj.athavanraja/blog/2004/09/23/pass-parameter-to-its-url-upadated-21st-june-2008
You should use a code like this:
String parameter = "System=" + <portal system> + "&TCode=" + <transaction code as selected by user>;
WDPortalNavigation.navigateAbsolute(
"ROLES://<pcd location>",
WDPortalNavigationMode.SHOW_EXTERNAL,
WDPortalNavigationHistoryMode.ALLOW_DUPLICATIONS,
parameter,
true,
true);
Regards,
Satyajit.
Message was edited by: Satyajit Chakraborty

Similar Messages

  • Doubt in Middleware configuration setting in transaction code - smoeac

    Hi,
    For your information this is a new SRM 7.0 installation and I am connecting to a existing ECC system.
    I have performed all the step metioned in SAP Note: 720819 for middleware configuration in SRM system. Bit confused about the setting in Transaction code - SMOEAC. I have done following step in transaction code - SMOEAC.
    1. Created a new site type R/3
    2. I have mentioned RFC connection name (RFC connection from SRM to ECC) in 'Site Attributes'.
    3. System showed correct Logical system name When I clicked on 'Get value' option.
    For your kind information, a site type CRM exist in the system without any data in 'Site Attributes'.  We have not define the CRM site. It come while install the new SRM server.
    My question, apart from the above setting. do I need to define enter any data for the site type CRM in SMOEAC?
    Thanks in advance,
    Regds,
    Jennifer
    Edited by: Jennifer Batty on Aug 15, 2011 2:34 PM

    Hi Jennifer,
    Apart from the note, you should refer http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/5728. [original link is broken] [original link is broken] [original link is broken]
    Regards,
    Nikhil

  • Transaction code to view process orders set for deletion

    Hi PP Gurus
    We are trying to search for transaction code to view the process orders which have status as DLFL i.e deletion flag  set for the orders. In cooispi, the deleted orders are not shown in the report output.
    I request you to let me know if there is any other code through which we can view deleted process orders.
    Thanks & Regards
    Harleen Kaur

    Dear,
    In COOISPI  put DLT in system status field and execute the report this will give you the list of all order with deletion flags
    Also refer this thread,
    COOIS Report for Production orders with status DLFL
    Regards,
    R.Brahmankar
    Edited by: R Brahmankar on May 6, 2009 11:16 AM

  • In Transaction code va41 how to set default sales contract start date

    Hi ,
    In Transaction code " VA41 "  how to set default sales contract start date and end date.
    Can any one tell me the correct user exit for the same.
    Thanks
    Basu

    hi,
    u have to use user exits  or badis.
    use sutable exits mentioned below.
    SDTRM001  Reschedule schedule lines without a new ATP check          
    SDVFX006  User exit: Tax line (transfer to accounting)               
    V45A0001  Determine alternative materials for product selection      
    V45A0002  Predefine sold-to party in sales document                  
    V45A0003  Collector for customer function modulpool MV45A            
    V45A0004  Copy packing proposal                                      
    V45E0001  Update the purchase order from the sales order             
    V45E0002  Data transfer in procurement elements (PRreq., assembly)   
    V45L0001  SD component supplier processing (customer enhancements)   
    V45P0001  SD customer function for cross-company code sales          
    V45S0001  Update sales document from configuration                   
    V45S0003  MRP-relevance for incomplete configuration                 
    V45S0004  Effectivity type in sales order                            
    V45W0001  SD Service Management: Forward Contract Data to Item       
    V46H0001  SD Customer functions for resource-related billing         
    V60F0001  SD Billing plan (customer enhancement) diff. to billing plan
    Edited by: katigiri linganna on Apr 28, 2009 12:19 PM

  • Document type to be set blank in transaction code mr41,mrhr

    Hi,
    I want to set document type and currency field as blank whenever the user go for the transaction MR41 and MRHR. At present whenever user enter transaction MR and MRHR these two fields display some value which is there in memory id, i want to set these field as blank instead of getting the value from memory id. Please help me out if there is any solution.
    Regards
    karan

    Hi,
    Good morning and greetings,
    Go to the transaction Code OBU1 and make the default Document Type for the transaction code MR41 and MRHR as Blank and the system will not propose the Default Document Type for the same...If you dont want the user to use a document type from History disable History in the SAP GUI options...Hope this meets your requirement.
    Please reward points if found useful.
    Thanking you
    With kindest regards
    Ramesh Padmanabhan

  • Set the default field value to transaction code field, when calling from WD

    Hi all,
    Can we pass the value in a input field of a standard transaction calling from WD application. Suppose we are calling a transaction VA03 in an external window, then how will be pass the value in the VBAK_VBELN screen field.
    Is there any way to pass the value to this transaction field. I have also tried out to set the parameter ID 'AUN' for VA03 transaction VBELN field. But it did not work for me.
    Is there any way to set the default field value to transaction code field, when calling from WD?
    Please suggest, if anyone have any idea.
    Thanks
    Sanket

    Hi,
    I am using the below code to open a standard transaction. It will help you to explain my point more easily.
    DATA: url TYPE string,
              host TYPE string,
              port TYPE string.
    *Call below method to get host and port
      cl_http_server=>if_http_server~get_location(
         IMPORTING host = host
                port = port ).
    *create URL
      CONCATENATE 'http'
      '://' host ':' port
      '/sap/bc/gui/sap/its/webgui/?sap-client=&~transaction=' 'VA03'
       INTO url.
    *get the window manager as we are opening t code in external window.
      DATA lo_window_manager TYPE REF TO if_wd_window_manager.
      DATA lo_api_component TYPE REF TO if_wd_component.
      DATA lo_window TYPE REF TO if_wd_window.
      lo_api_component = wd_comp_controller->wd_get_api( ).
      lo_window_manager = lo_api_component->get_window_manager( ).
    call the url which we created above
      lo_window_manager->create_external_window(
      EXPORTING
      url = url
      RECEIVING
      window = lo_window ).
      lo_window->open( ).
    Note*
    One more query I want to add to this thread, that is there any possibility to call a custom transaction as well?

  • Set Default value for transaction code F-36

    Hi
    I need to set default value to feild special G/L indicator in transaction code F-36 How can I do that. Please advice.
    Regards
    Kesharika

    Just in case anyone would need to know. You can change the default values for transactions by using SE93.
    Regards,

  • 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

  • Restrict this transaction code only to create sets starting with 'ZMR'

    Hello,
    I need to create custom transaction code for 'GS01' and restrict this transaction code only to create sets starting with 'ZMR' No other sets should be allowed to be created.
    If anyone have done before with the same scenario. Please give me clear documentation on this .
    Reagdrs
    Kiran

    YOu cannot find the call to the badi's by searching the main program.
    The badi is called a t run time.
    To find a badi attached to a main program, goto se38,
    GIve the program name.
    Goto->Object Directory Entry. Find the package.
    Go to se18 transaction, Press f4.
    give the package name in the popup.
    you can get the badis associated with the main program.
    Regards,
    Ravi

  • Search For an IView with the transaction code

    Hello,
    i'm trying to find out which IView in the portal is calling a special backend transaction.
    I only got the transaction name ("Transaction Code" in the IView definition).
    How could I know which Iview is doing thiis ?
    Thanks in advance for your precious help
    SMF

    Hello Arun,
    i already tried to search by the Portal Content / Search tab, but it doesn't help, and just looks through name, description and ID of the objects.
    There might be another way (even if it's a coding one) to do this no ?
    Thanks again for your answer.
    Regards
    SMF

  • How can i set a specific time for a transaction code to be run?

    I want to know if a certain Transaction Code (not only the customized tcodes) could only be run on a specific time (ie. 4pm to 6am only)

    There are two ways to achieve the purpose you wanted:
    1. If the work to be done by this Tcode can be processed automatically without any interactive session (dialog user) then I would suggest it to process as Batch Job in the time period you specified. And make sure that none of the users are not having corresponding authorization to execute the same task in foreground.
    2. If you need the Tcode to be executed only when you can monitor then the best way is to monitor the users containing the Tcode through SM20 audit log as a Mitigating control.
    No such facility is currently available to protect a Tcode for a particular time interval in a day. You may write a message to SAP for suggestion.
    regards,
    Dipanjan

  • Need to improve Transaction codes Performence

    Hi Experts,
       I created set of Transaction codes for (Demand & Tender Creation )which is related to MM Module
       Nearely 50 Transaction code are created in Portal Production ,using Transaction Iview
       Before creation in Portal ,the End User access these transaction codes directly in R/3
        Now they want to access through Portal That's why I created in Portal
            But now I am  facing perdormence issue ,when End User is accessinf through R/3 at that time  it's very fast
    trough in Portal the Transaction codes are working slowly 
         Guys please let me know the better solution to resolve the issue..
    Regards,
    Sony.

    Hi,
    I think you might need to do a thorough analysis to see where exactly are things going wrong. Try running the ITS URL directly to see if there is any performance improvement accessing the transactions via the WEBGUI. This will help you determine if the issue is really to do with the portal or it is the ECC server. To access the ITS URL, try
    http(s)://<FullyQualifiedHostName>:<port>/sap/bc/gui/sap/its/webgui
    and access the transaction codes to see what the response time is. Once you know which system is causing issues, you would be able to directly address it. The topic of improving a system's performance is too widespread to comment exactly where things could be going wrong. There are tons of materials available on SDN for performance improvement which you might want to take a look at.
    Hope it helps,
    Prathamesh

  • Unrestricted access for transaction codes

    Hi,
    We had set Production Client settings in SCC4 as "No chnages allowed"
    for client specific objects and
    "No changes to cross client & repository objects" in cross-client
    settings.
    As a part of regular job Finance users needs access to below
    transaction codes when the client is in non modifible Mode.
    I would like to give access to below listed transcation codes for
    selected users Without opening client everytime , I have assigned
    SAP_ALL profile for two users but still they are not able to perform
    their activity using below transcation codes when the client
    is "Nonmodifiable" state
    Transaction Codes List :
    S_BCE_68000174 - Enter Translation Rates
    S_ALR_87003642 - Open and Close Posting Periods
    S_ALR_87002510 - Enter Time Interest Terms
    S_ALR_87002678 - Enter Referance Interest Values
    FTXP - Tax Codes
    Please suggest us how to provide full (display, create, change,
    generate) access to specific listed users for specific transcation
    codes when production client is in "Nonmodifiable" & No changes allowed
    mode.
    Thanku

    Hello,
    Usually it depends on some points of customizing, that allow you to choose how SAP treats those transactions. I mean, you can choose if they should be treated as business transactions or customizing. In your case, the application is configured to use those transactions as customizing. Depending on the business area, you have to ask OSS support to change the configuration of these transactions.
    Hope it helps
    Best Regards
    Francisco

  • Excise Invoice tab In MIGO transaction code

    Hello
    Could any body suggest, In Excise Invoice tab In MIGO transaction code I am getting "06  No Excise Entry" no otehr fields are coming.? All options like
    01     Capture & Post Excise Invoice
    02     Refer & Post Excise Invoice
    03     Only Capture Excise Invoice
    04     Only Refer Excise Invoice
    05     Only Part1
    Should come. Infact in my SAND Box client it is o.k but with same setting Golden Client it is not coming.?
    Thanks & Regards
    Sudhansu

    Hi,
    These options are coming from Excise Group settings.
    Go to : SPRO-Logistics General-Tax on Goods movements-India-Basic settings-Maintain Excise Groups-in 'MIGO Settings' tab, select the check boxes, accordingly you will get the options in Excise Tab of MIGO screen.
    Hope this will resolve your issue.
    Regards,
    Gopi Chand

  • Error while accessing transaction codes through URL's in IFrame UI element

    Hi Experts,
    I have created Transaction iviews ck91N, ck11N, ck24 in SAP NW CE7.2. I am accessing these Transaction iviews through URL's in webdynpro java application. I am using IFrame UI element in a Roadmap UI for each transaction code.
    when i access step1 i.e ck91N in a IFrame it is working fine then i click button for step2, it displays the following error.
    Error while processing your request!
    What has happened?
    The call of URL http://yyyyyyyy:8001/sap/bc/gui/sap/its/webgui has been terminated due to an error.   
    Note
    ■The following error text was processed in system D10 : A:ITS_P:019 XSRF no sec_sesstoken
    ■The error occurred on application server eccdcs1s_D10_01 and in work process 0 .
    ■The termination type was: ABORT_MESSAGE_STATE
    ■The ABAP call hierarchy was:
    Function: CKML_MGV_SURFACE_DISPLAY of program SAPLCKMLMVSURF
    Function: CKML_MGV_SURFACE_DISPLAY of program SAPLCKMLMVSURF
    START-OF-SELECTION of program CKMLMV_SURFACE   
    What can you do?
    ■In the case of termination type RABAX_STATE, you will find in system D10 in transaction ST22 more information on the cause of termination.
    ■In the case of termination type ABORT_MESSAGE_STATE, you will find on application server eccdcs1s_D10_01 in transaction SM21 more information on the cause of termination.
    ■In the case of termination thype ERROR_MESSAGE_STATE, you can search for more information in the trace file for the work process 0 in transaction ST11 on application server eccdcs1s_D10_01 . An analysis of trace files for other work processes may be necessary.
    ■If you do not yet have any user ID, contact your system administrator.
    Error Code: ICF-IE-http -c: 730 -u: P00004943 -l: E -s: D10 -i: eccdcs1s_D10_01 -w: 0 -d: 20110426 -t: 135905 -v: ABORT_MESSAGE_STATE -e: A:ITS_P:019 XSRF no sec_sesstoken -X: -x:
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    Then next step3 it is working fine. If i change Road Map steps Ck11N,ck91N,ck24 in this order then first one is working fine second one gives error and third one is working fine again. It is working alternatively. I don't understand why this is happening? when i use LinkToURL for these 3 URL's then they are working fine. LinkTOURL opens in new browser(window) and in Roadmap i am accessing 3 URL's in same browser(window).
    Regards,
    Pradeep Kumar
    Edited by: pradeep_546 on Apr 26, 2011 2:17 PM
    Edited by: pradeep_546 on May 2, 2011 11:43 AM
    Edited by: pradeep_546 on May 3, 2011 8:02 PM

    I am facing the same issue when I use Windows 7 OS. Did you resolve this issue?

Maybe you are looking for