Get the Order # from the Field VBAP-ARKTX field

hi,
i.Order # - for order number parse description field (VBAP-ARKTX) from the right, grab numeric values until reaching a space or ‘#’ character.
vbap-arktx = 'LABOR'.
vbap-arktx = 'IC,OCTAL BUFFER/DRIVER 74C240'.
vbap-arktx = 'IC,BUS TRNCVR,OCTAL    74HC245'.
vbap-arktx = 'AP CER .1UF 20% 100V AX T/R'.
vbap-arktx = 'CAP,ELECT,RAD,LOESR,1000UF,16V'.
vbap-arktx = 'SOCKET,IC,.600 DIP,40-PIN,PHBZ'.
for the above VBAP-ARKTX Value...how to get the Order# as per the requirement.......
kindly let me know

Hi Deepthi...
I am afraid that there is no safe way to do it.
Given that you write such a code snippet, for the examples you provide the resulting order string might be like this:
vbap-arktx = 'LABOR'.
Order = .... nothing... no numeric values found
vbap-arktx = 'IC,OCTAL BUFFER/DRIVER 74C240'.
order = 74C240 or 240 or 74240 ?
vbap-arktx = 'IC,BUS TRNCVR,OCTAL 74HC245'.
order = 74HC245 or 245 or 74245?
vbap-arktx = 'AP CER .1UF 20% 100V AX T/R'.
order = ???
vbap-arktx = 'CAP,ELECT,RAD,LOESR,1000UF,16V'.
order = ???
vbap-arktx = 'SOCKET,IC,.600 DIP,40-PIN,PHBZ'.
order = ???
As you realize, there is no way to tell if there is an order in any case.
Regards,
George.

Similar Messages

  • Can I cancel the order from the istore?

    my 4years old nephew just purchased few games from the store with my iphone .I didn't know about it. now I just have to pay for it.  or can i cancel the order??

    You cannot cancel them.

  • Help with the order from the Apple Store

    help, I made an order on the iphone 6 + and he appeared in the list of orders, pay upon receipt of goods. I have a simple question! Will I receive a product or add an item in addition to the orders must be more, to do something?

    Hi ..
    You can check your order status here >   Apple Help - Viewing and Changing Orders

  • How to remove the approved order from the table in sapui5

    Hi Experts,
      how to remove the approved order from the table in sapui5.
    After Approving the order how to remove the order from the table in sapui5.
    Please help me.
    Thanks & regards
    chitti Babu

    Hi,
    Probelm is OBIEE on your machine.Some one might have deleted pdf option.
    Refer : http://obiee101.blogspot.com/2009/07/obiee-dashboard-default-controls.html
    Try to find out tag that is to be removed from controlmessages.xl so that you have only HTML.
    Update :
    Stop BI Server.Try removing below tag and restart server.
    (sawm:if name="enablePDF">(a class="NQWMenuItem" name="pdf" href="javascript:void(null)" onclick="return PortalPrint('@{pdfURL}[javaScriptString]',@{bNewWindow});">
    <sawm:messageRef name="kmsgDashboardPrintPDF"/></a)</sawm:if)
    Regards,
    Srikanth
    Edited by: Srikanth Mandadi on Apr 19, 2011 3:36 AM

  • Why did I get an email from the fraud dept saying my order is on hold, told to call a number, and then told by dept it's not true?

    I placed an order to upgrade my phone yesterday, and the order went through, I was told the new phone would arrive Thursday. After I got home from work today I saw an email from Verizon that says "Dear Customer:
    Verizon Fraud Prevention Team is currently reviewing the following order on your wireless account. Please call the Verizon Fraud Prevention Team at 888-483-7200 option 3, press 1 to verify this Order."
    I called this number immediately, since I need this phone ASAP, assuming it would just be a recording and I would have to verify an account number or something. But instead, after following the instructions, I was put on hold because I needed to speak to someone in person. After several instances of my call being cut off after being on hold for at least half an hour, I finally got through after three hours and was able to speak to a fraud representative. I gave her my info and told her the problem and she told me I had called the wrong department. Instead of the fraud department, I needed the online order department. She transferred me, and I waited on hold again. When the representative from the online order dept picked up, she first told me if it was a fraud issue I'd need to speak with the fraud dept - who had JUST transferred me to her. After this, she said that my order is not on hold, because it hasn't even been processed yet or had the credit check done. When I asked if this meant I hadn't needed to call at all, she said yes. Is this actually true or is there a chance that there's an issue with my order I don't know about? If there is no issue, these emails really shouldn't be sent out, they're incredibly misleading, and I've wasted a whole lot of time and experienced an incredible amount of anxiety for no reason.

    Hi.  I checked on the order and it says the order is currently being processed and I should check back tomorrow. I'm mostly just concerned because I got an email saying the order was on hold, and I want to make sure it actually does go through and I'm not just waiting for a delivery that's not going to come. I'm still confused as to why I'd get an email saying I had to call the fraud department only to be told I shouldn't have called the fraud department.

  • Is there a way to get the correct order from the dependent types of a sche

    Hi ,
    I have a CT facing the following problem:
    When trying to built a SQL script to create all the object types within a schema using the DBMS_METADATA packages.
    Did insert in a table the names of the types that will be exported following a concrete order, next loop into the table and call the DBMS_METADATA package for each row.
    These type are depedent between them, there are some type attributes calling other types and here the issue
    First : try to generate the order by created column of dba_objects and when the generated SQL script is launched a lot of type appearing as incomplete state due to the order isn't correct.
    Second : try to insert the table ordering by object_id colums of dba_tables view, it appears incomplete types too.
    Currently want to insert the table using a recursive query with connect by against the dba_type_attrs starting with the rows when ATTR_TYPE_NAME is not null (the types that are called by other types), but this way has a issue dificult to resolve: the roots of hierarchy are the rows when ATTR_TYPE_NAME is not null and we've dependencies between roots nodes
    The question is is there a way to get the correct order from the dependent types of a schema?
    Platform: IBM SP AIX
    DB version: 9.2.0.7
    Any help will be appreciated .
    Thanks in advance.

    The xxx_dependencies view should give you the dependencies betwee nthe various types. I would look at something along the lines of:
    SELECT object_name, referenced_name
    FROM (SELECT o.object_name, d.referenced_name
          FROM user_objects o, user_dependencies d
          WHERE o.object_name = d.name(+) and
                o.object_type = d.type(+) and
                d.referenced_type(+) = 'TYPE' and
                o.object_type = 'TYPE')
    START WITH referenced_name IS NULL
    CONNECT BY PRIOR object_name = referenced_nameThe outer join between user_objects and user_dependencies is required to generate the names of types which are not dependent on other types, or do not have other types dependent on them.
    HTH
    John

  • Can i order from the us online store and get my product in mexico?

    can i order from the us online store and get my product in mexico?

    No. Only in the US. There's an online store in Mexico that you can use - http://www.apple.com/mx/support/.

  • Partner details are not getting captured to the purchase order from the ven

    Hi,
    Issue : ( ECC PO)
    Partner details are not getting captured to the purchase order from the vendor master.
    We found that the partners are not getting captured in ECC PO's automatically from the vendor master. We checked for all the config and everything seems to be o.k, but could not figure it out.
    Any suggestions are highly appreciated.
    Regards
    Sudhakar

    Hey Sudhakar,
    I believe what is happening here is that the ECC PO document type has not been assigned to the partner determination procedure.
    If this is working properly for standard POs, then,
    Go to Partner detrmination under Purchasing>  Partner Settings in Purchasing Documents> Assign Partner Schemas to Document Types.
    and enter teh appropriate document type and refer it to the procedure you have for NB Pos

  • Creation of a refurbishment order from the notification is not supported

    Hello All,
    I would like to know whether we can create Refurbishment Order directly from Refurbish. Request Notification.
    Currently when trying to do that I'm getting error message saying that 'Creation of a refurbishment order from the notification is not supported'.
    SAP doesn't support that kind of scenario or I'm missing some configuration?
    Thanks in advance
    G.

    Hello again,
    Thanks for your answer but I would like to get some more clarification.
    What I would like to do is create Refurbishment Order from the notification directly by clicking create button which seats just next to order field or from the menu Notification -> Create -> Direct.
    I'm getting pop up window where Order Type is filled in automatically because of the config I made. Then I just fill in Main Work Center field and hit continue. Afterwards message 'Creation of a refurbishment order from the notification is not supported' appears.
    Can you confirm that above described scenario is not supported by SAP.
    Thanks in advance.
    G.

  • How to get the values from the resultset???

    I have a problem with this code given below,
    i am executing an sql query which return a union of values from two tables.
    the problem here is how do i read the values from the resultset.
    here is the code....
    package com.webserver;
    import java.sql.*;
    public class UnionDemo{
    public static void main(String args[]){
    Connection connection =null;
    Statement statement =null;
    ResultSet rs =null;
    try{
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    connection = DriverManager.getConnection("jdbc:oracle:thin:@:1521:ORCL","scott","tiger");
    statement = con.createStatement();
    rs = statement.executeQuery("(select tablename from node where appid=432) union (select tablename from uomnode where appid=432)");
    ResultSetMetaData rsmd = rs.getMetaData();
    int numberOfColumns = rsmd.getColumnCount();
    while (rs.next()){
    System.out.println(rs.getString(1));
    // instead of rs.getString(1) I also used rs.getString("tablename") but of no success....
    }//end of while
    }catch(Exception exp){
    exp.printStackTrace();
    finally{
    try{
    if (rs!=null) rs.close();
    if (statement!=null) statement.close();
    if (con!=null) con.close();
    }catch(Exception exp1){
    exp1.printStackTrace();
    }//end of finally
    }//end of main
    }//end of class
    when i execute this program i get an oracle error ORA-01009
    which says (java.sql.SQLException: ORA-01009: missing mandatory parameter)
    can anyone help to retrieve the values from this resultset...
    thanx

    [cut]
    i am executing an sql query which return a union of
    values from two tables.
    the problem here is how do i read the values from the
    resultset.[cut]
    When the error occours?
    1) Executing query ?
    2) Retrieving the field from the resultSet ?
    3) ecc. ?
    BTW, first of all, try to execute the query removing the parenthesis
    of the two select statement. I know that there are some problem
    with the oracle jdbc driver about them.
    Hope it helps.

  • Unable to get the value from the textfield in valueChangeEvent

    Hi,
    I have created one custom textField by extending the CoreInputText. Now i have attched default ValueChangeListener to it. I am using this textField in my application.
    Now i type some thing and do a focus lost, the value change listener get called. i want to validate the value entered. In that listener method if i take the getSource() from ValueChnageEvent object and do a getValue() I am getting the entered value.
    My problem is that if i do a getValue() of the textField i am not gettting the value entered.
    How can i get the entered value from the textfield.? Is there any method to notify to do this?
    Thanks in advance.

    Hi,
    I tried to the value from coreInputText also. If i check the getValue method of the component, i am getting the last updated value. I have debug the FlowPhaseListsner also. And i found that this listener is calling before the updateModel phase. Due to that i am not getting the value from the Field.

  • Merge of planned orders from the same product

    Hi Experts,
    We have some lines where we process materials with different properties so setup time/costs between ones and anothers are very important.
    If we run the PPDS Optimizer or scheduling based on setup groups for a period of 2 weeks then depending on the demands we may get 2 or 3 orders of the same material followed. Is there a possibility that once we have the short-term plan and we have this situation we run a heuristic that merge orders from the same material into one order? Capacity Driven heuristic does not fulfill our requirements.
    Ex:
    Order 1 = 10000 PC
    Order 2 = 20000 PC
    Order 3 = 5000 PC
    They are followed in the resource so we would like to have one of 35000 PC.
    Right now, we are using a simulation so looking at the total amount of the followed orders then we can get an idea of which should be the minimum lot size to be used .   They can also modify the total quantity of the first order with the sum of the others but none of these 2 options makes the customer totally happy.
    Any suggestions?
    Regards
    CTF

    After PPDS Optimizer .
    Get the list of all FG PPDS orders into an internal table.
    Use     BAPI_PRDSRVAPS_GETLIST2
               BAPI_MOSRVAPS_GETLIST2
    Consolidate the orders which are in scheduled status for each product, resource and PPM.
    Sum the quantities.Create the Orders and delete the old orders.
    Use BAPI_MOSRVAPS_DELEMULTI (For deleting the Orders)
    Use BAPI_MOSRVAPS_SAVEMULTI3( For creating a new Order)
    Thanks,
    nandha

  • How do I get the downloaded music on my iphone to my new home pc and itunes, it took the info from the 1st device but not the 2nd

    how do I get the downloaded music on my iphone to my new home pc and itunes, it took the info from the 1st device but not the 2nd

    the appletv will not display your movies in folders.
    you could change the tags in itunes to include the genre in the "show" field in the "video" tab. this would replicate the view you want, but you will need to tag all your movies to do this.

  • Importing data for tuple changes the order from source file - please help

    Hi all:
    I am using MDM 7.1 with the new tuple functionality. I have to import some product texts in a specific order. Tuples is working fine, the only issue is that it changes the order of the rows when importing from Excel.  Let's say I have product number
    A123, Text 1
    A123, Text 2
    A123, Text 3
    When importing in MDM I get:
    A123, Text 2
    A123, text 3
    A123, Text 1
    It is changing the order in which records are from source Excel file. Any ideas on how to force it to import in the same order as source file?
    Thanks,
    -Arturo Blasi.

    import java.util.*;
    import java.io.*;
    Student Name: Qiang Wu
    Student Number: 205722913
    public class Check05C
         public static void main(String[] args) throws IOException
              Scanner input = new Scanner(System.in);
              PrintStream output = System.out;
              output.print("Please enter filename...");
              File MarkFile = new File(input.nextLine());
              Scanner fileinput = new Scanner(MarkFile);
              double average;
              int maxmark = 0;
              int minmark = 100;
              int sum = 0;
              for (int score = fileinput.nextInt(); fileinput.hasNextInt(); score = fileinput.nextInt())
                   sum = sum + score;
                   if (score >= maxmark)
                        maxmark = score;
                   else if (score <= minmark)
                        minmark = score;
              average = (maxmark + minmark) / 2;
              output.println("Class Average is: " + average);
              output.println("Maximum mark is: " + maxmark);
              output.println("Minimum mark is: " + minmark);
              fileinput.close();
    }: ) I still cant figure out how to modify.

  • Is there a way to get the calculator from the dashboard to appear along with other programs?  Can anyone recommend a calculator which will work as a stand alone app?

    AS it stands now, in order to use the calculator that comes with the Dashboard, you cannot read from a list of numbers in, lets say, word or excel. The dashboard is full screen and nothing can stand along side it. Is there a way to get the calculator from the dashboard to appear along with other programs?  Can anyone recommend a calculator which will work as a stand alone app?

    there is one, just search with spotlight "Calculator".
    It works great!
    Hope this helps.

Maybe you are looking for

  • My speaker volume is very low now that I did the most recent update

    I recently did an update on my 4s. Since the update, I can barely hear people talking to me on the phone. I cannot have any background noise at all. i have used the buttons on the side and the volume does not change.

  • I have problem in jsp page

    i have build jsp page using javascript and java for the database connectivity .....i have dbtest.java in which i write the sql quiry and set the sql column in setter and getter another java class.in dbtest.java i pass a date from jsp which restrict t

  • Sending uploaded file to the approver using GP Process

    Hai all, i my project i need to send the resource files for approver ... in my application i have created three actions under one sequencial block ..i need to send the user uploaded files to the three approvers .....

  • Snapshot Query

    Is there any way to speed up the process of getting Snap Shot Query information to match what is in the KD after a crawler has run? It takes about 15 minutest to see a change otherwise. I cannot find any job intrinsically for SnapShot Queries. Thanks

  • G++ and proc problem

    I am trying to compile a C++ program using proc on Linux and everything works fine until when I actually try to compile the output source from proc using g++. The problem is that there is a function sqlcxt(void **, unsigned int *, sqlexd *, const sql