Regarding SAP - WM/IM

Can anyone of you kindly provide the information on where can we get lots of questions on SAP WM/IM modules (or) provide me with some interview questions, since i have my interview on monday
Thanks in advance and answers are higly rewarded
Thank you
Neha

Logical Name of Dataset
MM_WM_STOCK_TAKEOVER - The Logical file name of the data set.
This is maintained in the transaction FILE.
Then select Logical File Name Definition, Cross-Client and find MM_WM_STOCK_TAKEOVER.
Then double click the MM_WM_STOCK_TAKEOVER will show you the logical path which is GLOBAL_PATH default.
Then you select the Logical File Path Definition on the top and look for GLOBAL_PATH.
Then select GLOBAL_PATH and double click the Assignment of Physical Paths to Logical Path.
You will see Unix and Windows. Based on your environment, enter inside that.
There you can see the Physical Path for the location of the file.
If you want to change the default ones, create new ones and follow as per above. This is because the logical file names will be used by some objects. So it's better to create a new one
Structure of RLBES
Go to transaction SE11
Enter RLBES in the View.
So the data structure of the file should be created as per the structure.

Similar Messages

  • Help regarding SAP SCRIPT

    Hi!
      can any one help me regarding SAP SCRIPT. i unable to write a print program for sap script . can any one can send me sample code using ITCSY structure.
    Thanks in advance.
    Thanks & Regads,
    DurgaPrasad.k

    Hi,
    refer this to write print program:
    <b>The Print Program</b>
    Structure of a print program
    OPEN_FORM function
    CLOSE_FORM function
    WRITE_FORM
    START_FORM function
    END_FORM function
    CONTROL_FORM function
    The print program is used to print forms. The program retieves the necesary data from datbase
    tables, defines the order of in which text elements are printed, chooses a form for printing and
    selects an output device and print options.
    <b>Function modules in a printprogram:</b>
    When you print a form you must used the staments OPEN_FORM and CLOSE_FORM. To combine
    forms into a single spool request use START_FORM and END_FORM.
    To print textelements in a form use WRITE_FORM. The order in which the textelements are printed,
    is determined by the order of the WRITE_FORM statements. Note: for printing lines in the body, you
    can also use the WRITE_FORM_LINES function module.
    To transfer control command to a form use CONTROL_FORM.
    <b>Structure of a print program</b>
    Read data
    Tables: xxx.
    SELECT *
    FROM xxx.
    Open form printing - Must be called before working with any of the other form function modules.
    Must be ended with function module CLOSE FORM
    call function 'OPEN_FORM'.....
    To begin several indentical forms containing different data within a single spool request, begin each
    form using START_FORM, and end it using END_FORM
    call funtion 'START_FORM'.....
    Write text elements to a window of the form
    call function 'WRITE_FORM'.....
    Ends spool request started with START_FORM
    call funtion 'END_FORM'.....
    Closes form printing
    call function 'CLOSE_FORM'...
    OPEN_FORM function
    Syntax:
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
      APPLICATION                       = 'TX'
      ARCHIVE_INDEX                     =
      ARCHIVE_PARAMS                    =
      DEVICE                            = 'PRINTER'
      DIALOG                            = 'X'
      FORM                              = ' '
      LANGUAGE                          = SY-LANGU
      OPTIONS                           =
      MAIL_SENDER                       =
      MAIL_RECIPIENT                    =
      MAIL_APPL_OBJECT                  =
      RAW_DATA_INTERFACE                = '*'
    IMPORTING
      LANGUAGE                          =
      NEW_ARCHIVE_PARAMS                =
      RESULT                            =
    EXCEPTIONS
      CANCELED                          = 1
      DEVICE                            = 2
      FORM                              = 3
      OPTIONS                           = 4
      UNCLOSED                          = 5
      MAIL_OPTIONS                      = 6
      ARCHIVE_ERROR                     = 7
      INVALID_FAX_NUMBER                = 8
      MORE_PARAMS_NEEDED_IN_BATCH       = 9
      SPOOL_ERROR                       = 10
      OTHERS                            = 11
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    <b>Some important parameters:</b>
    FORM Name of the form
    DEVICE PRINTER : Print output using spool
    TELEFAX: Fax output
    SCREEN: Output to screen
    OPTIONS Used to control attrubutes for printing or faxing (Number of copies, immediate output....
    The input for the parameter is structure ITCPO.
    CLOSE_FORM function
    CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
      RESULT                         =
      RDI_RESULT                     =
    TABLES
      OTFDATA                        =
    EXCEPTIONS
      UNOPENED                       = 1
      BAD_PAGEFORMAT_FOR_PRINT       = 2
      SEND_ERROR                     = 3
      SPOOL_ERROR                    = 4
      OTHERS                         = 5
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Paramerters:
    RESULT Returns status information and print/fax parameters after the form has been printed.
    RESULT is of structure ITCPP.
    WRITE_FORM function
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
      ELEMENT                        = ' '
      FUNCTION                       = 'SET'
      TYPE                           = 'BODY'
      WINDOW                         = 'MAIN'
    IMPORTING
      PENDING_LINES                  =
    EXCEPTIONS
      ELEMENT                        = 1
      FUNCTION                       = 2
      TYPE                           = 3
      UNOPENED                       = 4
      UNSTARTED                      = 5
      WINDOW                         = 6
      BAD_PAGEFORMAT_FOR_PRINT       = 7
      SPOOL_ERROR                    = 8
      OTHERS                         = 9
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Some important parameters:
    ELEMENT Specifies which textelement is printed
    WINDOW Specifies which window is printed
    TYPE Specifies the output area of the main window. This can be:
    TOP - Used for headers
    BODY
    BOTTOM - Used for footers
    FUNCTION Specifies whether text is to be appended, replaced or added
    Example of how to use the WRITE_FORM function module together with a script.
    Form layout of the MAIN window
    /E INTRODUCTION
    Dear Customer
    /E ITEM_HEADER
    IH Carrier, Departure
    /E ITEM_LINE
    IL &SBOOK-CARRID&, &SPFLI-DEPTIME&
    /E CLOSING_REMARK
    <b>The print program</b>
    Writing INTRODUCTION
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'INTRODUCTION'
    FUNCTION                 = 'SET'
    TYPE                     = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Writing ITEM_HEADER
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'SET'
    TYPE                     = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Set ITEM_HEADER into TOP area of main window for subsequent pages
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'SET'
    TYPE                     = 'TOP'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Write ITEM_LINE
    LOOP AT .....
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT               = 'ITEM_LINE'
    FUNCTION              = 'SET'
    TYPE                  = 'BODY'
    WINDOW                = 'MAIN'
    EXCEPTIONS
    OTHERS                 = 8.
    ENDLOOP.
    Delete ITEM_HEADER from TOP area of main window
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'DELETE'
    TYPE                     = 'TOP'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                    = 8
    Print CLOSING_REMARK
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'CLOSING_REMARK'
    FUNCTION                 = 'SET'
    TYPE                          = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                    = 8
    START_FORM function
    CALL FUNCTION 'START_FORM'
    EXPORTING
      ARCHIVE_INDEX          =
      FORM                   = ' '
      LANGUAGE               = ' '
      STARTPAGE              = ' '
      PROGRAM                = ' '
      MAIL_APPL_OBJECT       =
    IMPORTING
      LANGUAGE               =
    EXCEPTIONS
      FORM                   = 1
      FORMAT                 = 2
      UNENDED                = 3
      UNOPENED               = 4
      UNUSED                 = 5
      SPOOL_ERROR            = 6
      OTHERS                 = 7
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    END_FORM function
    CALL FUNCTION 'END_FORM'
      RESULT                         =
    EXCEPTIONS
      UNOPENED                       = 1
      BAD_PAGEFORMAT_FOR_PRINT       = 2
      SPOOL_ERROR                    = 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.
    CONTROL_FORM function
    The CONTROL_FORM function module alows you to create SapScript control statements from within
    an APAB program.
    Syntax:
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    command         =
    EXCEPTIONS
      UNOPENED        = 1
      UNSTARTED       = 2
      OTHERS          = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Example:
    Protecting the text element ITEM_LINE
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    COMMAND = 'PROTECT'.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    TEXELEMENT = 'ITEM_LINE'.
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    COMMAND = 'ENDPROTECT'.
    rgds,
    latheesh
    Message was edited by: Latheesh Kaduthara

  • Hi i am new to SCN. I want a help regards SAP-PM . Where to post any query regards SAP PM

    Hi i am new to SCN. I want a help regards SAP-PM . Where to post any query regards SAP PM

    Please check this link SAP Portfolio and Project Management (SAP RPM, cProjects) and cFolders
    Please check scn index to find relevant forum link.
    SCN Site Index

  • Need information/training material regarding SAP CRM Functional

    Hello,
    I am a SD Consultant.
    I want to learn SAP CRM (Functional) on my own without going to any training institute or some thing.
    Therefore, can anyone help me in forwarding the link(s) or document(s) with which I can learn about SAP CRM (Functional).
    I want information/training material regarding SAP CRM 7.0 (on system/software working, not the general information, for example- why CRM, where CRM, etc)
    For example, about org data, org structure, possible scenarios, etc.
    Thanks in advance for spending your valuable time for me.
    Regards,
    T. Chaitanya

    Hi ,
    In the SDN lot of documents are there search in the WIKI.check the standard sap doc cr100.

  • Hi All,I have one serious problem regarding sap b1.

    Hi All,
    I have one serious problem regarding sap b1.
    In Sales order whenever I select the item from list or tax from list one. I got this
    Msg Box (Application has a problem. Diagnostic file c|:\Program file\SAP\sap Business one \Log\Sap Business one_20080602105441.dmp was created.
    Please contact support and attach diagnostic file). When select ok sap b1 application close. If anyone required screen short of all this error  plz give me Ur email id I will send u.
    Can any one help me?
    Awaiting Early Response
    Regards
    Rajkumar Gupta

    Hi Rajkumar,
    create a message at the marketplace and send them the diagnostic file with an error description.
    lg David

  • Regarding SAP Sales & distribution.

    Dear SAP Guru's ...
    I have a general Query.....Career Related.
    As SAP AG is Launching New products
    Such as SCM Enhancements BW and other IS versions....
    What will be the future situation and Market of SAP SD Consultant.
    We also heard that it will be mergedwith other higher version modules.
    Please advice me ....
    The Market Situation future?
    The Trends ?
    Whch module Should I focus ..after SD......
    Regards,
    Amaln Sarkar
    SAP SD Consultant.

    Dear Amlan,
    Well I think the foundation of all the new dimensional products is the base modules. Moreover working on the base modules gives the opportunity to understand the business process of different verticals. So there is nothing like end for the market for base modules.
    Hope this helps you.
    Do award points if you found them useful.
    Regards,
    Rakesh

  • Regarding sap smartforms line items

    hi,
    this is regarding line items in sap smartforms
    when i am executing single line item i am getting out put
    when i am executing with 2 line items  i am getting error  like bellow
    You tried to switch to the next table column, but no other column exists. The current column is 9. The line type IT_GEN contains only 9 columns.
    plz explain clearly

    Hi,
    if you are using template and the line type is for 1 to 2 lines in the template... make sure that column position you mention is equal to the number of cells in the line type... if the data is displayed in the second row the row position should start from 2 and and column position should lie between 1 and 9.
    Just a suggestion ... its better to go with table node instead of going with template...
    regards
    padma

  • Regarding SAP PP Reports

    Hi Gurus,
    Can you explain me what is SAP PP Standard Reports..with important T codes..with details
    thank & Regard
    Rahul

    hi Rahul,
    Please check
    http://wiki.sdn.sap.com/wiki/display/ERPLO/SAPStandardReports
    http://www.sapfans.com/forums/viewtopic.php?f=9&t=235417
    Regards,
    Anand

  • Help Required Regarding - SAP Job names using R3 data flows

    We are calling a set of SAP Jobs using R3 data flows in data services. When ever a job fails we first kill the active SAP jobs by logging into SAP and then restarting the Jobs.
    There are about 100 odd SAP jobs that we call using these Data services Jobs so we wanted to kill the jobs using a reusable code on the SAP side by passing the Job name just before every R3 flows just incase its still in active status.
    So wanted to know if there are any short cuts to retrive the set of associated SAP job names because it will be a tedious process to hardcode the SAP job names and pass them as parameters for all the 100 + SAP job names in the custom defined resuable code.
    Any help or advice on this please !!

    The program is not meeting the expectations
    and the problem is due to reflection.Do we know this for certain?
    ... my application gets the class name, field name
    etc. from an XML file so i don't know their method names
    beforehand .
    Now since every class instance corresponds to a row
    in the database and i have to call get and set
    methods of each class instance so the performance
    keeps on degrading as the number of columns and rows increase .
    Can somebody suggest some improvement regarding this
    and regarding creating multiple instances of the same object Class.forName() will be using a hash already, so there is probably not much room for improvement.
    Class.newInstance() probably does not take significantly more processing than a simple "new Fubar();".
    Umpteen reflective method invokations (one per column) for each row/instance - Are you saying these are the problem?
    You can test this easy enough.
    If you comment out the reflective method invocations and leave the rest of your code untouched,
    does your application processing speed up significantly?

  • Regarding SAP -XI  associate certification.

    Hello friends,,
    Can anyone give me details regarding the  XI certification in Teched.
    what is the success rate in Teched ?
    pls also eqip me with the latest trends and patterns of the exam.
    Also provide all the links which will be helpfull for me to prepare for the exam.
    waiting for ur valuable responses.
    Thanks n Regards,
    ram
    Message was edited by:
            ramdevbabu reddy

    Hi
    <b>A Beginners Guide to XI Certification Details</b>
    /people/community.user/blog/2006/11/03/a-beginners-guide-to-xi-certification-details
    <b>Below are syllabus for XI certification:</b>
    TBIT40:
    https://websmp109.sap-ag.de/~form/ehandler?_APP=00200682500000001337&_EVENT=DISPLAY&COURSE=TBIT40
    TBIT41:
    https://websmp201.sap-ag.de/~form/ehandler?_APP=00200682500000001337&_EVENT=DISPLAY&COURSE=TBIT41&LANGUAGE=
    TBIT42:
    https://websmp206.sap-ag.de/~form/ehandler?_APP=00200682500000001337&_EVENT=DISPLAY&COURSE=TBIT42&LANGUAGE=
    TBIT43:
    http://www50.sap.com/useducation/curriculum/course.asp?cid=60161651
    TBIT44:
    https://websmp102.sap-ag.de/~form/ehandler?_APP=00200682500000001337&_EVENT=DISPLAY&COURSE=TBIT44
    You will be asked 80 questions. Some of them are Multiple choice questions and some of them are true or false. You will not have any negative marks. You will get 25% of questions in BPM, 20% of questions in Adapters, Mapping. 10% of questions in Basics.
    Also you go through the this links which might help you:
    Re: SAp XI Certification
    /message/1887921#1887921 [original link is broken]
    /message/1887923#1887923 [original link is broken]
    Do you have Marketplace access? If yes, you can go to the following links,it explains everything regarding certification clearly.
    https://service.sap.com/%7Esapidp/011000358700005902252004E
    https://service.sap.com/~sapidp/011000358700003595762004E
    /thread/187737 [original link is broken]
    XI certification
    Go through these weblogs :
    /people/sravya.talanki2/blog/2006/12/25/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-i
    /people/sravya.talanki2/blog/2006/12/26/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-ii
    /people/sravya.talanki2/blog/2006/12/27/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-iii
    /thread/25311 [original link is broken]
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci1008087,00.html
    Thanks!!
    Regards
    Abhishek Agrahari

  • Regarding SAP PI 7.0 Configuration

    Hi Experts,
    We Completed The SAP PI 7.0 Installation.
    Now we Are Doing The Configuration Steps.
    Here We run the post installation Templates which automatically configures PI system.
    <b>Steps:</b>
    Step 1: Go to this link http://<host name>: <HTTP port number>/index.html
    Step 2: Click on SAP NetWeaver Administrator
    Step 3: Click on seeDeploy and Changelink
    Step 4: First executed the templates for NWA for configuring you SLD
    Step 5: Then executed the templates for PI
    After this  for the  Importing the XI Content for Software Component Version SAP Basis
    1. Here We Are Trying to Copy XI3_0_SAP_BASIS_6.40_00_12.tpz from <installation DVD>
    to directory /usr/sap/<SAPSID>/SYS/global/xi/repository_server/import/
    But We Are Unable to Find out <b>/repository_server/import/</b><u></u>
    We Can Able to Find out the Path Upto <b>/usr/sap/<SAPSID>/SYS/global/xi/</b><u></u>
    Can Anybody Please help To Go in the Right Direction
    Regards
    Khanna

    Hi,
    Thanks for the Reply.
    This was solved by team a long back,
    Sorry, i forgot to close the thread
    REgards
    Seshagiri

  • Regarding SAP PI 7.0 Configuration of Integration Engine

    Hi Experts,
    We Installed SAP PI 7.0 Successfully.After that We Run the Template Installers for PI.
    Here We Selected <u><b>PI Post Install Process</b></u> Option in the Template Field.
    <b>Q1)</b>  After Completion of this Should we Configure All   IE , IS, AE  Or Those wil be Configured Automatically ????
    <b>Q2) </b> What are the Necessary Steps to Do Even We Run the Template Installer, To execute a Scenario  Successfully.?????
    Please Let me Know
    Regards
    Khanna

    Here is an extract from the OSS note. I guess,this should answer your second question
    Reason and Prerequisites
    To avoid problems while using the configuration wizard (template installer )please check prerequisites for post-installation in SAP documentation. That information can be found in SAP Help Portal (http://help.sap.com --> SAP Netweaver --> Installation and Upgrade guide --> Installation --> 2 - Installation - SAP Netweaver 2004s --> SAP NetWeaver 2004s Installation Documentation).
    Select your Operating System and Database and look for 'Post-Installation Steps for Usage Type *' in the dedicated document.
    Important: You cannot use the configuration wizard after
    Upgrade
    Add-In installation (Exception: Configuration of Usage Type BI-Java can be executed after Add-In Installation)
    Additional usage type enablement
    System copy
    Always install the latest available SPS + Patches before running the CTC.( You can find the latest LMTOOLS Patch at http://service.sap.com -> SAP Support Portal -> Downloads (Tab) -> Downloads (Menue) -> Support Packages and Patches -> Search for Support Packages and Patches -> Search for: LMTOOLS*P -> Download and Save the .sca. Apply the patch by using the SDM.)
    The sequence is:
    1. Installation
    2. Install latest SPS + Patches (if available)
    3. Run configuration wizard.
    You can run the configuration wizard only once for initial configuration.
    In these cases, you need to perform the corresponding configuration steps as described in the configuration documentation.
    For more information on how to access the configuration documentation, see 'Accessing Configuration Documentation in the SAP Solution Manager'.

  • Regarding SAP XI

    Dear All ,
    I have few queries :
    1) do I need to install SAP XI on Web AS machine or on a different machine .
    2)What is the hardware configuration for development & for production server of SAP XI .
    3)What are the prerequisites for installing SAP XI .
    4) what all components we need to install while installing SAP XI
    5)IMPLEMENTATION METHODOLOGIES FOR SAP XI
    Kindly help me , waiting for your feedback asap
    Regards
    Prabhat

    Hi Prabhat,
    Go to the following link and look for the XI installation, config, tuning etc.. guides.
    It will give you a good deal of idea.
    Hope it helps.
    https://service.sap.com/instguides
    Regards,
    Satish

  • Regarding SAP Scripts

    Hi All,
    I have issue in SAP Scripts.
    Issue is : I am calling a BOX command in my Layout set as follows : <b>BOX WIDTH '18.75' CM HEIGHT L_SY_TABIX1 CM FRAME 10 TW</b>
    I that <b>L_SY_TABX1</b> i need to get the value form Print Program,
    Can anybody clarify how can i make varaible L_SY_TABIX1 with value <b>'17.75'</b> with in single quotes.
    shall i need to decalre the L_SY_TABIX1 as &L_SY_TABIX1& & then how can i get single quotes on it.
    Please clarify.
    Thanks in advance.
    Thanks & Regards,
    Rayeez.

    You dont have to concatenate quotes.
    You can dynamically put any value into a character variable, say,  ht, in your print program.
    Data : ht(10) type c.
    This variable should be within &, in the script. The program takes the value of height without rounding the decimals.
    BOX XPOS 0 CH YPOS '+1.5' LN WIDTH 30 CH HEIGHT &HT& CH FRAME 10 TW
    Thanks,
    Susmitha

  • Regarding SAP HR Payroll

    Hi all,
    Which table i have use to insert Stipend for the employee.
    And in case of student *** employee in the organisation, we have to insert 4 yrs stipend. suggest how to go ahead.
    Regards,
    Shahy

    Hi,
    If you require payroll relevant history of certain wage type you have to follow standard uploda procedure:
    http://help.sap.com/saphelp_40b/helpdata/pt/91/80e9087834d111a4620060b03c3b0e/content.htm
    Cheers

  • Regarding SAP SRM Inbox configuration

    Hello Guys,
    We are in the process of configuring the SRM workflow approvals in Portal.
    We made the basic mandatory configurations and we are able to see the workitems in the UWL.
    But unfortunately, we need configure the Inbox iView comes with the SAP SRM business package to work.
    With the configurations recommended, we manage to get the workitems in the standard Inbox iView.
    Only the header items are shown and when opened, a new window opens with just the header. Information of the workitems are not shown. But the same is shown in Universal Worklist.
    We are just wondering what could be wrong.
    Any suggestions are welcome.
    Thanks and Regards,
    Vivek

    Hello Siddharth,
    Thanks for the quick response.
    I think it is POWL. After making some entries in the SRM system table, we are able to get the workitems in the Inbox view, but no details were displayed.
    We tries modifying the xml
    <ItemType name="uwl.task.webflow.srm.TS93107952" connector="WebFlowConnector"
    defaultView="DefaultView" defaultAction="launchSAPAction" executionMode="default">
    <ItemTypeCriteria systemId="SAP_SRM" externalType="TS93107952" connector="WebFlowConnector"/>
    <Action name="launchSAPAction" groupAction="" handler="SAPIACLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes"
    launchNewWindowFeatures="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
    <Properties>
    <Property name="display_order_priority" value="5"/>
    <Property name="newWindowFeatures" value="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no"/>
    <Property name="openInNewWindow" value="yes"/>
    <Property name="IAC" value="BBPCF02"/>
    </Properties>
    </Actions>
    </ItemType>
    We just want to see the workitem details like we do in the UWL.
    Thanks and regards,
    Vivek

Maybe you are looking for

  • Snow Leopard and aftermarket HDD (won't install on WD3200)

    I figured this out last night and thought I would post a word of caution. I have a Macbook with a WDC WD3200BEVT HDD. I had originally cloned my stock HDD to it and therefore never needed to go through a real install routine. When I tried installing

  • Mass Update Purchase Order Price

    Dear folks, I have a bunch of purchase orders already created in the system. However, I received notification that there is a price increase in most of the products in the purchase orders. How do I mass update the prices in the purchase orders? I alr

  • All should read, HOW TO CORRECT SCP on X-FI Fatal

    OK, I'll start of by saying I've been having problems with my X-FI Sound Card. SCP especially in Battlefield 2 during an artillery barrage and problems occurred in Rome Total War when the calvary charge was occurring. I spent many months trying to re

  • Attribute dimensions

    HiWe are not able to get the correct result while we use attribute dimension in our retrieval. We're not sure what's wrong. One of our dimension is Dynamic Calc and tagged with 2 pass calc. Could this be the reason?Can anyone give us some suggestions

  • Trouble transferring music

    Hopefully somebody can help and this isn't too long winded. a)    I have an old pc, tht I first set up Itunes on, I have loaded over 3,000 cds to it. b)    I want to transfer the music stored here, but I can't remember my password, and have changed m