How to release  PRs through workflows without setting release procedures?

Dear all,
         I am involved in overall purchase requisition workflow.I have copied standard workflow WS20000077.
         For overall PR release,I will be using the standard task TS20000159 which uses BOR as BUS2105 and method SINGLERELEASE.This method is defined with RELEASECODE as mandatory parameter.
         My functional consultant wants me to get release codes from ztable based on plant and PR value without setting release groups and release code in SPRO transaction.
         So,I have created an entry in ztable for release code with data element FRGCO as in T16FC standard table with SAP log on id of agent ,plant and PR values.I have created a custom background method to pick the appropriate release code from ztable based on PR value and plant.The picked release code now can be passed to he above standard task.Is this a right procedure for PR release?Please correct me if I am wrong ,as this is the first time I am involved in release workflows, for which I will be grateful.
Thanks and regards,
S.Suresh

Dear Swaminathan,
                 Thank you so much for your reply.
                 I will get back shortly once this is done.
Thanks and regards,
S.Suresh

Similar Messages

  • How can I navigate through tabs without using the mouse?

    I want to know how to navigate through tabs without using a mouse... just like you can navigate through multiple windows by using <alt><tab> ... because it's extremely annoying when I'm working on something to have to take my hands off the keyboard and go to the mouse.

    You can also use Ctrl + Page Up and Ctrl + Page Down to go to the next and previous tab. I prefer those because it doesn't require the Shift key (Shift + Ctrl+ Tab) to go to the previous tab.
    See also [[Tabbed browsing]]

  • Pass value through URL without setting local page item

    Folks,
    I have a table where I have created a dummy column with a hyperlink on it to go to another page in the application which runs a report passing through columns on the table
    As I am doing this several times (for different pages in my application) - Is there a way of passing a variable through a URL to a report without setting a local variable
    i.e.
    Click Here
    Here I am assigning a local variable on Page 25 which is hidden called P25_TEST1
    What I would like to do is pass the value straight to page 25 (which runs the report) without the need to create hidden items on the report pages all the while
    Thanks
    Gareth

    You have a plain HTML page that loads with a url with something like ?field=value
    And you want "value" to show on your page, correct?
    <html>
    <body>
    <script>
    var qsParm = new Array();
    function qs() {
    var query = window.location.search.substring(1);
    var parms = query.split('&');
    for (var i=0; i<parms.length; i++) {
       var pos = parms<i>.indexOf('=');
       if (pos > 0) {
          var key = parms<i>.substring(0,pos);
          var val = parms<i>.substring(pos+1);
          qsParm[key] = val;
    qsParm['field'] = null;
    qs();
    if (qsParm['field'])
         document.write('You selected ' + qsParm['field'] );
    </script> 
    </body>
    </html>
    Call that as test.html?field=Hello
    Here's a nice link that explains it in detail: http://www.eggheadcafe.com/articles/20020107.asp

  • How to call report through URL(without displaying userid info) ?

    I want to call report in my APEX application.
    I can get it run like this :
    http://hostname:port/reports/rwservlet?module=invoice.rdf&userid=oe/oe@tnsalias&destype=cache&desformat=pdf But showing the userid in the url would have serious security problem.
    How could I configure the report to set the default userid, so that I don't need to define that in the url ?
    And is there any way to integrate this authorization with my APEX application ?

    frank1018 wrote:
    I want to call report in my APEX application.
    I can get it run like this :
    http://hostname:port/reports/rwservlet?module=invoice.rdf&userid=oe/oe@tnsalias&destype=cache&desformat=pdf But showing the userid in the url would have serious security problem.
    How could I configure the report to set the default userid, so that I don't need to define that in the url ?
    And is there any way to integrate this authorization with my APEX application ?Hi frank
    Check this http://docs.oracle.com/cd/E12839_01/bi.1111/b32121/pbr_run013.htm
    Hope this helps

  • How to find my Iphone 4g without setting up icloud ID on my Iphone?

    Please help, argent.
    Any idea to find my Iphone 4g without setting up icloud ID on my Iphone?

    xtar,
    The Find My iPhone function is for LOST phones.  Not stolen phones.  All the theif has to do is turn off your phone for your phone to not be able to be traced. 
    You have more chance of winning the lottery than you do of getting a stolen phone back.
    Notify your carrier, notify the authorities, and change the passwords to any account you may have had on your phone.  Move on with your life.  There's really nothing more to be done.

  • How to create Bin Release folder Through commandline (without flash/flex builder)

    Hi friends
                        is it possible to create bin release folder of my application without using flash builder or flex builder.i want to create the release of my application through sdk.is there any way to create this.i am working on windows.so please let me know any dos based command to create this release.
    Thanks and Regards
       Vineet Osho

    Hi lee thanks for your reply.actually i am already use tha command but it cant  create bin release folder it just make swf file.i want all bin-relase folder so that all the css and images and other resources that my application used should comme in relesed folder.is there any way to create bi-relese folder.i am working in flash-builder 4 and my operating system is windows 7
    Thanks And Regards
      Vineet Sharma

  • How to make changes through JAG without affecting manual changes in jspx?

    hi,
    In our Application , we are using JHeadStart for creating JSPX pages. We made manual changes to some component in Jspx page. Now I has to change TextBox Component to LOV (List Of values) Component. So I made changes in the ApplicationDefinition. xml file. Now If I run the ApplicationDefinition File, the Manual changes (adding setActionListener,creating ManagedBean, etc...) whatever I had made to the particular page is updated to its own default page based on ApplicationDefinition.xml.
    So , is there any possibility that manual changes made to jspx file should not be affected even if we make changes through ApplicationDefinition.xml file.
    Thanks,

    You should write your customizations in generator templates before you JAG. You can add your customizations to affect various components, beans, etc. You then configure these templates to be used by JAG. Once you do this you do not need to re-write your customized code. You will need to know the basics of VTL (velocity template language) as all the templates used by JAG are written in .vm files that use VTL.
    For a more detailed understanding of how using and implementing customized templates read Oracle JHeadstart 10g for ADF Developers Guide, chapter 4.7
    Regards,
    Amit

  • How to Dynamically Load jvm.dll without setting PATH

    Please help, invoking CreateJavaVM via a function pointer is returning -3, but I'm not sure why.
    When my PATH is setup up to include the jvm.dll and I invoke JNI_CreateJavaVM() directly, it works fine. But I want it to work regardless of my PATH setting, so I am trying to use LoadLibrary and dynamically load the jvm.dll and then a function pointer to invoke CreateJavaVM().
    The LoadLibrary returns non-NULL result, the GetProcAccress() returns non-null, but when I invoke the pointer to the CreateJavaVM call, it returns -3. I know -3 is JNI_EVERSION error, but any ideas what is wrong with the code below, such that it would give me this error?
    Currently my code is as follows:
    typedef jint (JNICALL CreateJavaVM_t)(JavaVM **pvm, void **env, void *args);
    JavaVM *m_jvm;
    JNIEnv *m_env;
    SetDllDirectory(L"C:\\Program Files\\Java\\jdk1.6.0_20\\jre\\bin\\client");
    HINSTANCE hVM = LoadLibrary(L"jvm.dll");
    if ( hVM == NULL ) {
       // report error
    CreateJavaVM_t *pfnCreateJavaVM = (CreateJavaVM_t*)GetProcAddress(hVM, "JNI_CreateJavaVM");
    #ifdef JNI_VERSION_1_6
    char cpChars[1024] = {0};
    sprintf_s(cpChars, "-Djava.class.path=%s", classPath); // classpath is defined elsewhere
    JavaVMOption options[1];
    options[0].optionString = cpChars;
    JavaVMInitArgs vm_args;
    vm_args.version = JNI_VERSION_1_6;
    vm_args.options = options;
    vm_args.nOptions = 1;
    vm_args.ignoreUnrecognized = JNI_TRUE;
    pin_ptr<JNIEnv*> env = &m_env;
    pin_ptr<JavaVM*> jvm = &m_jvm;
    int result = pfnCreateJavaVM(jvm, (void**)env, &vm_args);
    // This is where the failure occurs. result is -3 for some reason here...why?For some reason, pfnCreateJavaVM is returning -3, but I'm not sure why? Any ideas what is wrong with this code, such that it would give me a -3?
    Thanks in advance,
    Bill

    wkoscho wrote:
    For some reason, pfnCreateJavaVM is returning -3, but I'm not sure why? Any ideas what is wrong with this code, such that it would give me a -3?As an experiment try using a different jvm.dll from a different location. From my box there are several different jvm.dll under my jdk install dir.

  • How to use internet through wifi without deducting my credit

    when i use internet using wifi my sim credits gets deducted.
    please suggest me the right settings.
    thank you.

    1. I get that you are trying to connect to your brother's wifi. But what are you trying to connect to his wifi? A computer? An iPhone? An iPad? Something else?

  • How  to Creat  Hyperlink through    Workflow

    Hello Everybody ,
    I want   to create Hyperlink after click on that Hyperlink I want to  open  any  Site .
    Do Some Needful
    Regards,
    Sandeep Jadhav

    To create a Hyperlink in a Workitem, you need to create a container element of type 'CFX_HYPERLINK' with  your desired URL as value. Eg. 'www.sdn.sap.com'
    Now in the Text editor of workitem description call this container element in HTML format.
    Eg.
    <A href="http://&<your container element>&">www.sdn.sap.com</A>
    Thats it. Execute.
    Please let me know, if it is working.
    Edited by: srinivas g on Jul 21, 2009 7:33 AM

  • Error in event receiver in workflow for PO release strategy

    Hi Expert,
    I am trying to trigger an email through workflow for PO release. I have setup following
    In SWETYPV,I have check marked on Type linkage active and Enable event queue. Status no error.
    In PFTC, under Triggering events, Object type BUS2012 is green light
    When i create the PO in my SAP inbox, i get notification, however, i getting this error u201CERROR IN EVENT RECEIVER".
    Also, how can i send the notification to the user's outlook inbox? Your help will be appreciated.

    laurarice wrote:
    Hi Expert,
    >
    > I am trying to trigger an email through workflow for PO release. I have setup following
    >
    > In SWETYPV,I have check marked on Type linkage active and Enable event queue. Status no error.
    > In PFTC, under Triggering events, Object type BUS2012 is green light
    > When i create the PO in my SAP inbox, i get notification, however, i getting this error u201CERROR IN EVENT RECEIVER".
    > Also, how can i send the notification to the user's outlook inbox? Your help will be appreciated.
    I suppose, you are using the workflow WS20000075. Add sending email as an additional task to the same workflow in SWDD.

  • To trigger Overall release for PR workflow (WS20000077)

    Hi,
    I want to know that how can i trigger overall release for PR workflow ( WS20000077 ) of BUS 2105.
    rightnow in my system workflow WS0000038 is activated & when i perform ME51N it is triggred perfectly. and in SWEL BUS2009 is triggered, but it wont trigger BUS2105.
    So how can i trigger BUS2105 & instead of BUS2009, so it will trigger WS20000077 workflow.
    Which seetings needs to be done in SPRO, so it will trigger BUS2105?
    And please give me some idea about overall release for PR workflow & item level release for PR workflow.
    Regards,
    Smit

    Hello,
    Right now, the release strategy is configured item-wise for the PR and so the business object BUS2009 is triggered. To make the release of PR from Item-wise to overall, please make the following configurations in SPRO
    SPRO -> MM -> Purchasing -> Purchase Requisition -> Define Document Types and check the 'OvrelReq' checkbox and then
    SPRO -> MM -> Purchasing -> Purchase Requisition -> Release Procedure-> Procedure with classification->Set Up Procedure with Classification and maintain the Release Groups by checking the 'OvrelReq'  checkbox.
    Once these configurations are done, first check whether the event 'RELEASESTEPCREATED' is published in the system from the event log(SWEL). Once an entry is found,deactivate the linkage between template WS0000038 and activate the linkage of the template WS20000077 which is for the BO BUS2105.
    Hope this will help.
    Thanks,
    Samson

  • Business Workflow for PR Release...

    Hi Experts,
    Can anybody please tell me how to work with BUSINESS WORKFLOW for PR Release from scratch.
    I am new in Workflow and i had tried with myself but not getting exactly.
    Please reply me with step-by-step process from scratch to release PR.
    thanks in advance..

    Where did you get stuck? All the steps needed could be found in the customizing and the customizing documentation explains them. Also make sure you have done the workflow configuration in SWU3.
    Regards,
    Martin

  • How to retrigger workflow after complete release

    Hi All
    I have configured workflow for PO release.My query is that suppose I complete the PO release through workflow and then through ME22N I change the Quantity/Value such that a new release strategy is captured by the same PO.Now how do I retrigger the worflow for the same PO according to new release strategy.

    Hi,
    Using the T.code SWUE you can re-trigger.
    Follow the steps to trigger the workflow via Event.
    1) Goto the T.code SWUE.
    2) Object category = BO BOR Object Type
    3) Object Type = Business Object (e.g. BUS2089,..).
    4) Object Event = which event you want to trigger (e.g CREATED,..)
    5) Click on Object Key button & enter the key field value(s)
    6) There is a button 'Event Parametersu2019. Click on that to enter the event parameter values, if any
    7) Then you have to click 'Event Receiver' button, and you can see which Workflow is linked to this event
    8) Now click on 'Create Event' to trigger the event.
    9) Then  Go to SWEL and see the Event.
    Regards,
    Surjith

  • How to release a object that is set to obselete?

    Hi All,
    In my development system i need to develop a workflow using BUS1007/BUS1008.
    But it is set to obselete.
    Can anyone tell me How to release a object that is set to obselete?
    Thanks and regards,
    Raj

    Hello,
    As per the documentation on Business object builder on help.sap.com,
    Obsolete object types/object type components show that the functions are being discontinued and replaced with other functions that are incompatible.
    Object types or object type components being discontinued and designated by SAP as obsolete are still supported in the change release and the next release. The old functions and the new functions are available in parallel for this period.
    Incompatible changes are included by SAP in a central release note.
    So, it is better that you look out for other business objects. I am not sure, but I think you can use the BO KNA1 in place of 'BUS1007' and LFA1 for BUS1008 as the key fields are same for both the business objects.
    Hope this will help.
    Regards,
    Samson

Maybe you are looking for

  • MR11- GR/IR clearing account initial screen

    On MR11 initial screen is there a way to add account assignment catagory e.g. K or A etc so we can get further details into expense items? Also, Is there a way to get goods receipt date on the executed report? Thanks Raj

  • REP-110: Unable to open file

    9iAS report server has been configured. There is Infrastructure & Business Intelligence Forms home is on same server. When i try to run the demo url from web browser : http://<FQDN server>:8888/reports/rwservlet?destype=cache&desformat=PDF&report=Inv

  • Hard drive is a little noisy

    My hard drive is pretty noisy when it accesses information, opening a folder, launches an application, etc. Louder than my G5. Anyone else had this?

  • Email Notification while deprovision - OIM

    Hi, Is there any Out-of-box feature available in OIM for sending email to user's manager 7 days before user's deprovision date?.Thanks.

  • Jboss_tomcat - tutorial neede

    helloooo... i have done my accademic project using tomcat...now i am trying to learn ejb...but i dont know how to develop applications with jboss_tomcat...because the directory structure is different.... can any one send me some usefull links to lear