Product

My Product Name is ManavSoft which is developed using java web serevices then when i am going to integrate this into SAP using XI in the SLD I need to create the product na there i shoud create product name as Manavsoft or I can give any thing as my product name.

Hi,
  Please create product accoring to naming convention
  doc sighned off by customer.
  better to use one or two products inorder to standardize.
  you want to integrate webservice with XI.
so, pls create Technical and business system as third party.
warm regards.
mahesh.

Similar Messages

  • Will Adobe stand alone products work on a surface pro 3?(non cloud)

    Looking at buying my wife a new computer and she thinks she wants a tablet, just wondering what options will work, still have an unused license key as well as the one she is currently using(she has photoshop, illlustrator).  I am not in design and know nothing about the products other than I've seen them in use on her laptop.
    Thanks for the help.

    We've seen nothing but issues trying to use Surface 3 with software. All came down to the use of their N-trig pen.
    I'll divide the issues up:
    -some programs flat out refused to recognise the pen driver
    -some programs didn't recognise the size of the active area, meaning, when you put your pen down, your cursor actually appears at an offset
    -some programs refused to recognise pressure sensitivity
    -some of the programs that did recognise pressure sensitivity, did so poorly, since the pen only has 256 levels of pressure sensitivity, and is set up to work with wacom pens that have exponentially more, it clips those 256 levels down....so 256 ..which should be the most pressure, becomes a low pressure because the program thinks there should be more levels, it clips your pressure range, which makes it unusable
    -custom software didn't work nearly as well because of bugs in the N-trig driver, some of them have been resolved, some have not
    Do with this info as you wish, our experience has been horrible.

  • I am unable to open my Photoshop program after installing the entire Creative Suite: Premium Production 6. All other programs work, but with Photoshop it says that the program is "locked or in use by another user". I need this fixed immediately.

    I am unable to open my Photoshop program after installing the entire Creative Suite: Premium Production 6. All other programs work, but with Photoshop it says that it "Could not open a scratch file because the file is locked, you do not have necessary access permissions, or another program is using the file. Use the 'Properties' command in the Windows Explorer to unlock the file." Then I select "OK" and the next message comes up "Could not initialize Photoshop because the file is locked, you do not have the necessary permissions, or another program is using the file. Use the 'Properties' command in the Windows Explorer to unlock this file. I installed all of the programs on the same day from a CD. I need this fixed immediately.
    I am not interested in switching to Creative Cloud, so don't even suggest it. I spoke to Mashmi (or something to that effect) on the "Support" Chat and there was absolutely no support. Useless actually.
    Thanks in advance.

    Could not open a scratch file because the file is locked or you do not have the necessary access privileges. (…) | Mylen…
    Mylenium

  • Custom report for SO vs production qty

    Hello
    Can someone advise on how to achieve the following.
    Scenario: Production orders are created based on sales order. Mutiple POs can exist for each SO.
    Create a BI report which will report Sales order qty and production qty (actual GR qty) by month
    infoproviders: 0PP_C01 and 0SD_O01
    Fields:
    0SD_O01: 0DOC_NUMBER, 0S_ORD_ITEM, 0REQU_QTY, 0CREATEDON
    0PP_C01 : 0DOC_NUMBER, 0GR_QTY
    Can some one tell me how to build a logic in BI report to first select all SOs based on created date (selection screen input) and use that to pick all the POs and get the actual GR qty.
    Tks. KS

    In this extractor, find the reference document for 0DOC_NUMBER ( PO number)
    0PP_C01 : 0DOC_NUMBER, 0GR_QTY
    For every PO Created there will be some reference Sales order.
    Include this in your extractor, Update data from this two extracors in  two DSOs and further update to infoproviders for reporting
    In your current list of fields provided, you have not taken the reference doc that relates both

  • Report for open orders and amount of product confirmed

    Hi All,
    Can some one give me an idea on a report which shows open orders and also shows amount of product confirmed against these open orders?
    Thanks,
    Neelima.

    Hi Veni,
    Incomplete order are the order's in which some data is missing so that particular order can't be further processed, that is what you could check through "Incompletion Log". Whereas Open orders are the orders which are open for further processing viz. deliver billing(but open order is a complete order i.e. no data missing).
    Check this program:
    *& Report ZGM_OPENPO *
    REPORT ZGM_OPENPO NO STANDARD PAGE HEADING LINE-SIZE 132 LINE-COUNT 36(2).
    TABLES: t001w, "Plants/Branches
    ekko, "Purchasing Document Header
    ekpo, "Purchasing Document Item
    marc, "Plant Data for Material
    mara. "General Material Data
    DATA:
    BEGIN OF itab OCCURS 0,
    matnr LIKE marc-matnr,
    werks LIKE marc-werks,
    beskz LIKE marc-beskz,
    mmsta LIKE marc-mmsta,
    END OF itab.
    DATA: BEGIN OF iekpo OCCURS 0,
    ebeln LIKE ekpo-ebeln,
    menge LIKE ekpo-menge,
    aedat LIKE ekpo-aedat,
    wemng LIKE eket-wemng,
    END OF iekpo.
    DATA: BEGIN OF iekko OCCURS 0,
    ebeln LIKE ekko-ebeln,
    lifnr LIKE ekko-lifnr,
    bedat LIKE ekko-bedat,
    ekgrp LIKE ekko-ekgrp,
    END OF iekko.
    selection-screen:begin of block b1 with frame title text001.
    SELECT-OPTIONS werks FOR ekpo-werks OBLIGATORY.
    SELECT-OPTIONS matnr FOR ekpo-matnr.
    SELECT-OPTIONS beskz FOR marc-beskz.
    SELECT-OPTIONS bsart FOR ekko-bsart.
    selection-screen:end of block b1.
    INITIALIZATION.
    AT SELECTION-SCREEN ON werks. "Validate for werks
    SELECT SINGLE * FROM t001w WHERE werks IN werks.
    IF sy-subrc 0. MESSAGE e429(mo). ENDIF.
    AT SELECTION-SCREEN ON matnr.
    SELECT SINGLE * FROM mara WHERE matnr IN matnr.
    IF sy-subrc 0. MESSAGE e429(mo).ENDIF.
    START-OF-SELECTION.
    SELECT * FROM marc INTO CORRESPONDING FIELDS OF TABLE itab WHERE werks IN werks AND beskz IN beskz AND
    matnr IN matnr.
    SELECT ebeln FROM ekpo INTO CORRESPONDING FIELDS OF TABLE iekpo
    FOR ALL ENTRIES IN itab WHERE matnr = itab-matnr AND loekz EQ space.
    SELECT ebeln lifnr bedat ekgrp FROM ekko INTO CORRESPONDING FIELDS OF
    TABLE iekko
    FOR ALL ENTRIES IN iekpo WHERE ebeln = iekpo-ebeln AND bsart IN bsart.
    SELECT ebeln menge aedat FROM ekpo INTO CORRESPONDING FIELDS OF iekpo
    FOR ALL ENTRIES IN iekpo WHERE ebeln = iekpo-ebeln. MODIFY iekpo INDEX sy-dbcnt.
    ENDSELECT.
    SORT iekpo BY aedat.
    DELETE ADJACENT DUPLICATES FROM iekpo COMPARING ebeln.
    SELECT wemng FROM eket INTO CORRESPONDING FIELDS OF iekpo FOR ALL ENTRIES IN iekpo WHERE ebeln = iekpo-ebeln.
    MODIFY iekpo INDEX sy-dbcnt.
    ENDSELECT.
    END-OF-SELECTION.
    DATA : file_name TYPE string.
    file_name = 'c:\pay_det\open_po1.xls'.
    DATA : BEGIN OF it_join_fields OCCURS 0,
    field_name(20),
    END OF it_join_fields.
    CLEAR it_join_fields.
    it_join_fields-field_name = 'ebeln'.
    APPEND it_join_fields.
    CLEAR it_join_fields.
    it_join_fields-field_name = 'menge'.
    APPEND it_join_fields.
    CLEAR it_join_fields.
    it_join_fields-field_name = 'aedat'.
    APPEND it_join_fields.
    CLEAR it_join_fields.
    it_join_fields-field_name = 'wemng'.
    APPEND it_join_fields.
    CLEAR it_join_fields.
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    BIN_FILESIZE =
    filename = file_name
    filetype = 'ASC'
    APPEND = 'X'
    write_field_separator = 'X'
    TABLES
    data_tab = iekpo
    FIELDNAMES = it_join_fields
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LOOP AT iekpo.
    IF iekpo-menge NE iekpo-wemng.
    WRITE:/4 iekpo-ebeln,21 iekpo-menge ,46 iekpo-aedat, 56 iekpo-wemng.
    ENDIF.
    ENDLOOP.
    if sy-subrc 0. write / 'no data exist for this plant'. endif.
    TOP-OF-PAGE.
    uline 1(80).
    WRITE :/ sy-vline, 20 ' OPEN purchase ORDERs report' color 5,
    80 sy-vline.
    uline 1(80).
    WRITE:/ sy-vline , 4 'PURSCHASE ORDER' COLOR COL_HEADING,
    20 sy-vline, 21 'ORDER QUANTITY' COLOR COL_HEADING,
    45 sy-vline, 46 'item change' color col_heading, 55 sy-vline,
    56 'RECIEVED QUANTITY' COLOR COL_HEADING, 80 sy-vline.
    uline 1(80).
    END-OF-PAGE.
    WRITE :/ 'PAGE NUMBER' ,SY-PAGNO.
    Hope this helps you.
    Regards,
    Chandra Sekhar

  • Open Production Order

    Hi have to create a report that has open sales order , open po , open pur req , open planned order and open Production order.
    I need the logic for OPEN PRODUCTION ORDERS.
    The status of the production orders are maintained in JEST Table .
      I need logic to elimate the completed production orders during my selcet . Since JEST Table has multiple entries and for some orders that are released the 'DELV'  status wil not be maintained at all at that time.
    I wil really appreciate your help , if you can tell me how to emliminate the completed production orders during my select query to get the open prod orders.
    Is there any fun moduel or bapi that wil give the Open prod orders ?? or any std report that gives open PO??
    Thanks

    for this you can use the Function STATUS_TEXT_EDIT , for this pass Objnr (get the objnr from AUFK table using the production order) it will give you the status in the LINE exporting parameters.
    Import parameters               Value
    CLIENT                          100
    FLG_USER_STAT
    OBJNR                           QM000200000010
    ONLY_ACTIVE                     X
    SPRAS                           EN
    BYPASS_BUFFER
    Export parameters               Value
    ANW_STAT_EXISTING
    E_STSMA
    LINE                            OSNO NOTE   "this is the status text
    USER_LINE
    STONR                           00
    if line CS 'DELV'
    "ignore the Order
    endif.

  • Report for daily production and daily sales

    Can you any body Please let me know which fields we should pick to create custom report containing production  qty and sales qty day wise for each material

    Hi Veesh,
    Whats the scenario you using there? i mean to ask
    Discrete
    REM
    or
    PP-PI
    Thanks & Regards,
    Abu Arbab

  • Report for daily production and daily sales quantities

    Can you Please any body let me know what fields and tables should I pick to generate a report for sales qty and production qty for a material on daily basis. we are using PP PI

    Hi,
    You can use table MSEG for that purpose. Try BUDAT-MKPF as one of the selection parameters and use
    MBLNR-MKPF = MBLNR-MSEG
    MJHAR-MKPF = MJHAR-MSEG
    Sort the results in ERFMG-MSEG and ERFME-MSEG using
    BWART-MSEG = 101 minus 102 (for production)
    SOBKS-MSEG = E
    BWART-MSEG = 601 minus 602 (for sales).
    Above stuff might be useful to you for your development requirement provided you are having Sales Order specific production.
    Thanks & Regards,
    Abu Arbab A

  • Opportunity Product Revenue report using Narrative option

    Hi,
    I have created quote report using "Opportunity product revenue report" with the use of narrative option and its working fine but the problem here is if opportunity has multiple product revenue items it shows in multiple quotes. For me it should show in a same quotation if there are multiple opportunity product revenue items in a opportunity. Could anyone help me how can i achieve this.
    Any help would be appreciated. Thanks in advance
    Thanks & Regards
    Ambarish

    You need to modify report and club all revenue to single item / row.

  • Any Mozilla product I install crashes at startup. The first window I see when I open a Mozilla product is the crash reporter. I have tried every possible solution but cannot open anything. It started with firefox. Can anyone please help?

    Hi there, as the question says, I cannot open any Mozilla product. I have tried to install firefox 3.6, older versions of Firefox, Firefox 4.0, Sea Monkey, Thunder Bird and Sun Bird. I have the same problem everytime. I open any of these programs and the first and the only window that appears is the crash reporter. I've tried opening it in Safe Mode and the same occurs. I have tried entirely uninstalling the products incuding the registry keys but no help. I shall post the detailed error reports, if they help solving this issue. Can you kindly look into this and find a solution as I use all of these Mozilla products and my life has been a hell since they've ben down.
    Seamonkey Error Report:
    Add-ons: [email protected]:2.0.4,{59c81df5-4b7a-477b-912d-4e0fdf64e5f2}:0.9.85,{f13b157f-b174-47e7-a34d-4815ddfdfeb8}:0.9.87.4,[email protected]:1.0,{972ce4c6-7e08-4474-a285-3208198ce6fd}:1.0
    BuildID: 20101123124820
    CrashTime: 1296412292
    InstallTime: 1296412283
    ProductName: SeaMonkey
    StartupTime: 1296412291
    Theme: classic/1.0
    Throttleable: 1
    URL:
    Vendor: Mozilla
    Version: 2.0.11
    This report also contains technical information about the state of the application when it crashed.
    Sunbird Error Report:
    Add-ons: [email protected]:1.2009p,{e2fda1a4-762b-4020-b5ad-a41df1933103}:1.0b1,{972ce4c6-7e08-4474-a285-3208198ce6fd}:2.0
    BuildID: 20091211101839
    CrashTime: 1296413028
    InstallTime: 1296411446
    ProductName: Sunbird
    SecondsSinceLastCrash: 1578
    StartupTime: 1296413025
    Theme: classic/1.0
    Throttleable: 1
    URL:
    Vendor: Mozilla
    Version: 1.0b1
    This report also contains technical information about the state of the application when it crashed.

    Did you find a solution?
    Same problem over here as well, FF 7 is ok but FF8 / FF9 and Thunderbird 8 / 9 crash on startup.
    They both work if I start them in safe mode with everything enabled.

  • HT1349 How do you get help from apple if you don't know where to find the serial number of my "product."  I don't know if they mean my itunes program, my iphone, my computer, which one, the number on the computer (is there one), or something in Windows or

    How are you supposed to get help from Apple if you don't know what your serial number is?  They say to input the serial number of the "product" that you are asking about.  Since my problem is how to deauthorize/authorize computers, and they are saying I have more than 5 (which I have never owned more than 5 computers in my life), I can't imagine what serial number they mean.  Does it mean your desktop computer?  If so, which one?  Do they mean your device?  LIke your iPhone, iPod or whatever?  Do they mean the software ON one of your computers and/or devices?  If so, which program, and on which computer/device?
    We have three operational computers, one does not have iTunes on it.  Since Apple is saying I have more than 5 authorized computers, and I can't imagine what they are, I am afraid to deauthorize all my computers.  See what I mean?  I just wanted to ask the question about how I can find out WHICH computers Apple thinks I have authorized, so I can decide if it's safe to deauthorize them all or not.  I only know of 2 computers that have iTunes on them, so how can there be 5?  We also have 2 iPhones and 2 iPods in this family, but one of the iPhones has his own apple id.  He may have been using mine, since his computer died.  I read that those don't count as "computers" to the 5.  Do they, then?
    Help!  I can't contact apple because I have no idea what they mean about serial number.  I doubt they would help me anyway.  In order to get the serial number off my desktop computer (that has iTunes on it already), I will have to move furniture, so I don't want to if that's not it.  Is there some way to find the serial number in the software, either on my desktop or my iPhone?

    sunshinecowgill wrote:
    We have three operational computers, one does not have iTunes on it.  Since Apple is saying I have more than 5 authorized computers, and I can't imagine what they are, I am afraid to deauthorize all my computers.  See what I mean?  I just wanted to ask the question about how I can find out WHICH computers Apple thinks I have authorized, so I can decide if it's safe to deauthorize them all or not. 
    You could have more 5 computers authorized if you ever, for example, reformatted a hard drive or replaced a hard drive without deauthorizing the computer first. Apple's system would see that as a different computer, even though you don't. There's nothing to be afraid of in deauthorizing everything and the reauthorizing what you actually have. You won't lose any data. Mistimp is correct, they can't tell you which computers are authorized.

  • Our family has multiple products from IPods, IPads, IMac, and Apple TV. However, we made a mistake when registering them so that we seem to have at least two different ITunes accounts. How do I combine them or reset the accounts to make them one?

    Over the years we have purchased multiple products from IPods, IPads, to IMacs. Unfortunately, along the way, we accidentally created more than one ITunes accounts so that we can only access some songs etc on certain devices and not on others. How do we reset our devices to create one account or transfer our music to one account?

    You don't. You cannot combine iTunes accounts at this time. Pick the one that you want to use and stick to that one account for all the purchases.
    Before making any changes read this article - http://support.apple.com/kb/ht4627
    MJ

  • How many times can you download a purchased product?

    I have multiple computers, can I download to more than one device?

    You can download it as many times as you want, as long as the product is available on the download servers.
    However, depending on your license, you most likely can only install & activate on two computers.

  • Can I create a new apple account for a product that is already associated with an existing account?

    I have had an apple id account for a few years that is shared by myself and my family. It includes 3 ipod touches, 1 ipod nano, and 1 ipad. All of the devices are synced to each other and settings keep getting changed around between them, which is becoming an annoyance. I would like to create 2 separate apple id accounts, and keep my existing one, is this possible? Will I and my family be able to sync the devices to new accounts without having to reset each product? any advice and/or suggestions would be much appreciated, thanks.

    Couldn't agree more... the folks who are getting penalized for this are the early adopters of .Mac/iCloud dating from the days when the only way to implement a "family" account was to use aliases. Now all my kids' / my wife's name aliases sit in my account, unable to move. I guess the good news is that if I delete them nobody else will get them, but this seems a pretty poor consolation.
    Would it really be so difficult to implement a "move this alias to another iCloud account" option that requires the "sender" and "receiver" to exchange some sort of code to implement the transation in order to prevent fraud?

  • Is there a way to create videos 'fast' with adobe products?

    I am an affiliate marketer. I have produced a video  Inspro Program: personal development planned and achieved - YouTube and I would like to know if there are ways to create videos within maybe 10 minutes with Adobe products. Please suggest a quick method.

    Turnaround times ultimately depend on the skill of the person doing the work just as much as the programs' capabilities. And 10 minutes for editing a video? That's just ridiculous. Importing/ exporting footage or tweaking voice-over audio alone could take longer as could replacing/ re-typing text.
    Mylenium

  • I need to buy an External Portable HD 500GB for my iMac OSX 10.4.11 (PowerPc 2004). Can anybody please tell me a few Names/Products that are compatible? Please if you can, just tell me some product name, instead what generical characteristics it needs :s

    Hello
    I have been reading forums and forums and after days of research l gave up.
    Unfortunately it seems that nobody has provided a name of a brand yet.
    Although the effort is very admirable, l am still at the point of finding myself back at square one, with an unanswered question:
    Which portable external HD 500GB should l purchase for my iMac 10.4.11 (Power PC 2004)?
    I know there are many different ones, but l hope at least somebody can suggest one.
    A clear Name of a Product that matches the compatibility.
    I am not an expert of computer and so all the theoretical explanations of technical characteristics mean next to nothing to me :(
    I hope that someone kind enough to halo me out with this will be able to let me know.
    My most greatefull thank you to you all in advance :)
    And1001

    Try http://eshop.macsales.com/shop/hard-drives/External-Enclosures/
    If you have question about any items on their page, MacSales has an extremely god technical support staff.
    Allan

Maybe you are looking for

  • Can no longer connect to HFM Office provider via Smartview

    Can connect to Essbase and Reporting and Analysis via Smartview. Just not HFM. This worked for over 1 month and suddenly just stopped! Nothing changed on the servers that we know of. Our TQA environment is still working fine. Just our production envi

  • Error in Adhoc Query

    Hi Experts In an  info set , I have added two additional fields  to IT0001 ,Dotted position and Dotted Position text  and I have added field code for  both the fields . When I select these fields independently as output fields I am getting values exp

  • [concluded] Enabling SLI (Lenovo Ideapad y500 / dual gt 650m)

    final edit: Apparently there is no support for sli on mobile nvidia gpu. Thank you ever so much Nvidia, you willf orever hold a special place in my heart.. I've miracously gotten everything else to work. Only thing left is enabling sli, which I haven

  • PowerMac G4 400MHZ and 10.4 Software Updates Broken?

    Hey guys, I got a free G4 400 and I tried to install 10.4 on it. It installs fine, although it tooke ahwile :> but everything installed w/o any errors. I went to Software Update and it says no updates available. WTH?! I know there's a TON of patches

  • External Hard drive No Longer Readable by Macbook Pro

    I've been using a PQI Portable HD 551 external drive to back up my files for some time now. I haven't backed up since 9/21/12 and I tried to today and got the error message "The disk you inserted was not readable by this computer." I've had no proble