Extream right field of PO in NO

Hi all,
if u see PO, and NO , in that
1) YOU select series
2) then numbet comes as per define by you
3)Extream right (WHAT IS THIS , ITS USE. AND FROM WHERE IT COMES, HOW TO DEFINE IT)???
regards,
mahesh.

Dear Mahesh
That number is internally created. If u issuing purchase order for two different WH it will create one internal number . that will show in that area
For that If u have one purchase order ( no foe eg 1000) for two different WH ( 01 and 02) system will split purchase order
foe WH 01  PO number 1000 - 1
for  WH 01  PO number 1000 - 2
you can tick Split purchase order in logistic tab of the PO Document
i hope this may help you
Regards
Rashid

Similar Messages

  • Using Right {field, 5} in string search

    Hello,
    I have an array with the following data  xyz5 = 'US 10411', 'US 10421', 'US 10431', 'US 10441'
    The SN field is 5 character length with data such as 10411, 10421 10441 etc..
    How do I search for the last 5 digits of each of the data in the array?
    myaop6report.RecordSelectionFormula = "{aop5.SN}in right {[" & xyz5 & "],5}"
    Thankls,
    Victor

    Hi Victor,
    To search for the SN database field in the array, you can create a Record Selection Formula like:
           (" " + + ",") in (Join(YourArray,",")+",")
    Where should be replaced by your database fields that contains the SN number, and where YourArray is your array.
    The formula convert the array in a string seperated by commas.
    Then add a comma to your database field as well as a space in front. Finally it compare the SN fields to the long string.
    So for example if the database fields SN contains 10431, then the value we will search is: 
    10431,
    The array will now be a long string like:
    US 10411, US 10421, US 10431, US 10441,
    And it will look for the value 10431, in the string.
    The comma at the end and the space at the beginning it's to ensure it doesn't find any values that may exist within another one. It shouldn't be an issue in your case since it is always going to be equal to 5 characters for the SN value, but just in case it doesn't, we do not want to return 1043133 when we are searching for only 10431.
    Regards,
    Patrick

  • Right field for index

    Hello
    F1 is the only key field of big transparent table T.
    I use the following SELECT FROM :
    SELECT  *
    FROM T
    WHERE F1 = XX AND F5 = YY
    Should I create the index that includes both fields (F1 , F5) or just F5?
    How does the system choose indices during selection operation?
    thanks

    F1 is the only key field of big transparent table T.
    Not clear, because this could mean big as in many rows or long data rows or both...
    How does the system choose indices during selection operation?
    That's a long story. If you're interested you should do some background reading, a start might be [Wikipedia's database entry|http://en.wikipedia.org/wiki/Database#Indexing], but there's plenty others (if you're using Oracle I strongly recommend looking at the Oracle documentation).
    I use the following SELECT FROM :
    SELECT * FROM T WHERE F1 = XX AND F5 = YY
    Should I create the index that includes both fields (F1 , F5) or just F5?
    Due to lack of information obviously nobody will be able to answer your question. And once you actually started gathering the details, the answer should become more obvious to you...
    Let's assume that your field F1 is very selective (i.e. specifying a value will return just few rows), then an additional index which contains fields F1/F5 is not expected to have much benefit. After all, we like to avoid defining additional indexes if possible, because it means additional overhead during updates (indexes have to be maintained) and it also makes the life of the database optimizer harder (more choices to pick from).
    Now, if the result set of your query is huge and returns most table rows, then it might actually even be better to do a full table scan and not to look at any index at all (simple reason is that an index adds another level of indirection, i.e. the database first has to identify the index rows and then look up for those rows the actual data from the table).
    And finally what about comparing frequency of database updates on your tables versus frequency of running your one specific query, space considerations (additional index needs more space), etc. One should make sure to consider all those things and in the end you can probably give the answer yourself...
    Cheers, harald

  • How to use Editable Fields in ALV

    Hi,
    i am using alv with checkbox at extream right and one field date which is  editable.
    now i am executing program,selecing the checkbox and changing the date.
    i want to store the new value of the date field of the selected row in the internal table.
    anyone can tell me how can i store the new value of date field of the selected rows in the internal table.
    Thanks in advance.
    Chintan

    Hi Chintan,
    Please check this code:
    there is sample code for it...
    REPORT  ZTESTDFALV1                             .
    *Data Declaration
    DATA: BEGIN OF T_EKKO,
      EBELN TYPE EKPO-EBELN,
      EBELP TYPE EKPO-EBELP,
    FLAG TYPE C,
    HANDLE_STYLE TYPE LVC_T_STYL,
    END OF T_EKKO.
      DATA: GD_REPID LIKE SY-REPID, "Exists
      REF_GRID TYPE REF TO CL_GUI_ALV_GRID. "new
    DATA: BEGIN OF IT_EKKO OCCURS 0.
            INCLUDE STRUCTURE T_EKKO.
    DATA: END OF IT_EKKO.
    DATA: BEGIN OF IT_BACKUP OCCURS 0.
            INCLUDE STRUCTURE T_EKKO.
    DATA: END OF IT_BACKUP.
    *ALV data declarations
    TYPE-POOLS: SLIS.                                 "ALV Declarations
    DATA: FIELDCATALOG TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE,
          GD_LAYOUT    TYPE SLIS_LAYOUT_ALV.
    *Start-of-selection.
    START-OF-SELECTION.
      PERFORM DATA_RETRIEVAL.
      PERFORM BUILD_FIELDCATALOG.
      PERFORM BUILD_LAYOUT.
      IT_BACKUP[] = IT_EKKO[].
      PERFORM DISPLAY_ALV_REPORT.
    *&      Form  build_fieldcatalog
          text
    FORM BUILD_FIELDCATALOG.
      REFRESH FIELDCATALOG.
      CLEAR FIELDCATALOG.
      FIELDCATALOG-FIELDNAME   = 'EBELN'.
      FIELDCATALOG-SELTEXT_M   = 'Purchase Order'.
      FIELDCATALOG-INPUT     = 'X'.
      FIELDCATALOG-EDIT     = 'X'.
      FIELDCATALOG-COL_POS     = 2.
      APPEND FIELDCATALOG.
      CLEAR  FIELDCATALOG.
      FIELDCATALOG-FIELDNAME   = 'EBELP'.
      FIELDCATALOG-SELTEXT_M   = 'PO Item'.
      FIELDCATALOG-COL_POS     = 3.
      APPEND FIELDCATALOG.
      CLEAR  FIELDCATALOG.
    ENDFORM.                    " BUILD_FIELDCATALOG
    *&      Form  BUILD_LAYOUT
          Build layout for ALV grid report
    FORM BUILD_LAYOUT.
      "Permet d'ajuster les colonnes au text
    gd_layout-colwidth_optimize = 'X'.
    GD_LAYOUT-TOTALS_TEXT       = 'Totals'(201).
    gd_layout-box_fieldname = 'SELECT'.
    gd_layout-box_tabname   = 'IT_EKKO'.
    ENDFORM.                    " BUILD_LAYOUT
    *&      Form  DISPLAY_ALV_REPORT
          Display report using ALV grid
    FORM DISPLAY_ALV_REPORT .
      GD_REPID = SY-REPID.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                I_CALLBACK_PROGRAM        = GD_REPID
               i_callback_top_of_page   = 'TOP-OF-PAGE'
                I_CALLBACK_PF_STATUS_SET  = 'SET_PF_STATUS'
                I_CALLBACK_USER_COMMAND   = 'USER_COMMAND'
               i_grid_title             = 'My Title'
                IS_LAYOUT                 = GD_LAYOUT
                IT_FIELDCAT               = FIELDCATALOG[]
           TABLES
                T_OUTTAB                  = IT_EKKO
           EXCEPTIONS
                PROGRAM_ERROR             = 1
                OTHERS                    = 2.
      IF SY-SUBRC <> 0.
        WRITE:/ SY-SUBRC.
      ENDIF.
    ENDFORM.                    " DISPLAY_ALV_REPORT
    *&      Form  DATA_RETRIEVAL
          Retrieve data form EKPO table and populate itab it_ekko
    FORM DATA_RETRIEVAL.
      SELECT EBELN EBELP
       UP TO 10 ROWS
        FROM EKPO
        INTO CORRESPONDING FIELDS OF TABLE  IT_EKKO.
    ENDFORM.                    " DATA_RETRIEVAL
                         FORM SET_PF_STATUS                              *
    FORM SET_PF_STATUS USING RT_EXTAB   TYPE  SLIS_T_EXTAB.
      SET PF-STATUS 'STANDARD_FULLSCREEN1' EXCLUDING RT_EXTAB.
    ENDFORM.                    "set_pf_status
    *&      Form  user_command
          text
         -->R_UCOMM    text
         -->RS_SELFIELDtext
    FORM USER_COMMAND  USING R_UCOMM LIKE SY-UCOMM
                             RS_SELFIELD TYPE SLIS_SELFIELD.
    *then insert the following code in your USER_COMMAND routine...
      IF REF_GRID IS INITIAL.
        CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
          IMPORTING
            E_GRID = REF_GRID.
      ENDIF.
      IF NOT REF_GRID IS INITIAL.
        CALL METHOD REF_GRID->CHECK_CHANGED_DATA
      ENDIF.
    *modify
      CASE R_UCOMM.
        WHEN '&IC1'.
          CHECK RS_SELFIELD-TABINDEX > 0.
          IF RS_SELFIELD-VALUE EQ '6000000001'.
            CALL TRANSACTION 'ZDF2'.
          ENDIF.
        WHEN 'REFRESH'.
          READ TABLE IT_EKKO INDEX  RS_SELFIELD-TABINDEX.
          IF SY-SUBRC = 0.
            READ TABLE IT_BACKUP INDEX RS_SELFIELD-TABINDEX.
            IF SY-SUBRC = 0.
              IF IT_EKKO <> IT_BACKUP.
    then do your check
              ENDIF.
            ENDIF.
          ENDIF.
          PERFORM DATA_RETRIEVAL.
          RS_SELFIELD-REFRESH = 'X'.
      ENDCASE.
    ENDFORM.                    "user_command
    and also check this thread in which i gave the solution....
    REUSE_ALV_GRID EDITABLE
    This should help u out...
    Mark useful answers...

  • Adding new date field to already loaded data target.

    Hi,
        we have a cube containing date feild such as 0CALMONTH. the data is being loaded to the cube. now they have added new date feild (0FISCYEAR). how to get data to this feild. there is no data coming from source system for this feild. please can any one tell me how to include this feild and load data into it.
    with regards,
    sreekanth.

    Sreekanth,
       If Record creation date is the right field for deriving fiscal year, Why cant you derive the year from the date...by using automatioc time conversion...?? In update rules...??
      For exising data, you can do loop back to populate the data. see the below doc, for more info:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f421c86c-0801-0010-e88c-a07ccdc69601
    Hope it Helps
    Srini
    Message was edited by: Srini

  • Change the value of a field in a form when the form is displayed

    Hello
    I have a report which has a link to a form for updating the records. I have used a link to the form from report which displays the the record to be updated i.e it gets default values from the report. I need to change one of these values at the time of displaying the form. The set_value in the 'before displaying the page' section doesn't change the vaue displayed in the form. I tried in other 'Advanced pl/sql' sections provided but didn't succeed.
    Thank you
    Jayasree

    hi,
    let's call the new value u want to set "NewValue"
    insert this code in the before displayin' the page
    htp.p('<script language="Javascript1.1">
    function defaultValue(fieldname)
    var thefield;
    for( var v=0; v < document.forms[0].elements.length; v++)
    // get the right field
    if (document.forms[0].elements[v].name.indexOf(fieldname) >= 0 )
    thefield = document.forms[0].elements[v];
                        thefield.value='''||NewValue||''';
    break;
    </script>');
    in the after displaying the page section call the function above with the appropriate field:
    htp.p('<script language=javascript1.1>
    defaultValue(''Field_Name'');
    </script>');
    where Field_name is the name of the field u want to change the value!
    Mohamed

  • Manipulating fields in a view

    I have a table with a date and a time and I really need that data in a datetimestamp format.  I'm trying to avoid creating a custom table and a custom program to get this information that already exists in this table.
    If I put the data in a view, is there any way to perform calculations on the fields and show that as another field in the view?
    I've got a view partially set up, but I just don't see a way to manipulate the fields to that degree?
    Or any other way to do this without creating a custom table with the right field type and a program that converts the data from one to the other?
    Thanks for any help.

    Within the view?
    Let me restate my question, because I think we're all confused.
    I am looking at the table PEVSH.
    I need to use a few fields from this table, including the date and time, but I need that together in a timestamp format, not in two seperate date and time fields.
    Is there a way to create a view of PEVSH that displays those two fields together into a timestamp field?
    I'm not seeing how I can use a maintenace generator to do that if I don't have the field.  The same with the edit mask, there's no field to put the edit mask on.
    If I can't do it in a view, is there a way, if I create a custom table, to have lines inserted into it everytime PEVSH is updated?
    I'm happy to award points for helpful answers, but please consider my total problem when answering.  Thanks.

  • GRC 10.0: Customizing Reporting with field ID's

    Hi everybody,
    we need some reports which are delivering some special information. These informations aren't exist in any of the standard reports. So we would like to customize them.
    I know there is a customizing table V_GRFNREPCOLUMN how to adjust the available reports and I do it like the instruction:
    1) Copy an existing report
    2) Check all the technical adjustments
    3) change the columns for this report
    But there is one problem: The field ID that I need is not available. There are more than 2000 field ID's but not the one that I need. I don't need a custom field because the information is still excisting in the data dictionary. I know the SAP table and the field ID.
    For example:
    We need a list/report where you could see all the control owners of every organisation. I couldn't found a report and I guess there is no one in the SAP standard. After copying a standard report I couldn't find the right field ID. There is one for owners of subprocess and processes and also one for cross regulation control owners, but not for the e.g SOX control owner.
    I try to search in which SAP databse table the information is saved. It is HRP1852. The field ID is (I guess) USERNAME, but this field ID is not available in the customizing of the reports.
    So is there a possibility to enlarge the range of the field ID's?
    We could programm our own report, but this would be too expansive and I just want to use the possibility of the standard report customizing.
    Thanks a lot
    Regards Timo

    Hi,
    I have just checked my SICF settings and found that we have not actually activated those services at all and our NWBC sessions work fine now.
    Have you activated the sap/bc/nwbc and sap/bc/webdynpro services?
    Also, have you activated the required BC sets for the standard content on Access Controls? This removes the need to do a lot of the basic setups but you still need to follow through the event linkages to check the successful generation etc.
    Simon
    Edited by: Simon Persin on Sep 21, 2011 5:51 PM

  • User Defined Fields & Tables Problem

    After the upgrade to B1 2007 and converting our database to 2005 compatibility as per the upgrade directions, we’re having some weird issues with our user defined fields and tables. 
    •     Our user defined fields that used to be alpha-numeric when set up in B1 are now in the database as nvarchar(MAX), even after updating the fields in the Manage User Defined Fields screen.  B1 is obviously not setting the right field information as per its interface.
    •     We’re can no longer add records to user defined tables through the B1 interface, though we can add them fine through SQL Server or an ODBC interface.  The error we are getting is
    [Microsoft][SQL Native Client][SQL Server]Conversion failed when converting the nvarchar value '-3 @PASSWORDS' to data type int. (CINF)
    .  I don’t understand where this problem is coming from because there isn’t even a data field that is an integer, so I don’t know what it’s trying to convert.

    Derek,
    I would suggest you post this question to SAP Support by creating a message.  Also search for any notes on this from https://websmp201.sap-ag.de/notes
    Suda

  • WSDL missing xsd:annotation & xsd:appinfo tags for new field

    Hi,
    I was recently asked to add a new field to a service interface.  I made the changes to the Data Type and Mapping as appropriate and after activating those changes went to the Sender Agreement to save the WSDL in a file so I can handle it to our business partner (I created the file on the IB under Sender Agreement-->Display WSDL).  During the testing of interface using webservice navigator response gave an exception. We checked the WSDL file and the new field is there but it's missing the  <xsd:annotation> & <xsd:appinfo> tags (which all of the other fields have).
    Here's an extract of how the WSDL looks, the new field is URI, ORG_NM2, ORG_NM3:
    <xsd:element name="IV_J_1IPANREF" type="xsd:string">
                      <xsd:annotation>
                         <xsd:appinfo source="http://sap.com/xi/TextID">
                         c6a198762dd811e48dab0c84dcced6b4
                         </xsd:appinfo>
                      </xsd:annotation>
                   </xsd:element>
                   <xsd:element name="URI" type="xsd:string" />
                   <xsd:element name="ORG_NM2" type="xsd:string" />
                   <xsd:element name="ORG_NM3" type="xsd:string" />
    As you can see the annotation and appinfo tags are missing for the new field URI ORG_NM2, ORG_NM3,.  I think this might be the reason why they don't see the new field when they upload the WSDL to their system.   Is there something else I need to do for the WSDL to be generated correctly?
    Please suggest urgently.
    Neeraj

    Hi Luis,
    You are right fields are coming correctly but when I am testing the wsdl using webservice navigator or SOAP UI I am getting the below exception:
    com.sap.engine.services.webservices.jaxrpc.exceptions.XmlUnmarshalException: XML Deserialization Error. XML Parser has thrown exception while parsing input. See nested exception.
    Error Log:
    <!-- see the documentation -->
    <SOAP:Envelope xmlns:SOAP='http://schemas.xmlsoap.org/soap/envelope/'>
      <SOAP:Body>
        <SOAP:Fault>
          <faultcode>SOAP:Server</faultcode>
          <faultstring>Server Error</faultstring>
          <detail>
            <s:SystemError xmlns:s='http://sap.com/xi/WebService/xi2.0'>
              <context>XIAdapter</context>
              <code>ADAPTER.JAVA_EXCEPTION</code>
              <text><![CDATA[
    com.sap.engine.interfaces.messaging.api.exception.MessagingException: com.sap.engine.interfaces.messaging.api.exception.MessagingException: Application:EXCEPTION_DURING_EXECUTE:
      at com.sap.aii.adapter.soap.web.SOAPHandler.processSOAPtoXMB(SOAPHandler.java:765)
    I though that since missing of these two <xsd:annotation> & <xsd:appinfo> tag may be the ssue because after adding new fields this was the only difference in WSDL.
    Regards,
    Neeraj

  • How to get the search field with API UCM  for a specific UCM Profil

    We have UCM 10g
    For the checkIn we have for exemple the URL : http://xp-ucm1.oth.prs/idc/idcplg?IdcService=CHECKIN_NEW_FORM&dpTriggerValue=1&dpDisplayLabel=Codification%201&IsSoap=1
    To obtain all the field for the checkIn is very simple with this service(IdcService=CHECKIN_NEW_FORM) and RIDC, but for search we don't find the idc service ?
    <SOAP-ENV:Envelope>

    <SOAP-ENV:Body>

    <idc:service IdcService="CHECKIN_NEW_FORM">

    <idc:document dRevLabel="1" dUser="sysadmin" dDocName="" dDocTitle="">
    <idc:field name="xClbraUserList:isExcluded">1</idc:field>
    <idc:field name="xsgti_top_rule:isSetDefault">1</idc:field>
    <idc:field name="xlist1:isExcluded">1</idc:field>
    <idc:field name="xsgti_g_ll_niv1_1:isExcluded">1</idc:field>
    <idc:field name="xsgti_chrono_soc"/>
    <idc:field name="xsgti_g_entier4:isExcluded">1</idc:field>
    any ideas

    Hi,
    In fact, I don't want to send parameters to the search service but to get the fields to display an advanced search form of my own.
    Some rules and profiles filters the amount of fields availables and having a service that can do this filtering for me would be very useful.
    The check-in service do this for a trigger value (profile), but I can't find how UCM uses services to display the search form with the right fields depending on the rules and rights of the user.
    When I call a search form, UCM calls a service : http://xxx.xxx.xxx.xxx:xx/idc/idcplg?IdcService=GET_DOC_PAGE&Action=GetTemplatePage&Page=STANDARD_QUERY_PAGE&dpTriggerValue=xxx&dpDisplayLabel=xxx
    But with &IsSoap=1, the values returned are not good, some fields are missing, the field captions are not right... I guess UCM calls sub-services but which ones ?
    Thanks :)

  • File content conversion Receiver with no key fields

    hi all,
              I have a header structure with four fields all varying and also  item structure with varying fields .. how do i go about to solve this .. as the regular Content Conversion uses key fields.. but there are no such key fields here... kindly help in this regard to proceed

    If you dont have a key field, then the only option to read the file and convert it to XML would be in a record row format.
    Here each line will go as one field in the XML. You will have to use some logic in your mapping to extract the right field.
    Ref: /people/sravya.talanki2/blog/2005/08/16/configuring-generic-sender-file-cc-adapter
    but in case your is a receiver File adapter then key fields are not required.
    ref: /people/arpit.seth/blog/2005/06/02/file-receiver-with-content-conversion

  • Adding Custom fields to SRM Item Data tab & Account Assignment Tab

    Hi Everyone,
    We have got a small requirement to add 2 custom fields in SRM Shopping cart.
    Need to add a input field, which should act just like Requisitioner in ECC. ( F4 help ).This will allow to create shopping cart on behalf of some one.
    Need to add input field, which resembles Goods Recipient in ECC ( Free text)
    After adding custom fields, how do i ensure that, it's mapped to right field in ECC.I spent much browsing SRM forum, but couldn't gather much information. I understood that, this involves configuration in SPRO.
    Any information or help in any kind would be really helpful.
    Thanks in advance.
    Vishnu

    Hi Vishnu,
    Take look at this link.
    Add custom field to SC and POWL
    Thanks
    Senthil

  • Adding Partner field in Derivation Strategy

    Hello Sapians,
    I am trying add the Partner field (Forwarding Agent) to the derivation Strategy from the Invoice and not from the Sales Order.
    I was able to find the Forwarding Agent field in PAPARTNER Table. So I created the field in KEA5, update the structure of Operating Concern with this field.
    But I am looking for the table (not VBPA) which has the Invoice details where I can add that in the Derviation Strategy. Do we have any table?
    Please let me know if I need to use the enhancement to acheive this (Could you please give the steps to do this?).
    Thank you,
    -Harter.

    Hi Ajay,
    Couple of questions
    1. How do I identify which field (table) has this value (Forwarding agent), so that I can create the WWXXX field. I found SPDNR from PAPARTNER table but I am not sure if that is the right table and the right field to create Characteristic on this field. So could you please tell me what is process to find the right table where the Forwarding Agent value is updated in the billing documents?
    2. I could not find the KDAUF field in the enhancement Source fields but I was able to find the ARTNR field, my question is why we have to make ARTNR as Source field and the WWXXX or SPDNR (in this case) will be Target field? Does that need to be other way round? Sorry for my ignorance.
    Thank you for all your help.
    -Harter.

  • I need to execute a formatted search when the field loses focus

    Is this even possible?  I do NOT want to force the users to press shift-f2 every time to validate/search on every field on the form.  This is absurd.  How can I trigger a formatted search on a field when it loses focus?
    I tried activating menu item #7425, but it's not executing the one on the field that loses focus, but a different one.  I guess it only works on the active field??
    I tried catching an earlier event, but after it executes the formatted search on the right field, it places the value on whatever field just gained focus instead of the one it was assigned to.
    Any ideas here?  We cannot force our users to press shift-f2 on all these fields!
    The only other idea I have is to not use a formatted search but instead try to create some sort of popup form with a grid and my own query.  There has to be an easier way, right?

    Bryan:
    I use the following on a KeyDown event for when the User tabs out of a field after entering data if the data they entered is not valid.  Perhaps you could try this in the LostFocus event:
    g_B1Connection.Application.SendKeys("+")
    Also, I have used this in the KeyDown event:
    DisplayLookup("txtWO0")
    Private Sub DisplayLookup(ByVal objText As String)
            Try
                WOItem = WOForm.Items.Item(objText)
                WOItem.Click(SAPbouiCOM.BoCellClickType.ct_Regular)
                g_B1Connection.Application.SendKeys("+")
            Catch ex As Exception
                g_B1Connection.Application.MessageBox(ex.Message, "Ok", 1)
            End Try
        End Sub
    Thanks,
    EJD

Maybe you are looking for

  • How do I change the title of an "episode"?

    Hello, I'm writing a screenplay but when I print out various reports or build my schedule I'm getting a column called "episode". The episode is titled as a very old version of my script and not the current title of my script. Any ideas how to change

  • Cant send SMS messages

    I am having problems again trying to send a SMS message to a cell phone with ichat. I am always getting a error message that it could not be delivered. Got the message today and had to switch to yahoo Messenger which delivered the message just fine.

  • How to Call a procedure for UI5 application ?

    Hello experts, What are the possible ways to call a procedure from a UI5 application? I am trying to call the procedure created in the blog from a ui5 application. I had an idea of calling a procedure from view and generating odata services from view

  • SAP workflow process integration

    Can i access SAP-workflow through portals/websites?? Thanks in advance.

  • 1 iPod, 2 Libraries

    I have an iPod Video and I am running it on my user account on my PC. I have about $250 worth of songs on my library. On another user account (same computer, etc.) I downloaded about $25 worth of my favorite songs. I sorted them into a playlist. I wa