Hi i need help in worflow in sap EDI

i sap gurus
i have  two issues in sap workflow .can u guys help me out in sorting out these issues.
1) When checking out/reserving a work flow item(TC: SBWP), there is no option to display who has it checked out.  When the workflow item is reserved, it is removed from everyone elses workflow list.  It can happen that people put these back at the end of the day, when there is no time to work on them any longer.  I<b>t would be a great help to have visability to all items even if they are reserved, and to have a name associated with it to see who has it reserved.</b>
2) In the "Change Layout" option of work flow (TC:SBWP), there are dynamic fields that look like they could be assigned.  Perhaps one of these could be used for the person doing the reserving, but in addition to this, i<b>t would be very helpful if customer number could also be populated in one of these fields.  This would allow sales specialist to pick up work flow items by customer.</b>
thanks in advance
sam sd

hi samsd,
post it in "bmp and workflow"
SAP Business Workflow

Similar Messages

  • Need help in installing the SAP Jco

    Hi All,
    I'm installing HP Change Impact analysis on Quality center and bring SAP in Sync later.One of the installtion step isto install the SAP JCo(Java connector ).I have installed the SAP Jco and on starting the CIT Server..I get a exception messsage
    "SAP Jco is not installed;noclassdeffounderror com\sap\mw\jco\Jco "
    Can anyone help in installing the SAP Jco successfully.
    Thanks,
    Venky

    Hi venkatesh,
    To create JCO follow the procedure.
    Logon to portal>content admn>create JCO destination-->Here u have create Jco for ?Model data and Metadata.
    steps invovled in it.
    1.      Define general data
    2.      Define the J2EE cluster
    3.      Define the data type and connection type
    4.      Define the application server or message server
    5.      Define the security settings.
    Please follow the link for more information.
    http://help.sap.com/saphelp_nw04/helpdata/EN/3a/3b1b40fcdd8f5ce10000000a155106/content.htm
    Regards,
    srikanth

  • Hi i need help in  sort in out issue in worflow in sap EDI

    i sap gurus
    i have two issues in sap workflow .can u guys help me out in sorting out these issues.
    1) When checking out/reserving a work flow item(TC: SBWP), there is no option to display who has it checked out. When the workflow item is reserved, it is removed from everyone elses workflow list. It can happen that people put these back at the end of the day, when there is no time to work on them any longer. <b>It would be a great help to have visability to all items even if they are reserved, and to have a name associated with it to see who has it reserved.</b>
    2) In the "Change Layout" option of work flow (TC:SBWP), there are dynamic fields that look like they could be assigned. Perhaps one of these could be used for the person doing the reserving, but in addition to this, i<b>t would be very helpful if customer number could also be populated in one of these fields. This would allow sales specialist to pick up work flow items by customer.</b>
    thanks in advance
    sam sd

    Hi Sam,
    As far your first requirement concerned,I don't think it is possible.
    because reserveing of workitem is to prevent other users from executing it.
    So you can't just have the workitems only for display in other users inbox even after someone else reserved it.It defeats the own purpose.
    I would suggest you to go for a report kinda tool where you can actually help the users have the visibility.
    About second one,you use tcode SWL1 to define the dynamic columns and enter the container elemet ther to have the customer number displayed.

  • Need Help to Move in SAP World

    Hello Friends,
    Need your Help. Some of my Friends working in Banking line , they are very much intersted to move in SAP world.
    Can you please guide me how can i help them.
    Thnaks in Advance !!
    Vanu.
    Edited by: Vandana Singh on Dec 21, 2010 9:29 AM

    Lany, my current ADC environment is in Physical server, so its not possible for me.
    Kindly help me to get answers for the below Questions,
    hope I have to assign new IP to new ADC and point he clients accordingly.
    FSMO role I can check using the netdom query
    fsmo  command, if something is there I will move to new ADC
    Doubts: 
     DHCP, DNS, Global catalogue, EFS, TSL and WINS are the other area i need some more clarity.
    How to check whether the above roles are enabled on DC or not and give me some more insight on those
    areas please?

  • HI GURUS NEED HELP in CODING in SAP SCRIPT

    Hi Gurus,
    here i hav some complication for displaying data in output of a sap script form .In output I have to show characteristics(ysd-characteristics,,,, ysd is a customized tablehaving fields vbeln, matnr, posnr, characteristics......) of material with respect to sales document number(vbap-vbeln).
    I am  below SELECT statement for arry fetching----
    select distinct
    ysd~vbeln
    ysdposnr ysdmatnr
    ysd~characteristic
    vbapposnr vbapmatnr
    vbap~arktx
    vbap~kwmeng
    into corresponding fields of table itab1
    from ysd_famd_chrctcs as ysd inner join vbap
    on ysdvbeln = vbapvbeln
    and ysdposnr = vbapposnr
    where vbap~vbeln = p_vbeln.
    For data to be write in the form's output im using below code
    LOOP AT itab1.
    PERFORM write_form USING 'ITEM_LINE' 'SET' 'BODY' 'MAIN'.
      ENDLOOP.
    using perform write_form i am calling function module " WRITE_FORM" for script.
    After looping itab1 it is giving output like below.
    -->>
    Sr | MatNum | MatDesc | Charecteristics | Quantity
    no |              |                |                       |
    1 | 00000012 | CCslab | Moisture | 50
    1 | 00000012 | CCslab | over size | 50
    1 | 00000012 | CCslab | under size | 50
    1 | 00000012 | CCslab | phos percnt | 50
    1 | 00000012 | CCslab | chrome | 50
    1 | 00000012 | CCslab | Ferrous | 50
    but I want the output should be like below
    -->>
    Sr | MatNum | MatDesc | Charecteristics | Quantity
    no |              |               |                        |
    1 | 00000012 | CCslab | Moisture     | 50
    over size
    under size
    phos percnt
    chrome
    Ferrous
    I tried using DELETE ADJACENT after PERFORM write_form USING 'ITEM_LINE' 'SET' 'BODY' 'MAIN'....... but it is deletin all characteristics from output.
    I tried using below format ->>>
    At new arktx
    PERFORM write_form USING 'ITEM_LINE' 'SET' 'BODY' 'MAIN'.
    ENDAT.
    but it is keeping data upto arktx sfter that it is showing "*********" for characteristic field and all other remaining field.
    I want to know what approach i should use before/after PERFORM write_form USING 'ITEM_LINE' 'SET' 'BODY' 'MAIN'.
    to get my output like above
    pls help...
    Regard
    Saifur rahaman

    Thnx all for your kind co operation
    i hav solved this problem just adding following code before ferform write_form using '' 'SET' 'BODY' 'MAIN'
    DATA : lv_matnr LIKE mara-matnr.
      DATA : itab2 LIKE itab1 OCCURS 0 WITH HEADER LINE .
      DATA : itab3 LIKE itab1 OCCURS 0 WITH HEADER LINE .
      DATA : index TYPE sy-index .
      LOOP AT itab1 .
        AT NEW matnr .
          APPEND itab1 TO itab2 .
        ENDAT .
      ENDLOOP .
      LOOP AT itab2 .
        READ TABLE itab1 WITH KEY matnr = itab2-matnr .
        IF sy-subrc = 0 .
          index = sy-tabix .
          index = index + 1 .
          APPEND itab1 TO itab3 .
          LOOP AT itab1 FROM index .
            IF itab1-matnr <> itab2-matnr .
              EXIT .
            ENDIF .
            CLEAR :  itab1-posnr ,
              itab1-matnr ,
              itab1-arktx ,
              itab1-kwmeng .
            APPEND itab1 TO itab3 .
          ENDLOOP .
        ENDIF .
      ENDLOOP .
      REFRESH : itab1 .
      itab1[] = itab3[] .
      LOOP AT itab1.
        PERFORM write_form USING 'ITEM_HEADER' 'SET' 'TOP' 'MAIN'.
        SHIFT itab1-posnr LEFT DELETING LEADING '0'.
        PERFORM write_form USING 'ITEM_LINE' 'SET' 'BODY' 'MAIN'.
      ENDLOOP.

  • Need help On Triggers/Change pointers in SAP

    Hi Experts,
    I Need help On Triggers/Change pointers in SAP.
    I have a requirement  as soon as an entry is created in one of the  Standard SAP  table it should check against my Ztable and update and create the corresponding entry in another Ztable.
    Can some one help me out on this with the syntax and how to do it

    Hi,
    Check whether you have any enhancement option (BADI, user exit, Customer enhancement etc) in the program which is used to save the data in the SAP standard table. If so, then try to write your code in that appropriate enhancement.

  • Need help in developing mobile app using SAP

    Hi
    I have a team of Android, iOS and Windows developers and we are planning to start developing mobile using SAP and SAP Fiori. Need help in getting started with SAP mobile development like i need plugins and development kits that i need to use.
    Thanks
    Ram

    Hi,
    What help needed ?
    For SAP Fiori  Use this link : http://scn.sap.com/docs/DOC-41598
    For SAP Fiori Installation and Configuration Steps: http://scn.sap.com/community/mobile/blog/2014/06/10/fiori-technical-installation-and-configuration-of-one-app-from-a--z
    Which Software you will use to  develop Mobile Apps in SAP Platform ?So that i will suggest what to do ..
    Regards
    Lokesh

  • Need help with SAP SD module

    Hi i am new to this forum, i need help with SAP SD module. Can you please provide me pointers or links to get started SAP SD module and start facing the interviews.

    Hi Aditya,
    For understanding the SD module itself, the link - http://help.sap.com/saphelp_erp2005/helpdata/en/8c/df293581dc1f79e10000009b38f889/frameset.htm is the ultimate one.
    Again you can also refer to the mateial "Implementing R/3 S&D BY GLYNN C.WILLIAMS".
    For Cracking interview, You can refer to "SAP SD Interview Questions, Answers, and Explanations By: Jim Stewart" which is available in the market.
    Regards,
    SARTHAK

  • SAP BPC - Formation - Need help

    Hello everybody,
    First of all, I want to thank all people who will at least read my thread. I'm a junior consultant who need help on SAP BPC (Business Planning and Consolidation) - ex. OutllookSoft. So, if you have some tutorials, some documents, something that can help me to learn how to use SAP BPC, I will be very grateful to you. Up to now, I just read the "Help" of SAP BPC (OutlookSoft 4.2.419), the version I have to use. But it is just a technical help, I have nothing about the terms used (what is an application, a member, etc.), the philosophy of the tool, etc. To finish, if someone, from Paris (in France) is using this tool, I can pay him or her to form me on this tool.
    Thanks a lot.
    Best regards, Ivan.
    PS: sorry for my English...

    Hi,
    You can go to
    http://help.sap.com/
    And navigate to SAP Business Objects -> EPM Solutions -> Business Planning and Consolidation.
    Under the heading, SAP BPC 5.0, click on "Application help and Installation Guide".
    This will take you to the document repository in SAP Marketplace. You will get the documents which will provide you with the basic understanding of the tool.
    However, you will need S-user ID to ligon to SAP Marketplace.
    Hope this helps.

  • SAP App server on windows uses paging not RAM... need help

    Experts,
    We have installed a separate SAP application server on windows 2003 service pack 2. Our server has 25 GB Ram and 2 processors each with 4 cores. We have set the extended memory of SAP to 5 GB. Now, the problem is that: when we start the SAP instance on this machine then it is taking memory from Paging not From RAM. We have paging set to 20 GB and if we examine the server then our RAM is free and paging is in used by SAP instance. Our SAP version is ERP 6.0 and NW 7.01
    Please guide and help me so that SAP instance on our windows machine utilize RAM not paging.
    Thanks,,
    Yasir

    I highly suggest upgrading to Windows 2008 (R2).
    Windows 2003 has known issues with huge amounts of shared memory which can't be fixed in that old OS. You may decrease this effect with
    Note 1009297 - Windows Server 2003 Family: High Paging Rates
    The effect is also indirectly described in
    Note 1316558 - System hang situations on Windows Server 2003
    Upgrade to Windows 2008 (R2), Windows 2003 is almost 10 years old. It's like you would use Windows 98 on a todays PC.
    Markus

  • Want to change carrer into SAP? need help

    Hello,
    I want to make my carrer into SAP Techno - Functional area, myself having 8 years experience into j2ee based technologies.
    Could you please help me out which SAP module I will go for.
    Rgards
    Pyogesh

    Hi Pyogsh,
    It would be great if you move to the middle-ware of SAP. Your java knowledge helps you to become an expert in this. SAP PI is used as the middle ware.
    Regards
    Harisankar

  • Need Help to create new screen for RF Sapconsole

    Hi Guru's
    I'm new on RF (but some years in ABAP) since last week.
    I need help to create new screens for RF (SAPLLMOB).
    Can someone explain me the procedure to create screen (with ABAP code after) or perhaps someone have an exemple (simple or not) ?
    I have to develop 2 new screens with really few time.
    And, another subsidiary question :
    how SAP can transfert information between the flash gun and the screen i have developped.
    Is there some code to add to enable this functionality or it is include in SAPLLMOB on standard fields ????
    It's a new strange world for me today...
    Many thanks to everyone who can explain me
    Alain

    hi,
    I am facing this problem as well. Is there any reference to create the new screen?
    Hope someone can help! Thanks!
    Regards,
    Darren

  • Need help in implementing a note

    Gurus ,
      i need your help in implemnting the SAP NOTE
    "873422 - Error when sending an e-mail"
    I am not suer how to proceed to implement the correction speified in that note .
    it would be of great help if any body can explain me in brief  to implement atleast one correction in that note

    Hi Susin,
    The first thing for Note 873422,
    "You have created e-mails from Audit Management. The system automatically attaches a link to the display of the audit object being sent. When you send an e-mail via SAPconnect, the following error occurs: XS 829 Internal error: SO_OBJECT_MIME_GET Exception: 2."
    Are you getting this symptom in your system? and you want to apply the correction??
    After applying the correction, if the prerequisite mentioned in note 530932 is not met during sending mail.. then
    simply the link will not be attached. but mail will be sent.
    you have to apply the correction of the note using SNOTE or manually apply note by download/upload.
    For how to apply a note using SNOTE you can follow the help guide
    http://help.sap.com/saphelp_nw70/helpdata/EN/b8/3cf839fd35384de10000000a11402f/frameset.htm
    Regards,
    Debasis.

  • Need help in building a utility...?

    Gurus,
    I need to build a dynamic selection screen for a utility that will extract data from a legacy database. I am not sure how to do it....I have the design in mind but will need help from you experts in the implementation.
    So i need to have to twol radip buttons on the selection screen such that when one radio button is clicked then few other select options come on the screen and when the other radio button is selected then different select options come on the screen.
    Once the user any of these two radio buttons and fill in the respective values for the parameters, then i have to fire native SQL queries on the legacy SQL database.
    Any suggestions...
    First i need to code the dynamic selection screen ....Your help will be appreciated...
    Thanks

    Please have a look at below link. May be helpful to you...[Dynamic Selection Screen|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a07a330f-126c-2910-c684-d2a45f0f37dd]
    I hope it helps.
    Best Regards,
    Vibha

  • Need help, MMC tree got deleted, very urgent.

    Hi,
    My sap MMC tree, got deleted in the server. I have been trying to restore since 2 days and couldnt succeed, please help me.
    1) i have uncared the sapmmc.sar from   Kernal\NT\I386\MMC\sapmmc.sar file
    2) i got about 7 files, in which there is one sapmmc file i have tried to double click it, n check but no go.
    3) i also tried to run the Sapstartsrv.exe file and fill in up the values in pop up window. & filled up the following values :-
                        SID: DEV
                        NR: 00
                        StartProfile:  (entire start profile path given)
                        user: devadm
                        passwd; (given)
    - but it says "the account name is invalid or does not exist or the password is invalid for account name specified"/
    - no go in both the cases.
    Please need help very urgent.
    Regards,
    Satish.

    siva,
    I am getting same error since 2 days
    SID: DEV
    NR: 00
    Start Profile: (entire start profile path)
    User: <hostname>/devadm
    passwd: ****
    Error:
    cannot install service
    create service failed:421
    The account name is invalid or doesnot exist, or the passwd is invalid for the account name specified.
    Edited by: satish c on Jun 4, 2008 11:12 AM

Maybe you are looking for

  • How do I alter the html in the simple form contact us so it will upload and function on Bluhost?

    All representatives are actively assisting other customers. Your estimated wait time is 7 minute(s) and 0 second(s) or longer. Thank you for your patience. All representatives are actively assisting other customers. Your estimated wait time is 6 minu

  • Error invoking a custom component in a Process.

    Hi, I've build a custom component that uses Output ES services. If i run it as a Java app all runs well, he generates the output pdf files and output report .xml file. If i import it as a component into Livecycle ES and use it in a process i get the

  • SCOM and SharePoint 2010 Add-In for Dashboards (Issue)

    I have an environment with SCOM 2007 R2, all working fine. I have installed ans new test server to integrate SCOM and SahrePoint 2010. On this server I have installed Visio 2010 (Yes, I know, never install Visio in a server, but this ins juts for tes

  • HELP ME ON THIS Auth_check --- FM

    Can any one help in authorization object in HRABAP for the infotype 2 (personal data). Pl come to chat [email protected] It’s very urgent requirement for me. Thanks in dvance.

  • SAP Portal custom themes not appearing in 'Personalize' link

    Hi. I am trying to make customised themes available to my users through the 'Personalize' link in the masthead. I have successfully customised the Personalize function so it now includes only the ability to choose themes - all other forms of personal