For adhoc Approvers only responsible items displayed in WI

Hello SRM Gurus,
I have one query, regarding the Adhoc Approvers (Approvers Added using Add Approver functionality ) in the Shopping Cart.
Scenario: Shopper added 3 line items in the shopping cart, and then he adds one more approver in the approval chain who is responsible for only item 1st and 3rd not for item 2nd and orders SC.
So when adhoc approvers recieves approval workitem, he gets only 1st and 3 items for approval decision in it but not the Second line item ,not even in the Grayed out mode. Unlike the determined Approvers get.
I have checked the logs files and N Step Approval workflow also but I am not able to understand why is this happening and hw  to over come this issue.
By checking the Workflow Log , I found one flag (HIDE_ITEMS_NOT_RESPONSIBLE) which is set by the SAP standard  functionality, and though only 1st and 3rd items are displayed.
Kindly help me out and let me know if there is some why how can we show all the workitems to the Adhoc Approver.
Kindly help.
Best Regards
Ankur Goyal
+91 982 344 8654

Hello,
Yes we have implemented WS14500015 and the Approval Task WI is TS14508044.
Adhoc  approvers are only getting responsible workitems in their approval workitem unlike the normal approvers determined by the BADI.
Kindly help and let me know if you need any further information
Best Regards
Ankur Goyal

Similar Messages

  • Need programming help: Three Items selected, only one item displays.

    All the code is below.
    My client has a beach-wear website. It is VERY simple with three pages: Index, Order, and Invoice Page. If customers select the checkbox in front of three items, only one item is displayed on the invoice page. Why aren't all three displayed? I am new to programming:
    //INDEX PAGE:
    <title>Beachwear Title</title>
    <body bgcolor="#FFFFFF">
    <p> </p>
    <form name="form1" method="get" action="jserv/Search.jsp">
    <table width="52%" border="1">
    <tr>
    <td width="20%">Enter Color:</td>
    <td width="80%">
    <input type="text" name="txtColor" size="30" maxlength="20">
    </td>
    </tr>
    </table>
    <p>
    <input type="submit" name="Submit" value="Color">
    </p>
    </form>
    <p> </p>
    //SEARCH PAGE:
    <%@page language="java" import="java.sql.*"%>
    <%@ include file="../Connections/connBeachwear.jsp" %>
    <%
    String rsBeachwear__varColor = "%";
    if (request.getParameter ("txtColor") !=null) {rsBeachwear__varColor = (String)request.getParameter ("txtColor");}
    %>
    <%
    Driver DriverrsBeachwear = (Driver)Class.forName(MM_connBeachwear_DRIVER).newInstance();
    Connection ConnrsBeachwear = DriverManager.getConnection(MM_connBeachwear_STRING,MM_connBeachwear_USERNAME,MM_connBeachwear_PASSWORD);
    PreparedStatement StatementrsBeachwear = ConnrsBeachwear.prepareStatement("SELECT ID, Item, Color, Size FROM Beachwear WHERE Color LIKE '%" + rsBeachwear__varColor + "%';");
    ResultSet rsBeachwear = StatementrsBeachwear.executeQuery();
    boolean rsBeachwear_isEmpty = !rsBeachwear.next();
    boolean rsBeachwear_hasData = !rsBeachwear_isEmpty;
    Object rsBeachwear_data;
    int rsBeachwear_numRows = 0;
    %>
    <%
    int Repeat1__numRows = 10;
    int Repeat1__index = 0;
    rsBeachwear_numRows += Repeat1__numRows;
    %>
    <title>Beachwear Title</title>
    <body bgcolor="#FFFFFF">
    <p> </p>
    <p> 
    <form name="form2" method="post" action="Invoice.jsp">
    <table width="75%" border="1">
    <% while ((rsBeachwear_hasData)&&(Repeat1__numRows-- != 0)) { %>
    <tr>
    <td width="18%"><%=(((rsBeachwear_data = rsBeachwear.getObject("ID"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    <td width="20%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Item"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    <td width="21%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Color"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    <td width="5%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Size"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    <td width="16%">
    <input type="checkbox" name="valueCheckbox" value="<%=(((rsBeachwear_data = rsBeachwear.getObject("ID"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%>">
    </td>
    </tr>
    <%
    Repeat1__index++;
    rsBeachwear_hasData = rsBeachwear.next();
    %>
    </table>
    <p>
    <input type="submit" name="Submit" value="Submit">
    </p>
    </form>
    <%
    rsBeachwear.close();
    ConnrsBeachwear.close();
    %>
    //INVOICE PAGE:
    <%@page language="java" import="java.sql.*"%>
    <%@ include file="../Connections/connBeachwear.jsp" %>
    <%
    String rsBeachwear__varCheckbox = "1";
    if (request.getParameter ("valueCheckbox") !=null) {rsBeachwear__varCheckbox = (String)request.getParameter ("valueCheckbox")   ;}
    %>
    <%
    Driver DriverrsBeachwear = (Driver)Class.forName(MM_connBeachwear_DRIVER).newInstance();
    Connection ConnrsBeachwear = DriverManager.getConnection(MM_connBeachwear_STRING,MM_connBeachwear_USERNAME,MM_connBeachwear_PASSWORD);
    PreparedStatement StatementrsBeachwear = ConnrsBeachwear.prepareStatement("SELECT ID, Item, Color, Size FROM Beachwear WHERE ID IN (" + rsBeachwear__varCheckbox + ")");
    ResultSet rsBeachwear = StatementrsBeachwear.executeQuery();
    boolean rsBeachwear_isEmpty = !rsBeachwear.next();
    boolean rsBeachwear_hasData = !rsBeachwear_isEmpty;
    Object rsBeachwear_data;
    int rsBeachwear_numRows = 0;
    %>
    <%
    int Repeat1__numRows = 10;
    int Repeat1__index = 0;
    rsBeachwear_numRows += Repeat1__numRows;
    %>
    <title>Beachwear Title</title>
    <body bgcolor="#FFFFFF">
    <p> </p>
    <p> 
    <p><br>
    INVOICE<br>
    <br>
    </p>
    <table width="75%" border="1">
    <% while ((rsBeachwear_hasData)&&(Repeat1__numRows-- != 0)) { %>
    <tr>
    <td width="18%"><%=(((rsBeachwear_data = rsBeachwear.getObject("ID"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    <td width="20%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Item"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    <td width="21%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Color"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    <td width="5%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Size"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    </tr>
    <%
    Repeat1__index++;
    rsBeachwear_hasData = rsBeachwear.next();
    %>
    </table>
    <p>  </p>
    <%
    rsBeachwear.close();
    ConnrsBeachwear.close();
    %>

    Hi, Brad,
    I appreciate your help! I am a beginning Java student, so this code is more complex than what I can handle alone.
    A copy of the compilation error is at the very bottom of this message.
    I added " int chkValues[]; " to the beginning of your code, and then inserted the whole code snippet to the detail (Invoice) page as shown:
    <%@page language="java" import="java.sql.*"%>
    <%@ include file="../Connections/connBeachwear.jsp" %>
    <%
    String rsBeachwear__varCheckbox = "1";
    if (request.getParameter ("valueCheckbox") !=null) {rsBeachwear__varCheckbox = (String)request.getParameter ("valueCheckbox")   ;}
    %>
    <%
    Driver DriverrsBeachwear = (Driver)Class.forName(MM_connBeachwear_DRIVER).newInstance();
    Connection ConnrsBeachwear = DriverManager.getConnection(MM_connBeachwear_STRING,MM_connBeachwear_USERNAME,MM_connBeachwear_PASSWORD);
    int chkValues[];
    StringBuffer prepStr=new StringBuffer("SELECT ID, Item, Color, Size FROM Beachwear WHERE ID=");
    for(int x=0;x<chkValues.length;++x){
    prepStr.append( chkValues[x] );//using an x instead of an i
    if((x+1)<chkValues.length){//another iteration
    prepStr.append(" OR ID=");
    }//end if
    }//end for loop
    PreparedStatement StatementrsBeachwear = ConnrsBeachwear.preparedStatement(prepStr);
    ResultSet rsBeachwear = StatementrsBeachwear.executeQuery();
    boolean rsBeachwear_isEmpty = !rsBeachwear.next();
    boolean rsBeachwear_hasData = !rsBeachwear_isEmpty;
    Object rsBeachwear_data;
    int rsBeachwear_numRows = 0;
    %>
    <%
    int Repeat1__numRows = -1;
    int Repeat1__index = 0;
    rsBeachwear_numRows += Repeat1__numRows;
    %>
    <title>Beachwear Title</title>
    <body bgcolor="#FFFFFF">
    <p> </p>
    <p> 
    <form name="form1" method="post" action="">
    <p><br>
    INVOICE<br>
    <br>
    </p>
    <% while ((rsBeachwear_hasData)&&(Repeat1__numRows-- != 0)) { %>
    <table width="75%" border="1">
    <tr>
    <td width="13%">ID:</td>
    <td width="87%"><%=(((rsBeachwear_data = rsBeachwear.getObject("ID"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    </tr>
    <tr>
    <td width="13%">ITEM:</td>
    <td width="87%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Item"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    </tr>
    <tr>
    <td width="13%">COLOR:</td>
    <td width="87%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Color"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    </tr>
    <tr>
    <td width="13%">SIZE:</td>
    <td width="87%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Size"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    </tr>
    </table>
    <%
    Repeat1__index++;
    rsBeachwear_hasData = rsBeachwear.next();
    %>
    <p>  </p>
    </form>
    <%
    rsBeachwear.close();
    ConnrsBeachwear.close();
    %>
    ERROR:
    500 Internal Server Error
    /jserv/Invoice.jsp:
    Compilation error occured:
    Found 1 errors in JSP file:
    C:\\Inetpub\\wwwroot\\Beachwear\\jserv\\Invoice.jsp:27: Error: No method named "preparedStatement" was found in type "java/sql/Connection".
    allaire.jrun.scripting.DefaultCFE:
    Errors reported by compiler:C:/Program Files/Allaire/JRun/servers/default/default-app/WEB-INF/jsp/jrun__jserv__Invoice2ejsp12.java:82:42:82:83: Error: No method named "preparedStatement" was found in type "java/sql/Connection".
         at allaire.jrun.scripting.JavaCompilerService.compile(../scripting/JavaCompilerService.java:96)

  • Why is Safari 5.1.7 for Windows the only browser that displays video with gray background, when it's white in four other browsers?

    Hello all,
    Here's my coding obstacle to overcome with Safari in my local dev environment using Windows 7 32-bit and wamp server. I created a pretty straightforward one and a half minute animation in Flash with a white background. Then I exported it as both an swf and avi video, then I encoded to several different file formats - ogg, mp4, and webm. Firefox 19, Chrome 24, and Opera 12 all play the webm file correctly showing the video's white background as expected, and IE 10 plays the mp4 correctly.
    However, when Safari 5.1.7 plays one of these files that I can't distinguish (because right click functionality displays nothing), the video's background property is changed to (gray) throughout the video instead of white. What the?
    Can someone please provide a workaround?
    501Guy

    Yes, I am still having the automatic tab reloading and I am ******* sick of it.
    I have lost count of how much work I have lost because of it.
    I have 8 GB of perfect new RAM and tonnes of SSD HD space, I have tried reinstalling the OS etc and every fix on the internet (no (SP) mode does not work, nor does switching Java off etc, it's not an extension nor corrupted anything ... it's an uncontrollable fault with Safari).
    Why does it keep happening !?!
    And I am so sick of Apple not acknowledging this and responding to it.
    What triggers it ... it is a built memory or cache limitation? It is a plain and simple crash?
    How do I debug it to find out?
    It strikes me that 20 years after the internet went public Apple ... despite all their billions and open source developers working for free ... still cannot make a browser that does not crash and so they decided to make a browser that *appears* not to crash ... except that it *does* ... only now the facade remains erect but everything else behind it crashes causing all tabs to reload, and videos and music start to play.
    And there is no way to stop it doing so.
    The most key app of our day and it is a POS.

  • T code for vendor,customer line item display

    we are using ecc 6.
      I would like to know the wheter any tcode is available in ECC6 for cust and vendor line item display.
    NEW TCODE for FBL3N is FAGLL03. Like that any new new tcode is availbale for FBL1N & FBL5N?
    Please clarify.
    Thanks
    Rajesh

    Dear Rajesh,
    There are not direct 'replacement' as the FAGLL03->FBL3N for FBL1N and FBL5N.
    So the FBL1N and FBL5N can be used further without any problem.
    As stated before, only the G/L are has directly changed.
    But in the relation to the New G/L, there are two new 'Recherche' tools for the vendor and customer area in relation to the 'Segment' and 'Profit Center'.
    You can find them in the FGI0 transaction.
    They are called:
    0SAPRECIEV01
    0SAPRECIEV02
    0SAPPAYABL01
    0SAPPAYABL02
    Maybe they can also help you further.
    Best regards,
    Christoph

  • Vendor Line Item Display (FBL1N)

    Hi,
    I would like to prepare a new layout for transaction FBL1N (Vendor Line Item Display).
    I only want to see a summarized view of the open line items per Profit Center.
    How can I change the summation levels?
    Thanks.
    Kind regards,
    Linda

    Please note that most vendor line items wont have a PC assigned to them.
    I am not sure if you are refering to classic view or new GL data.
    Anyway you can use the sum button, and sub total for your levels.
    If you want to get the information sub totalled by PC, then I guess you are using the new GL and document splitting.
    If that is the case you cannot use FBL1N for this.
    There is however a set of reports in Accounts Payable, called new Gl reports and they will provide you the general ledger view and not the entry level view, and you can use the sum and sub total option.
    Please award points if this is useful.
    Come back if you need further help.

  • Fs00 line item display

    hi experts. when i was creating a general account in FS00,  i didn't click line item display button. and fbl3n working wrong for this account . in fs00 change menu couldnt fix my problem . is there any program to run for fix this problem?

    While changing line item display at FS00 take care below
    When line item display is activated, use program RFSEPA01 to  retroactively generate line items from the documents that have already  been posted.  Before you start the program, the account must be locked for posting.  When line item display is deactivated, any existing indexes may be  deleted with program RFSEPA04.
    Or alternatively create new GL account with line item and use
    Srinivas

  • Line item display for Segment Clearing GL account

    In my scenario, document splitting is activated and zero balance is set for profit centre and segment.  I have assigned a GL account for automatic posting for segment clearance for posting.  I have posted few transactions and the document shows the posting happened to this Segment Clearing account.  However, when I want to view the line items posted in this account, system does not show the line items eventhough this GL is set up with line item display.

    Thanks for the reply.  But using this tcode also, it is not possible to display the line items.  I reproduce the message issued by the system while I am trying to view the line items of this particular account:
    "Error message issued because line item display cannot read data for an account in a ledger if line items exist partially in the entry view together with clearing items for which there are no line items. In such cases, only the data with line items would be selected."

  • No line item display possible for account -fbl3n

    Hi,
    No line item display possible for account ,
    i'm getting the abv error when run fbl3n .. pls tell , how to resolve it..

    Dear,
    It means no data found for your requirement.
    If you want to find out the list on base of G/L please enter G/L and click on all item.
    Other wise if you want to see only open item then click on open item and remove date from field of open item date.
    Also click on noted item and click on execute button
    Regards,
    Mahesh Wagh

  • Wip Query have to display only rejection items

    Hi,
         This is my customization form wip query
    select m1.docnum 'WIP NO', d.U_RejQty 'WIPRej',d.U_RewQty 'WIP re-work' ,d2.U_RejQty 'QCRej',d2.u_rewqty'QC Re-Work',d2.U_Opename 'Operation',
    m1.u_qchname as PreparedBy,m1.u_shift,m1.u_remarks,m1.u_remrej,m1.u_Remscrp,m.docnum 'FO NO',m.plannedqty,m.rlsdate,m.itemcode,m.u_tdrawno,m.CardCode,n.cardname,
    (select itemname from oitm where itemcode=m.itemcode) 'Description'
    from OWOR m
    left outer join [@SHJ_WIP_UPD1] d on  m.DocNum =d.U_OrderNo
    left outer join [@SHJ_WIP_OUPD] m1 on m1.DocEntry =d.DocEntry
    left outer join [@SHJ_QC_INS5] d2 on m.DocNum =d2.U_OrderNo and m1.DocNum =d2.U_WIP
    left outer join OCRD n on
    m.CardCode=n.CardCode
    where m.rlsdate between {?FromDate} and {?ToDate}
    and (d.U_RejQty>0 or d.U_RewQty>0) and ( d2.U_RejQty>0 or d2.U_RewQty>0)
    In ths query am displaying the rejection items and rework items alone but for me its showing all the items rejection and rework items zeros also showing.
    am getting output like this
              I need output only highlighted item because there only rejection items
    Regards
    Vinoth

    Try This
    select m1.docnum 'WIP NO', d.U_RejQty 'WIPRej',d.U_RewQty 'WIP re-work' ,d2.U_RejQty 'QCRej',d2.u_rewqty'QC Re-Work',d2.U_Opename 'Operation',
    m1.u_qchname as PreparedBy,m1.u_shift,m1.u_remarks,m1.u_remrej,m1.u_Remscrp,m.docnum 'FO NO',m.plannedqty,m.rlsdate,m.itemcode,m.u_tdrawno,m.CardCode,n.cardname,
    (select itemname from oitm where itemcode=m.itemcode) 'Description'
    from OWOR m
    left outer join [@SHJ_WIP_UPD1] d on  m.DocNum =d.U_OrderNo
    left outer join [@SHJ_WIP_OUPD] m1 on m1.DocEntry =d.DocEntry
    left outer join [@SHJ_QC_INS5] d2 on m.DocNum =d2.U_OrderNo and m1.DocNum =d2.U_WIP
    left outer join OCRD n on
    m.CardCode=n.CardCode
    where m.rlsdate between {?FromDate} and {?ToDate}
    and (isnull(d.U_RejQty,0)>0 or isnull( d.U_RewQty,0)>0) or ( isnull(d2.U_RejQty,0)>0 or isnull(d2.U_RewQty,0)>0)
    Regards
    Kennedy

  • Display only in Items assignement block

    Hi experts.
    I have a requirement where one of the columns of the "items" assignment block should be made display only.
    I used the transaction bsp_wd_cmpwb to configure - but as this is a table view I don't have the option for display only (generally available for over view page. I am specifically looking for Product description in the items assignment block.
    Can this be done by configuring. Do I need to code any thing. if yes please suggest how.
    Thank you
    Ram

    Hello Ram,
    Did you try to redefine method GET_I_xxx of your DESCRIPTION field already?
    Check out if adding this line of code can do the trick:
        rv_disabled = 'TRUE'.
    Regards,
    Nicolas Busson.

  • Datagrid displays null when only single item in xml via httpService

    Hi folks, I googled around for this but no luck. I've a
    datagrid populated with via httpService. The problem I'm having is
    that when there is only one item returned via the httpService, the
    datagrid doesn't display anything. However, when as soon as I add a
    second item, everything displays properly. Has anyone else
    experienced this issue? Attached is my code.
    Thanks for any help!

    "azilaga" <[email protected]> wrote in message
    news:gmq6l9$imj$[email protected]..
    > Hi folks, I googled around for this but no luck. I've a
    datagrid
    > populated
    > with via httpService. The problem I'm having is that
    when there is only
    > one
    > item returned via the httpService, the datagrid doesn't
    display anything.
    > However, when as soon as I add a second item, everything
    displays
    > properly.
    > Has anyone else experienced this issue? Attached is my
    code.
    Try setting the result format on the HTTPService to "e4x"

  • This folder is on server, since item numbers are many, only few are displayed

    Hi,
    Can some one let know what is meant if i get below in outlook (2013)
    This folder is on server, since item numbers are many, only few are displayed.
    To display details from Microsoft exchange, please click here.

    Hi,
    You should be using an Exchange Account in Outlook, you see this because the Cached Exchange Mode Sync Slider setting is configured to a value other than
    All. For example, the following figure shows a profile configured with Cached Exchange Mode and with the Sync Slider set to the default value of 12 months, which means Outlook saves the emails of the recent 12 months to local. If you set it
    to All, you will not see the message again.
    You can refer to this kb below to learn more:
    http://support.microsoft.com/kb/2733062/en-us
    Regards,
    Melon Chen
    TechNet Community Support

  • S_ALR_87012078 - Due Date Analysis for Open Items display changers

    Hi
    I need to change this reports( S_ALR_87012078 - Due Date Analysis for Open Items ) display type to column display. How can I do that. I thought of uesing GoTO> Colum display but it is inposible 'cos always they are in inactive mode even in the change mode. pls advice on this
    Thanx

    Hi
    did u try S_ALR_87012077
    Thank You,

  • Customer number needed in "GL a/c line item display" for customer gl?

    Hi SAP Experts,
    while running GL account line item display in FBL3N,customer number is not displaying against the gl accounts relating to customer reconcilation account or the gls relating to the customer line item entry.my clients need that in either ASSIGNMENT field(where presently showing the document entry date as defult) or in a different column.for that he even does not want to write any report.
    How can i solve this problem?
    Plz guide me.
    I need a quick response.
    Regards,
    Biswa

    Hi,
    Check If you are using the G/L account which is the reconciliation account for your customer, then it is possible to display the special field1-U_KUNNR and it is ALSO possible to add Sort Key 031 into the Assignment field of that account in FS00 tab Control Data and therefore to display your 'Customer no.' in the Assigment field in FBL3N.
    If you are using the G/L account which is the offsetting entry or the other side of the posting, then it is NOT possible to display your 'Customer no.' neither in the Assignment field, nor adding the
    special field 1-U_KUNNR to the display. At this stage, notes 112312 and 217189 may be of use, which enable you to use a Business Transaction Event to populate offsetting account information.
    I hope these helps.
    Regards
    Ravinagh Boni

  • Line items for the PO are not automatically displayed

    Hi all,
    When attempting to post an invoice against PO, the line items for the PO are not automatically displayed. When we went to the Listing of PO's and brought this up, we noticed under the "invoice"tab that the: Invoice Receipt & GR-BsdIV is checked.
    need your help
    Thanks
    Fayaz

    Hi,
    Can you check delivery complete indicator in PO. It is in PO item details delivery tab.
    In MIRO transaction, select the  tab Purchase order/scheduling agreement, enter PO number and press enter.
    Right hand side select the layout all information .
    Regards,
    Chandra

Maybe you are looking for