Requisitioner name to be displayed instead of WF-BATCH

Hello All,
I am facing a strange issue with my FIORI /Workflow approve requests implementation.
I am trying to implement SAP FIORI for Purchase requisition Header release using Approve requets APP. It was successful. The functionality is working fine.
Now the user the wants the name of the Purchase requisitioner to be displayed in the FIORI page as follows.(The below screen shot is from or internal lab system).
But when tried replicating the same in our client system, we are getting the WORKLFOW SYSTEMinstead PR Requisitioner name as below.
I have checked with all the authorizations but ended with no clue.
Thanks for your inputs in advance.
Siva Krishna

Hello Jocelyn,
thanks for the response. Below are the two screen shots for the chronolical order.
Lab System.
Client system:
If the node 21 " PR_RELEASE" ( similar to PR_REl in lab system) can be made user name instead of WF- BATCH, I hope the issue might be resolved. No extra settings were done in Labsystem for this.It is a simple IDES system.
However I would suggest as a first step, you let us know if this is a custom or standard workflow?   Yes it is custom workflow.
Advance with Dialog-  Has not been enabled in both the systems.
The fiori APP i am using for this is Approve requests application.
We even tried Modifying the SAP UI5 library using eclipse. But of no lead.
Thanks,
SK

Similar Messages

  • Requisitioner name to be displayed instead dof WF-BATCH

    Hello All,
    I am facing a strange issue with my FIORI approve requests implementation.
    I am trying to implement SAP FIORI for Purchase requisition Header release using Approve requets APP. It was successful. The functionality is working fine.
    Now the user the wants the name of the Purchase requisitioner to be displayed in the FIORI page as follows.(The below screen shot is from or internal lab system).
    But when tried replicating the same in our client system, we are getting the WORKLFOW SYSTEM instead PR Requisitioner name as below.
    I have checked with all the authorizations but ended with no clue.
    Thanks for your inputs in advance.
    Siva Krishna

    Hello Jocelyn,
    thanks for the response. Below are the two screen shots for the chronolical order.
    Lab System.
    Client system:
    If the node 21 " PR_RELEASE" ( similar to PR_REl in lab system) can be made user name instead of WF- BATCH, I hope the issue might be resolved. No extra settings were done in Labsystem for this.It is a simple IDES system.
    However I would suggest as a first step, you let us know if this is a custom or standard workflow?   Yes it is custom workflow.
    Advance with Dialog-  Has not been enabled in both the systems.
    The fiori APP i am using for this is Approve requests application.
    We even tried Modifying the SAP UI5 library using eclipse. But of no lead.
    Thanks,
    SK

  • My name is displayed instead of my publishing company's name......

    My name is displayed instead of my publishing company's name for my books in iBookstore. I cannot find where to change it in iTunes Connect.
    Any suggestions (besides opening a ticket)?

    Best to put that type of question to your legal counsel, I think.
    Ken

  • Display a file name in th URL instead of the procedure name

    Hi ,
    I’ve created a Portlet that would show a word doc stored in a blob when a user clicks on a link. However only the procedure name that downloads the word document from the BLOB appears in the URL but not the actual file name. Is there a way to show the actual file name in the URL instead of the PL/SQL procedure name ??

    Hi Samer_asn,
    I am trying to do exactly what you did.
    Can you tell me how you could retrieve the word doc from blob and show it in a portlet when a user clicks on a link
    Thanks in advance
    Jay

  • Image display: instead of an image, there is a "picture placeholder" icon

    Hello everyone!
    I'm afraid I need some assistance. As I've already indicated in a thread title, I have problems while trying to display an image stored within the database. I read zillion threads here on OTN, searched the Internet, but I can't make it work. More or less, it comes to what Denes Kubicek provided [url http://htmldb.oracle.com/pls/otn/f?p=31517:64:850093673123067]here
    Tools I use are Oracle 10g XE database (10.2.0.1.0) and Application Express (3.2.1.00.10).
    There's a table that contains information about certain products (such as printer toners, cartridges, CD media etc.). This is its description:
    SQL> desc pm_materijal
    Name                          Null?    Type
    ID                            NOT NULL NUMBER
    IDG                                    NUMBER
    SIFRA                                  VARCHAR2(30)
    SIFRA_KRATKA                           VARCHAR2(30)
    MODEL                                  VARCHAR2(30)
    NAZIV                                  VARCHAR2(255)
    NAPOMENA                               VARCHAR2(255)
    FILE_NAME                              VARCHAR2(200)
    MIME_TYPE                              VARCHAR2(255)
    BLOB_CONTENT                           BLOBOne of its records looks like this (other column values are unimportant) (columns are formatted so that they fit a single line):
    SQL> select id, naziv, file_name, dbms_lob.getlength(blob_content) len
      2  from pm_materijal
      3  where id = 64;
            ID NAZIV                FILE_NAME                                    LEN
            64 CD recordable 1/50 Now I'd like to attach an image to those CDs.
    In my Apex application, I created an item (on a page 7) whose name is P7_BROWSE (Display as "File Browse") - it is used to browse directories for files (images, actually). In order to support table record updating, I created a Process (Process point: On submit - after computations and validations).
    if :p7_browse is not null then
       update pm_materijal set
         (mime_type, file_name, blob_content) =
         (select
            mime_type, name, blob_content
            from wwv_flow_files
            where name = :p7_browse
         where id = :p7_id;
       delete from wwv_flow_files
         where name = :p7_browse;
    end if;It seems that it works OK, because - once I select an image (it is a JPG file, its size is 116 x 116) and push the "Apply Changes" button - the result is as following:
    SQL> select id, naziv, file_name, dbms_lob.getlength(blob_content) len
      2  from pm_materijal
      3  where id = 64;
            ID NAZIV                FILE_NAME                                    LEN
            64 CD recordable 1/50   F477411270/cd_50_komada.jpg                 2111           My next step was to create a stored procedure which will be used to display images:
    SQL> create or replace procedure image_display (p_id in number)
      2  as
      3    l_mime        varchar2 (255);
      4    l_length      number;
      5    l_file_name   varchar2 (200);
      6    l_blob        blob;
      7  begin
      8    select mime_type,
      9           blob_content,
    10           file_name,
    11           dbms_lob.getlength (blob_content)
    12      into l_mime,
    13           l_blob,
    14           l_file_name,
    15           l_length
    16      from pm_materijal
    17      where id = p_id;
    18
    19     owa_util.mime_header (nvl (l_mime, 'application/octet'), false);
    20     htp.p ('Content-length: ' || l_length);
    21     owa_util.http_header_close;
    22     wpg_docload.download_file (l_blob);
    23  end image_display;
    24  /
    Procedure created.As suggested in a few OTN threads, I did this too (although I don't quite understand WHY, as I created the procedure in a schema I use in Apex; there are no other users involved). Anyway: I thought that it won't do any harm (but it didn't do any good either).
    SQL> grant execute on image_display to public;
    Grant succeeded.
    SQL> create public synonym image_display for radni.image_display;
    Synonym created.Back to Application Express: I created a Reports Region (Type: SQL Query). Its source is :
    select
      id,
      file_name,
      mime_type,
      dbms_lob.getlength(blob_content) len,
      '<img src="#OWNER#.image_display?p_id='
             || NVL (ID, 0)
             || '" height="'
             || 120
             || '" width="'
             || 120
             || '" />' image
    from pm_materijal
    where id = :P7_IDFinally, run the page! Reports region contains a single record which displays information I selected in SQL*Plus (so it seems that query DOES return something, and - I'd say that it is correct), but - instead of an image - there's an "invalid (broken) image" icon (you know, a small white rectangle with a red <font color="red">x</font>).
    I can't figure out what I did wrong. It should work, but it doesn't. Could someone, please, point me to the right direction?
    Regards,
    LF

    Patrick said: specify your schema name instead of the #OWNER# placeholder
    I said: while I was trying to make it work, I used "schema_owner.procedure_name" notation too but that didn't help eitherOracle user name is "RADNI" (the one I used to create objects, I was connected to it in SQL*Plus - all my previous copy/pastes were taken while connected to that user).
    So I tried with
    - <img src="radni.image_display?p_id=...   => didn't work
    - <img src="RADNI.image_display?p_id=...   => didn't work
    - <img src="image_display?p_id=...         => worked
    {code}
    I just started using Application Express so, basically, every day I discover something new. I purchased a book (based on Apex 3.2) so I thought that I'd rather stick to it until I +get a feeling+ and then, hopefully, move on to a higher version.
    By the way, looking forward to see you on HrOUG in two weeks!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Image with foreign characters in name won't display

    I have an image on my drive whose name has foreign characters ("c�pia de frente.jpg"). To display the image my JSP reads the image name from the database and generates the following html:
    <img src="../pictures/c�pia de frente.jpg">The page then displays a broken image icon for this image. Images in the same list which do not have foreign chars get displayed accurately. When I choose "show image.." in my browser I see that the image name has been rewritten into the following: c%C3%B3pia%20de%20frente.jpg. The rewriting that will display the image is instead c%F3pia%20de%20frente.jpg. I found the correct rewriting on another of my JSP where the image with the foreign chars actually gets displayed correctly although the code to generate the html is the same on both pages and looks something like this (simplified):
    <logic:iterate id="listelement" name="list" property="rows" scope="request" type="org.apache.commons.beanutils.DynaBean">
    <%         
    out.write("<img src=\"../pictures/"+listelement.get("name").toString()+"\">");
                             %>  <br>                     
                            </logic:iterate> Every image that doesn't have foreign chars in its name gets displayed accurately but images with foreign chars in their names won't display. What am I doing wrong?
    Thanks
    Niklas

    Thanks, but it doesn't seem necessary to replace foreign characters. It works without replacing in one place but not in another which is confusing. I think it is something with the enconding but can't see what the difference is between the working and non-working code. In both pages I have put <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">I'd greatly appreciate any more suggestions to solve this problem.

  • Who'sWho Off Phone number is been displayed instead of Offi email ID

    Hi Experts,
    Few users of our portal are facing the below issue in standard Who'sWho application.
    Users search for their name and the application displays it.
    But there is some data inconsistency as the Official Phone number is been displayed instead of Official email ID.
    At the back end the data is maintained properly.
    When the official phone number is not maintained at R/3 the application displays the email id correct.
    But once the official phone number is update the system picks the phone number as email id.
    Why does it happen only with selected users ?
    how can i solve this ?
    Please help.
    Regards,
    Sanjyoti.

    hi,
    I found out that there is no RFC which is called instead there is standard infoset query which is fired.
    The name of the query is "/SAPQUERY/HR_ESS"
    how shall I debug this query please help as I have not worked on it before.
    The problem is not seen in quality portal.
    Is it possible to create a request for the standard query and send it.
    Regards,
    Sanjyoti.

  • Data being Displayed while the Account Name not getting Displayed in FR

    Hi,
    We are facing a strange issue when is user is trying to run a Hyperion Financial report. The data and Entity Name is being displayed whereas the Account name is not being displayed for a particular entity. The user has access to the Entity and accounts. Any Clues ??
    Thanks,
    Addy
    Edited by: Addy on Jan 11, 2011 5:15 PM

    The first thing that pops to my mind is does the format of the cell have Replace checkbox checked with a blank description. thus any results coming back will display as blank.
    Also the customized header is check and it is showing blank.
    A quick test if you have Smart View is can the user access the same data? if yes then the report has a filter of some sort, if the user cannot access the data in smart view, there is a security problem perhaps with the data
    JTS

  • I am facing issue in Receiving incoming calls, Name not getting displayed though the same has been saved in my phone book!! I have done sync from Windows contacts.. please help if some1 knows how to rectify the issue...

    I am facing issue in Receiving incoming calls, Name not getting displayed though the same has been saved in my phone book!! I have done sync from Windows contacts.. please help if some1 knows how to rectify the issue...

    Has your carrier been having issues with Call Display? Do the telephone numbers come up when people call, or does it just show 'Unknown Number' or 'Blocked' ?

  • The portlet name is not displayed in the portlet drop down list ?

    Hi,
    I use Sun Java System Portal Server 6 2005Q4 for windows 2000 server , use the following command to deployo portlet,
    I am not sure if I successfully deploy the portlet?
    pdeploy deploy -u amAdmin -w amadmin -p amadmin -d "cn=amldapuser,ou=DSAME Users,dc=icheng,dc=com" C:\Sun\PortalServer\tmp\portlet\portletsamples.war
    The message I got after execute the pdeploy command is =>
    Deploys the portlet war file and inserts the provider into display profile..
    OPTIONS
    --help Help message (false)
    -u --runasdn UID Bind DN (none)
    -w --password Password (none)
    -p --wc_password Password for WebContainer's Admin (none)
    -i --instance WebContainer's Instance into which the war file is to be deploye
    d (*)
    -d --dn LDAP DN of the target node (*)
    -g --global Global display profile (false)
    -r --rolesfile File containing the DSAME and portlet role mapping (*)
    -f --userinfofile File containing the user info mapping (*)
    -v --verbose Generate debug messages (false)
    -V --version Generate version information (false)
    -l --locale Locale information (en_US)
    OPERAND
    Specifies a path to the war location.
    Deploying to IWS
    Is this mean that successfully deploy the portlet ?
    After I deploy the portlet, I login to Access Manager, select the "service" from view, click the portal desktop,
    click "Manage Channels and Containers", click the "New Portlet Channel...", then click the portlet drop down list,
    the portlet name is not displayed in the portlet list.
    How can I make the portlet name displayed in the portlet drop down list ?
    Can someone help me ?
    Thanks!

    Hi
    According to your description, since this is SQL Server forum, as Olaf Helper’s post, could you get the correct result if you execute the following query in SQL Server Manager Studio (SSMS)?
    select UserName from aspnet_Users where UserId in(select FreindId from myFreinds where UserId in(select UserId from aspnet_Users where UserName = '<your typed name>'))
    If you cannot get the correct result in SSMS, I recommend to check the Transact-SQL statement. Apart from the error message, we also need to know the table structure, data, join relationships between tables for further analysis.
    However if there is no problem in SQL Server query, it will be an issue that regards ASP.NET and website deployment. I suggest you to post the question in the ASP.NET forums at
    http://forums.asp.net/ . It is appropriate and more experts will assist you.
    In addition, there is detail about listbox control in asp.net. You can review the following links:
    How to Bind/Load/Fill ListBox with Sql Server Database in asp.net:http://www.webcodeexpert.com/2013/07/how-to-bindloadfill-listbox-with-sql.html#.U5f75_6KCM9
    How to get multiple selected value in ListBox control - ASP.NET using C#:
    http://www.dotnetfox.com/articles/how-to-get-multiple-selected-value-in-listbox-control-Asp-Net-using-C-Sharp-1047.aspx
    Thanks
    Lydia Zhang

  • Text Message # displays instead of Contact

    Text message contact name is not displaying... only their number.  Despite having the contact name and number in "contacts".  Also, i have confirmed the number is the exact same in contacts book as it is in the received text message.  I am on Sprint and iPhone4S.
    Any ideas/recommendations?

    Even just going back to the list of converstatoins (button in top left) you will not get alert sound while in the App.  Again, it assumes you are looking at it and seeing the indicators pop up for number of messages etc for each conversation.
    You have to be out of the app for it to give a sound. 
    If you are not expecting a msg right away then why stay in it?  Press home and go back to home screen and wait.

  • In query, turkish column name is not displayed correctly?

    In my characteristic and key figure infoobjects , i used turkish characters for explanation but in Bex they are displayed as illegal characters for column names.
    How can i correct this or where would i make a mistake?
    Thanks.

    Hi Tuncer,
    I am dealing with the same problem you had.
    Turkish characters in the column names, infocube names are not displayed although in BW turkish characters are displayed properly. Did you solve your problem about Turkish characters in column names.
    If you could solve, I would be glad to hear your solution.
    Thank you.
    Mehmet Cekdemir

  • I have only a single texbox.i want to display names , date,priortiy in the same textbox when i typed @ names should be display names like when u type comment in facebook for particular person it will display name. when i type ! date should be display and

    i have only a single texbox.i want to display<big style="margin:0px;padding:0px;border:0px;color:#111111;font-family:'Segoe
    UI', Arial, sans-serif;line-height:normal;"> names , date,priortiy </big>in the same textbox <big
    style="margin:0px;padding:0px;border:0px;color:#111111;font-family:'Segoe UI', Arial, sans-serif;line-height:normal;">when i typed @ names should be display names</big> like
    when u type comment in facebook for particular person it will display name. when i type ! date should be display and when i type * priority should be display in same textbox like
    example <big style="margin:0px;padding:0px;border:0px;color:#111111;font-family:'Segoe UI', Arial, sans-serif;line-height:normal;">@
    names !today date or tomorrow date etc * priority high,low ,medium etc</big>

    This is my first time posting here, so I'm sorry, I re-read my post several times and honestly did think I provided enough information, but you're right, it wasn't the right kind. So please (continue to) bear with me, I'm really not trying to be ignorant. I honestly assumed the issue was something I was doing wrong in Bridge, nothing to do with my computer specs.
    I am using a late-2008 Macbook, running Yosemite 10.1.1 (screenshot below)
    On the Mac I am using Bridge CC 6.1.1.115 and Photoshop CC 2014 (2014.2.1 release, 20141014.r.257 x64)
    Here is a link to the System Info from Photoshop on the Mac
    Here is a screenshot of my System Overview on the Mac
    Here is a screenshot of my Photoshop performance preferences on the Mac
    I am also using a Dell desktop with Windows 8, running Photoshop CC 2014 (2014.2.1 release, 20141014.r.257 x32) and Bridge CC 6.1.0.116 x32 (on a separate CC account with separate files that I don't try to sync or anything)
    Here is a link to the System Info from Photoshop on the Windows computer.
    Here is a screenshot of the system overview on the Windows
    Here is a screenshot of my Photoshop Performance preferences on the Windows computer
    I work with jpg, psd, ai, svg, and pdf files. Most of my stacks are three different file types of the same image, usually jpg, psd/ai, and pdf.
    I have not recieved any error messages
    I am not having issues opening raw files, I am not having printing issues, I have listed the troubleshooting steps I have taken.
    Is there any information you need that I missed? I'm trying not to be a dingus, but I'll have to ask you to be patient with me in the meantime. I haven't ever looked up half the hardware/software details that were suggested and I don't know how to off the top of my head, so I provided what I already knew how to

  • Configuring weblogic 8.1 to hide the jsp file name to be displayed

    Hi,
              I am having problem with configuring weblogic 8.1 to display the jsp file name in the address bar. Please have a look at this link for a description of my problem
              http://theserverside.com/news/thread.tss?thread_id=28381
              Any help would be great.
              Thanks
              Uma

    You should use a controller servlet which forwards to the correct JSP. Then the JSP name is not displayed in the address bar.
              With 8.1 you simply could use a Java pageflow to link several JSPs.
              Generated URLs in the browser will look like
              http://localhost:7001/sampleportal/newpageflow1/test.do;jsessionid=BFssBfmdv4Ly1GDG7gJNZH1d3s2ShJG2qpG4KJJMVvSf0JdyG2nQ!1118879021

  • Camera icon displays instead of Trash-Can upon selecting a message in the conversation

    iPhone 5
    iOS 8
    Camera icon displays instead of Trash-Can upon selecting a message in the conversation and clicking on 'Copy/Speak/More...'
    After restart, now it shows Trash-Can again.

    Many were saying that you just needed to turn your phone off and turn it back on after upgrading to ios8.1, so that you could then delete single messages.
    It worked when I did it the first time, but today while sending text messages the trash can disappeared while I was trying to delete some messages.
    Any help would be greatly appreciated.

Maybe you are looking for