How to change the details ina BPS workflow item

Hi,
I'm working in a SAP BW 3.5 environment and I need to change some details in a BPS workflow item. Unfortunately I have never used BPS and am struggling to get to grips with it and also to resolve the issue.
Can anyone advise on my issue and also offer any advice / documents that cover BW BPS in a 3.5 environment.
thanks.

I think I better change my question. Can anyone please provide link(s) / documents where I can quickly pick up the basics of BW 3.5 BPS so I can start looking into the issue I have.

Similar Messages

  • How to change the url of "Add New Item" of a particular list in SharePoint 2013???

    Hi Guys,
    How to change the url of "Add New Item" of a particular list in SharePoint 2013???
    I need to redirect it into the page where I have created my Visual web part.
    Please suggest
    Warm Regards,
    Tony Joy

    Hi,
         There are multiple ways to change the form url like javascript, SharePoint designer, custom code, editing default form to have custom web part etc, Please follow the url below that describe diffent methods and steps
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/ec2769a0-683c-4023-8804-b596e4f92a3a/change-default-forms-on-custom-list?forum=sharepointcustomizationlegacy
    Hope it helps!!!
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. Thanks, Ajeet

  • How to change the text mail of Workflow Notification?

    Hi all,
    I would like to change the text mail of workflow notification. I took a look at the Help Sap and saw how to customize the text mail notification. Unfortunately, I could not found the text for workflow Notification at “notificationTexts_<language>.properties”.
    Is possible to change the text mail of Workflow Notification?
    Thanks in advanced,
    Alcides Flach

    Hi Alcides,
    Please refer to the following link.
    https://www.sdn.sap.com/irj/sdn/thread?threadID=40700
    Rajiv

  • How to get the objects from a workflow item's container

    Dear all,<P/>
    We need to get the value of a variable in the container of a workflow item. I can get the workflow item list using function module <B>SAP_WAPI_CREATE_WORKLIST</B>. Then how can I get the corresponding container elements' value?<P/>
    I tried function mofule <B>SAP_WAPI_GET_OBJECTS</B>, but the returned table <B>OBJECTS</B> and <B>OBJECTS_2</B> are both empty.<P/>
    Thanks + Best Regards<P/>
    Jerome<P/>
    null

    Hi,
    Well, I think you will be getting the value as BORNAME:BORKEY. Get the KEYVALUE into your local variable. And use the <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/c5/e4acef453d11d189430000e829fbbd/frameset.htm">BOR Macros</a> to get the instance and desired contents.
    Regards
    <i><b>Raja Sekhar</b></i>

  • How to change the characteristic value in a item of sales order by FM?

    Hi experts,
    I guess the FM BAPI_SALESORDER_CHANGE can implement my requirement. But I have made many testing program, that's all failed. I don't know which part is not correct. So could you give a very simple sample to me? Just change the characteristic value in a item of sales order, not do any change for other parts. Thanks in advanced.
    Regrads

    Hi Birendra,
    Thanks for you explain. I follow your guide to wirte abap program. But related characteristic value still not changed in SO main screen. could you give me some suggestion? Thanks a lot!
    type-pools: IBCO2,
                IBXX.
    data: l_CUOBJ type CUOBJ_VA,
          l_ibase type IBCO2_IBASE_REC,
          l_CONFIGURATION type IBCO2_INSTANCE_TAB2,
          w_CONFIGURATION type IBCO2_INSTANCE_REC2,
          l_ROOT_OBJECT type IBXX_BUSINESS_OBJECT.
    data: t_IBCO2_VALUE_TAB type IBCO2_VALUE_TAB,
          w_IBCO2_VALUE_REC type IBCO2_VALUE_REC.
    select single CUOBJ
      into l_CUOBJ
      from VBAP
      where VBELN = '0020030609'
        and POSNR = '000020'.
      CALL FUNCTION 'CUCB_GET_CONFIGURATION'
        EXPORTING
          INSTANCE                           = l_CUOBJ
        IS_BUSINESS_OBJECT                 =
        IV_MOMENT                          =
        IV_WITH_DB_INSTANCE                =
       IMPORTING
         IBASE                              = l_ibase
         CONFIGURATION                      = l_CONFIGURATION
        EO_CBASE_REF                       =
      EXCEPTIONS
        INVALID_INPUT                      = 1
        INVALID_INSTANCE                   = 2
        INSTANCE_IS_A_CLASSIFICATION       = 3
        OTHERS                             = 4
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    loop at l_CONFIGURATION into w_CONFIGURATION.
      l_ROOT_OBJECT = w_CONFIGURATION-OWNER.
    t_IBCO2_VALUE_TAB[] = w_CONFIGURATION-values[].
      read table w_CONFIGURATION-values into w_IBCO2_VALUE_REC with key ATINN = '0000000222'.
      w_IBCO2_VALUE_REC-ATWRT = 'TMP'.
      modify w_CONFIGURATION-values from w_IBCO2_VALUE_REC index sy-tabix.
      modify l_CONFIGURATION from w_CONFIGURATION index 1.
      clear: w_CONFIGURATION.
    endloop.
    CALL FUNCTION 'CUCB_SET_CONFIGURATION'
      EXPORTING
        ROOT_INSTANCE                      = l_CUOBJ
      IS_CBASE_HEADER                    =
      CHANGING
        CONFIGURATION                      = l_CONFIGURATION
    EXCEPTIONS
      INVALID_INPUT                      = 1
      INVALID_INSTANCE                   = 2
      INSTANCE_IS_A_CLASSIFICATION       = 3
      OTHERS                             = 4
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'CUCB_CONFIGURATION_TO_DB'
      EXPORTING
        ROOT_INSTANCE                       = l_CUOBJ
        ROOT_OBJECT                         = l_ROOT_OBJECT
      FORCE_NEW_INSTANCE                  =
      IV_WITHOUT_COMMIT_UPDATE            = ' '
      IV_MATERIAL                         =
      IV_LOCATION                         =
      IV_TECHS                            =
    IMPORTING
      NEW_INSTANCE                        =
    TABLES
      EXP_NEW_NESTED_CUOBJS               =
    EXCEPTIONS
      INVALID_INSTANCE                    = 1
      INVALID_ROOT_INSTANCE               = 2
      NO_CHANGES                          = 3
      ALREADY_REGISTERED_FOR_UPDATE       = 4
      INSTANCE_IS_A_CLASSIFICATION        = 5
      OTHERS                              = 6
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • How to change the amount of Vendor Line Item in FB60

    Hi all,
    I want to post the invoice in SAP with FB60. The journal is as follow:
    Dr. Expense    1000 USD
    Dr. VAT-Input    100 USD
          Cr. Account Payable     1100 USD
    But the problem, the amount of Account payable is 1000 USD. Because I want to fill the amount in vendor line item (FB60) with the original expense (1000 USD).
    I want to ask, there is any configuration in SAP to change the amount in vendor line item which it could be the same with amount of the original expense.
    If you ever have same problems, plase share with me
    Thanks,
    John

    Hi,
    Thanks for your reply. The result of posting invoice that I want is as follow:
    Dr. Expense    1000 USD
    Dr. Vat - Input    100 USD
    Cr. Account Payable   1100 USD
    When posting invoices in FB60, there is a filed "amount vendor line item" at the top. Usually the field is filled with amount vendor 1100 USD, but I want to fill it with the expense amount (1000 USD). Which can be show the account payable 1100 USD.
    Is there any configuration to change the field "amount vendor line item" ?
    Thanks,

  • How to change the subtransaction of a transferred item in Invoicing?

    Hello guys!
    I have the following question and I hope you could be able to answer.
    In Invoicing, we select all the open payment we received from a customer and we include them in the Account maintenance line of the Print document. In some cases the amount of the payments is higher than the amount of the consumption and this leads to a transfer posting of the amount of the overpayment.
    For example:
    received payments
    ================
    100,00EUR
    100,00EUR
    100,00EUR
    consumption for the billign period
    ==========================
    150,00EUR
    The transfer document will contain the following items/subitems:
    ====================================================
    item      subitem         amount          clearing status      main transaction        subtransaction
    0001           000      50,00EUR                                        0250                          0010
    0001           001      50,00EUR                      9                0250                          0010
    0001           000     100,00EUR                                        0250                          0010
    My question is - is there an event which can be used to change the subtransaction for a subitem?
    I checked and tested event R418 but it can be used to change the subtransaction only for an item.
    Thanks a lot in advance!
    Kind regards,
    Mariya

    Hi ,
    First of all the Event R418 as you have mentioned have the structures FKKKO and FKKOP .
    In FKKKO you will not get the sub item and in FKKOP you will get the sub itmes .
    Before the process gets in to Event R418 it has only 1 line item and hence you are facing the problem .
    If you have multiple line items getting in to the FM then you can build the logic based on the Import date that is passed in structure FKKOP .
    Else try for the function module FKK_OPEN_ITEM_SPLIT , in R418 where in you can split the document if you are having only 1 entry in FKKOP.
    Kindly check and revert back with your findings .
    Regards ,
    Dewang

  • How to change the data type of an item in administrator

    Hi,
    A summary folder was created. One of the item in the summary folder is a sum. That sum item was created in the business area (based on another item). I can't refresh that summary folder because it gives me an oracle error (Ora-12008 and Ora-01401 the value is too large for the column). The column that this item is based on is of data type Number(13). How can I fix this problem without changing the column's data type of the original table? I already tried altering the data type in the EUL table via TOAD.
    Thanks!

    You really don't need to sum the item before hand if you are going to create a summary!

  • How to change the color in text box item.

    Hi,
    There is a text box where i am returing the value using item source SQL and Always replacing.
    I have a condition like this if value is > 10 value must appear in red else white.
    Eg:
    select
    case
    when TO_NUMBER(:P122_PRJ_SV_PROJECT_USL) > TO_NUMBER(:P122_GSD_SV_PROJECT_USL) then
    '<span style="background-color:RED">'|| PO.EV_UCL || '</span>'
    else
    '<span style="background-color:WHITE">'|| PO.EV_UCL || '</span>'
    end
    from projects po
    this is not working please suggest me how to change.
    Thanks
    Sudhir.

    Sudhir
    Please repost your source code with {noformat}{noformat} (with the curly brackets and in lower case) above and below it.
    Cheers
    Ben                                                                                                                                                                                                                                                                                                                   

  • How to change the Orginial Definition of an Item in OAF

    Dear All,
    I have an item which the Read Only Property is calling a function through SPEL, and in any personalization level i can only choose between Inherit or True, first there is no False option (which i want to choose), Second i want to know how i could change the orginial definition of the item so i could remove the function from the Read Only Property and make it False.
    If anyone could help, its urgent, Thanks.

    Hey hi there ,
    Can you check from personalization what value is set to rendered property ?? ,there should be an option to make
    it true which will remove the SPEL .
    If you are trying to make it read only or editable then you can do it from CO extension .
    --Keerthi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How can change the Prompt of a text item in a form?

    Dear Friends...
    I want to change the label/Prompt of a form ( Miscellaneous Receipt) in Inventory Module. Ie Current lable/Prompt is REFERENCE, i want to change it into BOE. Pls advice me ........
    Regards
    Mary

    To make the change permanent you need to use the same Folders submenu and select either Save ... or Save As.... I would recommend the latter and give the folder your own custom name as this then differentiates any changes from the seeded folders / other locations who might also be using this folder etc.
    Thereafter, either your users will have to select the folder or (better) you can use the Administer Folders option in SysAdmin to default the folder to a particular responsibility or responsibilities.
    Regards,
    Jon

  • How to change the direction of text writing: item is top to bottem

    hi, i will make a notepad. and i will make its text's direction: item is top to bottem and line is left to right.
    i cant do this, please help me!

    What you need is:
    http://www.macdevcenter.com/pub/a/mac/2002/03/22/vertical_text.html
    That gives you a very nice vertical text, with support for rotation
    control so Katakana and Arabic style writing can be done properly.
    James.

  • Dynamically changing the detail navigation

    Hi all,
           can anyone please tell me how to change the detail navigation  dynamatically..
    Regards,
    Jeyasingh Samuel

    Hi Srinivasa,
    There are 2 things you can do:
    (1) You can simply set the invisible property for the iViews (I think this is what you want).
    You create a settings page which lists all the iViews, and when the user clicks a button, the page gets all the settings for all the iViews and sets the invisibility property for all of them.
    The invisibility property indicates whether to display this object in the TLN/DTN.
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, IPcdContext.PCD_INITIAL_CONTEXT_FACTORY);
    env.put(Constants.REQUESTED_ASPECT, PcmConstants.ASPECT_SEMANTICS);
    env.put(Context.SECURITY_PRINCIPAL, request.getUser());
    env.put(IPcdContext.PCD_PERSONALIZATION_PRINCIPAL, request.getUser());
    iCtx = new InitialContext(env);
    //Create loop of all objects 
        String pageID = "portal_content/DanielContent/DanRole/Folder1/Folder2/Page1";
        IPage myPage = (IPage)iCtx.lookup(pageID);
        myPage.putAttribute(IAttriView.ATTRIBUTE_NAVINVISIBLE,"true");
        myPage.save();
    The above code is for a page, but you can do the same for an iView.
    (2) If you iViews are in a page, and do not appear in the navigation tree, but you want to make them invisible, you can set this property on the iViews.
    myIview.putAttribute(IAttriView.ATTRIBUTE_AVAILABILITY,IAttriViewValues.AVAILABILITY_VALUE_AVAILABLE);
    myIview.save();
    Either way, make sure to set the personalization environment variable when you do your PCD lookup, as shown above. Otherwise, the changes for one user will affect all users.
    Hope this helps.
    Daniel

  • How to change the recipients in workflow?

    I'm not  a workflow expert. Please help me how to change the recipients in workflow.
    The approver already resigned and we would like to change it to a new approver.
    We already deactivated the user and I stiil see him in SOST.
    In some releases, he is the approver and we would like to change it.
    Hope you can help me. Just kindly let me know if you still have queries.
    Thank you!

    Ask your workflow admin to define a substitution and/or forward the workitems.

  • How to change the sender name "workflow system" to Diff name

    Hi ,,
      How to change the mail sender name that is "workflow system" to different name. Whenever the mail is triggered it shows the sender name as "workflow system" . i want to change the name of the sender..Even i changed the name of the WF-Batch(name) user but no use.. Pls advice.
    regards,
    Roops.

    Hi Roops,
    Check if the following [link1|Re: How to change text of wf batch??] [link2|Update should not happen in the name of WF-BATCH] helps you.
    Regards,
    Saumya

Maybe you are looking for

  • System error: CL_RSR_RRK0_MULTIPROV_BUFH and form _GET_provbit-02 .

    Hi I'm getting the following error while executing a report. System error: CL_RSR_RRK0_MULTIPROV_BUFH and form GETprovbit-02 . Experts please suggest a possible solution . Thanks

  • Windows sees my iPod but iTunes doesn't (USB 2.0)

    I had this problem when I got my iPod a few days ago, then when I got iTunes to see my iPod it took AGES to upload songs, and when I reconnected my iPod, iTunes said it needed to reformat it. My PC at work speaks to my iPod just fine through it's USB

  • Flex 2-15 not starting, stuck in limbo

    Yesterday after letting my flex 2 sleep after class, I tried starting it again after a few hours and it wouldn't start. The only thing I could see is a blank screen with the backlight and keyboard light on, the fans are also working. I tried searchin

  • Cannot not submit pdf form by lotus suite

    1. our client said that cannot submit the form by lotus suite. 2. how can I set to submit the form by desktop mail only & at least ver. 7.0 or later. tks

  • Thousands of grey thumbnails with duplicate ._IMG* filenames?

    Hi I have iPhoto 9.5.1 for Mavericks and have 10's of thousands of grey thumbnails that I cannot view. When I check the info on these they all show with a ._ prefix. E.g. "._IMG_0041", when I search for IMG_0041 I can see the photo fine. I have gone