Valid To Date not available in BAPI_MATERIAL_BOM_GROUP_CREATE

HI All-
I am creating a BOM using the BAPI - BAPI_MATERIAL_BOM_GROUP_CREATE. My requirement is to create BOM components with Valid From and Valid TO dates. This BAPI has Valid From Date field whereas no field available to enter Valid-To Date. The BAPI gets created with components but the Valid To date is defaulted to 12/31/9999. I dont want this. I have my own Valid TO dates in the file and I want those to appear. How to go about it?
Thanks
Shakir.
Edited by: Shakir on Jul 30, 2008 11:36 AM

hi,
i too faced the problem ...then i went for bdc.....here is the code
*& Report ZPP_REPORT_BOM
*& Created By : shailaja
*& Created on : 09.02.2007
*& Requested By :
*& Description : Master Data Upload BOM
REPORT ZPP_REPORT_BOM NO STANDARD PAGE HEADING LINE-SIZE 255.
Structure Declaration
TYPES : BEGIN OF TY_SOURCE,
MATNR(18),
WERKS(4),
STLAN(1),
STLAL(2),
DATUV(10),
POSNR(4), " BOM item number
POSTP(1), " BOM Item category
IDNRK(18),
MENGE(13),
MEINS(3),
AVOAU(3), " Operation Scrap
NETAU, " Indicator: Net scrap
ALPGR(2),
ALPRF(2),
ALPST(1),
EWAHR(3),
LGORT(4), " Storage Location
BMENG(13),
STLST(2),
END OF TY_SOURCE,
BEGIN OF TY_HEADER ,
MATNR(18),
WERKS(4),
STLAN(1),
STLAL(2),
DATUV(10),
BMENG(13),
LOSVN(2),
LOSBS(2),
STLST(2),
END OF TY_HEADER,
BEGIN OF TY_ITEM ,
MATNR(18),
POSNR(4),
POSTP(1),
IDNRK(18),
MENGE(13),
MEINS(3),
AUSCH(5),
AVOAU(3),
NETAU,
ALPGR(2),
ALPRF(2),
ALPST(1),
EWAHR(3),
LGORT(4),
END OF TY_ITEM.
Internal Table Declaration
DATA : T_SOURCE TYPE STANDARD TABLE OF TY_SOURCE INITIAL SIZE 1,
T_HEADER TYPE STANDARD TABLE OF TY_HEADER INITIAL SIZE 1,
T_ITEM TYPE STANDARD TABLE OF TY_ITEM INITIAL SIZE 1,
T_TARGET TYPE STANDARD TABLE OF BDCDATA INITIAL SIZE 1.
DATA : W_SOURCE TYPE TY_SOURCE,
W_SOURCE1 TYPE TY_SOURCE,
W_HEADER TYPE TY_HEADER,
W_ITEM TYPE TY_ITEM,
W_TARGET TYPE BDCDATA,
COUNT TYPE I.
Variable Declaration
DATA: W_FNAME TYPE STRING,
FNAM(20),
I(2) TYPE N,
V_COUNT TYPE I,
V_GROUP TYPE APQI-GROUPID.
SELECTION SCREEN CRITERIA
SELECTION-SCREEN : BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
PARAMETERS : P_PATH TYPE RLGRAP-FILENAME,
P_GROUP(15) DEFAULT 'BOM'.
SELECTION-SCREEN : END OF BLOCK B1.
AT SELECTION SCREEN
AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_PATH.
CALL FUNCTION 'WS_FILENAME_GET'
EXPORTING
DEF_FILENAME = 'C:\TEST.TXT'
DEF_PATH = 'C:\Documents and Settings\Naidu\Desktop\TEST-1.txt'
MASK = ',.,..'
MODE = 'O' "O --> Open S --> Save
TITLE = 'OPEN'
IMPORTING
FILENAME = P_PATH
RC =
EXCEPTIONS
INV_WINSYS = 1
NO_BATCH = 2
SELECTION_CANCEL = 3
SELECTION_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.
START-OF-SELECTION
START-OF-SELECTION.
PERFORM SUB_UPLOAD.
PERFORM SUB_BDC_PROCESS.
PERFORM SUB_CLOSE.
WRITE:/ 'The session', V_GROUP ,'has been successfully created with',
V_COUNT.
WRITE:/ 'Please process the session in SM35'.
*& PERFORM SUB_UPLOAD
FORM SUB_UPLOAD.
W_FNAME = P_PATH.
CALL FUNCTION 'GUI_UPLOAD'
EXPORTING
FILENAME = W_FNAME
FILETYPE = 'ASC'
HAS_FIELD_SEPARATOR = 'X'
HEADER_LENGTH = 0
READ_BY_LINE = 'X'
DAT_MODE = ' '
CODEPAGE = ' '
IGNORE_CERR = ABAP_TRUE
REPLACEMENT = '#'
CHECK_BOM = ' '
VIRUS_SCAN_PROFILE =
NO_AUTH_CHECK = ' '
IMPORTING
FILELENGTH =
HEADER =
TABLES
DATA_TAB = T_SOURCE
EXCEPTIONS
FILE_OPEN_ERROR = 1
FILE_READ_ERROR = 2
NO_BATCH = 3
GUI_REFUSE_FILETRANSFER = 4
INVALID_TYPE = 5
NO_AUTHORITY = 6
UNKNOWN_ERROR = 7
BAD_DATA_FORMAT = 8
HEADER_NOT_ALLOWED = 9
SEPARATOR_NOT_ALLOWED = 10
HEADER_TOO_LONG = 11
UNKNOWN_DP_ERROR = 12
ACCESS_DENIED = 13
DP_OUT_OF_MEMORY = 14
DISK_FULL = 15
DP_TIMEOUT = 16
OTHERS = 17
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 T_SOURCE INTO W_SOURCE.
W_SOURCE1 = W_SOURCE.
AT NEW MATNR.
W_HEADER-MATNR = W_SOURCE1-MATNR.
W_HEADER-WERKS = W_SOURCE1-WERKS.
W_HEADER-STLAN = W_SOURCE1-STLAN.
W_HEADER-DATUV = W_SOURCE1-DATUV.
W_HEADER-BMENG = W_SOURCE1-BMENG.
W_HEADER-STLAL = W_SOURCE1-STLAL.
W_HEADER-STLST = W_SOURCE1-STLST.
APPEND W_HEADER TO T_HEADER.
ENDAT.
W_ITEM-MATNR = W_SOURCE1-MATNR.
W_ITEM-IDNRK = W_SOURCE1-IDNRK.
W_ITEM-MENGE = W_SOURCE1-MENGE.
W_ITEM-MEINS = W_SOURCE1-MEINS.
W_ITEM-POSTP = W_SOURCE1-POSTP.
W_ITEM-POSNR = W_SOURCE1-POSNR.
W_ITEM-AVOAU = W_SOURCE1-AVOAU.
W_ITEM-LGORT = W_SOURCE1-LGORT.
W_ITEM-NETAU = W_SOURCE1-NETAU.
W_ITEM-ALPGR = W_SOURCE1-ALPGR.
W_ITEM-ALPRF = W_SOURCE1-ALPRF.
W_ITEM-ALPST = W_SOURCE1-ALPST.
W_ITEM-EWAHR = W_SOURCE1-EWAHR.
APPEND W_ITEM TO T_ITEM.
CLEAR :W_ITEM,W_HEADER.
ENDLOOP.
ENDFORM. "Sub_upload
*& PERFORM SUB_BDC_PROCESS
FORM SUB_BDC_PROCESS.
V_GROUP = P_GROUP.
CALL FUNCTION 'BDC_OPEN_GROUP'
EXPORTING
CLIENT = SY-MANDT
DEST = FILLER8
GROUP = V_GROUP "'BOM'
HOLDDATE = FILLER8
KEEP = 'X'
USER = SY-UNAME
RECORD = FILLER1
PROG = SY-CPROG
IMPORTING
QID =
EXCEPTIONS
CLIENT_INVALID = 1
DESTINATION_INVALID = 2
GROUP_INVALID = 3
GROUP_IS_LOCKED = 4
HOLDDATE_INVALID = 5
INTERNAL_ERROR = 6
QUEUE_ERROR = 7
RUNNING = 8
SYSTEM_LOCK_ERROR = 9
USER_INVALID = 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.
LOOP AT T_HEADER INTO W_HEADER.
REFRESH T_TARGET.
perform bdc_dynpro using 'SAPLCSDI' '0100'.
perform bdc_field using 'BDC_CURSOR' 'RC29N-DATUV'.
perform bdc_field using 'BDC_OKCODE' '/00'.
perform bdc_field using 'RC29N-MATNR' W_HEADER-MATNR."'FZGN25051641'.
perform bdc_field using 'RC29N-WERKS' W_HEADER-WERKS."'2200'.
perform bdc_field using 'RC29N-STLAN' W_HEADER-STLAN."'1'.
PERFORM BDC_FIELD USING 'RC29N-STLAL' W_HEADER-STLAL.
perform bdc_field using 'RC29N-DATUV' W_HEADER-DATUV."'31122005'.
perform bdc_dynpro using 'SAPLCSDI' '0110'.
perform bdc_field using 'BDC_CURSOR' 'RC29K-BMENG'.
perform bdc_field using 'BDC_OKCODE' '/00'.
perform bdc_field using 'RC29K-BMENG' W_HEADER-BMENG."'1668'.
PERFORM BDC_FIELD USING 'RC29K-STLST' W_HEADER-STLST."'1'.
perform bdc_dynpro using 'SAPLCSDI' '0111'.
perform bdc_field using 'BDC_CURSOR' 'RC29K-LABOR'.
perform bdc_field using 'BDC_OKCODE' '/00'.
I = 1.
LOOP AT T_ITEM INTO W_ITEM WHERE MATNR = W_HEADER-MATNR.
COUNT = COUNT + 1.
IF COUNT GT 14.
CLEAR I.
I = 2.
BREAK KISHORES.
perform bdc_dynpro using 'SAPLCSDI' '0140'.
perform bdc_field using 'BDC_OKCODE' '=FCNP'.
ENDIF.
perform bdc_dynpro using 'SAPLCSDI' '0140'.
perform bdc_field using 'BDC_CURSOR' 'RC29P-SORTF(01)'.
perform bdc_field using 'BDC_OKCODE' '/00'.
CONCATENATE 'RC29P-IDNRK(' I ')' INTO FNAM.
perform bdc_field using FNAM W_ITEM-IDNRK.
CONCATENATE 'RC29P-MENGE(' I ')' INTO FNAM.
perform bdc_field using FNAM W_ITEM-MENGE.
CONCATENATE 'RC29P-MEINS(' I ')' INTO FNAM.
perform bdc_field using FNAM W_ITEM-MEINS.
CONCATENATE 'RC29P-POSTP(' I ')' INTO FNAM.
perform bdc_field using FNAM W_ITEM-POSTP.
CONCATENATE 'RC29P-POSNR(' I ')' INTO FNAM.
PERFORM BDC_FIELD USING FNAM W_ITEM-POSNR.
perform bdc_dynpro using 'SAPLCSDI' '0130'.
perform bdc_field using 'BDC_OKCODE' '/00'.
perform bdc_field using 'BDC_CURSOR' 'RC29P-ALPGR'.
PERFORM BDC_FIELD USING 'RC29P-NETAU' W_ITEM-NETAU.
PERFORM BDC_FIELD USING 'RC29P-AVOAU' W_ITEM-AVOAU.
perform bdc_field using 'RC29P-ALPGR' W_ITEM-ALPGR.
IF W_ITEM-ALPGR = ' '.
ELSE.
perform bdc_dynpro using 'SAPLCSDI' '0716'.
perform bdc_field using 'BDC_CURSOR' 'RC29P-EWAHR'.
perform bdc_field using 'BDC_OKCODE' '=CLWI'.
perform bdc_field using 'RC29P-ALPRF' W_ITEM-ALPRF.
perform bdc_field using 'RC29P-ALPST' W_ITEM-ALPST.
perform bdc_field using 'RC29P-EWAHR' W_ITEM-EWAHR.
ENDIF.
perform bdc_dynpro using 'SAPLCSDI' '0131'.
perform bdc_field using 'BDC_OKCODE' '/00'.
perform bdc_field using 'BDC_CURSOR' 'RC29P-POTX1'.
perform bdc_field using 'RC29P-SANKA' 'X'.
PERFORM BDC_FIELD USING 'RC29P-LGORT' W_ITEM-LGORT.
I = I + 1.
CLEAR W_ITEM.
ENDLOOP.
perform bdc_dynpro using 'SAPLCSDI' '0140'.
perform bdc_field using 'BDC_CURSOR' 'RC29P-POSNR(01)'.
perform bdc_field using 'BDC_OKCODE' '=FCBU'.
CALL FUNCTION 'BDC_INSERT'
EXPORTING
TCODE = 'CS01'
POST_LOCAL = NOVBLOCAL
PRINTING = NOPRINT
SIMUBATCH = ' '
CTUPARAMS = ' '
TABLES
DYNPROTAB = T_TARGET
EXCEPTIONS
INTERNAL_ERROR = 1
NOT_OPEN = 2
QUEUE_ERROR = 3
TCODE_INVALID = 4
PRINTING_INVALID = 5
POSTING_INVALID = 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.
ELSE.
V_COUNT = V_COUNT + 1.
ENDIF.
CLEAR : W_ITEM,W_HEADER.
ENDLOOP.
ENDFORM. "SUB_BDC_PROCESS
*& Form SUB_CLOSE
text
--> p1 text
<-- p2 text
FORM SUB_CLOSE .
CALL FUNCTION 'BDC_CLOSE_GROUP'
EXCEPTIONS
NOT_OPEN = 1
QUEUE_ERROR = 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.
ENDFORM. " SUB_CLOSE
Start new screen *
FORM BDC_DYNPRO USING PROGRAM DYNPRO.
CLEAR W_TARGET.
W_TARGET-PROGRAM = PROGRAM.
W_TARGET-DYNPRO = DYNPRO.
W_TARGET-DYNBEGIN = 'X'.
APPEND W_TARGET TO T_TARGET.
ENDFORM. "BDC_DYNPRO
Insert field *
FORM BDC_FIELD USING FNAM FVAL.
IF FVAL <> SPACE.
CLEAR W_TARGET.
W_TARGET-FNAM = FNAM.
W_TARGET-FVAL = FVAL.
APPEND W_TARGET TO T_TARGET.
ENDIF.
ENDFORM. "BDC_FIELD

Similar Messages

  • Today at 8am est my card was charged but when checking order status it saids expected ship date not available at this time and  it also saids we received your order and it is in process . payment not taken yet

    today at 8am est my card was charged but when checking order status it saids expected ship date not available at this time and  it also saids we received your order and it is in process . payment not taken yet 
    but card was charged full amount and i havent gotten anything else been checking for update all day and got nothing i did order iphone 6 plus at 3:01am and everything went through and i was finsihed at 3:06am

        chriss2633,
    I know how exciting it is to have all the information on the new phone. I did send you a Direct Message. Can you please respond back to that message? Looking forward to hearing back from you.
    KevinR_VZW
    Follow us on Twitter @VZWSupport

  • "Expected Ship Date: Not available at this time." Please help.

    I ordered an iphone 6 plus gold at 12:01 AM PST. My email confirmation says "Deliver By: 09/19/2014". However, when I go to check the status of my order it says: "Expected Ship Date: Not available at this time." Please help. Thanks!
    Please PM with details if possible. Thanks in advance!
    Subject was edited by: Verizon Moderator

        Hello JFull14. Making sure that your order is still on track is very important. By chance, has there been an update to your order status screen? http://vz.to/Ulymw6
    If not, I have sent you a DM so we may help look into this.
    NicandroN_VZW
    Follow us on twitter @VZWSupport

  • Oracle validated package is not available for OEL5

    Oracle validated package is not available for OEL5 yet. Does anyone know when it will be available?
    Available now:
    oracle-validated-1.0.0-3.el4.i386     Oracle Software for Enterprise Linux 4 (i386)
    oracle-validated-1.0.0-3.el4.x86_64     Oracle Software for Enterprise Linux 4 (x86_64)
    oracle-validated-1.0.0-4.el4.i386     Oracle Software for Enterprise Linux 4 (i386)
    oracle-validated-1.0.0-4.el4.x86_64     Oracle Software for Enterprise Linux 4 (x86_64)

    Looking forward to the release. Will the release also include updates for 11g readiness and validation?

  • "Mobile Data Not Available", Nokia 700

    Hey all,
    I have a bare bones pay-as-you-go plan. All I get are free unlimited texts and free unlimited calls (within the country). I get no data and, frankly, I don't care for data. I do get annoyed that every so often while playing Angry Birds or using Nokia Maps or any of a number of other applications I will get the "Mobile Data Not Available" notice. How can I disable this notice? It is tiring and I KNOW I don't have Mobile Data. Duh! Thanks in advance for any help.

    Hello TheRooster, the games are provided with some advertising option. This is Because the games are provided for free. If you buy the full version of the games then this won't occur.
    Nokia C7

  • Valid size file not available ...

    To solve your problems with the '' valid size file not available for this creation''  do this...
    Open Organizer (Elements 10). From the menu, select Edit, Preferences, and go to Adobe Partner Services.
    In the location section, click on "choose",  and enter "Canada/USA" for NA.
    Click OK.
    work on window and mac
    You are ready to start creating!!!!!

    Try this:
    http://helpx.adobe.com/photoshop-elements/kb/error-valid-size-available-creation.html

  • Data Not Available. Statspack data is not available for this database insta

    Hi,
    while trying to configure the 9i db on grid control I installed the statspack data while configuring it. But now when I try to see the historical data as part of the performace tab for the 9i db it complains as below
    Data Not Available. Statspack data is not available for this database instance. Make sure that Statspack is installed on the target instance.
    Please shed some of your inputs.
    thanks in advance
    PK

    Hi,
    I think it is not installed.
    Using 1097660794 for database Id
    Using 1 for instance number
    , stats$database_instance di
    ERROR at line 9:
    ORA-00942: table or view does not exist
    I did exactly as it said while configuring the db. but seems like something is wrong. Can you please advise me on how can I install it in commandline.
    Thanks
    PK

  • Disk quota data not available.

    I've got quotas enabled for my home dir volume, quotas set for all my users, and they appear to be working (logged-in users show the appropriate amount of space remaining in their home dirs).
    But clicking on the Quotas section of Server Admin nets me a blank log page with "Data not available" at the top.
    I've seen the quota chart on this machine before in earlier test builds, so I know what I should be expecting, but can't figure out why it's not showing up. Any ideas?
    How do I rebuild or reindex the quota system, if that's what I need to do?
    Thanks!

    We are having the same issue since upgrading to 10.4.11. Currently we are investigating the possibility of accessing this information through the terminal using the 'quota' tools. I do not have ready access to the server though so progress is slow.
    As far as I can make out if you can run 'fsck' this will the ASCII files that the user and group quotas are stored in and may effect a repair. I haven't yet been able to try this to see if it will work.
    Anyone else got any suggestions?

  • ORA-08176: consistent read failure; rollback data not available

    Hi,
    We implemented UNDO management on our servers and started getting these errors for few of our programs.:
    ORA-08176: consistent read failure; rollback data not available
    These errors were not coming when we were using the old rollback segments and we have not changed any code on our server.
    1. What is possibly causing these errors?
    2. Why did they not surface with rollback segments but started appearing when we implemented AUM and Temporary TS (instead of fixed TS used as temporary TS).
    Our environment:
    RDBMS Version: 9.2.0.5
    Operating System and Version: Windows 2000 AS SP5
    Thanks
    Satish

    NOt much in the alert.log. I looked at the trace file, it also does not have much information:
    ORA-12012: error on auto execute of job 7988306
    ORA-20006: ORA-20001: Following error occured in Lot <4407B450Z2 Operation 7131> Good Bad rollup.ORA-08176: consistent read failure; rollback data not available
    ORA-06512: at "ARIES.A_SP$WRAPPER_ROLLUPS", line 106
    ORA-06512: at line 1
    *** SESSION ID:(75.13148) 2004-11-23 09:16:14.281
    *** 2004-11-23 09:16:14.281
    ORA-12012: error on auto execute of job 7988556
    ORA-20006: ORA-20006: Following error occured in Lot <3351A497V1 Operation 7295> For No FL Rollup, Updating T_GOOD.ORA-08176: consistent read failure; rollback data not available
    ORA-06512: at "ARIES.A_SP$WRAPPER_ROLLUPS", line 106
    ORA-06512: at line 1
    *** SESSION ID:(75.16033) 2004-11-23 09:28:10.703
    *** 2004-11-23 09:28:10.703
    The version we have is :
    Oracle9i Enterprise Edition Release 9.2.0.5.0 - Production
    PL/SQL Release 9.2.0.5.0 - Production
    CORE 9.2.0.6.0 Production
    TNS for 32-bit Windows: Version 9.2.0.5.0 - Production
    NLSRTL Version 9.2.0.5.0 - Production
    Thanks
    Satish

  • Data  not available in infocube

    hi all,
    I havae an Infocube for which data is coming from the ods.
    yesterday i found the data is not available for an info object in ods for which data is there in source system.
    then I manually enter the data in the ods and today morning when i check the data in the cube it is still displaying blank but data is there in ods.
    thanks in advance
    sridath
    Edited by: sridath on Nov 19, 2008 7:31 AM

    Hi,
    There could be many reason for that data not coming to the cube.
    are you able to see the the data in the DSO for this object??
    Are there any routine written in the cube and the records getting deleted or changed in that?
    If the value of this object is getting populated through some routine??
    Are you checking the values in the report or in the cube??
    The value for this object may be in the after image record in the cube....so check all the records in the cube for the same value of the key fields of the DSO which has values missing.
    Delete the data from the cube through a selective deletion for this record which you want to get changed and then do a full repair from the DSO for same selections.
    Indexes and compression will not affect this process in any way but once request is compressed it ccannot be deleted and you will have to delete the value from the cube through seletive deletion.
    Thanks
    Ajeet

  • Data not available in cube

    Hi all,
    I have just loaded the data from PSA to DSO, and then from DSO to Cube.
    New requests enter in the Cube. When tried to check the contents of this new request, there is no data at all.
    But if i check the contents of the requests of DSO , there is data in it. i have used this request to transfer the data to Cube , but in the cube i cannot find the data at all.
    I have tried checking the contents of this cube by running a query in the Query Designer, but there also i could not find any data , it gives "no data found".
    can any one please help me regarding this issue?
    Thanks in advance..
    Regds,
    Maddy

    Hi Maddy.
    Please verify that there is no data in the cube from TA LISTCUBE.
    You might have choosen some chars and KF that is not available in the cube in the query designer.
    The records could also happen to not be updated in the cube because of update rules etc.
    Hope it helps (assign points if helpfull!).
    BR
    Stefan

  • DAte not available in infotype 0041(date specification)

    Hai All,
    In our place we are using 4 type of "date type"
    Z1 Hired date.
    Z2 Seperation Date
    Z3 Leave quota start
    Z4 Service entry date
    for all employees date specification maintain by dynamic action.
    for some employees date specification is not maintain by the system.they are having only Z1 Hiring date only. others not available.
    how can i rectify this problem?
    Kind regards.
    Dinesh.

    Hi
    You have to check your Dynamic action.
    While querying dynamic ation how did you quaried, on which grouping you quried ?
    The employee who dont get the details are members in that group are not?
    if you give it in feature you must have all 4 dates to all the employees, otherwise you will be in trobuble
    becuase SAP wont allow you fill the type only without date in infotype 0041
    Regards
    Adi

  • What does "Sorry, delivery dates not available right now." mean?

    I am trying to order a TV and I keep getting this error message.  Does this mean that the TV is completely out of stock in my area or does this mean that the TV delivery team is completely booked for the foreseable future?  I tried another zip code in a different part of the US for the same TV and I don't get this error message.  Thanks...

    Hello SRZ, 
    This Samsung TV looks amazing and I'm glad to hear you were able to snag it! To my knowledge this message may be received if we do not have any delivery appointments available or if stock is not available. 
    I apologize for any concern this message may have caused you, and for any disappointment you may have encountered when you received a distant delivery date. If you should have any questions, please let me know! 
    Regards,
    Tasha|Social Media Specialist | Best Buy® Corporate
     Private Message

  • IPhone 6 - Expected Ship Date Not Available

    I preordered a 16GB space gray iPhone 6 shortly after 3:01 AM EST on Friday September 12.  In my confirmation email, it says the phone will be delivered by 9/19. However, when I look up my order number to track it, the Expected Ship Date is "Not available at this time".
    Any ideas what's going on? I see a pending item on my credit card for the full amount of my order.Verizon Wireless Customer Support

    I'm having same issue with my order.  I've called, and the folks have been really nice on the cust service line, but they weren't able to give me any info and they still didn't send me my confirmation email.  I was really hoping I would have my phone by 9/19, but at this point I'm kinda doutbful.  I would really appreciate the VZW folks to help me out here.  Did I mention I buy the caffeinated beverage of choice of any CSR who can help me out?!??  Thanks VZW, can't wait for my iphone 6 plus and volte!

  • PO - release dates not available in ME5A

    Dear All,
    For knowing PR date, release status, PO made, release status, I have the excel sheet generated from SAP.
    In this, the PO release date is not being generated. 
    Can you please check and let me know what to choose so that I get that info together with PO created date.
    If not available, can you please check possibility of creating the line item for our easy traking purposes.
    Please let know ASAP.
    Thanks
    Rajesh

    Hi
    ME5A report is only for PR related data  it will only show PO number which is created from PR and not the release date of PO.
    Use ME2N to get PO release related data with dynamic seletion
    Vishal...

Maybe you are looking for

  • Need help with making the webpage open in same window

    Hi. I want to make the menu page load in the same window. Right now, if you click on the index page, it will open the menu page in a new window. I know I need to use _self, or _parent. But I couldn't figure out where to insert it. Please help. Thanks

  • I am unable to open a large pdf document.

    Received a e-mail containing a a web site and document which should automatically open. It appears that the document is to long as shorter documents from the same provider do open.

  • Mac won't recognize two USB mics simultaneously (iMac Intel - OS X 10.6.8)

    Hi, I'm connecting two XLR mics to my Mac, each separately run through its own Blue Icicle and USB port. (2 mics, 2 blue icicles, 2 usb ports) When only one mic is connected, the computer recognizes. Each mic works individually in each USB port when

  • Menu icons (time, battery, etc) keep disappearing and reappearing

    The menu icons in the upper right corner (battery, internet, time, etc) keep flashing on and off and are not accessible. This started yesterday and, in addition to the flashing icons, iTunes no longer recognizes or syncs with my iPhone or iPad. Any s

  • Netweaver and Webflow

    I have experience with workflow and have started to look at the web enabling by use of Wf-RFC / SOAP messages. I wondered if this fits anyway into the NetWeaver overall strategy? I see some similarity with xApps and web enabled services, but never an